@tamagui/radio-group 1.88.8 → 1.88.10
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/package.json +14 -14
- package/types/RadioGroup.d.ts +10 -104
- package/types/RadioGroup.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/radio-group",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.10",
|
|
4
4
|
"removeSideEffects": true,
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css"
|
|
@@ -33,24 +33,24 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@tamagui/compose-refs": "1.88.
|
|
37
|
-
"@tamagui/constants": "1.88.
|
|
38
|
-
"@tamagui/core": "1.88.
|
|
39
|
-
"@tamagui/create-context": "1.88.
|
|
40
|
-
"@tamagui/focusable": "1.88.
|
|
41
|
-
"@tamagui/get-token": "1.88.
|
|
42
|
-
"@tamagui/helpers": "1.88.
|
|
43
|
-
"@tamagui/label": "1.88.
|
|
44
|
-
"@tamagui/roving-focus": "1.88.
|
|
45
|
-
"@tamagui/stacks": "1.88.
|
|
46
|
-
"@tamagui/use-controllable-state": "1.88.
|
|
47
|
-
"@tamagui/use-previous": "1.88.
|
|
36
|
+
"@tamagui/compose-refs": "1.88.10",
|
|
37
|
+
"@tamagui/constants": "1.88.10",
|
|
38
|
+
"@tamagui/core": "1.88.10",
|
|
39
|
+
"@tamagui/create-context": "1.88.10",
|
|
40
|
+
"@tamagui/focusable": "1.88.10",
|
|
41
|
+
"@tamagui/get-token": "1.88.10",
|
|
42
|
+
"@tamagui/helpers": "1.88.10",
|
|
43
|
+
"@tamagui/label": "1.88.10",
|
|
44
|
+
"@tamagui/roving-focus": "1.88.10",
|
|
45
|
+
"@tamagui/stacks": "1.88.10",
|
|
46
|
+
"@tamagui/use-controllable-state": "1.88.10",
|
|
47
|
+
"@tamagui/use-previous": "1.88.10"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "*"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@tamagui/build": "1.88.
|
|
53
|
+
"@tamagui/build": "1.88.10",
|
|
54
54
|
"react": "^18.2.0"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
package/types/RadioGroup.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ type RadioGroupProps = GetProps<typeof RadioGroupFrame> & {
|
|
|
29
29
|
native?: boolean;
|
|
30
30
|
accentColor?: string;
|
|
31
31
|
};
|
|
32
|
-
declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
32
|
+
declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "pressTheme" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
33
33
|
pressTheme?: boolean | undefined;
|
|
34
34
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
35
35
|
transparent?: boolean | undefined;
|
|
@@ -44,7 +44,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
44
44
|
padded?: boolean | undefined;
|
|
45
45
|
chromeless?: boolean | "all" | undefined;
|
|
46
46
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
47
|
-
}
|
|
47
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
48
48
|
pressTheme?: boolean | undefined;
|
|
49
49
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
50
50
|
transparent?: boolean | undefined;
|
|
@@ -59,37 +59,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
59
59
|
padded?: boolean | undefined;
|
|
60
60
|
chromeless?: boolean | "all" | undefined;
|
|
61
61
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
62
|
-
}
|
|
63
|
-
pressTheme?: boolean | undefined;
|
|
64
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
65
|
-
transparent?: boolean | undefined;
|
|
66
|
-
fullscreen?: boolean | undefined;
|
|
67
|
-
circular?: boolean | undefined;
|
|
68
|
-
hoverTheme?: boolean | undefined;
|
|
69
|
-
focusTheme?: boolean | undefined;
|
|
70
|
-
elevate?: boolean | undefined;
|
|
71
|
-
bordered?: number | boolean | undefined;
|
|
72
|
-
backgrounded?: boolean | undefined;
|
|
73
|
-
radiused?: boolean | undefined;
|
|
74
|
-
padded?: boolean | undefined;
|
|
75
|
-
chromeless?: boolean | "all" | undefined;
|
|
76
|
-
orientation?: "horizontal" | "vertical" | undefined;
|
|
77
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
78
|
-
pressTheme?: boolean | undefined;
|
|
79
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
80
|
-
transparent?: boolean | undefined;
|
|
81
|
-
fullscreen?: boolean | undefined;
|
|
82
|
-
circular?: boolean | undefined;
|
|
83
|
-
hoverTheme?: boolean | undefined;
|
|
84
|
-
focusTheme?: boolean | undefined;
|
|
85
|
-
elevate?: boolean | undefined;
|
|
86
|
-
bordered?: number | boolean | undefined;
|
|
87
|
-
backgrounded?: boolean | undefined;
|
|
88
|
-
radiused?: boolean | undefined;
|
|
89
|
-
padded?: boolean | undefined;
|
|
90
|
-
chromeless?: boolean | "all" | undefined;
|
|
91
|
-
orientation?: "horizontal" | "vertical" | undefined;
|
|
92
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
62
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
93
63
|
pressTheme?: boolean | undefined;
|
|
94
64
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
95
65
|
transparent?: boolean | undefined;
|
|
@@ -114,37 +84,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
114
84
|
native?: boolean | undefined;
|
|
115
85
|
accentColor?: string | undefined;
|
|
116
86
|
} & React.RefAttributes<TamaguiElement>> & {
|
|
117
|
-
Indicator: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
118
|
-
unstyled?: boolean | undefined;
|
|
119
|
-
pressTheme?: boolean | undefined;
|
|
120
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
121
|
-
transparent?: boolean | undefined;
|
|
122
|
-
fullscreen?: boolean | undefined;
|
|
123
|
-
circular?: boolean | undefined;
|
|
124
|
-
hoverTheme?: boolean | undefined;
|
|
125
|
-
focusTheme?: boolean | undefined;
|
|
126
|
-
elevate?: boolean | undefined;
|
|
127
|
-
bordered?: number | boolean | undefined;
|
|
128
|
-
backgrounded?: boolean | undefined;
|
|
129
|
-
radiused?: boolean | undefined;
|
|
130
|
-
padded?: boolean | undefined;
|
|
131
|
-
chromeless?: boolean | "all" | undefined;
|
|
132
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
133
|
-
unstyled?: boolean | undefined;
|
|
134
|
-
pressTheme?: boolean | undefined;
|
|
135
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
136
|
-
transparent?: boolean | undefined;
|
|
137
|
-
fullscreen?: boolean | undefined;
|
|
138
|
-
circular?: boolean | undefined;
|
|
139
|
-
hoverTheme?: boolean | undefined;
|
|
140
|
-
focusTheme?: boolean | undefined;
|
|
141
|
-
elevate?: boolean | undefined;
|
|
142
|
-
bordered?: number | boolean | undefined;
|
|
143
|
-
backgrounded?: boolean | undefined;
|
|
144
|
-
radiused?: boolean | undefined;
|
|
145
|
-
padded?: boolean | undefined;
|
|
146
|
-
chromeless?: boolean | "all" | undefined;
|
|
147
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
87
|
+
Indicator: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "pressTheme" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
148
88
|
unstyled?: boolean | undefined;
|
|
149
89
|
pressTheme?: boolean | undefined;
|
|
150
90
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -159,7 +99,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
159
99
|
radiused?: boolean | undefined;
|
|
160
100
|
padded?: boolean | undefined;
|
|
161
101
|
chromeless?: boolean | "all" | undefined;
|
|
162
|
-
}
|
|
102
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
163
103
|
unstyled?: boolean | undefined;
|
|
164
104
|
pressTheme?: boolean | undefined;
|
|
165
105
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -174,7 +114,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
174
114
|
radiused?: boolean | undefined;
|
|
175
115
|
padded?: boolean | undefined;
|
|
176
116
|
chromeless?: boolean | "all" | undefined;
|
|
177
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
117
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
178
118
|
unstyled?: boolean | undefined;
|
|
179
119
|
pressTheme?: boolean | undefined;
|
|
180
120
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -193,28 +133,11 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
193
133
|
forceMount?: boolean | undefined;
|
|
194
134
|
unstyled?: boolean | undefined;
|
|
195
135
|
} & React.RefAttributes<TamaguiElement>>;
|
|
196
|
-
Item: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
136
|
+
Item: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "pressTheme" | "disabled" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
197
137
|
unstyled?: boolean | undefined;
|
|
198
138
|
pressTheme?: boolean | undefined;
|
|
199
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
200
139
|
disabled?: boolean | undefined;
|
|
201
|
-
transparent?: boolean | undefined;
|
|
202
|
-
fullscreen?: boolean | undefined;
|
|
203
|
-
circular?: boolean | undefined;
|
|
204
|
-
hoverTheme?: boolean | undefined;
|
|
205
|
-
focusTheme?: boolean | undefined;
|
|
206
|
-
elevate?: boolean | undefined;
|
|
207
|
-
bordered?: number | boolean | undefined;
|
|
208
|
-
backgrounded?: boolean | undefined;
|
|
209
|
-
radiused?: boolean | undefined;
|
|
210
|
-
padded?: boolean | undefined;
|
|
211
|
-
chromeless?: boolean | "all" | undefined;
|
|
212
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
213
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
214
|
-
unstyled?: boolean | undefined;
|
|
215
|
-
pressTheme?: boolean | undefined;
|
|
216
140
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
217
|
-
disabled?: boolean | undefined;
|
|
218
141
|
transparent?: boolean | undefined;
|
|
219
142
|
fullscreen?: boolean | undefined;
|
|
220
143
|
circular?: boolean | undefined;
|
|
@@ -227,28 +150,11 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
227
150
|
padded?: boolean | undefined;
|
|
228
151
|
chromeless?: boolean | "all" | undefined;
|
|
229
152
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
230
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
153
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
231
154
|
unstyled?: boolean | undefined;
|
|
232
155
|
pressTheme?: boolean | undefined;
|
|
233
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
234
156
|
disabled?: boolean | undefined;
|
|
235
|
-
transparent?: boolean | undefined;
|
|
236
|
-
fullscreen?: boolean | undefined;
|
|
237
|
-
circular?: boolean | undefined;
|
|
238
|
-
hoverTheme?: boolean | undefined;
|
|
239
|
-
focusTheme?: boolean | undefined;
|
|
240
|
-
elevate?: boolean | undefined;
|
|
241
|
-
bordered?: number | boolean | undefined;
|
|
242
|
-
backgrounded?: boolean | undefined;
|
|
243
|
-
radiused?: boolean | undefined;
|
|
244
|
-
padded?: boolean | undefined;
|
|
245
|
-
chromeless?: boolean | "all" | undefined;
|
|
246
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
247
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
248
|
-
unstyled?: boolean | undefined;
|
|
249
|
-
pressTheme?: boolean | undefined;
|
|
250
157
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
251
|
-
disabled?: boolean | undefined;
|
|
252
158
|
transparent?: boolean | undefined;
|
|
253
159
|
fullscreen?: boolean | undefined;
|
|
254
160
|
circular?: boolean | undefined;
|
|
@@ -261,11 +167,11 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
261
167
|
padded?: boolean | undefined;
|
|
262
168
|
chromeless?: boolean | "all" | undefined;
|
|
263
169
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
264
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
170
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
265
171
|
unstyled?: boolean | undefined;
|
|
266
172
|
pressTheme?: boolean | undefined;
|
|
267
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
268
173
|
disabled?: boolean | undefined;
|
|
174
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
269
175
|
transparent?: boolean | undefined;
|
|
270
176
|
fullscreen?: boolean | undefined;
|
|
271
177
|
circular?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["../src/RadioGroup.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,EAA4B,MAAM,eAAe,CAAA;AAUlE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAMnC,QAAA,MAAgC,qBAAqB,+CACf,CAAA;AA6ZtC,KAAK,cAAc,GAAG,WAAW,GAAG,IAAI,CAAA;AAIxC,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;MAenB,CAAA;AAEF,KAAK,eAAe,GAAG,QAAQ,CAAC,OAAO,eAAe,CAAC,GAAG;IACxD,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IACvC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,QAAA,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["../src/RadioGroup.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,QAAQ,EAA4B,MAAM,eAAe,CAAA;AAUlE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAMnC,QAAA,MAAgC,qBAAqB,+CACf,CAAA;AA6ZtC,KAAK,cAAc,GAAG,WAAW,GAAG,IAAI,CAAA;AAIxC,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;MAenB,CAAA;AAEF,KAAK,eAAe,GAAG,QAAQ,CAAC,OAAO,eAAe,CAAC,GAAG;IACxD,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IACvC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BARU,MAAM,KAAK,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eA7QhC,MAAM;;;;;CA8Ud,CAAA;AAID,OAAO,EAAE,qBAAqB,EAAE,UAAU,EAAE,CAAA;AAC5C,YAAY,EAAE,eAAe,EAAE,CAAA"}
|