@tamagui/radio-group 1.88.8 → 1.88.9
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 +20 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/radio-group",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.9",
|
|
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.9",
|
|
37
|
+
"@tamagui/constants": "1.88.9",
|
|
38
|
+
"@tamagui/core": "1.88.9",
|
|
39
|
+
"@tamagui/create-context": "1.88.9",
|
|
40
|
+
"@tamagui/focusable": "1.88.9",
|
|
41
|
+
"@tamagui/get-token": "1.88.9",
|
|
42
|
+
"@tamagui/helpers": "1.88.9",
|
|
43
|
+
"@tamagui/label": "1.88.9",
|
|
44
|
+
"@tamagui/roving-focus": "1.88.9",
|
|
45
|
+
"@tamagui/stacks": "1.88.9",
|
|
46
|
+
"@tamagui/use-controllable-state": "1.88.9",
|
|
47
|
+
"@tamagui/use-previous": "1.88.9"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "*"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@tamagui/build": "1.88.
|
|
53
|
+
"@tamagui/build": "1.88.9",
|
|
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
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
47
|
+
}> & import("@tamagui/core").WithShorthands<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,7 +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
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
62
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
63
63
|
pressTheme?: boolean | undefined;
|
|
64
64
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
65
65
|
transparent?: boolean | undefined;
|
|
@@ -74,7 +74,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
74
74
|
padded?: boolean | undefined;
|
|
75
75
|
chromeless?: boolean | "all" | undefined;
|
|
76
76
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
77
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
77
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
78
78
|
pressTheme?: boolean | undefined;
|
|
79
79
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
80
80
|
transparent?: boolean | undefined;
|
|
@@ -89,7 +89,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
89
89
|
padded?: boolean | undefined;
|
|
90
90
|
chromeless?: boolean | "all" | undefined;
|
|
91
91
|
orientation?: "horizontal" | "vertical" | undefined;
|
|
92
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
92
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
93
93
|
pressTheme?: boolean | undefined;
|
|
94
94
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
95
95
|
transparent?: boolean | undefined;
|
|
@@ -114,7 +114,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
114
114
|
native?: boolean | undefined;
|
|
115
115
|
accentColor?: string | undefined;
|
|
116
116
|
} & 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
|
|
117
|
+
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 & {
|
|
118
118
|
unstyled?: boolean | undefined;
|
|
119
119
|
pressTheme?: boolean | undefined;
|
|
120
120
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -129,7 +129,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
129
129
|
radiused?: boolean | undefined;
|
|
130
130
|
padded?: boolean | undefined;
|
|
131
131
|
chromeless?: boolean | "all" | undefined;
|
|
132
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
132
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
133
133
|
unstyled?: boolean | undefined;
|
|
134
134
|
pressTheme?: boolean | undefined;
|
|
135
135
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -144,7 +144,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
144
144
|
radiused?: boolean | undefined;
|
|
145
145
|
padded?: boolean | undefined;
|
|
146
146
|
chromeless?: boolean | "all" | undefined;
|
|
147
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
147
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
148
148
|
unstyled?: boolean | undefined;
|
|
149
149
|
pressTheme?: boolean | undefined;
|
|
150
150
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -159,7 +159,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
159
159
|
radiused?: boolean | undefined;
|
|
160
160
|
padded?: boolean | undefined;
|
|
161
161
|
chromeless?: boolean | "all" | undefined;
|
|
162
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
162
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
163
163
|
unstyled?: boolean | undefined;
|
|
164
164
|
pressTheme?: boolean | undefined;
|
|
165
165
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -174,7 +174,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
174
174
|
radiused?: boolean | undefined;
|
|
175
175
|
padded?: boolean | undefined;
|
|
176
176
|
chromeless?: boolean | "all" | undefined;
|
|
177
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
177
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
178
178
|
unstyled?: boolean | undefined;
|
|
179
179
|
pressTheme?: boolean | undefined;
|
|
180
180
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -193,11 +193,11 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
193
193
|
forceMount?: boolean | undefined;
|
|
194
194
|
unstyled?: boolean | undefined;
|
|
195
195
|
} & 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
|
|
196
|
+
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
197
|
unstyled?: boolean | undefined;
|
|
198
198
|
pressTheme?: boolean | undefined;
|
|
199
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
200
199
|
disabled?: boolean | undefined;
|
|
200
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
201
201
|
transparent?: boolean | undefined;
|
|
202
202
|
fullscreen?: boolean | undefined;
|
|
203
203
|
circular?: boolean | undefined;
|
|
@@ -210,11 +210,11 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
210
210
|
padded?: boolean | undefined;
|
|
211
211
|
chromeless?: boolean | "all" | undefined;
|
|
212
212
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
213
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
213
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
214
214
|
unstyled?: boolean | undefined;
|
|
215
215
|
pressTheme?: boolean | undefined;
|
|
216
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
217
216
|
disabled?: boolean | undefined;
|
|
217
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
218
218
|
transparent?: boolean | undefined;
|
|
219
219
|
fullscreen?: boolean | undefined;
|
|
220
220
|
circular?: boolean | undefined;
|
|
@@ -227,11 +227,11 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
227
227
|
padded?: boolean | undefined;
|
|
228
228
|
chromeless?: boolean | "all" | undefined;
|
|
229
229
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
230
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
230
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
231
231
|
unstyled?: boolean | undefined;
|
|
232
232
|
pressTheme?: boolean | undefined;
|
|
233
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
234
233
|
disabled?: boolean | undefined;
|
|
234
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
235
235
|
transparent?: boolean | undefined;
|
|
236
236
|
fullscreen?: boolean | undefined;
|
|
237
237
|
circular?: boolean | undefined;
|
|
@@ -244,11 +244,11 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
244
244
|
padded?: boolean | undefined;
|
|
245
245
|
chromeless?: boolean | "all" | undefined;
|
|
246
246
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
247
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
247
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
248
248
|
unstyled?: boolean | undefined;
|
|
249
249
|
pressTheme?: boolean | undefined;
|
|
250
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
251
250
|
disabled?: boolean | undefined;
|
|
251
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
252
252
|
transparent?: boolean | undefined;
|
|
253
253
|
fullscreen?: boolean | undefined;
|
|
254
254
|
circular?: boolean | undefined;
|
|
@@ -261,11 +261,11 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
261
261
|
padded?: boolean | undefined;
|
|
262
262
|
chromeless?: boolean | "all" | undefined;
|
|
263
263
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
264
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
264
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
265
265
|
unstyled?: boolean | undefined;
|
|
266
266
|
pressTheme?: boolean | undefined;
|
|
267
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
268
267
|
disabled?: boolean | undefined;
|
|
268
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
269
269
|
transparent?: boolean | undefined;
|
|
270
270
|
fullscreen?: boolean | undefined;
|
|
271
271
|
circular?: boolean | undefined;
|