@tamagui/radio-group 1.91.3 → 1.91.4
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 +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/radio-group",
|
|
3
|
-
"version": "1.91.
|
|
3
|
+
"version": "1.91.4",
|
|
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.91.
|
|
37
|
-
"@tamagui/constants": "1.91.
|
|
38
|
-
"@tamagui/core": "1.91.
|
|
39
|
-
"@tamagui/create-context": "1.91.
|
|
40
|
-
"@tamagui/focusable": "1.91.
|
|
41
|
-
"@tamagui/get-token": "1.91.
|
|
42
|
-
"@tamagui/helpers": "1.91.
|
|
43
|
-
"@tamagui/label": "1.91.
|
|
44
|
-
"@tamagui/roving-focus": "1.91.
|
|
45
|
-
"@tamagui/stacks": "1.91.
|
|
46
|
-
"@tamagui/use-controllable-state": "1.91.
|
|
47
|
-
"@tamagui/use-previous": "1.91.
|
|
36
|
+
"@tamagui/compose-refs": "1.91.4",
|
|
37
|
+
"@tamagui/constants": "1.91.4",
|
|
38
|
+
"@tamagui/core": "1.91.4",
|
|
39
|
+
"@tamagui/create-context": "1.91.4",
|
|
40
|
+
"@tamagui/focusable": "1.91.4",
|
|
41
|
+
"@tamagui/get-token": "1.91.4",
|
|
42
|
+
"@tamagui/helpers": "1.91.4",
|
|
43
|
+
"@tamagui/label": "1.91.4",
|
|
44
|
+
"@tamagui/roving-focus": "1.91.4",
|
|
45
|
+
"@tamagui/stacks": "1.91.4",
|
|
46
|
+
"@tamagui/use-controllable-state": "1.91.4",
|
|
47
|
+
"@tamagui/use-previous": "1.91.4"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "*"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@tamagui/build": "1.91.
|
|
53
|
+
"@tamagui/build": "1.91.4",
|
|
54
54
|
"react": "^18.2.0"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
package/types/RadioGroup.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ declare const createRadioGroupScope: import("@tamagui/create-context").CreateSco
|
|
|
5
5
|
declare const RadioGroupItemFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
6
6
|
unstyled?: boolean | undefined;
|
|
7
7
|
pressTheme?: boolean | undefined;
|
|
8
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
8
9
|
disabled?: boolean | undefined;
|
|
9
10
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
10
11
|
transparent?: boolean | undefined;
|
|
@@ -24,7 +25,6 @@ declare const RadioGroupItemFrame: import("@tamagui/core").TamaguiComponent<impo
|
|
|
24
25
|
radiused?: boolean | undefined;
|
|
25
26
|
padded?: boolean | undefined;
|
|
26
27
|
chromeless?: boolean | "all" | undefined;
|
|
27
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
28
28
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
29
29
|
type RadioGroupItemProps = GetProps<typeof RadioGroupItemFrame> & {
|
|
30
30
|
value: string;
|
|
@@ -205,9 +205,10 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
205
205
|
forceMount?: boolean | undefined;
|
|
206
206
|
unstyled?: boolean | undefined;
|
|
207
207
|
} & React.RefAttributes<TamaguiElement>>;
|
|
208
|
-
Item: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "pressTheme" | "disabled" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "inset" | "hoverTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"
|
|
208
|
+
Item: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "pressTheme" | "size" | "disabled" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "inset" | "hoverTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
209
209
|
unstyled?: boolean | undefined;
|
|
210
210
|
pressTheme?: boolean | undefined;
|
|
211
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
211
212
|
disabled?: boolean | undefined;
|
|
212
213
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
213
214
|
transparent?: boolean | undefined;
|
|
@@ -227,10 +228,10 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
227
228
|
radiused?: boolean | undefined;
|
|
228
229
|
padded?: boolean | undefined;
|
|
229
230
|
chromeless?: boolean | "all" | undefined;
|
|
230
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
231
231
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
232
232
|
unstyled?: boolean | undefined;
|
|
233
233
|
pressTheme?: boolean | undefined;
|
|
234
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
234
235
|
disabled?: boolean | undefined;
|
|
235
236
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
236
237
|
transparent?: boolean | undefined;
|
|
@@ -250,10 +251,10 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
250
251
|
radiused?: boolean | undefined;
|
|
251
252
|
padded?: boolean | undefined;
|
|
252
253
|
chromeless?: boolean | "all" | undefined;
|
|
253
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
254
254
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
255
255
|
unstyled?: boolean | undefined;
|
|
256
256
|
pressTheme?: boolean | undefined;
|
|
257
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
257
258
|
disabled?: boolean | undefined;
|
|
258
259
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
259
260
|
transparent?: boolean | undefined;
|
|
@@ -273,7 +274,6 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
|
273
274
|
radiused?: boolean | undefined;
|
|
274
275
|
padded?: boolean | undefined;
|
|
275
276
|
chromeless?: boolean | "all" | undefined;
|
|
276
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
277
277
|
}>> & {
|
|
278
278
|
value: string;
|
|
279
279
|
id?: string | undefined;
|