@zag-js/combobox 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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +10 -10
package/dist/index.js
CHANGED
|
@@ -841,11 +841,11 @@ var machine = core.createMachine({
|
|
|
841
841
|
{
|
|
842
842
|
guard: "autoComplete",
|
|
843
843
|
target: "suggesting",
|
|
844
|
-
actions: ["setInputValue"
|
|
844
|
+
actions: ["setInputValue"]
|
|
845
845
|
},
|
|
846
846
|
{
|
|
847
847
|
target: "suggesting",
|
|
848
|
-
actions: ["clearHighlightedItem", "setInputValue"
|
|
848
|
+
actions: ["clearHighlightedItem", "setInputValue"]
|
|
849
849
|
}
|
|
850
850
|
],
|
|
851
851
|
"ITEM.POINTER_MOVE": {
|
package/dist/index.mjs
CHANGED
|
@@ -839,11 +839,11 @@ var machine = createMachine({
|
|
|
839
839
|
{
|
|
840
840
|
guard: "autoComplete",
|
|
841
841
|
target: "suggesting",
|
|
842
|
-
actions: ["setInputValue"
|
|
842
|
+
actions: ["setInputValue"]
|
|
843
843
|
},
|
|
844
844
|
{
|
|
845
845
|
target: "suggesting",
|
|
846
|
-
actions: ["clearHighlightedItem", "setInputValue"
|
|
846
|
+
actions: ["clearHighlightedItem", "setInputValue"]
|
|
847
847
|
}
|
|
848
848
|
],
|
|
849
849
|
"ITEM.POINTER_MOVE": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/combobox",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Core logic for the combobox widget implemented as a state machine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -26,15 +26,15 @@
|
|
|
26
26
|
"url": "https://github.com/chakra-ui/zag/issues"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@zag-js/anatomy": "1.
|
|
30
|
-
"@zag-js/aria-hidden": "1.
|
|
31
|
-
"@zag-js/collection": "1.
|
|
32
|
-
"@zag-js/core": "1.
|
|
33
|
-
"@zag-js/dismissable": "1.
|
|
34
|
-
"@zag-js/dom-query": "1.
|
|
35
|
-
"@zag-js/utils": "1.
|
|
36
|
-
"@zag-js/popper": "1.
|
|
37
|
-
"@zag-js/types": "1.
|
|
29
|
+
"@zag-js/anatomy": "1.6.0",
|
|
30
|
+
"@zag-js/aria-hidden": "1.6.0",
|
|
31
|
+
"@zag-js/collection": "1.6.0",
|
|
32
|
+
"@zag-js/core": "1.6.0",
|
|
33
|
+
"@zag-js/dismissable": "1.6.0",
|
|
34
|
+
"@zag-js/dom-query": "1.6.0",
|
|
35
|
+
"@zag-js/utils": "1.6.0",
|
|
36
|
+
"@zag-js/popper": "1.6.0",
|
|
37
|
+
"@zag-js/types": "1.6.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"clean-package": "2.2.0"
|