@zag-js/tooltip 0.0.0-dev-20230503151015 → 0.0.0-dev-20230503152147
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
CHANGED
|
@@ -101,7 +101,7 @@ function connect(state, send, normalize) {
|
|
|
101
101
|
/**
|
|
102
102
|
* Function to reposition the popover
|
|
103
103
|
*/
|
|
104
|
-
setPositioning(options) {
|
|
104
|
+
setPositioning(options = {}) {
|
|
105
105
|
send({ type: "SET_POSITIONING", options });
|
|
106
106
|
},
|
|
107
107
|
triggerProps: normalize.button({
|
package/dist/index.mjs
CHANGED
|
@@ -26,7 +26,7 @@ declare function connect<T extends PropTypes>(state: State, send: Send, normaliz
|
|
|
26
26
|
/**
|
|
27
27
|
* Function to reposition the popover
|
|
28
28
|
*/
|
|
29
|
-
setPositioning(options
|
|
29
|
+
setPositioning(options?: Partial<PositioningOptions>): void;
|
|
30
30
|
triggerProps: T["button"];
|
|
31
31
|
arrowProps: T["element"];
|
|
32
32
|
arrowTipProps: T["element"];
|
package/dist/tooltip.connect.js
CHANGED
package/dist/tooltip.connect.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/tooltip",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20230503152147",
|
|
4
4
|
"description": "Core logic for the tooltip widget implemented as a state machine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@zag-js/anatomy": "0.1.4",
|
|
30
|
-
"@zag-js/core": "0.0.0-dev-
|
|
30
|
+
"@zag-js/core": "0.0.0-dev-20230503152147",
|
|
31
31
|
"@zag-js/popper": "0.2.7",
|
|
32
32
|
"@zag-js/dom-query": "0.1.4",
|
|
33
33
|
"@zag-js/dom-event": "0.6.0",
|