@zag-js/types 0.82.2 → 1.0.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/dist/index.js +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +9 -4
package/dist/index.d.mts
CHANGED
|
@@ -1448,7 +1448,7 @@ interface OrientationProperty {
|
|
|
1448
1448
|
* The orientation of the element.
|
|
1449
1449
|
* @default "horizontal"
|
|
1450
1450
|
*/
|
|
1451
|
-
orientation
|
|
1451
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
1452
1452
|
}
|
|
1453
1453
|
interface DirectionProperty {
|
|
1454
1454
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1448,7 +1448,7 @@ interface OrientationProperty {
|
|
|
1448
1448
|
* The orientation of the element.
|
|
1449
1449
|
* @default "horizontal"
|
|
1450
1450
|
*/
|
|
1451
|
-
orientation
|
|
1451
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
1452
1452
|
}
|
|
1453
1453
|
interface DirectionProperty {
|
|
1454
1454
|
/**
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"js",
|
|
6
6
|
"utils",
|
|
@@ -32,9 +32,14 @@
|
|
|
32
32
|
"types": "dist/index.d.ts",
|
|
33
33
|
"exports": {
|
|
34
34
|
".": {
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
"import": {
|
|
36
|
+
"types": "./dist/index.d.mts",
|
|
37
|
+
"default": "./dist/index.mjs"
|
|
38
|
+
},
|
|
39
|
+
"require": {
|
|
40
|
+
"types": "./dist/index.d.ts",
|
|
41
|
+
"default": "./dist/index.js"
|
|
42
|
+
}
|
|
38
43
|
},
|
|
39
44
|
"./package.json": "./package.json"
|
|
40
45
|
},
|