@zag-js/combobox 0.78.1 → 0.78.2
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 +6 -1
- package/dist/index.mjs +6 -1
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -1070,7 +1070,12 @@ function machine(userContext) {
|
|
|
1070
1070
|
});
|
|
1071
1071
|
},
|
|
1072
1072
|
hideOtherElements(ctx2) {
|
|
1073
|
-
return ariaHidden.ariaHidden([
|
|
1073
|
+
return ariaHidden.ariaHidden([
|
|
1074
|
+
dom.getInputEl(ctx2),
|
|
1075
|
+
dom.getContentEl(ctx2),
|
|
1076
|
+
dom.getTriggerEl(ctx2),
|
|
1077
|
+
dom.getClearTriggerEl(ctx2)
|
|
1078
|
+
]);
|
|
1074
1079
|
},
|
|
1075
1080
|
computePlacement(ctx2) {
|
|
1076
1081
|
const controlEl = () => dom.getControlEl(ctx2);
|
package/dist/index.mjs
CHANGED
|
@@ -1068,7 +1068,12 @@ function machine(userContext) {
|
|
|
1068
1068
|
});
|
|
1069
1069
|
},
|
|
1070
1070
|
hideOtherElements(ctx2) {
|
|
1071
|
-
return ariaHidden([
|
|
1071
|
+
return ariaHidden([
|
|
1072
|
+
dom.getInputEl(ctx2),
|
|
1073
|
+
dom.getContentEl(ctx2),
|
|
1074
|
+
dom.getTriggerEl(ctx2),
|
|
1075
|
+
dom.getClearTriggerEl(ctx2)
|
|
1076
|
+
]);
|
|
1072
1077
|
},
|
|
1073
1078
|
computePlacement(ctx2) {
|
|
1074
1079
|
const controlEl = () => dom.getControlEl(ctx2);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/combobox",
|
|
3
|
-
"version": "0.78.
|
|
3
|
+
"version": "0.78.2",
|
|
4
4
|
"description": "Core logic for the combobox widget implemented as a state machine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -26,16 +26,16 @@
|
|
|
26
26
|
"url": "https://github.com/chakra-ui/zag/issues"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@zag-js/anatomy": "0.78.
|
|
30
|
-
"@zag-js/aria-hidden": "0.78.
|
|
31
|
-
"@zag-js/collection": "0.78.
|
|
32
|
-
"@zag-js/core": "0.78.
|
|
33
|
-
"@zag-js/dismissable": "0.78.
|
|
34
|
-
"@zag-js/dom-query": "0.78.
|
|
35
|
-
"@zag-js/dom-event": "0.78.
|
|
36
|
-
"@zag-js/utils": "0.78.
|
|
37
|
-
"@zag-js/popper": "0.78.
|
|
38
|
-
"@zag-js/types": "0.78.
|
|
29
|
+
"@zag-js/anatomy": "0.78.2",
|
|
30
|
+
"@zag-js/aria-hidden": "0.78.2",
|
|
31
|
+
"@zag-js/collection": "0.78.2",
|
|
32
|
+
"@zag-js/core": "0.78.2",
|
|
33
|
+
"@zag-js/dismissable": "0.78.2",
|
|
34
|
+
"@zag-js/dom-query": "0.78.2",
|
|
35
|
+
"@zag-js/dom-event": "0.78.2",
|
|
36
|
+
"@zag-js/utils": "0.78.2",
|
|
37
|
+
"@zag-js/popper": "0.78.2",
|
|
38
|
+
"@zag-js/types": "0.78.2"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"clean-package": "2.2.0"
|