@zag-js/popover 1.22.1 → 1.24.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 -0
- package/dist/index.mjs +1 -0
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -298,6 +298,7 @@ var machine = core.createMachine({
|
|
|
298
298
|
const getContentEl2 = () => getContentEl(scope);
|
|
299
299
|
let restoreFocus = true;
|
|
300
300
|
return dismissable.trackDismissableElement(getContentEl2, {
|
|
301
|
+
type: "popover",
|
|
301
302
|
pointerBlocking: prop("modal"),
|
|
302
303
|
exclude: getTriggerEl(scope),
|
|
303
304
|
defer: true,
|
package/dist/index.mjs
CHANGED
|
@@ -296,6 +296,7 @@ var machine = createMachine({
|
|
|
296
296
|
const getContentEl2 = () => getContentEl(scope);
|
|
297
297
|
let restoreFocus = true;
|
|
298
298
|
return trackDismissableElement(getContentEl2, {
|
|
299
|
+
type: "popover",
|
|
299
300
|
pointerBlocking: prop("modal"),
|
|
300
301
|
exclude: getTriggerEl(scope),
|
|
301
302
|
defer: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/popover",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.24.0",
|
|
4
4
|
"description": "Core logic for the popover 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/
|
|
30
|
-
"@zag-js/
|
|
31
|
-
"@zag-js/
|
|
32
|
-
"@zag-js/
|
|
33
|
-
"@zag-js/
|
|
34
|
-
"@zag-js/dismissable": "1.
|
|
35
|
-
"@zag-js/popper": "1.
|
|
36
|
-
"@zag-js/remove-scroll": "1.
|
|
37
|
-
"@zag-js/types": "1.
|
|
38
|
-
"@zag-js/focus-trap": "1.
|
|
29
|
+
"@zag-js/aria-hidden": "1.24.0",
|
|
30
|
+
"@zag-js/core": "1.24.0",
|
|
31
|
+
"@zag-js/dom-query": "1.24.0",
|
|
32
|
+
"@zag-js/utils": "1.24.0",
|
|
33
|
+
"@zag-js/anatomy": "1.24.0",
|
|
34
|
+
"@zag-js/dismissable": "1.24.0",
|
|
35
|
+
"@zag-js/popper": "1.24.0",
|
|
36
|
+
"@zag-js/remove-scroll": "1.24.0",
|
|
37
|
+
"@zag-js/types": "1.24.0",
|
|
38
|
+
"@zag-js/focus-trap": "1.24.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"clean-package": "2.2.0"
|