tbo47
8d2a050d83
var to const or let
2024-10-05 14:18:32 +00:00
Anton Lavrenov
ac1587fac8
update docs, fix fullRule for hit graph, close #1787
2024-07-15 12:40:00 -05:00
Anton Lavrenov
eb4e2b4fef
fix cliping with zero size. close #1723
2024-03-03 10:42:25 +07:00
Anton Lavrenov
0d502baccd
fix buffer export
2024-01-17 19:12:49 -05:00
Anton Lavrenov
a8efcd554a
type fixes. close #1692
2023-12-25 11:10:37 -05:00
Anton Lavrenov
99334e197a
typescript fixes
2023-09-09 16:39:57 -05:00
Anton Lavrenov
d33b8e944b
more strict typescript
2023-08-28 09:23:57 -05:00
Anton Lavrenov
cd2e17338a
docs and types
2023-08-26 20:36:40 -05:00
Dominic Buetow
7133abe9cd
fixing findOne result type
2023-07-12 10:04:47 +02:00
Anton Lavrenov
68d5a8b436
changes and docs
2023-06-05 10:28:44 -05:00
Ales Menzel
95048b5086
support context.clip(...) and context.fill(...) Path2D and fill-rule options
2023-05-02 17:27:45 +02:00
Alexis Fontaine
65b76a2776
Handle adding empty arrays to a container
2023-01-14 17:07:01 +01:00
Albert Brand
7c1787ca35
Make sure to schedule draw when calling removeChildren or destroyChildren
2021-06-30 10:06:41 +02:00
Anton Lavrenov
9ed1cd7009
fix transform cache issue. close #1116
2021-05-27 15:02:59 -05:00
Anton Lavrenov
d54832865d
better context method. close #343
2021-05-06 07:46:36 -05:00
Anton Lavrenov
b6e8afec6e
fix test
2021-05-05 09:54:03 -05:00
Anton Lavrenov
7bd5c62ee3
tests refactor, clean build
2021-05-05 09:19:24 -05:00
Anton Lavrenov
1c6bc48c83
autodraw
2021-05-04 08:57:03 -05:00
Anton Lavrenov
c926bd623c
initial tests migration
2021-04-30 09:24:27 -05:00
Anton Lavrenov
24d069212c
Fix transformer rotation when parent of a node is rotated too
2021-02-12 16:44:00 -05:00
wujing
91547d7a8a
fix: return type of container.find() #1016
2020-11-18 15:27:47 +08:00
Anton Lavrenov
8bf97ba8c1
types fixes. close #945
2020-07-06 10:20:47 -05:00
Anton Lavrenov
4e1b1c7812
rendering fixes for letter spacing. fix #942
2020-07-02 17:27:30 -05:00
Anton Lavrenov
1d8388eead
performance optimizations
2020-06-10 11:57:48 -05:00
Anton Lavrenov
ee99044baa
remove inherit
from listening property, deprecate FastLayer, font fixes.
2020-05-14 11:13:47 -05:00
Anton Lavrenov
010729dc19
some type fixes. close #869
2020-03-29 07:45:39 -05:00
Anton Lavrenov
86f847a702
Fix wrong internal caching of absolute attributes. fix #843
2020-02-10 08:22:07 -05:00
wujing
9f030736fe
fix container.add ts arguments error issue#806
2019-12-10 12:18:32 +08:00
Lasse Wallentin
81f930a2ab
Fixed zero bounds children resulting in NaN group bounds.
2019-10-23 11:15:20 +02:00
Anton Lavrenov
80c674eb1f
Fix globalCompositeOperation + cached hit detections. close #759
2019-10-10 15:52:00 -05:00
Anton Lavrenov
57d9917b62
fix dragstart bug. close #708
2019-08-12 17:33:27 +07:00
Anton Lavrenov
bd21b9cf81
types fixes
2019-08-07 18:45:55 +07:00
Anton Lavrenov
519bd94a7c
prepare new version. Update docs.
2019-08-05 13:54:08 +07:00
Anton Lavrenov
34f0f4ae33
drag&drop multitouch
2019-08-04 14:38:57 +07:00
Anton Lavrenov
1d932bf76c
better mulitouch
2019-08-04 09:41:57 +07:00
Anton Lavrenov
b37286aaa5
fix some types. close #638
2019-04-22 08:17:25 -05:00
Anton Lavrenov
e6282bf73a
typescript fixes
2019-04-17 10:45:47 -05:00
Anton Lavrenov
a6122178c6
transformer warning, typescript fixes
2019-04-08 12:17:26 -05:00
Anton Lavrenov
0e87ded7ba
update CHANGELOG with new version
2019-03-18 14:18:03 -05:00
Anton Lavrenov
e150791f97
huge typescript fixes, remove Object.assign usage
2019-03-10 10:31:13 -05:00
Anton Lavrenov
5cbfe07e6e
refactor validators
2019-02-24 12:06:04 -05:00
Anton Lavrenov
4a6eba726c
remove some method from public API
2019-02-23 21:36:05 -05:00
Anton Lavrenov
98afa3fac6
refactoring
2019-02-23 20:54:20 -05:00
Anton Lavrenov
aaf0185363
type fixes, fix fast layer bug
2019-02-22 12:46:46 -05:00
Anton Lavrenov
74210cbc79
fix caching issues. close #581
2019-02-18 12:38:17 -05:00
Anton Lavrenov
7b22a7ae50
Merge branch 'master' of github.com:konvajs/konva
2019-02-18 12:18:16 -05:00
Anton Lavrenov
40cf5a5909
fix some docs, partial cache fixes
2019-02-18 12:12:03 -05:00
VladimirTechMan
26d40ae1f9
Proposal: Using ECMAScript 6 Map for Node._cache instead of plain Object
2019-02-17 23:59:08 +03:00
VladimirTechMan
15e7477e81
When removing a child, set key "parent" to null, don't delete it
...
Structural changes to objects are relatively more expensive and
harder to optimize for modern JavaScript compilers, compared to
just changing object's key values. The parent property of nodes
is already set to null now, as part constructing the object.
Setting it back to null on removal / destroy of objects is more
consistent and a tiny little bit more efficient.
2019-02-03 22:47:50 +03:00
Anton Lavrenov
11d805795a
warning on dublicate ids
2019-01-24 22:52:16 -05:00