@zag-js/radio-group 0.44.0 → 0.46.0
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +9 -9
package/dist/index.d.mts
CHANGED
|
@@ -113,8 +113,8 @@ declare function connect<T extends PropTypes>(state: State, send: Send, normaliz
|
|
|
113
113
|
|
|
114
114
|
declare function machine(userContext: UserDefinedContext): _zag_js_core.Machine<MachineContext, MachineState, _zag_js_core.StateMachine.AnyEventObject>;
|
|
115
115
|
|
|
116
|
-
declare const props: ("value" | "name" | "form" | "dir" | "disabled" | "id" | "
|
|
117
|
-
declare const splitProps: <Props extends Partial<UserDefinedContext>>(props: Props) => [Partial<UserDefinedContext>, Omit<Props, "value" | "name" | "form" | "dir" | "disabled" | "id" | "
|
|
116
|
+
declare const props: ("value" | "name" | "form" | "dir" | "disabled" | "id" | "orientation" | "ids" | "onValueChange" | "getRootNode")[];
|
|
117
|
+
declare const splitProps: <Props extends Partial<UserDefinedContext>>(props: Props) => [Partial<UserDefinedContext>, Omit<Props, "value" | "name" | "form" | "dir" | "disabled" | "id" | "orientation" | "ids" | "onValueChange" | "getRootNode">];
|
|
118
118
|
declare const itemProps: (keyof ItemProps)[];
|
|
119
119
|
declare const splitItemProps: <Props extends ItemProps>(props: Props) => [ItemProps, Omit<Props, keyof ItemProps>];
|
|
120
120
|
|
package/dist/index.d.ts
CHANGED
|
@@ -113,8 +113,8 @@ declare function connect<T extends PropTypes>(state: State, send: Send, normaliz
|
|
|
113
113
|
|
|
114
114
|
declare function machine(userContext: UserDefinedContext): _zag_js_core.Machine<MachineContext, MachineState, _zag_js_core.StateMachine.AnyEventObject>;
|
|
115
115
|
|
|
116
|
-
declare const props: ("value" | "name" | "form" | "dir" | "disabled" | "id" | "
|
|
117
|
-
declare const splitProps: <Props extends Partial<UserDefinedContext>>(props: Props) => [Partial<UserDefinedContext>, Omit<Props, "value" | "name" | "form" | "dir" | "disabled" | "id" | "
|
|
116
|
+
declare const props: ("value" | "name" | "form" | "dir" | "disabled" | "id" | "orientation" | "ids" | "onValueChange" | "getRootNode")[];
|
|
117
|
+
declare const splitProps: <Props extends Partial<UserDefinedContext>>(props: Props) => [Partial<UserDefinedContext>, Omit<Props, "value" | "name" | "form" | "dir" | "disabled" | "id" | "orientation" | "ids" | "onValueChange" | "getRootNode">];
|
|
118
118
|
declare const itemProps: (keyof ItemProps)[];
|
|
119
119
|
declare const splitItemProps: <Props extends ItemProps>(props: Props) => [ItemProps, Omit<Props, keyof ItemProps>];
|
|
120
120
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/radio-group",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.46.0",
|
|
4
4
|
"description": "Core logic for the radio group widget implemented as a state machine",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"js",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"url": "https://github.com/chakra-ui/zag/issues"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@zag-js/anatomy": "0.
|
|
32
|
-
"@zag-js/
|
|
33
|
-
"@zag-js/
|
|
34
|
-
"@zag-js/
|
|
35
|
-
"@zag-js/
|
|
36
|
-
"@zag-js/
|
|
37
|
-
"@zag-js/
|
|
38
|
-
"@zag-js/
|
|
31
|
+
"@zag-js/anatomy": "0.46.0",
|
|
32
|
+
"@zag-js/dom-query": "0.46.0",
|
|
33
|
+
"@zag-js/element-rect": "0.46.0",
|
|
34
|
+
"@zag-js/form-utils": "0.46.0",
|
|
35
|
+
"@zag-js/visually-hidden": "0.46.0",
|
|
36
|
+
"@zag-js/utils": "0.46.0",
|
|
37
|
+
"@zag-js/core": "0.46.0",
|
|
38
|
+
"@zag-js/types": "0.46.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"clean-package": "2.2.0"
|