Commit Graph

2308 Commits

Author SHA1 Message Date
Anton Lavrenov
f256e05d75 update cdn link 2018-08-10 13:20:30 +07:00
Anton Lavrenov
cf22fb0b00 build for 2.2.1 2018-08-10 13:20:30 +07:00
Anton Lavrenov
2b65b818a1 update CHANGELOG with new version 2018-08-10 13:20:26 +07:00
Anton Lavrenov
8420e44c1b fix stop transform bug 2018-08-10 13:19:56 +07:00
Anton Lavrenov
32dec19f51 update cdn link 2018-08-10 12:39:35 +07:00
Anton Lavrenov
c466de0134 build for 2.2.0 2018-08-10 12:39:35 +07:00
Anton Lavrenov
e03fe8ba99 update CHANGELOG with new version 2018-08-10 12:39:30 +07:00
Anton Lavrenov
093d501cf6 new transformer style functions 2018-08-10 10:22:08 +07:00
Anton Lavrenov
77af92cbf0 build and test fix 2018-08-09 12:35:21 +07:00
Anton Lavrenov
b518ae0dac Merge branch 'master' of github.com:konvajs/konva 2018-08-09 12:31:48 +07:00
Anton Lavrenov
52cdd66dfe fix for draggable stage 2018-08-09 12:24:50 +07:00
Anton Lavrenov
d20d4ed98e
Merge pull request #425 from adam-t-b/master
Anchor Box Size for Transformer
2018-08-09 12:24:40 +07:00
Adam Berrio
a114a546fd Renaming per request
anchorBoxSize to anchorSize
2018-08-03 22:28:09 -07:00
Anton Lavrenov
9af21e402b
Merge pull request #427 from marcinmajkowski/sprite-config-typings-fix
Add missing frameRate SpriteConfig typing and Sprite documentation entry
2018-08-04 08:31:46 +07:00
Marcin Majkowski
ede310a19c Add missing frameRate SpriteConfig typing and Sprite documentation entry 2018-08-03 23:36:49 +02:00
Adam Berrio
0b0dd806fc Fixing wording 2018-08-02 22:25:29 -07:00
Adam Berrio
357b3b52f3 Adding Anchor Box Size to Transformer
This switches the constant BASE_BOX_WIDTH and BASE_BOX_HEIGHT to be a config option.
[config.anchorBoxSize]
2018-08-02 22:17:20 -07:00
Anton Lavrenov
a15b27bcf1 Merge branch 'VladimirTechMan-master' 2018-08-03 09:48:49 +07:00
Anton Lavrenov
0b58cf482b reset some changes 2018-08-03 09:48:35 +07:00
VladimirTechMan
3a8f10687c Merge remote-tracking branch 'upstream/master' 2018-08-02 22:30:21 -04:00
Anton Lavrenov
20776f77aa update cdn link 2018-08-01 18:35:57 +07:00
Anton Lavrenov
845b561214 build for 2.1.8 2018-08-01 18:35:56 +07:00
Anton Lavrenov
a9ea5a54f6 update CHANGELOG with new version 2018-08-01 18:35:52 +07:00
Anton Lavrenov
41576cfa81 Merge branch 'master' of github.com:konvajs/konva 2018-08-01 18:35:42 +07:00
Anton Lavrenov
98d2d6ffe0 better toDataURL for shapes 2018-08-01 09:26:13 +07:00
VladimirTechMan
940fdfe787 Only update the z-indices that do change after reordering nodes
Right now, when updating the z-index of a node in a container,
the indices of all its siblings are refreshed. However, if the
node changes its z-index from z1 to z2, we only need to refresh
the z-indexes of the node's parent's children in the closed
range [ min(z1,z2), max(z1,z2) ]. For groups and layers with
many children that will be more optimal in many cases.

In addition to the above change, this patch:
* forces the parameter of Node#setZIndex() to be in the valid
  range.
* adds the (now absent) unit tests for the methods of Node that
  change z-indices of the parent's children.
