@tamagui/checkbox 1.73.1 → 1.73.2
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 +12 -12
- package/types/Checkbox.d.ts +19 -544
- 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.73.
|
|
3
|
+
"version": "1.73.2",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
"clean:build": "tamagui-build clean:build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@tamagui/core": "1.73.
|
|
27
|
-
"@tamagui/create-context": "1.73.
|
|
28
|
-
"@tamagui/focusable": "1.73.
|
|
29
|
-
"@tamagui/font-size": "1.73.
|
|
30
|
-
"@tamagui/get-token": "1.73.
|
|
31
|
-
"@tamagui/helpers-tamagui": "1.73.
|
|
32
|
-
"@tamagui/label": "1.73.
|
|
33
|
-
"@tamagui/stacks": "1.73.
|
|
34
|
-
"@tamagui/use-controllable-state": "1.73.
|
|
35
|
-
"@tamagui/use-previous": "1.73.
|
|
26
|
+
"@tamagui/core": "1.73.2",
|
|
27
|
+
"@tamagui/create-context": "1.73.2",
|
|
28
|
+
"@tamagui/focusable": "1.73.2",
|
|
29
|
+
"@tamagui/font-size": "1.73.2",
|
|
30
|
+
"@tamagui/get-token": "1.73.2",
|
|
31
|
+
"@tamagui/helpers-tamagui": "1.73.2",
|
|
32
|
+
"@tamagui/label": "1.73.2",
|
|
33
|
+
"@tamagui/stacks": "1.73.2",
|
|
34
|
+
"@tamagui/use-controllable-state": "1.73.2",
|
|
35
|
+
"@tamagui/use-previous": "1.73.2"
|
|
36
36
|
},
|
|
37
37
|
"exports": {
|
|
38
38
|
"./package.json": "./package.json",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"react": "*"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@tamagui/build": "1.73.
|
|
49
|
+
"@tamagui/build": "1.73.2",
|
|
50
50
|
"react": "^18.2.0"
|
|
51
51
|
},
|
|
52
52
|
"publishConfig": {
|
package/types/Checkbox.d.ts
CHANGED
|
@@ -15,32 +15,7 @@ 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").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
|
-
} & {
|
|
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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
44
19
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
45
20
|
} & 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<{
|
|
46
21
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -57,32 +32,7 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
57
32
|
readonly bordered?: number | boolean | undefined;
|
|
58
33
|
readonly transparent?: boolean | undefined;
|
|
59
34
|
readonly chromeless?: boolean | "all" | undefined;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
86
36
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
87
37
|
} & 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<{
|
|
88
38
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -99,32 +49,7 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
99
49
|
readonly bordered?: number | boolean | undefined;
|
|
100
50
|
readonly transparent?: boolean | undefined;
|
|
101
51
|
readonly chromeless?: boolean | "all" | undefined;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
128
53
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
129
54
|
} & 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<{
|
|
130
55
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -141,32 +66,7 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
141
66
|
readonly bordered?: number | boolean | undefined;
|
|
142
67
|
readonly transparent?: boolean | undefined;
|
|
143
68
|
readonly chromeless?: boolean | "all" | undefined;
|
|
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
|
-
} & {
|
|
69
|
+
}>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
170
70
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
171
71
|
} & 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<{
|
|
172
72
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -185,32 +85,7 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
185
85
|
readonly chromeless?: boolean | "all" | undefined;
|
|
186
86
|
}, string | number> & {
|
|
187
87
|
[x: string]: undefined;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
214
89
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
215
90
|
} & 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<{
|
|
216
91
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -229,32 +104,7 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
229
104
|
readonly chromeless?: boolean | "all" | undefined;
|
|
230
105
|
}, string | number> & {
|
|
231
106
|
[x: string]: undefined;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
258
108
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
259
109
|
} & 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<{
|
|
260
110
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -273,32 +123,7 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
273
123
|
readonly chromeless?: boolean | "all" | undefined;
|
|
274
124
|
}, string | number> & {
|
|
275
125
|
[x: string]: undefined;
|
|
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
|
-
} & {
|
|
126
|
+
}>>), TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
302
127
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
303
128
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
304
129
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -319,59 +144,9 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
319
144
|
[x: string]: undefined;
|
|
320
145
|
}), {
|
|
321
146
|
displayName: string | undefined;
|
|
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
|
-
} & {
|
|
147
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
348
148
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
349
149
|
} & 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
|
-
} & {
|
|
375
150
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
376
151
|
};
|
|
377
152
|
__variantProps: {
|
|
@@ -406,32 +181,7 @@ export type CheckboxIndicatorProps = CheckboxIndicatorFrameProps & {
|
|
|
406
181
|
*/
|
|
407
182
|
disablePassStyles?: boolean;
|
|
408
183
|
};
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
435
185
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
436
186
|
} & 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<{
|
|
437
187
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -452,32 +202,7 @@ export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
452
202
|
readonly unstyled?: boolean | undefined;
|
|
453
203
|
readonly disabled?: boolean | undefined;
|
|
454
204
|
readonly size?: SizeTokens | undefined;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
481
206
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
482
207
|
} & 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<{
|
|
483
208
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -498,32 +223,7 @@ export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
498
223
|
readonly unstyled?: boolean | undefined;
|
|
499
224
|
readonly disabled?: boolean | undefined;
|
|
500
225
|
readonly size?: SizeTokens | undefined;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
527
227
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
528
228
|
} & 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<{
|
|
529
229
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -544,32 +244,7 @@ export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
544
244
|
readonly unstyled?: boolean | undefined;
|
|
545
245
|
readonly disabled?: boolean | undefined;
|
|
546
246
|
readonly size?: SizeTokens | undefined;
|
|
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
|
-
} & {
|
|
247
|
+
}>>, TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
573
248
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
574
249
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
575
250
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -592,59 +267,9 @@ export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
592
267
|
readonly size?: SizeTokens | undefined;
|
|
593
268
|
}, {
|
|
594
269
|
displayName: string | undefined;
|
|
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
|
-
} & {
|
|
270
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
621
271
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
622
272
|
} & 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
|
-
} & {
|
|
648
273
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
649
274
|
};
|
|
650
275
|
__variantProps: {
|
|
@@ -687,32 +312,7 @@ export interface CheckboxProps extends Omit<CheckboxFrameProps, 'checked' | 'def
|
|
|
687
312
|
sizeAdjust?: number;
|
|
688
313
|
}
|
|
689
314
|
export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLButtonElement>> & {
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
716
316
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
717
317
|
} & 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<{
|
|
718
318
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -729,32 +329,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
729
329
|
readonly bordered?: number | boolean | undefined;
|
|
730
330
|
readonly transparent?: boolean | undefined;
|
|
731
331
|
readonly chromeless?: boolean | "all" | undefined;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
758
333
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
759
334
|
} & 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<{
|
|
760
335
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -771,32 +346,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
771
346
|
readonly bordered?: number | boolean | undefined;
|
|
772
347
|
readonly transparent?: boolean | undefined;
|
|
773
348
|
readonly chromeless?: boolean | "all" | undefined;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
800
350
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
801
351
|
} & 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<{
|
|
802
352
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -823,32 +373,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
823
373
|
* Used to disable passing styles down to children.
|
|
824
374
|
*/
|
|
825
375
|
disablePassStyles?: boolean | undefined;
|
|
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
|
-
} & {
|
|
376
|
+
}) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
852
377
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
853
378
|
} & 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<{
|
|
854
379
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -867,32 +392,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
867
392
|
readonly chromeless?: boolean | "all" | undefined;
|
|
868
393
|
}, string | number> & {
|
|
869
394
|
[x: string]: undefined;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
896
396
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
897
397
|
} & 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<{
|
|
898
398
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -911,32 +411,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
911
411
|
readonly chromeless?: boolean | "all" | undefined;
|
|
912
412
|
}, string | number> & {
|
|
913
413
|
[x: string]: undefined;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
940
415
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
941
416
|
} & 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<{
|
|
942
417
|
readonly fullscreen?: 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"}
|