@tamagui/checkbox 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 +17 -13
- package/types/Checkbox.d.ts +565 -40
- package/types/Checkbox.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/checkbox",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.73.1",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -16,19 +16,23 @@
|
|
|
16
16
|
],
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "tamagui-build",
|
|
19
|
-
"watch": "tamagui-build --watch"
|
|
19
|
+
"watch": "tamagui-build --watch",
|
|
20
|
+
"lint": "../../node_modules/.bin/biome check src",
|
|
21
|
+
"lint:fix": "../../node_modules/.bin/biome check --apply-unsafe src",
|
|
22
|
+
"clean": "tamagui-build clean",
|
|
23
|
+
"clean:build": "tamagui-build clean:build"
|
|
20
24
|
},
|
|
21
25
|
"dependencies": {
|
|
22
|
-
"@tamagui/core": "1.
|
|
23
|
-
"@tamagui/create-context": "1.
|
|
24
|
-
"@tamagui/focusable": "1.
|
|
25
|
-
"@tamagui/font-size": "1.
|
|
26
|
-
"@tamagui/get-token": "1.
|
|
27
|
-
"@tamagui/helpers-tamagui": "1.
|
|
28
|
-
"@tamagui/label": "1.
|
|
29
|
-
"@tamagui/stacks": "1.
|
|
30
|
-
"@tamagui/use-controllable-state": "1.
|
|
31
|
-
"@tamagui/use-previous": "1.
|
|
26
|
+
"@tamagui/core": "1.73.1",
|
|
27
|
+
"@tamagui/create-context": "1.73.1",
|
|
28
|
+
"@tamagui/focusable": "1.73.1",
|
|
29
|
+
"@tamagui/font-size": "1.73.1",
|
|
30
|
+
"@tamagui/get-token": "1.73.1",
|
|
31
|
+
"@tamagui/helpers-tamagui": "1.73.1",
|
|
32
|
+
"@tamagui/label": "1.73.1",
|
|
33
|
+
"@tamagui/stacks": "1.73.1",
|
|
34
|
+
"@tamagui/use-controllable-state": "1.73.1",
|
|
35
|
+
"@tamagui/use-previous": "1.73.1"
|
|
32
36
|
},
|
|
33
37
|
"exports": {
|
|
34
38
|
"./package.json": "./package.json",
|
|
@@ -42,7 +46,7 @@
|
|
|
42
46
|
"react": "*"
|
|
43
47
|
},
|
|
44
48
|
"devDependencies": {
|
|
45
|
-
"@tamagui/build": "1.
|
|
49
|
+
"@tamagui/build": "1.73.1",
|
|
46
50
|
"react": "^18.2.0"
|
|
47
51
|
},
|
|
48
52
|
"publishConfig": {
|
package/types/Checkbox.d.ts
CHANGED
|
@@ -15,11 +15,36 @@ interface BubbleInputProps extends Omit<InputProps, 'checked'> {
|
|
|
15
15
|
isHidden?: boolean;
|
|
16
16
|
}
|
|
17
17
|
export declare const BubbleInput: (props: BubbleInputProps) => JSX.Element;
|
|
18
|
-
declare const CheckboxIndicatorFrame: 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").
|
|
18
|
+
declare const CheckboxIndicatorFrame: 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 & {
|
|
19
|
+
target?: string | undefined;
|
|
20
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
21
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
22
|
+
dangerouslySetInnerHTML?: {
|
|
23
|
+
__html: string;
|
|
24
|
+
} | undefined;
|
|
25
|
+
children?: any;
|
|
26
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
27
|
+
disabled?: boolean | undefined;
|
|
28
|
+
className?: string | undefined;
|
|
29
|
+
themeShallow?: boolean | undefined;
|
|
30
|
+
id?: string | undefined;
|
|
31
|
+
tag?: string | undefined;
|
|
32
|
+
theme?: string | null | undefined;
|
|
33
|
+
group?: undefined;
|
|
34
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
35
|
+
componentName?: string | undefined;
|
|
36
|
+
tabIndex?: string | number | undefined;
|
|
37
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
38
|
+
disableOptimization?: boolean | undefined;
|
|
39
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
40
|
+
disableClassName?: boolean | undefined;
|
|
41
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
42
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
43
|
+
} & {
|
|
19
44
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
20
45
|
} & 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<{
|
|
21
46
|
readonly fullscreen?: boolean | undefined;
|
|
22
|
-
readonly elevation?: SizeTokens | undefined;
|
|
47
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
23
48
|
}, "transparent" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
24
49
|
readonly backgrounded?: boolean | undefined;
|
|
25
50
|
readonly radiused?: boolean | undefined;
|
|
@@ -32,11 +57,36 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
32
57
|
readonly bordered?: number | boolean | undefined;
|
|
33
58
|
readonly transparent?: boolean | undefined;
|
|
34
59
|
readonly chromeless?: boolean | "all" | undefined;
|
|
35
|
-
} & 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").
|
|
60
|
+
} & 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 & {
|
|
61
|
+
target?: string | undefined;
|
|
62
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
63
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
64
|
+
dangerouslySetInnerHTML?: {
|
|
65
|
+
__html: string;
|
|
66
|
+
} | undefined;
|
|
67
|
+
children?: any;
|
|
68
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
69
|
+
disabled?: boolean | undefined;
|
|
70
|
+
className?: string | undefined;
|
|
71
|
+
themeShallow?: boolean | undefined;
|
|
72
|
+
id?: string | undefined;
|
|
73
|
+
tag?: string | undefined;
|
|
74
|
+
theme?: string | null | undefined;
|
|
75
|
+
group?: undefined;
|
|
76
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
77
|
+
componentName?: string | undefined;
|
|
78
|
+
tabIndex?: string | number | undefined;
|
|
79
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
80
|
+
disableOptimization?: boolean | undefined;
|
|
81
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
82
|
+
disableClassName?: boolean | undefined;
|
|
83
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
84
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
85
|
+
} & {
|
|
36
86
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
37
87
|
} & 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<{
|
|
38
88
|
readonly fullscreen?: boolean | undefined;
|
|
39
|
-
readonly elevation?: SizeTokens | undefined;
|
|
89
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
40
90
|
}, "transparent" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
41
91
|
readonly backgrounded?: boolean | undefined;
|
|
42
92
|
readonly radiused?: boolean | undefined;
|
|
@@ -49,11 +99,36 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
49
99
|
readonly bordered?: number | boolean | undefined;
|
|
50
100
|
readonly transparent?: boolean | undefined;
|
|
51
101
|
readonly chromeless?: boolean | "all" | undefined;
|
|
52
|
-
}>> & 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").
|
|
102
|
+
}>> & 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 & {
|
|
103
|
+
target?: string | undefined;
|
|
104
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
105
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
106
|
+
dangerouslySetInnerHTML?: {
|
|
107
|
+
__html: string;
|
|
108
|
+
} | undefined;
|
|
109
|
+
children?: any;
|
|
110
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
111
|
+
disabled?: boolean | undefined;
|
|
112
|
+
className?: string | undefined;
|
|
113
|
+
themeShallow?: boolean | undefined;
|
|
114
|
+
id?: string | undefined;
|
|
115
|
+
tag?: string | undefined;
|
|
116
|
+
theme?: string | null | undefined;
|
|
117
|
+
group?: undefined;
|
|
118
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
119
|
+
componentName?: string | undefined;
|
|
120
|
+
tabIndex?: string | number | undefined;
|
|
121
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
122
|
+
disableOptimization?: boolean | undefined;
|
|
123
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
124
|
+
disableClassName?: boolean | undefined;
|
|
125
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
126
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
127
|
+
} & {
|
|
53
128
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
54
129
|
} & 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<{
|
|
55
130
|
readonly fullscreen?: boolean | undefined;
|
|
56
|
-
readonly elevation?: SizeTokens | undefined;
|
|
131
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
57
132
|
}, "transparent" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
58
133
|
readonly backgrounded?: boolean | undefined;
|
|
59
134
|
readonly radiused?: boolean | undefined;
|
|
@@ -66,11 +141,36 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
66
141
|
readonly bordered?: number | boolean | undefined;
|
|
67
142
|
readonly transparent?: boolean | undefined;
|
|
68
143
|
readonly chromeless?: boolean | "all" | undefined;
|
|
69
|
-
}>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
144
|
+
}>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
145
|
+
target?: string | undefined;
|
|
146
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
147
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
148
|
+
dangerouslySetInnerHTML?: {
|
|
149
|
+
__html: string;
|
|
150
|
+
} | undefined;
|
|
151
|
+
children?: any;
|
|
152
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
153
|
+
disabled?: boolean | undefined;
|
|
154
|
+
className?: string | undefined;
|
|
155
|
+
themeShallow?: boolean | undefined;
|
|
156
|
+
id?: string | undefined;
|
|
157
|
+
tag?: string | undefined;
|
|
158
|
+
theme?: string | null | undefined;
|
|
159
|
+
group?: undefined;
|
|
160
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
161
|
+
componentName?: string | undefined;
|
|
162
|
+
tabIndex?: string | number | undefined;
|
|
163
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
164
|
+
disableOptimization?: boolean | undefined;
|
|
165
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
166
|
+
disableClassName?: boolean | undefined;
|
|
167
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
168
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
169
|
+
} & {
|
|
70
170
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
71
171
|
} & 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<{
|
|
72
172
|
readonly fullscreen?: boolean | undefined;
|
|
73
|
-
readonly elevation?: SizeTokens | undefined;
|
|
173
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
74
174
|
} & {
|
|
75
175
|
readonly backgrounded?: boolean | undefined;
|
|
76
176
|
readonly radiused?: boolean | undefined;
|
|
@@ -85,11 +185,36 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
85
185
|
readonly chromeless?: boolean | "all" | undefined;
|
|
86
186
|
}, string | number> & {
|
|
87
187
|
[x: string]: undefined;
|
|
88
|
-
} & 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").
|
|
188
|
+
} & 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 & {
|
|
189
|
+
target?: string | undefined;
|
|
190
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
191
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
192
|
+
dangerouslySetInnerHTML?: {
|
|
193
|
+
__html: string;
|
|
194
|
+
} | undefined;
|
|
195
|
+
children?: any;
|
|
196
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
197
|
+
disabled?: boolean | undefined;
|
|
198
|
+
className?: string | undefined;
|
|
199
|
+
themeShallow?: boolean | undefined;
|
|
200
|
+
id?: string | undefined;
|
|
201
|
+
tag?: string | undefined;
|
|
202
|
+
theme?: string | null | undefined;
|
|
203
|
+
group?: undefined;
|
|
204
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
205
|
+
componentName?: string | undefined;
|
|
206
|
+
tabIndex?: string | number | undefined;
|
|
207
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
208
|
+
disableOptimization?: boolean | undefined;
|
|
209
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
210
|
+
disableClassName?: boolean | undefined;
|
|
211
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
212
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
213
|
+
} & {
|
|
89
214
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
90
215
|
} & 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<{
|
|
91
216
|
readonly fullscreen?: boolean | undefined;
|
|
92
|
-
readonly elevation?: SizeTokens | undefined;
|
|
217
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
93
218
|
} & {
|
|
94
219
|
readonly backgrounded?: boolean | undefined;
|
|
95
220
|
readonly radiused?: boolean | undefined;
|
|
@@ -104,11 +229,36 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
104
229
|
readonly chromeless?: boolean | "all" | undefined;
|
|
105
230
|
}, string | number> & {
|
|
106
231
|
[x: string]: undefined;
|
|
107
|
-
}>> & 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").
|
|
232
|
+
}>> & 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 & {
|
|
233
|
+
target?: string | undefined;
|
|
234
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
235
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
236
|
+
dangerouslySetInnerHTML?: {
|
|
237
|
+
__html: string;
|
|
238
|
+
} | undefined;
|
|
239
|
+
children?: any;
|
|
240
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
241
|
+
disabled?: boolean | undefined;
|
|
242
|
+
className?: string | undefined;
|
|
243
|
+
themeShallow?: boolean | undefined;
|
|
244
|
+
id?: string | undefined;
|
|
245
|
+
tag?: string | undefined;
|
|
246
|
+
theme?: string | null | undefined;
|
|
247
|
+
group?: undefined;
|
|
248
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
249
|
+
componentName?: string | undefined;
|
|
250
|
+
tabIndex?: string | number | undefined;
|
|
251
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
252
|
+
disableOptimization?: boolean | undefined;
|
|
253
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
254
|
+
disableClassName?: boolean | undefined;
|
|
255
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
256
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
257
|
+
} & {
|
|
108
258
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
109
259
|
} & 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<{
|
|
110
260
|
readonly fullscreen?: boolean | undefined;
|
|
111
|
-
readonly elevation?: SizeTokens | undefined;
|
|
261
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
112
262
|
} & {
|
|
113
263
|
readonly backgrounded?: boolean | undefined;
|
|
114
264
|
readonly radiused?: boolean | undefined;
|
|
@@ -123,11 +273,36 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
123
273
|
readonly chromeless?: boolean | "all" | undefined;
|
|
124
274
|
}, string | number> & {
|
|
125
275
|
[x: string]: undefined;
|
|
126
|
-
}>>), TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
276
|
+
}>>), TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
277
|
+
target?: string | undefined;
|
|
278
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
279
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
280
|
+
dangerouslySetInnerHTML?: {
|
|
281
|
+
__html: string;
|
|
282
|
+
} | undefined;
|
|
283
|
+
children?: any;
|
|
284
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
285
|
+
disabled?: boolean | undefined;
|
|
286
|
+
className?: string | undefined;
|
|
287
|
+
themeShallow?: boolean | undefined;
|
|
288
|
+
id?: string | undefined;
|
|
289
|
+
tag?: string | undefined;
|
|
290
|
+
theme?: string | null | undefined;
|
|
291
|
+
group?: undefined;
|
|
292
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
293
|
+
componentName?: string | undefined;
|
|
294
|
+
tabIndex?: string | number | undefined;
|
|
295
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
296
|
+
disableOptimization?: boolean | undefined;
|
|
297
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
298
|
+
disableClassName?: boolean | undefined;
|
|
299
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
300
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
301
|
+
} & {
|
|
127
302
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
128
303
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
129
304
|
readonly fullscreen?: boolean | undefined;
|
|
130
|
-
readonly elevation?: SizeTokens | undefined;
|
|
305
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
131
306
|
} & {
|
|
132
307
|
readonly backgrounded?: boolean | undefined;
|
|
133
308
|
readonly radiused?: boolean | undefined;
|
|
@@ -144,17 +319,67 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
144
319
|
[x: string]: undefined;
|
|
145
320
|
}), {
|
|
146
321
|
displayName: string | undefined;
|
|
147
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
322
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
323
|
+
target?: string | undefined;
|
|
324
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
325
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
326
|
+
dangerouslySetInnerHTML?: {
|
|
327
|
+
__html: string;
|
|
328
|
+
} | undefined;
|
|
329
|
+
children?: any;
|
|
330
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
331
|
+
disabled?: boolean | undefined;
|
|
332
|
+
className?: string | undefined;
|
|
333
|
+
themeShallow?: boolean | undefined;
|
|
334
|
+
id?: string | undefined;
|
|
335
|
+
tag?: string | undefined;
|
|
336
|
+
theme?: string | null | undefined;
|
|
337
|
+
group?: undefined;
|
|
338
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
339
|
+
componentName?: string | undefined;
|
|
340
|
+
tabIndex?: string | number | undefined;
|
|
341
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
342
|
+
disableOptimization?: boolean | undefined;
|
|
343
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
344
|
+
disableClassName?: boolean | undefined;
|
|
345
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
346
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
347
|
+
} & {
|
|
148
348
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
149
349
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
350
|
+
target?: string | undefined;
|
|
351
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
352
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
353
|
+
dangerouslySetInnerHTML?: {
|
|
354
|
+
__html: string;
|
|
355
|
+
} | undefined;
|
|
356
|
+
children?: any;
|
|
357
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
358
|
+
disabled?: boolean | undefined;
|
|
359
|
+
className?: string | undefined;
|
|
360
|
+
themeShallow?: boolean | undefined;
|
|
361
|
+
id?: string | undefined;
|
|
362
|
+
tag?: string | undefined;
|
|
363
|
+
theme?: string | null | undefined;
|
|
364
|
+
group?: undefined;
|
|
365
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
366
|
+
componentName?: string | undefined;
|
|
367
|
+
tabIndex?: string | number | undefined;
|
|
368
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
369
|
+
disableOptimization?: boolean | undefined;
|
|
370
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
371
|
+
disableClassName?: boolean | undefined;
|
|
372
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
373
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
374
|
+
} & {
|
|
150
375
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
151
376
|
};
|
|
152
377
|
__variantProps: {
|
|
153
378
|
readonly fullscreen?: boolean | undefined;
|
|
154
|
-
readonly elevation?: SizeTokens | undefined;
|
|
379
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
155
380
|
} & {
|
|
156
381
|
readonly fullscreen?: boolean | undefined;
|
|
157
|
-
readonly elevation?: SizeTokens | undefined;
|
|
382
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
158
383
|
} & {
|
|
159
384
|
readonly backgrounded?: boolean | undefined;
|
|
160
385
|
readonly radiused?: boolean | undefined;
|
|
@@ -181,11 +406,36 @@ export type CheckboxIndicatorProps = CheckboxIndicatorFrameProps & {
|
|
|
181
406
|
*/
|
|
182
407
|
disablePassStyles?: boolean;
|
|
183
408
|
};
|
|
184
|
-
export declare const CheckboxFrame: 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").
|
|
409
|
+
export declare const CheckboxFrame: 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 & {
|
|
410
|
+
target?: string | undefined;
|
|
411
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
412
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
413
|
+
dangerouslySetInnerHTML?: {
|
|
414
|
+
__html: string;
|
|
415
|
+
} | undefined;
|
|
416
|
+
children?: any;
|
|
417
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
418
|
+
disabled?: boolean | undefined;
|
|
419
|
+
className?: string | undefined;
|
|
420
|
+
themeShallow?: boolean | undefined;
|
|
421
|
+
id?: string | undefined;
|
|
422
|
+
tag?: string | undefined;
|
|
423
|
+
theme?: string | null | undefined;
|
|
424
|
+
group?: undefined;
|
|
425
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
426
|
+
componentName?: string | undefined;
|
|
427
|
+
tabIndex?: string | number | undefined;
|
|
428
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
429
|
+
disableOptimization?: boolean | undefined;
|
|
430
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
431
|
+
disableClassName?: boolean | undefined;
|
|
432
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
433
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
434
|
+
} & {
|
|
185
435
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
186
436
|
} & 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<{
|
|
187
437
|
readonly fullscreen?: boolean | undefined;
|
|
188
|
-
readonly elevation?: SizeTokens | undefined;
|
|
438
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
189
439
|
} & {
|
|
190
440
|
readonly backgrounded?: boolean | undefined;
|
|
191
441
|
readonly radiused?: boolean | undefined;
|
|
@@ -202,11 +452,36 @@ export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
202
452
|
readonly unstyled?: boolean | undefined;
|
|
203
453
|
readonly disabled?: boolean | undefined;
|
|
204
454
|
readonly size?: SizeTokens | 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?: SizeTokens | undefined;
|
|
484
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
210
485
|
} & {
|
|
211
486
|
readonly backgrounded?: boolean | undefined;
|
|
212
487
|
readonly radiused?: boolean | undefined;
|
|
@@ -223,11 +498,36 @@ export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
223
498
|
readonly unstyled?: boolean | undefined;
|
|
224
499
|
readonly disabled?: boolean | undefined;
|
|
225
500
|
readonly size?: SizeTokens | undefined;
|
|
226
|
-
}>> & 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").
|
|
501
|
+
}>> & 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 & {
|
|
502
|
+
target?: string | undefined;
|
|
503
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
504
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
505
|
+
dangerouslySetInnerHTML?: {
|
|
506
|
+
__html: string;
|
|
507
|
+
} | undefined;
|
|
508
|
+
children?: any;
|
|
509
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
510
|
+
disabled?: boolean | undefined;
|
|
511
|
+
className?: string | undefined;
|
|
512
|
+
themeShallow?: boolean | undefined;
|
|
513
|
+
id?: string | undefined;
|
|
514
|
+
tag?: string | undefined;
|
|
515
|
+
theme?: string | null | undefined;
|
|
516
|
+
group?: undefined;
|
|
517
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
518
|
+
componentName?: string | undefined;
|
|
519
|
+
tabIndex?: string | number | undefined;
|
|
520
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
521
|
+
disableOptimization?: boolean | undefined;
|
|
522
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
523
|
+
disableClassName?: boolean | undefined;
|
|
524
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
525
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
526
|
+
} & {
|
|
227
527
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
228
528
|
} & 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<{
|
|
229
529
|
readonly fullscreen?: boolean | undefined;
|
|
230
|
-
readonly elevation?: SizeTokens | undefined;
|
|
530
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
231
531
|
} & {
|
|
232
532
|
readonly backgrounded?: boolean | undefined;
|
|
233
533
|
readonly radiused?: boolean | undefined;
|
|
@@ -244,11 +544,36 @@ export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
244
544
|
readonly unstyled?: boolean | undefined;
|
|
245
545
|
readonly disabled?: boolean | undefined;
|
|
246
546
|
readonly size?: SizeTokens | undefined;
|
|
247
|
-
}>>, TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
547
|
+
}>>, TamaguiElement, 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, {
|
|
250
575
|
readonly fullscreen?: boolean | undefined;
|
|
251
|
-
readonly elevation?: SizeTokens | undefined;
|
|
576
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
252
577
|
} & {
|
|
253
578
|
readonly backgrounded?: boolean | undefined;
|
|
254
579
|
readonly radiused?: boolean | undefined;
|
|
@@ -267,17 +592,67 @@ export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
267
592
|
readonly size?: SizeTokens | undefined;
|
|
268
593
|
}, {
|
|
269
594
|
displayName: string | undefined;
|
|
270
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
595
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
596
|
+
target?: string | undefined;
|
|
597
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
598
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
599
|
+
dangerouslySetInnerHTML?: {
|
|
600
|
+
__html: string;
|
|
601
|
+
} | undefined;
|
|
602
|
+
children?: any;
|
|
603
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
604
|
+
disabled?: boolean | undefined;
|
|
605
|
+
className?: string | undefined;
|
|
606
|
+
themeShallow?: boolean | undefined;
|
|
607
|
+
id?: string | undefined;
|
|
608
|
+
tag?: string | undefined;
|
|
609
|
+
theme?: string | null | undefined;
|
|
610
|
+
group?: undefined;
|
|
611
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
612
|
+
componentName?: string | undefined;
|
|
613
|
+
tabIndex?: string | number | undefined;
|
|
614
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
615
|
+
disableOptimization?: boolean | undefined;
|
|
616
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
617
|
+
disableClassName?: boolean | undefined;
|
|
618
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
619
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
620
|
+
} & {
|
|
271
621
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
272
622
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
623
|
+
target?: string | undefined;
|
|
624
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
625
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
626
|
+
dangerouslySetInnerHTML?: {
|
|
627
|
+
__html: string;
|
|
628
|
+
} | undefined;
|
|
629
|
+
children?: any;
|
|
630
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
631
|
+
disabled?: boolean | undefined;
|
|
632
|
+
className?: string | undefined;
|
|
633
|
+
themeShallow?: boolean | undefined;
|
|
634
|
+
id?: string | undefined;
|
|
635
|
+
tag?: string | undefined;
|
|
636
|
+
theme?: string | null | undefined;
|
|
637
|
+
group?: undefined;
|
|
638
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
639
|
+
componentName?: string | undefined;
|
|
640
|
+
tabIndex?: string | number | undefined;
|
|
641
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
642
|
+
disableOptimization?: boolean | undefined;
|
|
643
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
644
|
+
disableClassName?: boolean | undefined;
|
|
645
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
646
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
647
|
+
} & {
|
|
273
648
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
274
649
|
};
|
|
275
650
|
__variantProps: {
|
|
276
651
|
readonly fullscreen?: boolean | undefined;
|
|
277
|
-
readonly elevation?: SizeTokens | undefined;
|
|
652
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
278
653
|
} & {
|
|
279
654
|
readonly fullscreen?: boolean | undefined;
|
|
280
|
-
readonly elevation?: SizeTokens | undefined;
|
|
655
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
281
656
|
} & {
|
|
282
657
|
readonly backgrounded?: boolean | undefined;
|
|
283
658
|
readonly radiused?: boolean | undefined;
|
|
@@ -312,11 +687,36 @@ export interface CheckboxProps extends Omit<CheckboxFrameProps, 'checked' | 'def
|
|
|
312
687
|
sizeAdjust?: number;
|
|
313
688
|
}
|
|
314
689
|
export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLButtonElement>> & {
|
|
315
|
-
Indicator: React.ForwardRefExoticComponent<((Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
690
|
+
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 & {
|
|
691
|
+
target?: string | undefined;
|
|
692
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
693
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
694
|
+
dangerouslySetInnerHTML?: {
|
|
695
|
+
__html: string;
|
|
696
|
+
} | undefined;
|
|
697
|
+
children?: any;
|
|
698
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
699
|
+
disabled?: boolean | undefined;
|
|
700
|
+
className?: string | undefined;
|
|
701
|
+
themeShallow?: boolean | undefined;
|
|
702
|
+
id?: string | undefined;
|
|
703
|
+
tag?: string | undefined;
|
|
704
|
+
theme?: string | null | undefined;
|
|
705
|
+
group?: undefined;
|
|
706
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
707
|
+
componentName?: string | undefined;
|
|
708
|
+
tabIndex?: string | number | undefined;
|
|
709
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
710
|
+
disableOptimization?: boolean | undefined;
|
|
711
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
712
|
+
disableClassName?: boolean | undefined;
|
|
713
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
714
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
715
|
+
} & {
|
|
316
716
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
317
717
|
} & 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<{
|
|
318
718
|
readonly fullscreen?: boolean | undefined;
|
|
319
|
-
readonly elevation?: SizeTokens | undefined;
|
|
719
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
320
720
|
}, "transparent" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
321
721
|
readonly backgrounded?: boolean | undefined;
|
|
322
722
|
readonly radiused?: boolean | undefined;
|
|
@@ -329,11 +729,36 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
329
729
|
readonly bordered?: number | boolean | undefined;
|
|
330
730
|
readonly transparent?: boolean | undefined;
|
|
331
731
|
readonly chromeless?: boolean | "all" | undefined;
|
|
332
|
-
} & 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").
|
|
732
|
+
} & 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 & {
|
|
733
|
+
target?: string | undefined;
|
|
734
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
735
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
736
|
+
dangerouslySetInnerHTML?: {
|
|
737
|
+
__html: string;
|
|
738
|
+
} | undefined;
|
|
739
|
+
children?: any;
|
|
740
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
741
|
+
disabled?: boolean | undefined;
|
|
742
|
+
className?: string | undefined;
|
|
743
|
+
themeShallow?: boolean | undefined;
|
|
744
|
+
id?: string | undefined;
|
|
745
|
+
tag?: string | undefined;
|
|
746
|
+
theme?: string | null | undefined;
|
|
747
|
+
group?: undefined;
|
|
748
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
749
|
+
componentName?: string | undefined;
|
|
750
|
+
tabIndex?: string | number | undefined;
|
|
751
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
752
|
+
disableOptimization?: boolean | undefined;
|
|
753
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
754
|
+
disableClassName?: boolean | undefined;
|
|
755
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
756
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
757
|
+
} & {
|
|
333
758
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
334
759
|
} & 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<{
|
|
335
760
|
readonly fullscreen?: boolean | undefined;
|
|
336
|
-
readonly elevation?: SizeTokens | undefined;
|
|
761
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
337
762
|
}, "transparent" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
338
763
|
readonly backgrounded?: boolean | undefined;
|
|
339
764
|
readonly radiused?: boolean | undefined;
|
|
@@ -346,11 +771,36 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
346
771
|
readonly bordered?: number | boolean | undefined;
|
|
347
772
|
readonly transparent?: boolean | undefined;
|
|
348
773
|
readonly chromeless?: boolean | "all" | undefined;
|
|
349
|
-
}>> & 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").
|
|
774
|
+
}>> & 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 & {
|
|
775
|
+
target?: string | undefined;
|
|
776
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
777
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
778
|
+
dangerouslySetInnerHTML?: {
|
|
779
|
+
__html: string;
|
|
780
|
+
} | undefined;
|
|
781
|
+
children?: any;
|
|
782
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
783
|
+
disabled?: boolean | undefined;
|
|
784
|
+
className?: string | undefined;
|
|
785
|
+
themeShallow?: boolean | undefined;
|
|
786
|
+
id?: string | undefined;
|
|
787
|
+
tag?: string | undefined;
|
|
788
|
+
theme?: string | null | undefined;
|
|
789
|
+
group?: undefined;
|
|
790
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
791
|
+
componentName?: string | undefined;
|
|
792
|
+
tabIndex?: string | number | undefined;
|
|
793
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
794
|
+
disableOptimization?: boolean | undefined;
|
|
795
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
796
|
+
disableClassName?: boolean | undefined;
|
|
797
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
798
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
799
|
+
} & {
|
|
350
800
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
351
801
|
} & 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<{
|
|
352
802
|
readonly fullscreen?: boolean | undefined;
|
|
353
|
-
readonly elevation?: SizeTokens | undefined;
|
|
803
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
354
804
|
}, "transparent" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
355
805
|
readonly backgrounded?: boolean | undefined;
|
|
356
806
|
readonly radiused?: boolean | undefined;
|
|
@@ -373,11 +823,36 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
373
823
|
* Used to disable passing styles down to children.
|
|
374
824
|
*/
|
|
375
825
|
disablePassStyles?: boolean | undefined;
|
|
376
|
-
}) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
826
|
+
}) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
827
|
+
target?: string | undefined;
|
|
828
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
829
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
830
|
+
dangerouslySetInnerHTML?: {
|
|
831
|
+
__html: string;
|
|
832
|
+
} | undefined;
|
|
833
|
+
children?: any;
|
|
834
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
835
|
+
disabled?: boolean | undefined;
|
|
836
|
+
className?: string | undefined;
|
|
837
|
+
themeShallow?: boolean | undefined;
|
|
838
|
+
id?: string | undefined;
|
|
839
|
+
tag?: string | undefined;
|
|
840
|
+
theme?: string | null | undefined;
|
|
841
|
+
group?: undefined;
|
|
842
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
843
|
+
componentName?: string | undefined;
|
|
844
|
+
tabIndex?: string | number | undefined;
|
|
845
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
846
|
+
disableOptimization?: boolean | undefined;
|
|
847
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
848
|
+
disableClassName?: boolean | undefined;
|
|
849
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
850
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
851
|
+
} & {
|
|
377
852
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
378
853
|
} & 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<{
|
|
379
854
|
readonly fullscreen?: boolean | undefined;
|
|
380
|
-
readonly elevation?: SizeTokens | undefined;
|
|
855
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
381
856
|
} & {
|
|
382
857
|
readonly backgrounded?: boolean | undefined;
|
|
383
858
|
readonly radiused?: boolean | undefined;
|
|
@@ -392,11 +867,36 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
392
867
|
readonly chromeless?: boolean | "all" | undefined;
|
|
393
868
|
}, string | number> & {
|
|
394
869
|
[x: string]: undefined;
|
|
395
|
-
} & 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").
|
|
870
|
+
} & 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 & {
|
|
871
|
+
target?: string | undefined;
|
|
872
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
873
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
874
|
+
dangerouslySetInnerHTML?: {
|
|
875
|
+
__html: string;
|
|
876
|
+
} | undefined;
|
|
877
|
+
children?: any;
|
|
878
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
879
|
+
disabled?: boolean | undefined;
|
|
880
|
+
className?: string | undefined;
|
|
881
|
+
themeShallow?: boolean | undefined;
|
|
882
|
+
id?: string | undefined;
|
|
883
|
+
tag?: string | undefined;
|
|
884
|
+
theme?: string | null | undefined;
|
|
885
|
+
group?: undefined;
|
|
886
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
887
|
+
componentName?: string | undefined;
|
|
888
|
+
tabIndex?: string | number | undefined;
|
|
889
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
890
|
+
disableOptimization?: boolean | undefined;
|
|
891
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
892
|
+
disableClassName?: boolean | undefined;
|
|
893
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
894
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
895
|
+
} & {
|
|
396
896
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
397
897
|
} & 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<{
|
|
398
898
|
readonly fullscreen?: boolean | undefined;
|
|
399
|
-
readonly elevation?: SizeTokens | undefined;
|
|
899
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
400
900
|
} & {
|
|
401
901
|
readonly backgrounded?: boolean | undefined;
|
|
402
902
|
readonly radiused?: boolean | undefined;
|
|
@@ -411,11 +911,36 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
411
911
|
readonly chromeless?: boolean | "all" | undefined;
|
|
412
912
|
}, string | number> & {
|
|
413
913
|
[x: string]: undefined;
|
|
414
|
-
}>> & 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").
|
|
914
|
+
}>> & 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 & {
|
|
915
|
+
target?: string | undefined;
|
|
916
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
917
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
918
|
+
dangerouslySetInnerHTML?: {
|
|
919
|
+
__html: string;
|
|
920
|
+
} | undefined;
|
|
921
|
+
children?: any;
|
|
922
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
923
|
+
disabled?: boolean | undefined;
|
|
924
|
+
className?: string | undefined;
|
|
925
|
+
themeShallow?: boolean | undefined;
|
|
926
|
+
id?: string | undefined;
|
|
927
|
+
tag?: string | undefined;
|
|
928
|
+
theme?: string | null | undefined;
|
|
929
|
+
group?: undefined;
|
|
930
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
931
|
+
componentName?: string | undefined;
|
|
932
|
+
tabIndex?: string | number | undefined;
|
|
933
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
934
|
+
disableOptimization?: boolean | undefined;
|
|
935
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
936
|
+
disableClassName?: boolean | undefined;
|
|
937
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
938
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
939
|
+
} & {
|
|
415
940
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
416
941
|
} & 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<{
|
|
417
942
|
readonly fullscreen?: boolean | undefined;
|
|
418
|
-
readonly elevation?: SizeTokens | undefined;
|
|
943
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
419
944
|
} & {
|
|
420
945
|
readonly backgrounded?: boolean | undefined;
|
|
421
946
|
readonly radiused?: boolean | undefined;
|
package/types/Checkbox.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../src/Checkbox.tsx"],"names":[],"mappings":"AAGA,OAAO,EACL,QAAQ,EACR,UAAU,EACV,cAAc,EAUf,MAAM,eAAe,CAAA;AAWtB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,eAAO,MAAM,qBAAqB;;;EAGhC,CAAA;AAEF,MAAM,MAAM,YAAY,GAAG,OAAO,GAAG,eAAe,CAAA;AAEpD,wBAAgB,eAAe,CAAC,OAAO,CAAC,EAAE,YAAY,GAAG,OAAO,IAAI,eAAe,CAElF;AAED,wBAAgB,QAAQ,CAAC,OAAO,EAAE,YAAY,6CAE7C;AAED,KAAK,UAAU,GAAG,GAAG,CAAA;AACrB,UAAU,gBAAiB,SAAQ,IAAI,CAAC,UAAU,EAAE,SAAS,CAAC;IAC5D,OAAO,EAAE,YAAY,CAAA;IACrB,OAAO,EAAE,WAAW,GAAG,IAAI,CAAA;IAC3B,OAAO,EAAE,OAAO,CAAA;IAEhB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,eAAO,MAAM,WAAW,UAAW,gBAAgB,gBAkDlD,CAAA;AAQD,QAAA,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../src/Checkbox.tsx"],"names":[],"mappings":"AAGA,OAAO,EACL,QAAQ,EACR,UAAU,EACV,cAAc,EAUf,MAAM,eAAe,CAAA;AAWtB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,eAAO,MAAM,qBAAqB;;;EAGhC,CAAA;AAEF,MAAM,MAAM,YAAY,GAAG,OAAO,GAAG,eAAe,CAAA;AAEpD,wBAAgB,eAAe,CAAC,OAAO,CAAC,EAAE,YAAY,GAAG,OAAO,IAAI,eAAe,CAElF;AAED,wBAAgB,QAAQ,CAAC,OAAO,EAAE,YAAY,6CAE7C;AAED,KAAK,UAAU,GAAG,GAAG,CAAA;AACrB,UAAU,gBAAiB,SAAQ,IAAI,CAAC,UAAU,EAAE,SAAS,CAAC;IAC5D,OAAO,EAAE,YAAY,CAAA;IACrB,OAAO,EAAE,WAAW,GAAG,IAAI,CAAA;IAC3B,OAAO,EAAE,OAAO,CAAA;IAEhB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,eAAO,MAAM,WAAW,UAAW,gBAAgB,gBAkDlD,CAAA;AAQD,QAAA,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI1B,CAAA;AAEF,KAAK,2BAA2B,GAAG,QAAQ,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAE1E,MAAM,MAAM,sBAAsB,GAAG,2BAA2B,GAAG;IACjE;;;OAGG;IACH,UAAU,CAAC,EAAE,IAAI,CAAA;IACjB;;OAEG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAA;CAC5B,CAAA;AA4DD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiExB,CAAA;AAGF,QAAA,MAA8B,mBAAmB,+CAAqC,CAAA;AAUtF,KAAK,kBAAkB,GAAG,QAAQ,CAAC,OAAO,aAAa,CAAC,CAAA;AACxD,MAAM,WAAW,aACf,SAAQ,IAAI,CAAC,kBAAkB,EAAE,SAAS,GAAG,gBAAgB,CAAC;IAC9D,OAAO,CAAC,EAAE,YAAY,CAAA;IACtB,cAAc,CAAC,EAAE,YAAY,CAAA;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB;;;OAGG;IACH,eAAe,CAAC,CAAC,OAAO,EAAE,YAAY,GAAG,IAAI,CAAA;IAC7C,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB;AAiJD,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAtTnB;;;WAGG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAPH;;;WAGG;;QAEH;;WAEG;;;;;;;;;;CAkTH,CAAA;AAEF,OAAO,EAAE,mBAAmB,EAAE,CAAA"}
|