@tamagui/radio-group 1.120.2 → 1.121.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 +15 -15
- package/types/RadioGroup.d.ts +15 -15
- package/types/createRadioGroup.d.ts +201 -201
- package/types/index.d.ts +201 -201
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/radio-group",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.121.1",
|
|
4
4
|
"removeSideEffects": true,
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css"
|
|
@@ -37,22 +37,22 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@tamagui/compose-refs": "1.
|
|
41
|
-
"@tamagui/constants": "1.
|
|
42
|
-
"@tamagui/core": "1.
|
|
43
|
-
"@tamagui/create-context": "1.
|
|
44
|
-
"@tamagui/focusable": "1.
|
|
45
|
-
"@tamagui/get-token": "1.
|
|
46
|
-
"@tamagui/helpers": "1.
|
|
47
|
-
"@tamagui/label": "1.
|
|
48
|
-
"@tamagui/radio-headless": "1.
|
|
49
|
-
"@tamagui/roving-focus": "1.
|
|
50
|
-
"@tamagui/stacks": "1.
|
|
51
|
-
"@tamagui/use-controllable-state": "1.
|
|
52
|
-
"@tamagui/use-previous": "1.
|
|
40
|
+
"@tamagui/compose-refs": "1.121.1",
|
|
41
|
+
"@tamagui/constants": "1.121.1",
|
|
42
|
+
"@tamagui/core": "1.121.1",
|
|
43
|
+
"@tamagui/create-context": "1.121.1",
|
|
44
|
+
"@tamagui/focusable": "1.121.1",
|
|
45
|
+
"@tamagui/get-token": "1.121.1",
|
|
46
|
+
"@tamagui/helpers": "1.121.1",
|
|
47
|
+
"@tamagui/label": "1.121.1",
|
|
48
|
+
"@tamagui/radio-headless": "1.121.1",
|
|
49
|
+
"@tamagui/roving-focus": "1.121.1",
|
|
50
|
+
"@tamagui/stacks": "1.121.1",
|
|
51
|
+
"@tamagui/use-controllable-state": "1.121.1",
|
|
52
|
+
"@tamagui/use-previous": "1.121.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@tamagui/build": "1.
|
|
55
|
+
"@tamagui/build": "1.121.1",
|
|
56
56
|
"react": "*"
|
|
57
57
|
},
|
|
58
58
|
"publishConfig": {
|
package/types/RadioGroup.d.ts
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
export declare const RadioGroupItemFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
2
|
-
unstyled?: boolean | undefined;
|
|
3
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
4
2
|
disabled?: boolean | undefined;
|
|
5
3
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
6
|
-
transparent?: boolean | undefined;
|
|
7
|
-
fullscreen?: boolean | undefined;
|
|
8
|
-
circular?: boolean | undefined;
|
|
9
4
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
10
5
|
top?: number;
|
|
11
6
|
bottom?: number;
|
|
12
7
|
left?: number;
|
|
13
8
|
right?: number;
|
|
14
|
-
} | undefined;
|
|
9
|
+
} | null | undefined;
|
|
10
|
+
transparent?: boolean | undefined;
|
|
11
|
+
fullscreen?: boolean | undefined;
|
|
12
|
+
circular?: boolean | undefined;
|
|
15
13
|
hoverTheme?: boolean | undefined;
|
|
16
14
|
pressTheme?: boolean | undefined;
|
|
17
15
|
focusTheme?: boolean | undefined;
|
|
@@ -21,19 +19,20 @@ export declare const RadioGroupItemFrame: import("@tamagui/core").TamaguiCompone
|
|
|
21
19
|
radiused?: boolean | undefined;
|
|
22
20
|
padded?: boolean | undefined;
|
|
23
21
|
chromeless?: boolean | "all" | undefined;
|
|
22
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
23
|
+
unstyled?: boolean | undefined;
|
|
24
24
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
25
25
|
export declare const RadioGroupIndicatorFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
26
|
-
unstyled?: boolean | undefined;
|
|
27
26
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
28
|
-
transparent?: boolean | undefined;
|
|
29
|
-
fullscreen?: boolean | undefined;
|
|
30
|
-
circular?: boolean | undefined;
|
|
31
27
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
32
28
|
top?: number;
|
|
33
29
|
bottom?: number;
|
|
34
30
|
left?: number;
|
|
35
31
|
right?: number;
|
|
36
|
-
} | undefined;
|
|
32
|
+
} | null | undefined;
|
|
33
|
+
transparent?: boolean | undefined;
|
|
34
|
+
fullscreen?: boolean | undefined;
|
|
35
|
+
circular?: boolean | undefined;
|
|
37
36
|
hoverTheme?: boolean | undefined;
|
|
38
37
|
pressTheme?: boolean | undefined;
|
|
39
38
|
focusTheme?: boolean | undefined;
|
|
@@ -43,18 +42,19 @@ export declare const RadioGroupIndicatorFrame: import("@tamagui/core").TamaguiCo
|
|
|
43
42
|
radiused?: boolean | undefined;
|
|
44
43
|
padded?: boolean | undefined;
|
|
45
44
|
chromeless?: boolean | "all" | undefined;
|
|
45
|
+
unstyled?: boolean | undefined;
|
|
46
46
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
47
47
|
export declare const RadioGroupFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
48
48
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
49
|
-
transparent?: boolean | undefined;
|
|
50
|
-
fullscreen?: boolean | undefined;
|
|
51
|
-
circular?: boolean | undefined;
|
|
52
49
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
53
50
|
top?: number;
|
|
54
51
|
bottom?: number;
|
|
55
52
|
left?: number;
|
|
56
53
|
right?: number;
|
|
57
|
-
} | undefined;
|
|
54
|
+
} | null | undefined;
|
|
55
|
+
transparent?: boolean | undefined;
|
|
56
|
+
fullscreen?: boolean | undefined;
|
|
57
|
+
circular?: boolean | undefined;
|
|
58
58
|
hoverTheme?: boolean | undefined;
|
|
59
59
|
pressTheme?: boolean | undefined;
|
|
60
60
|
focusTheme?: boolean | undefined;
|