@zag-js/popover 1.18.3 → 1.18.5
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 +12 -12
- package/dist/index.d.ts +12 -12
- package/package.json +11 -11
package/dist/index.d.mts
CHANGED
|
@@ -127,21 +127,21 @@ interface PopoverApi<T extends PropTypes = PropTypes> {
|
|
|
127
127
|
/**
|
|
128
128
|
* Function to open or close the popover
|
|
129
129
|
*/
|
|
130
|
-
setOpen(open: boolean)
|
|
130
|
+
setOpen: (open: boolean) => void;
|
|
131
131
|
/**
|
|
132
132
|
* Function to reposition the popover
|
|
133
133
|
*/
|
|
134
|
-
reposition(options?: Partial<PositioningOptions>)
|
|
135
|
-
getArrowProps()
|
|
136
|
-
getArrowTipProps()
|
|
137
|
-
getAnchorProps()
|
|
138
|
-
getTriggerProps()
|
|
139
|
-
getIndicatorProps()
|
|
140
|
-
getPositionerProps()
|
|
141
|
-
getContentProps()
|
|
142
|
-
getTitleProps()
|
|
143
|
-
getDescriptionProps()
|
|
144
|
-
getCloseTriggerProps()
|
|
134
|
+
reposition: (options?: Partial<PositioningOptions>) => void;
|
|
135
|
+
getArrowProps: () => T["element"];
|
|
136
|
+
getArrowTipProps: () => T["element"];
|
|
137
|
+
getAnchorProps: () => T["element"];
|
|
138
|
+
getTriggerProps: () => T["button"];
|
|
139
|
+
getIndicatorProps: () => T["element"];
|
|
140
|
+
getPositionerProps: () => T["element"];
|
|
141
|
+
getContentProps: () => T["element"];
|
|
142
|
+
getTitleProps: () => T["element"];
|
|
143
|
+
getDescriptionProps: () => T["element"];
|
|
144
|
+
getCloseTriggerProps: () => T["button"];
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
declare function connect<T extends PropTypes>(service: PopoverService, normalize: NormalizeProps<T>): PopoverApi<T>;
|
package/dist/index.d.ts
CHANGED
|
@@ -127,21 +127,21 @@ interface PopoverApi<T extends PropTypes = PropTypes> {
|
|
|
127
127
|
/**
|
|
128
128
|
* Function to open or close the popover
|
|
129
129
|
*/
|
|
130
|
-
setOpen(open: boolean)
|
|
130
|
+
setOpen: (open: boolean) => void;
|
|
131
131
|
/**
|
|
132
132
|
* Function to reposition the popover
|
|
133
133
|
*/
|
|
134
|
-
reposition(options?: Partial<PositioningOptions>)
|
|
135
|
-
getArrowProps()
|
|
136
|
-
getArrowTipProps()
|
|
137
|
-
getAnchorProps()
|
|
138
|
-
getTriggerProps()
|
|
139
|
-
getIndicatorProps()
|
|
140
|
-
getPositionerProps()
|
|
141
|
-
getContentProps()
|
|
142
|
-
getTitleProps()
|
|
143
|
-
getDescriptionProps()
|
|
144
|
-
getCloseTriggerProps()
|
|
134
|
+
reposition: (options?: Partial<PositioningOptions>) => void;
|
|
135
|
+
getArrowProps: () => T["element"];
|
|
136
|
+
getArrowTipProps: () => T["element"];
|
|
137
|
+
getAnchorProps: () => T["element"];
|
|
138
|
+
getTriggerProps: () => T["button"];
|
|
139
|
+
getIndicatorProps: () => T["element"];
|
|
140
|
+
getPositionerProps: () => T["element"];
|
|
141
|
+
getContentProps: () => T["element"];
|
|
142
|
+
getTitleProps: () => T["element"];
|
|
143
|
+
getDescriptionProps: () => T["element"];
|
|
144
|
+
getCloseTriggerProps: () => T["button"];
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
declare function connect<T extends PropTypes>(service: PopoverService, normalize: NormalizeProps<T>): PopoverApi<T>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/popover",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.5",
|
|
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/anatomy": "1.18.
|
|
30
|
-
"@zag-js/aria-hidden": "1.18.
|
|
31
|
-
"@zag-js/core": "1.18.
|
|
32
|
-
"@zag-js/dom-query": "1.18.
|
|
33
|
-
"@zag-js/utils": "1.18.
|
|
34
|
-
"@zag-js/dismissable": "1.18.
|
|
35
|
-
"@zag-js/popper": "1.18.
|
|
36
|
-
"@zag-js/remove-scroll": "1.18.
|
|
37
|
-
"@zag-js/types": "1.18.
|
|
38
|
-
"@zag-js/focus-trap": "1.18.
|
|
29
|
+
"@zag-js/anatomy": "1.18.5",
|
|
30
|
+
"@zag-js/aria-hidden": "1.18.5",
|
|
31
|
+
"@zag-js/core": "1.18.5",
|
|
32
|
+
"@zag-js/dom-query": "1.18.5",
|
|
33
|
+
"@zag-js/utils": "1.18.5",
|
|
34
|
+
"@zag-js/dismissable": "1.18.5",
|
|
35
|
+
"@zag-js/popper": "1.18.5",
|
|
36
|
+
"@zag-js/remove-scroll": "1.18.5",
|
|
37
|
+
"@zag-js/types": "1.18.5",
|
|
38
|
+
"@zag-js/focus-trap": "1.18.5"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"clean-package": "2.2.0"
|