@tamagui/checkbox 1.7.8 → 1.7.9
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 +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/checkbox",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.9",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@radix-ui/react-use-previous": "^0.1.1",
|
|
23
|
-
"@tamagui/core": "1.7.
|
|
24
|
-
"@tamagui/create-context": "1.7.
|
|
25
|
-
"@tamagui/focusable": "1.7.
|
|
26
|
-
"@tamagui/font-size": "1.7.
|
|
27
|
-
"@tamagui/get-size": "1.7.
|
|
28
|
-
"@tamagui/helpers-tamagui": "1.7.
|
|
29
|
-
"@tamagui/label": "1.7.
|
|
30
|
-
"@tamagui/stacks": "1.7.
|
|
31
|
-
"@tamagui/use-controllable-state": "1.7.
|
|
23
|
+
"@tamagui/core": "1.7.9",
|
|
24
|
+
"@tamagui/create-context": "1.7.9",
|
|
25
|
+
"@tamagui/focusable": "1.7.9",
|
|
26
|
+
"@tamagui/font-size": "1.7.9",
|
|
27
|
+
"@tamagui/get-size": "1.7.9",
|
|
28
|
+
"@tamagui/helpers-tamagui": "1.7.9",
|
|
29
|
+
"@tamagui/label": "1.7.9",
|
|
30
|
+
"@tamagui/stacks": "1.7.9",
|
|
31
|
+
"@tamagui/use-controllable-state": "1.7.9"
|
|
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.7.
|
|
45
|
+
"@tamagui/build": "1.7.9",
|
|
46
46
|
"react": "^18.2.0"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
package/types/Checkbox.d.ts
CHANGED
|
@@ -281,7 +281,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
281
281
|
* Used to disable passing styles down to children.
|
|
282
282
|
*/
|
|
283
283
|
disablePassStyles?: boolean | undefined;
|
|
284
|
-
}) |
|
|
284
|
+
}) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & 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<{
|
|
285
285
|
readonly fullscreen?: boolean | undefined;
|
|
286
286
|
readonly elevation?: SizeTokens | undefined;
|
|
287
287
|
} & {
|
|
@@ -342,7 +342,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & R
|
|
|
342
342
|
* Used to disable passing styles down to children.
|
|
343
343
|
*/
|
|
344
344
|
disablePassStyles?: boolean | undefined;
|
|
345
|
-
},
|
|
345
|
+
}, "ref">) & React.RefAttributes<TamaguiElement>>;
|
|
346
346
|
};
|
|
347
347
|
export { createCheckboxScope };
|
|
348
348
|
//# sourceMappingURL=Checkbox.d.ts.map
|