@zag-js/tooltip 0.2.4 → 0.2.6
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/chunk-GQYNO326.mjs +14 -0
- package/dist/chunk-JWVFZJC7.mjs +359 -0
- package/dist/chunk-PFKIRGNP.mjs +146 -0
- package/dist/chunk-RRQRIZBA.mjs +9 -0
- package/dist/chunk-XZ6HXWV2.mjs +147 -0
- package/dist/index.d.ts +8 -946
- package/dist/index.js +36 -18
- package/dist/index.mjs +11 -619
- package/dist/tooltip.anatomy.d.ts +6 -0
- package/dist/tooltip.anatomy.js +34 -0
- package/dist/tooltip.anatomy.mjs +8 -0
- package/dist/tooltip.connect.d.ts +23 -0
- package/dist/tooltip.connect.js +308 -0
- package/dist/tooltip.connect.mjs +9 -0
- package/dist/tooltip.dom.d.ts +41 -0
- package/dist/tooltip.dom.js +156 -0
- package/dist/tooltip.dom.mjs +6 -0
- package/dist/tooltip.machine.d.ts +8 -0
- package/dist/tooltip.machine.js +528 -0
- package/dist/tooltip.machine.mjs +8 -0
- package/dist/tooltip.store.d.ts +9 -0
- package/dist/tooltip.store.js +38 -0
- package/dist/tooltip.store.mjs +6 -0
- package/dist/tooltip.types.d.ts +77 -0
- package/dist/tooltip.types.js +18 -0
- package/dist/tooltip.types.mjs +0 -0
- package/package.json +22 -12
package/package.json
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/tooltip",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Core logic for the tooltip widget implemented as a state machine",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"module": "dist/index.mjs",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
5
|
"keywords": [
|
|
9
6
|
"js",
|
|
10
7
|
"machine",
|
|
@@ -29,19 +26,32 @@
|
|
|
29
26
|
"url": "https://github.com/chakra-ui/zag/issues"
|
|
30
27
|
},
|
|
31
28
|
"dependencies": {
|
|
32
|
-
"@zag-js/anatomy": "0.1.
|
|
33
|
-
"@zag-js/core": "0.2.
|
|
34
|
-
"@zag-js/popper": "0.2.
|
|
35
|
-
"@zag-js/types": "0.3.
|
|
29
|
+
"@zag-js/anatomy": "0.1.3",
|
|
30
|
+
"@zag-js/core": "0.2.4",
|
|
31
|
+
"@zag-js/popper": "0.2.2",
|
|
32
|
+
"@zag-js/types": "0.3.2"
|
|
36
33
|
},
|
|
37
34
|
"devDependencies": {
|
|
38
|
-
"
|
|
39
|
-
"@zag-js/utils": "0.
|
|
35
|
+
"clean-package": "2.2.0",
|
|
36
|
+
"@zag-js/dom-utils": "0.2.2",
|
|
37
|
+
"@zag-js/utils": "0.3.2"
|
|
38
|
+
},
|
|
39
|
+
"clean-package": "../../../clean-package.config.json",
|
|
40
|
+
"main": "dist/index.js",
|
|
41
|
+
"module": "dist/index.mjs",
|
|
42
|
+
"types": "dist/index.d.ts",
|
|
43
|
+
"exports": {
|
|
44
|
+
".": {
|
|
45
|
+
"types": "./dist/index.d.ts",
|
|
46
|
+
"import": "./dist/index.mjs",
|
|
47
|
+
"require": "./dist/index.js"
|
|
48
|
+
},
|
|
49
|
+
"./package.json": "./package.json"
|
|
40
50
|
},
|
|
41
51
|
"scripts": {
|
|
42
|
-
"build-fast": "tsup src
|
|
52
|
+
"build-fast": "tsup src",
|
|
43
53
|
"start": "pnpm build --watch",
|
|
44
|
-
"build": "tsup src
|
|
54
|
+
"build": "tsup src --dts",
|
|
45
55
|
"test": "jest --config ../../../jest.config.js --rootDir . --passWithNoTests",
|
|
46
56
|
"lint": "eslint src --ext .ts,.tsx",
|
|
47
57
|
"test-ci": "pnpm test --ci --runInBand",
|