@tamagui/radio-group 1.72.3 → 1.73.1
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 +11 -11
- package/types/RadioGroup.d.ts +404 -29
- 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.
|
|
3
|
+
"version": "1.73.1",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -31,21 +31,21 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/compose-refs": "1.
|
|
35
|
-
"@tamagui/core": "1.
|
|
36
|
-
"@tamagui/create-context": "1.
|
|
37
|
-
"@tamagui/focusable": "1.
|
|
38
|
-
"@tamagui/get-token": "1.
|
|
39
|
-
"@tamagui/label": "1.
|
|
40
|
-
"@tamagui/stacks": "1.
|
|
41
|
-
"@tamagui/use-controllable-state": "1.
|
|
42
|
-
"@tamagui/use-previous": "1.
|
|
34
|
+
"@tamagui/compose-refs": "1.73.1",
|
|
35
|
+
"@tamagui/core": "1.73.1",
|
|
36
|
+
"@tamagui/create-context": "1.73.1",
|
|
37
|
+
"@tamagui/focusable": "1.73.1",
|
|
38
|
+
"@tamagui/get-token": "1.73.1",
|
|
39
|
+
"@tamagui/label": "1.73.1",
|
|
40
|
+
"@tamagui/stacks": "1.73.1",
|
|
41
|
+
"@tamagui/use-controllable-state": "1.73.1",
|
|
42
|
+
"@tamagui/use-previous": "1.73.1"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"react": "*"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@tamagui/build": "1.
|
|
48
|
+
"@tamagui/build": "1.73.1",
|
|
49
49
|
"react": "^18.2.0"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|
package/types/RadioGroup.d.ts
CHANGED
|
@@ -3,11 +3,36 @@ 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<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
6
|
+
declare const RadioGroupFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
7
|
+
target?: string | undefined;
|
|
8
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
9
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
10
|
+
dangerouslySetInnerHTML?: {
|
|
11
|
+
__html: string;
|
|
12
|
+
} | undefined;
|
|
13
|
+
children?: any;
|
|
14
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
15
|
+
disabled?: boolean | undefined;
|
|
16
|
+
className?: string | undefined;
|
|
17
|
+
themeShallow?: boolean | undefined;
|
|
18
|
+
id?: string | undefined;
|
|
19
|
+
tag?: string | undefined;
|
|
20
|
+
theme?: string | null | undefined;
|
|
21
|
+
group?: undefined;
|
|
22
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
23
|
+
componentName?: string | undefined;
|
|
24
|
+
tabIndex?: string | number | undefined;
|
|
25
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
26
|
+
disableOptimization?: boolean | undefined;
|
|
27
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
28
|
+
disableClassName?: boolean | undefined;
|
|
29
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
30
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
31
|
+
} & {
|
|
7
32
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
8
33
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
9
34
|
readonly fullscreen?: boolean | undefined;
|
|
10
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
35
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
11
36
|
} & {
|
|
12
37
|
readonly backgrounded?: boolean | undefined;
|
|
13
38
|
readonly radiused?: boolean | undefined;
|
|
@@ -22,11 +47,36 @@ declare const RadioGroupFrame: import("@tamagui/core").TamaguiComponent<Omit<imp
|
|
|
22
47
|
readonly chromeless?: boolean | "all" | undefined;
|
|
23
48
|
}, "orientation"> & {
|
|
24
49
|
readonly orientation?: "horizontal" | "vertical" | undefined;
|
|
25
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
50
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
51
|
+
target?: string | undefined;
|
|
52
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
53
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
54
|
+
dangerouslySetInnerHTML?: {
|
|
55
|
+
__html: string;
|
|
56
|
+
} | undefined;
|
|
57
|
+
children?: any;
|
|
58
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
59
|
+
disabled?: boolean | undefined;
|
|
60
|
+
className?: string | undefined;
|
|
61
|
+
themeShallow?: boolean | undefined;
|
|
62
|
+
id?: string | undefined;
|
|
63
|
+
tag?: string | undefined;
|
|
64
|
+
theme?: string | null | undefined;
|
|
65
|
+
group?: undefined;
|
|
66
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
67
|
+
componentName?: string | undefined;
|
|
68
|
+
tabIndex?: string | number | undefined;
|
|
69
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
70
|
+
disableOptimization?: boolean | undefined;
|
|
71
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
72
|
+
disableClassName?: boolean | undefined;
|
|
73
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
74
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
75
|
+
} & {
|
|
26
76
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
27
77
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
28
78
|
readonly fullscreen?: boolean | undefined;
|
|
29
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
79
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
30
80
|
} & {
|
|
31
81
|
readonly backgrounded?: boolean | undefined;
|
|
32
82
|
readonly radiused?: boolean | undefined;
|
|
@@ -41,11 +91,36 @@ declare const RadioGroupFrame: import("@tamagui/core").TamaguiComponent<Omit<imp
|
|
|
41
91
|
readonly chromeless?: boolean | "all" | undefined;
|
|
42
92
|
}, "orientation"> & {
|
|
43
93
|
readonly orientation?: "horizontal" | "vertical" | undefined;
|
|
44
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
94
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
95
|
+
target?: string | undefined;
|
|
96
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
97
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
98
|
+
dangerouslySetInnerHTML?: {
|
|
99
|
+
__html: string;
|
|
100
|
+
} | undefined;
|
|
101
|
+
children?: any;
|
|
102
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
103
|
+
disabled?: boolean | undefined;
|
|
104
|
+
className?: string | undefined;
|
|
105
|
+
themeShallow?: boolean | undefined;
|
|
106
|
+
id?: string | undefined;
|
|
107
|
+
tag?: string | undefined;
|
|
108
|
+
theme?: string | null | undefined;
|
|
109
|
+
group?: undefined;
|
|
110
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
111
|
+
componentName?: string | undefined;
|
|
112
|
+
tabIndex?: string | number | undefined;
|
|
113
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
114
|
+
disableOptimization?: boolean | undefined;
|
|
115
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
116
|
+
disableClassName?: boolean | undefined;
|
|
117
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
118
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
119
|
+
} & {
|
|
45
120
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
46
121
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
47
122
|
readonly fullscreen?: boolean | undefined;
|
|
48
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
123
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
49
124
|
} & {
|
|
50
125
|
readonly backgrounded?: boolean | undefined;
|
|
51
126
|
readonly radiused?: boolean | undefined;
|
|
@@ -60,11 +135,36 @@ declare const RadioGroupFrame: import("@tamagui/core").TamaguiComponent<Omit<imp
|
|
|
60
135
|
readonly chromeless?: boolean | "all" | undefined;
|
|
61
136
|
}, "orientation"> & {
|
|
62
137
|
readonly orientation?: "horizontal" | "vertical" | undefined;
|
|
63
|
-
}>>, import("@tamagui/core").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
138
|
+
}>>, import("@tamagui/core").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
139
|
+
target?: string | undefined;
|
|
140
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
141
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
142
|
+
dangerouslySetInnerHTML?: {
|
|
143
|
+
__html: string;
|
|
144
|
+
} | undefined;
|
|
145
|
+
children?: any;
|
|
146
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
147
|
+
disabled?: boolean | undefined;
|
|
148
|
+
className?: string | undefined;
|
|
149
|
+
themeShallow?: boolean | undefined;
|
|
150
|
+
id?: string | undefined;
|
|
151
|
+
tag?: string | undefined;
|
|
152
|
+
theme?: string | null | undefined;
|
|
153
|
+
group?: undefined;
|
|
154
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
155
|
+
componentName?: string | undefined;
|
|
156
|
+
tabIndex?: string | number | undefined;
|
|
157
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
158
|
+
disableOptimization?: boolean | undefined;
|
|
159
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
160
|
+
disableClassName?: boolean | undefined;
|
|
161
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
162
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
163
|
+
} & {
|
|
64
164
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
65
165
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
66
166
|
readonly fullscreen?: boolean | undefined;
|
|
67
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
167
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
68
168
|
} & {
|
|
69
169
|
readonly backgrounded?: boolean | undefined;
|
|
70
170
|
readonly radiused?: boolean | undefined;
|
|
@@ -81,17 +181,67 @@ declare const RadioGroupFrame: import("@tamagui/core").TamaguiComponent<Omit<imp
|
|
|
81
181
|
readonly orientation?: "horizontal" | "vertical" | undefined;
|
|
82
182
|
}, {
|
|
83
183
|
displayName: string | undefined;
|
|
84
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
184
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
185
|
+
target?: string | undefined;
|
|
186
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
187
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
188
|
+
dangerouslySetInnerHTML?: {
|
|
189
|
+
__html: string;
|
|
190
|
+
} | undefined;
|
|
191
|
+
children?: any;
|
|
192
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
193
|
+
disabled?: boolean | undefined;
|
|
194
|
+
className?: string | undefined;
|
|
195
|
+
themeShallow?: boolean | undefined;
|
|
196
|
+
id?: string | undefined;
|
|
197
|
+
tag?: string | undefined;
|
|
198
|
+
theme?: string | null | undefined;
|
|
199
|
+
group?: undefined;
|
|
200
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
201
|
+
componentName?: string | undefined;
|
|
202
|
+
tabIndex?: string | number | undefined;
|
|
203
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
204
|
+
disableOptimization?: boolean | undefined;
|
|
205
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
206
|
+
disableClassName?: boolean | undefined;
|
|
207
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
208
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
209
|
+
} & {
|
|
85
210
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
86
211
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
212
|
+
target?: string | undefined;
|
|
213
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
214
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
215
|
+
dangerouslySetInnerHTML?: {
|
|
216
|
+
__html: string;
|
|
217
|
+
} | undefined;
|
|
218
|
+
children?: any;
|
|
219
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
220
|
+
disabled?: boolean | undefined;
|
|
221
|
+
className?: string | undefined;
|
|
222
|
+
themeShallow?: boolean | undefined;
|
|
223
|
+
id?: string | undefined;
|
|
224
|
+
tag?: string | undefined;
|
|
225
|
+
theme?: string | null | undefined;
|
|
226
|
+
group?: undefined;
|
|
227
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
228
|
+
componentName?: string | undefined;
|
|
229
|
+
tabIndex?: string | number | undefined;
|
|
230
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
231
|
+
disableOptimization?: boolean | undefined;
|
|
232
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
233
|
+
disableClassName?: boolean | undefined;
|
|
234
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
235
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
236
|
+
} & {
|
|
87
237
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
88
238
|
};
|
|
89
239
|
__variantProps: {
|
|
90
240
|
readonly fullscreen?: boolean | undefined;
|
|
91
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
241
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
92
242
|
} & {
|
|
93
243
|
readonly fullscreen?: boolean | undefined;
|
|
94
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
244
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
95
245
|
} & {
|
|
96
246
|
readonly backgrounded?: boolean | undefined;
|
|
97
247
|
readonly radiused?: boolean | undefined;
|
|
@@ -116,11 +266,36 @@ type RadioGroupProps = GetProps<typeof RadioGroupFrame> & {
|
|
|
116
266
|
native?: boolean;
|
|
117
267
|
accentColor?: string;
|
|
118
268
|
};
|
|
119
|
-
declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
269
|
+
declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
270
|
+
target?: string | undefined;
|
|
271
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
272
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
273
|
+
dangerouslySetInnerHTML?: {
|
|
274
|
+
__html: string;
|
|
275
|
+
} | undefined;
|
|
276
|
+
children?: any;
|
|
277
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
278
|
+
disabled?: boolean | undefined;
|
|
279
|
+
className?: string | undefined;
|
|
280
|
+
themeShallow?: boolean | undefined;
|
|
281
|
+
id?: string | undefined;
|
|
282
|
+
tag?: string | undefined;
|
|
283
|
+
theme?: string | null | undefined;
|
|
284
|
+
group?: undefined;
|
|
285
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
286
|
+
componentName?: string | undefined;
|
|
287
|
+
tabIndex?: string | number | undefined;
|
|
288
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
289
|
+
disableOptimization?: boolean | undefined;
|
|
290
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
291
|
+
disableClassName?: boolean | undefined;
|
|
292
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
293
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
294
|
+
} & {
|
|
120
295
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
121
296
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
122
297
|
readonly fullscreen?: boolean | undefined;
|
|
123
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
298
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
124
299
|
} & {
|
|
125
300
|
readonly backgrounded?: boolean | undefined;
|
|
126
301
|
readonly radiused?: boolean | undefined;
|
|
@@ -135,11 +310,36 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-nat
|
|
|
135
310
|
readonly chromeless?: boolean | "all" | undefined;
|
|
136
311
|
}, "orientation"> & {
|
|
137
312
|
readonly orientation?: "horizontal" | "vertical" | undefined;
|
|
138
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
313
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
314
|
+
target?: string | undefined;
|
|
315
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
316
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
317
|
+
dangerouslySetInnerHTML?: {
|
|
318
|
+
__html: string;
|
|
319
|
+
} | undefined;
|
|
320
|
+
children?: any;
|
|
321
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
322
|
+
disabled?: boolean | undefined;
|
|
323
|
+
className?: string | undefined;
|
|
324
|
+
themeShallow?: boolean | undefined;
|
|
325
|
+
id?: string | undefined;
|
|
326
|
+
tag?: string | undefined;
|
|
327
|
+
theme?: string | null | undefined;
|
|
328
|
+
group?: undefined;
|
|
329
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
330
|
+
componentName?: string | undefined;
|
|
331
|
+
tabIndex?: string | number | undefined;
|
|
332
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
333
|
+
disableOptimization?: boolean | undefined;
|
|
334
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
335
|
+
disableClassName?: boolean | undefined;
|
|
336
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
337
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
338
|
+
} & {
|
|
139
339
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
140
340
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
141
341
|
readonly fullscreen?: boolean | undefined;
|
|
142
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
342
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
143
343
|
} & {
|
|
144
344
|
readonly backgrounded?: boolean | undefined;
|
|
145
345
|
readonly radiused?: boolean | undefined;
|
|
@@ -154,11 +354,36 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-nat
|
|
|
154
354
|
readonly chromeless?: boolean | "all" | undefined;
|
|
155
355
|
}, "orientation"> & {
|
|
156
356
|
readonly orientation?: "horizontal" | "vertical" | undefined;
|
|
157
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
357
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
358
|
+
target?: string | undefined;
|
|
359
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
360
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
361
|
+
dangerouslySetInnerHTML?: {
|
|
362
|
+
__html: string;
|
|
363
|
+
} | undefined;
|
|
364
|
+
children?: any;
|
|
365
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
366
|
+
disabled?: boolean | undefined;
|
|
367
|
+
className?: string | undefined;
|
|
368
|
+
themeShallow?: boolean | undefined;
|
|
369
|
+
id?: string | undefined;
|
|
370
|
+
tag?: string | undefined;
|
|
371
|
+
theme?: string | null | undefined;
|
|
372
|
+
group?: undefined;
|
|
373
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
374
|
+
componentName?: string | undefined;
|
|
375
|
+
tabIndex?: string | number | undefined;
|
|
376
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
377
|
+
disableOptimization?: boolean | undefined;
|
|
378
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
379
|
+
disableClassName?: boolean | undefined;
|
|
380
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
381
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
382
|
+
} & {
|
|
158
383
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
159
384
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
160
385
|
readonly fullscreen?: boolean | undefined;
|
|
161
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
386
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
162
387
|
} & {
|
|
163
388
|
readonly backgrounded?: boolean | undefined;
|
|
164
389
|
readonly radiused?: boolean | undefined;
|
|
@@ -183,11 +408,36 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-nat
|
|
|
183
408
|
native?: boolean | undefined;
|
|
184
409
|
accentColor?: string | undefined;
|
|
185
410
|
} & React.RefAttributes<TamaguiElement>> & {
|
|
186
|
-
Indicator: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
411
|
+
Indicator: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
412
|
+
target?: string | undefined;
|
|
413
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
414
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
415
|
+
dangerouslySetInnerHTML?: {
|
|
416
|
+
__html: string;
|
|
417
|
+
} | undefined;
|
|
418
|
+
children?: any;
|
|
419
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
420
|
+
disabled?: boolean | undefined;
|
|
421
|
+
className?: string | undefined;
|
|
422
|
+
themeShallow?: boolean | undefined;
|
|
423
|
+
id?: string | undefined;
|
|
424
|
+
tag?: string | undefined;
|
|
425
|
+
theme?: string | null | undefined;
|
|
426
|
+
group?: undefined;
|
|
427
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
428
|
+
componentName?: string | undefined;
|
|
429
|
+
tabIndex?: string | number | undefined;
|
|
430
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
431
|
+
disableOptimization?: boolean | undefined;
|
|
432
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
433
|
+
disableClassName?: boolean | undefined;
|
|
434
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
435
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
436
|
+
} & {
|
|
187
437
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
188
438
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
189
439
|
readonly fullscreen?: boolean | undefined;
|
|
190
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
440
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
191
441
|
} & {
|
|
192
442
|
readonly backgrounded?: boolean | undefined;
|
|
193
443
|
readonly radiused?: boolean | undefined;
|
|
@@ -202,11 +452,36 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-nat
|
|
|
202
452
|
readonly chromeless?: boolean | "all" | undefined;
|
|
203
453
|
}, "unstyled"> & {
|
|
204
454
|
readonly unstyled?: boolean | undefined;
|
|
205
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
455
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
456
|
+
target?: string | undefined;
|
|
457
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
458
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
459
|
+
dangerouslySetInnerHTML?: {
|
|
460
|
+
__html: string;
|
|
461
|
+
} | undefined;
|
|
462
|
+
children?: any;
|
|
463
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
464
|
+
disabled?: boolean | undefined;
|
|
465
|
+
className?: string | undefined;
|
|
466
|
+
themeShallow?: boolean | undefined;
|
|
467
|
+
id?: string | undefined;
|
|
468
|
+
tag?: string | undefined;
|
|
469
|
+
theme?: string | null | undefined;
|
|
470
|
+
group?: undefined;
|
|
471
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
472
|
+
componentName?: string | undefined;
|
|
473
|
+
tabIndex?: string | number | undefined;
|
|
474
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
475
|
+
disableOptimization?: boolean | undefined;
|
|
476
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
477
|
+
disableClassName?: boolean | undefined;
|
|
478
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
479
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
480
|
+
} & {
|
|
206
481
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
207
482
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
208
483
|
readonly fullscreen?: boolean | undefined;
|
|
209
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
484
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
210
485
|
} & {
|
|
211
486
|
readonly backgrounded?: boolean | undefined;
|
|
212
487
|
readonly radiused?: boolean | undefined;
|
|
@@ -221,11 +496,36 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-nat
|
|
|
221
496
|
readonly chromeless?: boolean | "all" | undefined;
|
|
222
497
|
}, "unstyled"> & {
|
|
223
498
|
readonly unstyled?: boolean | undefined;
|
|
224
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
499
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
500
|
+
target?: string | undefined;
|
|
501
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
502
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
503
|
+
dangerouslySetInnerHTML?: {
|
|
504
|
+
__html: string;
|
|
505
|
+
} | undefined;
|
|
506
|
+
children?: any;
|
|
507
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
508
|
+
disabled?: boolean | undefined;
|
|
509
|
+
className?: string | undefined;
|
|
510
|
+
themeShallow?: boolean | undefined;
|
|
511
|
+
id?: string | undefined;
|
|
512
|
+
tag?: string | undefined;
|
|
513
|
+
theme?: string | null | undefined;
|
|
514
|
+
group?: undefined;
|
|
515
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
516
|
+
componentName?: string | undefined;
|
|
517
|
+
tabIndex?: string | number | undefined;
|
|
518
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
519
|
+
disableOptimization?: boolean | undefined;
|
|
520
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
521
|
+
disableClassName?: boolean | undefined;
|
|
522
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
523
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
524
|
+
} & {
|
|
225
525
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
226
526
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
227
527
|
readonly fullscreen?: boolean | undefined;
|
|
228
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
528
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
229
529
|
} & {
|
|
230
530
|
readonly backgrounded?: boolean | undefined;
|
|
231
531
|
readonly radiused?: boolean | undefined;
|
|
@@ -244,11 +544,36 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-nat
|
|
|
244
544
|
forceMount?: boolean | undefined;
|
|
245
545
|
unstyled?: boolean | undefined;
|
|
246
546
|
} & React.RefAttributes<TamaguiElement>>;
|
|
247
|
-
Item: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
547
|
+
Item: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
548
|
+
target?: string | undefined;
|
|
549
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
550
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
551
|
+
dangerouslySetInnerHTML?: {
|
|
552
|
+
__html: string;
|
|
553
|
+
} | undefined;
|
|
554
|
+
children?: any;
|
|
555
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
556
|
+
disabled?: boolean | undefined;
|
|
557
|
+
className?: string | undefined;
|
|
558
|
+
themeShallow?: boolean | undefined;
|
|
559
|
+
id?: string | undefined;
|
|
560
|
+
tag?: string | undefined;
|
|
561
|
+
theme?: string | null | undefined;
|
|
562
|
+
group?: undefined;
|
|
563
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
564
|
+
componentName?: string | undefined;
|
|
565
|
+
tabIndex?: string | number | undefined;
|
|
566
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
567
|
+
disableOptimization?: boolean | undefined;
|
|
568
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
569
|
+
disableClassName?: boolean | undefined;
|
|
570
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
571
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
572
|
+
} & {
|
|
248
573
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
249
574
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
250
575
|
readonly fullscreen?: boolean | undefined;
|
|
251
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
576
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
252
577
|
} & {
|
|
253
578
|
readonly backgrounded?: boolean | undefined;
|
|
254
579
|
readonly radiused?: boolean | undefined;
|
|
@@ -265,11 +590,36 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-nat
|
|
|
265
590
|
readonly unstyled?: boolean | undefined;
|
|
266
591
|
readonly disabled?: boolean | undefined;
|
|
267
592
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
268
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
593
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
594
|
+
target?: string | undefined;
|
|
595
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
596
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
597
|
+
dangerouslySetInnerHTML?: {
|
|
598
|
+
__html: string;
|
|
599
|
+
} | undefined;
|
|
600
|
+
children?: any;
|
|
601
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
602
|
+
disabled?: boolean | undefined;
|
|
603
|
+
className?: string | undefined;
|
|
604
|
+
themeShallow?: boolean | undefined;
|
|
605
|
+
id?: string | undefined;
|
|
606
|
+
tag?: string | undefined;
|
|
607
|
+
theme?: string | null | undefined;
|
|
608
|
+
group?: undefined;
|
|
609
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
610
|
+
componentName?: string | undefined;
|
|
611
|
+
tabIndex?: string | number | undefined;
|
|
612
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
613
|
+
disableOptimization?: boolean | undefined;
|
|
614
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
615
|
+
disableClassName?: boolean | undefined;
|
|
616
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
617
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
618
|
+
} & {
|
|
269
619
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
270
620
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
271
621
|
readonly fullscreen?: boolean | undefined;
|
|
272
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
622
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
273
623
|
} & {
|
|
274
624
|
readonly backgrounded?: boolean | undefined;
|
|
275
625
|
readonly radiused?: boolean | undefined;
|
|
@@ -286,11 +636,36 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-nat
|
|
|
286
636
|
readonly unstyled?: boolean | undefined;
|
|
287
637
|
readonly disabled?: boolean | undefined;
|
|
288
638
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
289
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
639
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
640
|
+
target?: string | undefined;
|
|
641
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
642
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
643
|
+
dangerouslySetInnerHTML?: {
|
|
644
|
+
__html: string;
|
|
645
|
+
} | undefined;
|
|
646
|
+
children?: any;
|
|
647
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
648
|
+
disabled?: boolean | undefined;
|
|
649
|
+
className?: string | undefined;
|
|
650
|
+
themeShallow?: boolean | undefined;
|
|
651
|
+
id?: string | undefined;
|
|
652
|
+
tag?: string | undefined;
|
|
653
|
+
theme?: string | null | undefined;
|
|
654
|
+
group?: undefined;
|
|
655
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
656
|
+
componentName?: string | undefined;
|
|
657
|
+
tabIndex?: string | number | undefined;
|
|
658
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
659
|
+
disableOptimization?: boolean | undefined;
|
|
660
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
661
|
+
disableClassName?: boolean | undefined;
|
|
662
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
663
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
664
|
+
} & {
|
|
290
665
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
291
666
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
292
667
|
readonly fullscreen?: boolean | undefined;
|
|
293
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
668
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
294
669
|
} & {
|
|
295
670
|
readonly backgrounded?: boolean | undefined;
|
|
296
671
|
readonly radiused?: boolean | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["../src/RadioGroup.tsx"],"names":[],"mappings":"AAGA,OAAO,EACL,QAAQ,EAOT,MAAM,eAAe,CAAA;AAQtB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAMnC,QAAA,MAAgC,qBAAqB,+CACf,CAAA;AAoZtC,KAAK,cAAc,GAAG,WAAW,GAAG,IAAI,CAAA;AAIxC,QAAA,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["../src/RadioGroup.tsx"],"names":[],"mappings":"AAGA,OAAO,EACL,QAAQ,EAOT,MAAM,eAAe,CAAA;AAQtB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAMnC,QAAA,MAAgC,qBAAqB,+CACf,CAAA;AAoZtC,KAAK,cAAc,GAAG,WAAW,GAAG,IAAI,CAAA;AAIxC,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAenB,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eApQhC,MAAM;;;;;CAgUd,CAAA;AAID,OAAO,EAAE,qBAAqB,EAAE,UAAU,EAAE,CAAA;AAC5C,YAAY,EAAE,eAAe,EAAE,CAAA"}
|