@zag-js/tabs 1.43.2 → 1.43.3
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/tabs.types.d.mts +11 -11
- package/dist/tabs.types.d.ts +11 -11
- package/package.json +6 -6
package/dist/tabs.types.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Machine, EventObject, Service } from '@zag-js/core';
|
|
2
|
-
import { PropTypes,
|
|
2
|
+
import { PropTypes, RequiredBy, DirectionProperty, CommonProperties, Rect } from '@zag-js/types';
|
|
3
3
|
|
|
4
4
|
interface ValueChangeDetails {
|
|
5
5
|
value: string;
|
|
@@ -12,16 +12,16 @@ interface NavigateDetails {
|
|
|
12
12
|
node: HTMLAnchorElement;
|
|
13
13
|
href: string;
|
|
14
14
|
}
|
|
15
|
-
|
|
16
|
-
listLabel
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
root
|
|
20
|
-
trigger
|
|
21
|
-
list
|
|
22
|
-
content
|
|
23
|
-
indicator
|
|
24
|
-
}
|
|
15
|
+
interface IntlTranslations {
|
|
16
|
+
listLabel?: string | undefined;
|
|
17
|
+
}
|
|
18
|
+
interface ElementIds {
|
|
19
|
+
root?: string | undefined;
|
|
20
|
+
trigger?: ((value: string) => string) | undefined;
|
|
21
|
+
list?: string | undefined;
|
|
22
|
+
content?: ((value: string) => string) | undefined;
|
|
23
|
+
indicator?: string | undefined;
|
|
24
|
+
}
|
|
25
25
|
interface TabsProps extends DirectionProperty, CommonProperties {
|
|
26
26
|
/**
|
|
27
27
|
* The ids of the elements in the tabs. Useful for composition.
|
package/dist/tabs.types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Machine, EventObject, Service } from '@zag-js/core';
|
|
2
|
-
import { PropTypes,
|
|
2
|
+
import { PropTypes, RequiredBy, DirectionProperty, CommonProperties, Rect } from '@zag-js/types';
|
|
3
3
|
|
|
4
4
|
interface ValueChangeDetails {
|
|
5
5
|
value: string;
|
|
@@ -12,16 +12,16 @@ interface NavigateDetails {
|
|
|
12
12
|
node: HTMLAnchorElement;
|
|
13
13
|
href: string;
|
|
14
14
|
}
|
|
15
|
-
|
|
16
|
-
listLabel
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
root
|
|
20
|
-
trigger
|
|
21
|
-
list
|
|
22
|
-
content
|
|
23
|
-
indicator
|
|
24
|
-
}
|
|
15
|
+
interface IntlTranslations {
|
|
16
|
+
listLabel?: string | undefined;
|
|
17
|
+
}
|
|
18
|
+
interface ElementIds {
|
|
19
|
+
root?: string | undefined;
|
|
20
|
+
trigger?: ((value: string) => string) | undefined;
|
|
21
|
+
list?: string | undefined;
|
|
22
|
+
content?: ((value: string) => string) | undefined;
|
|
23
|
+
indicator?: string | undefined;
|
|
24
|
+
}
|
|
25
25
|
interface TabsProps extends DirectionProperty, CommonProperties {
|
|
26
26
|
/**
|
|
27
27
|
* The ids of the elements in the tabs. Useful for composition.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/tabs",
|
|
3
|
-
"version": "1.43.
|
|
3
|
+
"version": "1.43.3",
|
|
4
4
|
"description": "Core logic for the tabs widget implemented as a state machine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"url": "https://github.com/chakra-ui/zag/issues"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@zag-js/anatomy": "1.43.
|
|
33
|
-
"@zag-js/dom-query": "1.43.
|
|
34
|
-
"@zag-js/utils": "1.43.
|
|
35
|
-
"@zag-js/core": "1.43.
|
|
36
|
-
"@zag-js/types": "1.43.
|
|
32
|
+
"@zag-js/anatomy": "1.43.3",
|
|
33
|
+
"@zag-js/dom-query": "1.43.3",
|
|
34
|
+
"@zag-js/utils": "1.43.3",
|
|
35
|
+
"@zag-js/core": "1.43.3",
|
|
36
|
+
"@zag-js/types": "1.43.3"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"clean-package": "2.2.0"
|