@zag-js/radio-group 0.17.0 → 0.18.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 +0 -8
- package/dist/index.d.ts +0 -8
- package/package.json +9 -9
- package/src/radio-group.types.ts +0 -8
package/dist/index.d.mts
CHANGED
|
@@ -36,10 +36,6 @@ type PublicContext = DirectionProperty & CommonProperties & {
|
|
|
36
36
|
* If `true`, the radio group will be disabled
|
|
37
37
|
*/
|
|
38
38
|
disabled?: boolean;
|
|
39
|
-
/**
|
|
40
|
-
* If `true`, the radio group will be readonly
|
|
41
|
-
*/
|
|
42
|
-
readOnly?: boolean;
|
|
43
39
|
/**
|
|
44
40
|
* Function called once a radio is checked
|
|
45
41
|
* @param value the value of the checked radio
|
|
@@ -72,10 +68,6 @@ type RadioProps = {
|
|
|
72
68
|
* If `true`, the radio will be disabled
|
|
73
69
|
*/
|
|
74
70
|
disabled?: boolean;
|
|
75
|
-
/**
|
|
76
|
-
* If `true`, the radio will be readonly
|
|
77
|
-
*/
|
|
78
|
-
readOnly?: boolean;
|
|
79
71
|
/**
|
|
80
72
|
* If `true`, the radio is marked as invalid.
|
|
81
73
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -36,10 +36,6 @@ type PublicContext = DirectionProperty & CommonProperties & {
|
|
|
36
36
|
* If `true`, the radio group will be disabled
|
|
37
37
|
*/
|
|
38
38
|
disabled?: boolean;
|
|
39
|
-
/**
|
|
40
|
-
* If `true`, the radio group will be readonly
|
|
41
|
-
*/
|
|
42
|
-
readOnly?: boolean;
|
|
43
39
|
/**
|
|
44
40
|
* Function called once a radio is checked
|
|
45
41
|
* @param value the value of the checked radio
|
|
@@ -72,10 +68,6 @@ type RadioProps = {
|
|
|
72
68
|
* If `true`, the radio will be disabled
|
|
73
69
|
*/
|
|
74
70
|
disabled?: boolean;
|
|
75
|
-
/**
|
|
76
|
-
* If `true`, the radio will be readonly
|
|
77
|
-
*/
|
|
78
|
-
readOnly?: boolean;
|
|
79
71
|
/**
|
|
80
72
|
* If `true`, the radio is marked as invalid.
|
|
81
73
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zag-js/radio-group",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.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/dom-query": "0.
|
|
33
|
-
"@zag-js/element-rect": "0.
|
|
34
|
-
"@zag-js/form-utils": "0.
|
|
35
|
-
"@zag-js/visually-hidden": "0.
|
|
36
|
-
"@zag-js/utils": "0.
|
|
37
|
-
"@zag-js/core": "0.
|
|
38
|
-
"@zag-js/types": "0.
|
|
31
|
+
"@zag-js/anatomy": "0.18.0",
|
|
32
|
+
"@zag-js/dom-query": "0.18.0",
|
|
33
|
+
"@zag-js/element-rect": "0.18.0",
|
|
34
|
+
"@zag-js/form-utils": "0.18.0",
|
|
35
|
+
"@zag-js/visually-hidden": "0.18.0",
|
|
36
|
+
"@zag-js/utils": "0.18.0",
|
|
37
|
+
"@zag-js/core": "0.18.0",
|
|
38
|
+
"@zag-js/types": "0.18.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"clean-package": "2.2.0"
|
package/src/radio-group.types.ts
CHANGED
|
@@ -35,10 +35,6 @@ type PublicContext = DirectionProperty &
|
|
|
35
35
|
* If `true`, the radio group will be disabled
|
|
36
36
|
*/
|
|
37
37
|
disabled?: boolean
|
|
38
|
-
/**
|
|
39
|
-
* If `true`, the radio group will be readonly
|
|
40
|
-
*/
|
|
41
|
-
readOnly?: boolean
|
|
42
38
|
/**
|
|
43
39
|
* Function called once a radio is checked
|
|
44
40
|
* @param value the value of the checked radio
|
|
@@ -113,10 +109,6 @@ export type RadioProps = {
|
|
|
113
109
|
* If `true`, the radio will be disabled
|
|
114
110
|
*/
|
|
115
111
|
disabled?: boolean
|
|
116
|
-
/**
|
|
117
|
-
* If `true`, the radio will be readonly
|
|
118
|
-
*/
|
|
119
|
-
readOnly?: boolean
|
|
120
112
|
/**
|
|
121
113
|
* If `true`, the radio is marked as invalid.
|
|
122
114
|
*/
|