@zag-js/tooltip 1.18.4 → 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 +7 -7
- package/dist/index.d.ts +7 -7
- package/package.json +9 -9
package/dist/index.d.mts
CHANGED
|
@@ -108,16 +108,16 @@ interface TooltipApi<T extends PropTypes = PropTypes> {
|
|
|
108
108
|
/**
|
|
109
109
|
* Function to open the tooltip.
|
|
110
110
|
*/
|
|
111
|
-
setOpen(open: boolean)
|
|
111
|
+
setOpen: (open: boolean) => void;
|
|
112
112
|
/**
|
|
113
113
|
* Function to reposition the popover
|
|
114
114
|
*/
|
|
115
|
-
reposition(options?: Partial<PositioningOptions>)
|
|
116
|
-
getTriggerProps()
|
|
117
|
-
getArrowProps()
|
|
118
|
-
getArrowTipProps()
|
|
119
|
-
getPositionerProps()
|
|
120
|
-
getContentProps()
|
|
115
|
+
reposition: (options?: Partial<PositioningOptions>) => void;
|
|
116
|
+
getTriggerProps: () => T["button"];
|
|
117
|
+
getArrowProps: () => T["element"];
|
|
118
|
+
getArrowTipProps: () => T["element"];
|
|
119
|
+
getPositionerProps: () => T["element"];
|
|
120
|
+
getContentProps: () => T["element"];
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
declare function connect<P extends PropTypes>(service: Service<TooltipSchema>, normalize: NormalizeProps<P>): TooltipApi<P>;
|
package/dist/index.d.ts
CHANGED
|
@@ -108,16 +108,16 @@ interface TooltipApi<T extends PropTypes = PropTypes> {
|
|
|
108
108
|
/**
|
|
109
109
|
* Function to open the tooltip.
|
|
110
110
|
*/
|
|
111
|
-
setOpen(open: boolean)
|
|
111
|
+
setOpen: (open: boolean) => void;
|
|
112
112
|
/**
|
|
113
113
|
* Function to reposition the popover
|
|
114
114
|
*/
|
|
115
|
-
reposition(options?: Partial<PositioningOptions>)
|
|
116
|
-
getTriggerProps()
|
|
117
|
-
getArrowProps()
|
|
118
|
-
getArrowTipProps()
|
|
119
|
-
getPositionerProps()
|
|
120
|
-
getContentProps()
|
|
115
|
+
reposition: (options?: Partial<PositioningOptions>) => void;
|
|
116
|
+
getTriggerProps: () => T["button"];
|
|
117
|
+
getArrowProps: () => T["element"];
|
|
118
|
+
getArrowTipProps: () => T["element"];
|
|
119
|
+
getPositionerProps: () => T["element"];
|
|
120
|
+
getContentProps: () => T["element"];
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
declare function connect<P extends PropTypes>(service: Service<TooltipSchema>, normalize: NormalizeProps<P>): TooltipApi<P>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/tooltip",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.5",
|
|
4
4
|
"description": "Core logic for the tooltip widget implemented as a state machine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
"url": "https://github.com/chakra-ui/zag/issues"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@zag-js/anatomy": "1.18.
|
|
30
|
-
"@zag-js/core": "1.18.
|
|
31
|
-
"@zag-js/store": "1.18.
|
|
32
|
-
"@zag-js/popper": "1.18.
|
|
33
|
-
"@zag-js/focus-visible": "1.18.
|
|
34
|
-
"@zag-js/dom-query": "1.18.
|
|
35
|
-
"@zag-js/utils": "1.18.
|
|
36
|
-
"@zag-js/types": "1.18.
|
|
29
|
+
"@zag-js/anatomy": "1.18.5",
|
|
30
|
+
"@zag-js/core": "1.18.5",
|
|
31
|
+
"@zag-js/store": "1.18.5",
|
|
32
|
+
"@zag-js/popper": "1.18.5",
|
|
33
|
+
"@zag-js/focus-visible": "1.18.5",
|
|
34
|
+
"@zag-js/dom-query": "1.18.5",
|
|
35
|
+
"@zag-js/utils": "1.18.5",
|
|
36
|
+
"@zag-js/types": "1.18.5"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"clean-package": "2.2.0"
|