@zag-js/splitter 1.5.0 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -768,7 +768,7 @@ var machine = core.createMachine({
|
|
|
768
768
|
actions: ["setDraggingState"]
|
|
769
769
|
},
|
|
770
770
|
KEYBOARD_MOVE: {
|
|
771
|
-
actions: ["setKeyboardValue"]
|
|
771
|
+
actions: ["invokeOnResizeStart", "setKeyboardValue", "invokeOnResizeEnd"]
|
|
772
772
|
},
|
|
773
773
|
"FOCUS.CYCLE": {
|
|
774
774
|
actions: ["focusNextResizeTrigger"]
|
package/dist/index.mjs
CHANGED
|
@@ -766,7 +766,7 @@ var machine = createMachine({
|
|
|
766
766
|
actions: ["setDraggingState"]
|
|
767
767
|
},
|
|
768
768
|
KEYBOARD_MOVE: {
|
|
769
|
-
actions: ["setKeyboardValue"]
|
|
769
|
+
actions: ["invokeOnResizeStart", "setKeyboardValue", "invokeOnResizeEnd"]
|
|
770
770
|
},
|
|
771
771
|
"FOCUS.CYCLE": {
|
|
772
772
|
actions: ["focusNextResizeTrigger"]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/splitter",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Core logic for the splitter widget implemented as a state machine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"url": "https://github.com/chakra-ui/zag/issues"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@zag-js/anatomy": "1.
|
|
31
|
-
"@zag-js/core": "1.
|
|
32
|
-
"@zag-js/types": "1.
|
|
33
|
-
"@zag-js/dom-query": "1.
|
|
34
|
-
"@zag-js/utils": "1.
|
|
30
|
+
"@zag-js/anatomy": "1.6.0",
|
|
31
|
+
"@zag-js/core": "1.6.0",
|
|
32
|
+
"@zag-js/types": "1.6.0",
|
|
33
|
+
"@zag-js/dom-query": "1.6.0",
|
|
34
|
+
"@zag-js/utils": "1.6.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"clean-package": "2.2.0"
|