@zag-js/interact-outside 0.30.0 → 0.31.1
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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -28,4 +28,4 @@ type MaybeElement = HTMLElement | null | undefined;
|
|
|
28
28
|
type NodeOrFn = MaybeElement | (() => MaybeElement);
|
|
29
29
|
declare function trackInteractOutside(nodeOrFn: NodeOrFn, options: InteractOutsideOptions): () => void;
|
|
30
30
|
|
|
31
|
-
export { EventDetails, FocusOutsideEvent, InteractOutsideEvent, InteractOutsideHandlers, InteractOutsideOptions, MaybeElement, NodeOrFn, PointerDownOutsideEvent, trackInteractOutside };
|
|
31
|
+
export { type EventDetails, type FocusOutsideEvent, type InteractOutsideEvent, type InteractOutsideHandlers, type InteractOutsideOptions, type MaybeElement, type NodeOrFn, type PointerDownOutsideEvent, trackInteractOutside };
|
package/dist/index.d.ts
CHANGED
|
@@ -28,4 +28,4 @@ type MaybeElement = HTMLElement | null | undefined;
|
|
|
28
28
|
type NodeOrFn = MaybeElement | (() => MaybeElement);
|
|
29
29
|
declare function trackInteractOutside(nodeOrFn: NodeOrFn, options: InteractOutsideOptions): () => void;
|
|
30
30
|
|
|
31
|
-
export { EventDetails, FocusOutsideEvent, InteractOutsideEvent, InteractOutsideHandlers, InteractOutsideOptions, MaybeElement, NodeOrFn, PointerDownOutsideEvent, trackInteractOutside };
|
|
31
|
+
export { type EventDetails, type FocusOutsideEvent, type InteractOutsideEvent, type InteractOutsideHandlers, type InteractOutsideOptions, type MaybeElement, type NodeOrFn, type PointerDownOutsideEvent, trackInteractOutside };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/interact-outside",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.1",
|
|
4
4
|
"description": "Track interations or focus outside an element",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"src"
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@zag-js/dom-query": "0.
|
|
21
|
-
"@zag-js/dom-event": "0.
|
|
22
|
-
"@zag-js/tabbable": "0.
|
|
23
|
-
"@zag-js/utils": "0.
|
|
20
|
+
"@zag-js/dom-query": "0.31.1",
|
|
21
|
+
"@zag-js/dom-event": "0.31.1",
|
|
22
|
+
"@zag-js/tabbable": "0.31.1",
|
|
23
|
+
"@zag-js/utils": "0.31.1"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"clean-package": "2.2.0"
|