2018-07-28 18:56:37 -04:00
Anton Lavrenov
5dcea1863f
Merge pull request #419 from VladimirTechMan/master
Removing unused value from return statement in _eachAncestorReverse()
2018-07-25 09:25:45 +07:00
VladimirTechMan
ee6fc3c0b4 Removing unused value from return statement in _eachAncestorReverse()
A minor cleanup. When method _eachAncestorReverse() does not have
the top node argument, it returns "nothing" (undefined). Thus, the
true value returned when it has the top argument – and the current
Konva code never checks or uses that returned value – seems to be
just a side effect of code copy-paste or alike, done in the past.

Unless the function was planned to return a boolean value for a
a good reason (in which case we'd need to add a return value to
its end), let's remove the unused value from return.
2018-07-24 11:17:45 -04:00
Anton Lavrenov
40416a0cee prettier, build 2018-07-24 11:07:13 +07:00
Anton Lavrenov
a6d3426de9
Merge pull request #418 from VladimirTechMan/master
Support offsetX and offsetY when transformsEnabled is set to 'position'
2018-07-24 10:57:30 +07:00
VladimirTechMan
fc2343078a Support offsetX and offsetY when transformsEnabled is set to 'position'
Supporting both x, y and offsetX, offsetY under the 'position' option
of node property transformsEnabled makes it more useful for real apps.

As there is no benefit in making auxiliary variable transformsEnabled
a part of the function closure, it is moved inside the local function
body itself.
2018-07-23 19:47:05 -04:00
Anton Lavrenov
01ce94743d build 2018-07-20 11:10:17 +07:00
Anton Lavrenov
ce67735202
Merge pull request #417 from VladimirTechMan/master
Small improvement to _getAbsoluteTransform() when transformEnabled is not set to 'all'
2018-07-20 11:09:08 +07:00
VladimirTechMan
556a58f9dd Improved _getAbsoluteTransform() when transformEnabled != 'all'
Only call getTransform() inside _getAbsoluteTransform() when the
transformEnabled property is set to 'all'. That also eliminates
the need in extra variable (trans) to reference the returned value.
2018-07-19 20:47:28 -04:00
Anton Lavrenov
39e022e786 toDataURL fixes 2018-07-18 14:56:46 +07:00
Anton Lavrenov
ef9cf8154d
Merge pull request #415 from parthivshah91/master
Updated Konva.d.ts
2018-07-18 14:47:23 +07:00
Anton Lavrenov
28df587b27
Merge branch 'master' into master 2018-07-18 14:47:13 +07:00
Anton Lavrenov
04c921c13c
Merge pull request #414 from IgorBabkin/handlerfunc-target-optional
Make target in HandlerFunc optional
2018-07-18 14:44:47 +07:00
Anton Lavrenov
7cb646f7ff
Merge pull request #413 from IgorBabkin/event-typings
Add typings for user events
2018-07-18 00:04:55 +07:00
Parthiv Shah
a2c5920d4d
Updated Konva.d.ts
Added KonvaNodeEventMap to determine event type correctly based on eventString similar to lib.es6.d.ts. and added missing type definitions.
2018-07-17 15:32:41 +05:30
Igor Babkin
f67012cea6 Make target in HandlerFunc optional 2018-07-16 11:43:01 +03:00
IgorBabkin
7af4e4128a Add typings for user events (review notes) 2018-07-15 21:41:11 +03:00
IgorBabkin
e1aa96a8b5 Add typings for user events 2018-07-15 15:07:43 +03:00
Anton Lavrenov
87820449ad enable all tests 2018-07-12 11:13:00 +07:00
Anton Lavrenov
aaa3461b1f Transformer fixes 2018-07-12 11:04:20 +07:00
Anton Lavrenov
e6c5325ccb toObject fixes 2018-07-05 14:49:02 +07:00
Anton Lavrenov
b18b11bc5f build 2018-07-04 11:22:47 +07:00
Anton Lavrenov
b349558775 Merge branch 'allada-master' 2018-07-04 11:21:11 +07:00
Anton Lavrenov
0fe91fd1a1 Merge branch 'master' of https://github.com/allada/konva into allada-master 2018-07-04 11:20:29 +07:00
Nathan Bruer
96837bd349 Transformer changes to work properly with scaling 2018-07-03 10:03:19 -07:00