@tamagui/radio-group 1.88.4 → 1.88.5
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 +16 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/radio-group",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.5",
|
|
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.5",
|
|
37
|
+
"@tamagui/constants": "1.88.5",
|
|
38
|
+
"@tamagui/core": "1.88.5",
|
|
39
|
+
"@tamagui/create-context": "1.88.5",
|
|
40
|
+
"@tamagui/focusable": "1.88.5",
|
|
41
|
+
"@tamagui/get-token": "1.88.5",
|
|
42
|
+
"@tamagui/helpers": "1.88.5",
|
|
43
|
+
"@tamagui/label": "1.88.5",
|
|
44
|
+
"@tamagui/roving-focus": "1.88.5",
|
|
45
|
+
"@tamagui/stacks": "1.88.5",
|
|
46
|
+
"@tamagui/use-controllable-state": "1.88.5",
|
|
47
|
+
"@tamagui/use-previous": "1.88.5"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "*"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@tamagui/build": "1.88.
|
|
53
|
+
"@tamagui/build": "1.88.5",
|
|
54
54
|
"react": "^18.2.0"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
package/types/RadioGroup.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import * as React from 'react';
|
|
|
3
3
|
import { View } from 'react-native';
|
|
4
4
|
declare const createRadioGroupScope: import("@tamagui/create-context").CreateScope;
|
|
5
5
|
type TamaguiElement = HTMLElement | View;
|
|
6
|
-
declare const RadioGroupFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").
|
|
6
|
+
declare const RadioGroupFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
7
7
|
pressTheme?: boolean | undefined;
|
|
8
8
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
9
9
|
transparent?: boolean | undefined;
|
|
@@ -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, "pressTheme" | "elevation" | keyof import("@tamagui/core").
|
|
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").
|
|
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").
|
|
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").
|
|
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").
|
|
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, "unstyled" | "pressTheme" | "elevation" | keyof import("@tamagui/core").
|
|
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").
|
|
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").
|
|
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").
|
|
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").
|
|
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,7 +193,7 @@ 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, "unstyled" | "pressTheme" | "disabled" | "elevation" | keyof import("@tamagui/core").
|
|
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
199
|
disabled?: boolean | undefined;
|
|
@@ -210,7 +210,7 @@ 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").
|
|
213
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
214
214
|
unstyled?: boolean | undefined;
|
|
215
215
|
pressTheme?: boolean | undefined;
|
|
216
216
|
disabled?: boolean | undefined;
|
|
@@ -227,7 +227,7 @@ 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").
|
|
230
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
231
231
|
unstyled?: boolean | undefined;
|
|
232
232
|
pressTheme?: boolean | undefined;
|
|
233
233
|
disabled?: boolean | undefined;
|
|
@@ -244,7 +244,7 @@ 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").
|
|
247
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
248
248
|
unstyled?: boolean | undefined;
|
|
249
249
|
pressTheme?: boolean | undefined;
|
|
250
250
|
disabled?: boolean | undefined;
|
|
@@ -261,7 +261,7 @@ 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").
|
|
264
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
265
265
|
unstyled?: boolean | undefined;
|
|
266
266
|
pressTheme?: boolean | undefined;
|
|
267
267
|
disabled?: boolean | undefined;
|