@tamagui/checkbox 1.41.1 → 1.42.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +11 -11
- package/types/Checkbox.d.ts +107 -15
- 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.42.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@radix-ui/react-use-previous": "^1.0.0",
|
|
23
|
-
"@tamagui/core": "1.
|
|
24
|
-
"@tamagui/create-context": "1.
|
|
25
|
-
"@tamagui/focusable": "1.
|
|
26
|
-
"@tamagui/font-size": "1.
|
|
27
|
-
"@tamagui/get-token": "1.
|
|
28
|
-
"@tamagui/helpers-tamagui": "1.
|
|
29
|
-
"@tamagui/label": "1.
|
|
30
|
-
"@tamagui/stacks": "1.
|
|
31
|
-
"@tamagui/use-controllable-state": "1.
|
|
23
|
+
"@tamagui/core": "1.42.0",
|
|
24
|
+
"@tamagui/create-context": "1.42.0",
|
|
25
|
+
"@tamagui/focusable": "1.42.0",
|
|
26
|
+
"@tamagui/font-size": "1.42.0",
|
|
27
|
+
"@tamagui/get-token": "1.42.0",
|
|
28
|
+
"@tamagui/helpers-tamagui": "1.42.0",
|
|
29
|
+
"@tamagui/label": "1.42.0",
|
|
30
|
+
"@tamagui/stacks": "1.42.0",
|
|
31
|
+
"@tamagui/use-controllable-state": "1.42.0"
|
|
32
32
|
},
|
|
33
33
|
"exports": {
|
|
34
34
|
"./package.json": "./package.json",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"react": "*"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@tamagui/build": "1.
|
|
45
|
+
"@tamagui/build": "1.42.0",
|
|
46
46
|
"react": "^18.2.0"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
package/types/Checkbox.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
32
32
|
readonly bordered?: number | boolean | undefined;
|
|
33
33
|
readonly transparent?: boolean | undefined;
|
|
34
34
|
readonly chromeless?: boolean | "all" | undefined;
|
|
35
|
-
} & import("@tamagui/core").
|
|
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").TamaguiComponentPropsBase & {
|
|
36
36
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
37
37
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
38
38
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -49,7 +49,7 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
49
49
|
readonly bordered?: number | boolean | undefined;
|
|
50
50
|
readonly transparent?: boolean | undefined;
|
|
51
51
|
readonly chromeless?: boolean | "all" | undefined;
|
|
52
|
-
}>> & import("@tamagui/core").
|
|
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").TamaguiComponentPropsBase & {
|
|
53
53
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
54
54
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
55
55
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -66,7 +66,43 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
66
66
|
readonly bordered?: number | boolean | undefined;
|
|
67
67
|
readonly transparent?: boolean | undefined;
|
|
68
68
|
readonly chromeless?: boolean | "all" | undefined;
|
|
69
|
-
}
|
|
69
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
70
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
71
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
72
|
+
readonly fullscreen?: boolean | undefined;
|
|
73
|
+
readonly elevation?: SizeTokens | undefined;
|
|
74
|
+
}, "transparent" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
75
|
+
readonly backgrounded?: boolean | undefined;
|
|
76
|
+
readonly radiused?: boolean | undefined;
|
|
77
|
+
readonly hoverTheme?: boolean | undefined;
|
|
78
|
+
readonly pressTheme?: boolean | undefined;
|
|
79
|
+
readonly focusTheme?: boolean | undefined;
|
|
80
|
+
readonly circular?: boolean | undefined;
|
|
81
|
+
readonly padded?: boolean | undefined;
|
|
82
|
+
readonly elevate?: boolean | undefined;
|
|
83
|
+
readonly bordered?: number | boolean | undefined;
|
|
84
|
+
readonly transparent?: boolean | undefined;
|
|
85
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
86
|
+
}>>>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
87
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
88
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
89
|
+
readonly fullscreen?: boolean | undefined;
|
|
90
|
+
readonly elevation?: SizeTokens | undefined;
|
|
91
|
+
} & {
|
|
92
|
+
readonly backgrounded?: boolean | undefined;
|
|
93
|
+
readonly radiused?: boolean | undefined;
|
|
94
|
+
readonly hoverTheme?: boolean | undefined;
|
|
95
|
+
readonly pressTheme?: boolean | undefined;
|
|
96
|
+
readonly focusTheme?: boolean | undefined;
|
|
97
|
+
readonly circular?: boolean | undefined;
|
|
98
|
+
readonly padded?: boolean | undefined;
|
|
99
|
+
readonly elevate?: boolean | undefined;
|
|
100
|
+
readonly bordered?: number | boolean | undefined;
|
|
101
|
+
readonly transparent?: boolean | undefined;
|
|
102
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
103
|
+
}, string | number> & {
|
|
104
|
+
[x: string]: undefined;
|
|
105
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
70
106
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
71
107
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
72
108
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -85,7 +121,7 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
85
121
|
readonly chromeless?: boolean | "all" | undefined;
|
|
86
122
|
}, string | number> & {
|
|
87
123
|
[x: string]: undefined;
|
|
88
|
-
} & 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").TamaguiComponentPropsBase & {
|
|
124
|
+
}>> & 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").TamaguiComponentPropsBase & {
|
|
89
125
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
90
126
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
91
127
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -104,7 +140,7 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
104
140
|
readonly chromeless?: boolean | "all" | undefined;
|
|
105
141
|
}, string | number> & {
|
|
106
142
|
[x: string]: undefined;
|
|
107
|
-
}
|
|
143
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
108
144
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
109
145
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
110
146
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -123,7 +159,7 @@ declare const CheckboxIndicatorFrame: import("@tamagui/core").TamaguiComponent<(
|
|
|
123
159
|
readonly chromeless?: boolean | "all" | undefined;
|
|
124
160
|
}, string | number> & {
|
|
125
161
|
[x: string]: undefined;
|
|
126
|
-
}
|
|
162
|
+
}>>>>), TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
127
163
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
128
164
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps, {
|
|
129
165
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -201,7 +237,7 @@ export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
201
237
|
}, "size" | "unstyled"> & {
|
|
202
238
|
readonly unstyled?: boolean | undefined;
|
|
203
239
|
readonly size?: SizeTokens | undefined;
|
|
204
|
-
} & import("@tamagui/core").
|
|
240
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
205
241
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
206
242
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
207
243
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -221,7 +257,7 @@ export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
221
257
|
}, "size" | "unstyled"> & {
|
|
222
258
|
readonly unstyled?: boolean | undefined;
|
|
223
259
|
readonly size?: SizeTokens | undefined;
|
|
224
|
-
}>> & import("@tamagui/core").
|
|
260
|
+
}>> & 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").TamaguiComponentPropsBase & {
|
|
225
261
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
226
262
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
227
263
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -241,7 +277,27 @@ export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
241
277
|
}, "size" | "unstyled"> & {
|
|
242
278
|
readonly unstyled?: boolean | undefined;
|
|
243
279
|
readonly size?: SizeTokens | undefined;
|
|
244
|
-
}
|
|
280
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
281
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
282
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
283
|
+
readonly fullscreen?: boolean | undefined;
|
|
284
|
+
readonly elevation?: SizeTokens | undefined;
|
|
285
|
+
} & {
|
|
286
|
+
readonly backgrounded?: boolean | undefined;
|
|
287
|
+
readonly radiused?: boolean | undefined;
|
|
288
|
+
readonly hoverTheme?: boolean | undefined;
|
|
289
|
+
readonly pressTheme?: boolean | undefined;
|
|
290
|
+
readonly focusTheme?: boolean | undefined;
|
|
291
|
+
readonly circular?: boolean | undefined;
|
|
292
|
+
readonly padded?: boolean | undefined;
|
|
293
|
+
readonly elevate?: boolean | undefined;
|
|
294
|
+
readonly bordered?: number | boolean | undefined;
|
|
295
|
+
readonly transparent?: boolean | undefined;
|
|
296
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
297
|
+
}, "size" | "unstyled"> & {
|
|
298
|
+
readonly unstyled?: boolean | undefined;
|
|
299
|
+
readonly size?: SizeTokens | undefined;
|
|
300
|
+
}>>>>, TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
245
301
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
246
302
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps, {
|
|
247
303
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -321,7 +377,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
321
377
|
readonly bordered?: number | boolean | undefined;
|
|
322
378
|
readonly transparent?: boolean | undefined;
|
|
323
379
|
readonly chromeless?: boolean | "all" | undefined;
|
|
324
|
-
} & import("@tamagui/core").
|
|
380
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
325
381
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
326
382
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
327
383
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -338,7 +394,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
338
394
|
readonly bordered?: number | boolean | undefined;
|
|
339
395
|
readonly transparent?: boolean | undefined;
|
|
340
396
|
readonly chromeless?: boolean | "all" | undefined;
|
|
341
|
-
}>> & import("@tamagui/core").
|
|
397
|
+
}>> & 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").TamaguiComponentPropsBase & {
|
|
342
398
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
343
399
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
344
400
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -355,7 +411,24 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
355
411
|
readonly bordered?: number | boolean | undefined;
|
|
356
412
|
readonly transparent?: boolean | undefined;
|
|
357
413
|
readonly chromeless?: boolean | "all" | undefined;
|
|
358
|
-
}
|
|
414
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
415
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
416
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
417
|
+
readonly fullscreen?: boolean | undefined;
|
|
418
|
+
readonly elevation?: SizeTokens | undefined;
|
|
419
|
+
}, "transparent" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
420
|
+
readonly backgrounded?: boolean | undefined;
|
|
421
|
+
readonly radiused?: boolean | undefined;
|
|
422
|
+
readonly hoverTheme?: boolean | undefined;
|
|
423
|
+
readonly pressTheme?: boolean | undefined;
|
|
424
|
+
readonly focusTheme?: boolean | undefined;
|
|
425
|
+
readonly circular?: boolean | undefined;
|
|
426
|
+
readonly padded?: boolean | undefined;
|
|
427
|
+
readonly elevate?: boolean | undefined;
|
|
428
|
+
readonly bordered?: number | boolean | undefined;
|
|
429
|
+
readonly transparent?: boolean | undefined;
|
|
430
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
431
|
+
}>>>> & {
|
|
359
432
|
/**
|
|
360
433
|
* Used to force mounting when more control is needed. Useful when
|
|
361
434
|
* controlling animation with React animation libraries.
|
|
@@ -384,7 +457,26 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
384
457
|
readonly chromeless?: boolean | "all" | undefined;
|
|
385
458
|
}, string | number> & {
|
|
386
459
|
[x: string]: undefined;
|
|
387
|
-
} & import("@tamagui/core").
|
|
460
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
461
|
+
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
462
|
+
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
463
|
+
readonly fullscreen?: boolean | undefined;
|
|
464
|
+
readonly elevation?: SizeTokens | undefined;
|
|
465
|
+
} & {
|
|
466
|
+
readonly backgrounded?: boolean | undefined;
|
|
467
|
+
readonly radiused?: boolean | undefined;
|
|
468
|
+
readonly hoverTheme?: boolean | undefined;
|
|
469
|
+
readonly pressTheme?: boolean | undefined;
|
|
470
|
+
readonly focusTheme?: boolean | undefined;
|
|
471
|
+
readonly circular?: boolean | undefined;
|
|
472
|
+
readonly padded?: boolean | undefined;
|
|
473
|
+
readonly elevate?: boolean | undefined;
|
|
474
|
+
readonly bordered?: number | boolean | undefined;
|
|
475
|
+
readonly transparent?: boolean | undefined;
|
|
476
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
477
|
+
}, string | number> & {
|
|
478
|
+
[x: string]: undefined;
|
|
479
|
+
}>> & 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").TamaguiComponentPropsBase & {
|
|
388
480
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
389
481
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
390
482
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -403,7 +495,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
403
495
|
readonly chromeless?: boolean | "all" | undefined;
|
|
404
496
|
}, string | number> & {
|
|
405
497
|
[x: string]: undefined;
|
|
406
|
-
}
|
|
498
|
+
} & 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").TamaguiComponentPropsBase & {
|
|
407
499
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
408
500
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
409
501
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -422,7 +514,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
422
514
|
readonly chromeless?: boolean | "all" | undefined;
|
|
423
515
|
}, string | number> & {
|
|
424
516
|
[x: string]: undefined;
|
|
425
|
-
}
|
|
517
|
+
}>>>> & {
|
|
426
518
|
/**
|
|
427
519
|
* Used to force mounting when more control is needed. Useful when
|
|
428
520
|
* controlling animation with React animation libraries.
|
package/types/Checkbox.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../src/Checkbox.tsx"],"names":[],"mappings":"AAIA,OAAO,EACL,QAAQ,EACR,UAAU,EACV,cAAc,EAUf,MAAM,eAAe,CAAA;AAUtB,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":"AAIA,OAAO,EACL,QAAQ,EACR,UAAU,EACV,cAAc,EAUf,MAAM,eAAe,CAAA;AAUtB,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;AAuDD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwCxB,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,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;AA+ID,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAlRnB;;;WAGG;;QAEH;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAPH;;;WAGG;;QAEH;;WAEG;;;;;;;;;CA8QH,CAAA;AAEF,OAAO,EAAE,mBAAmB,EAAE,CAAA"}
|