@tamagui/radio-group 1.30.29 → 1.31.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 +10 -10
- package/types/RadioGroup.d.ts +27 -3
- package/types/RadioGroup.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/radio-group",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.31.1",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@radix-ui/react-use-previous": "^1.0.0",
|
|
35
|
-
"@tamagui/compose-refs": "1.
|
|
36
|
-
"@tamagui/core": "1.
|
|
37
|
-
"@tamagui/create-context": "1.
|
|
38
|
-
"@tamagui/focusable": "1.
|
|
39
|
-
"@tamagui/get-token": "1.
|
|
40
|
-
"@tamagui/label": "1.
|
|
41
|
-
"@tamagui/stacks": "1.
|
|
42
|
-
"@tamagui/use-controllable-state": "1.
|
|
35
|
+
"@tamagui/compose-refs": "1.31.1",
|
|
36
|
+
"@tamagui/core": "1.31.1",
|
|
37
|
+
"@tamagui/create-context": "1.31.1",
|
|
38
|
+
"@tamagui/focusable": "1.31.1",
|
|
39
|
+
"@tamagui/get-token": "1.31.1",
|
|
40
|
+
"@tamagui/label": "1.31.1",
|
|
41
|
+
"@tamagui/stacks": "1.31.1",
|
|
42
|
+
"@tamagui/use-controllable-state": "1.31.1"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"react": "*"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@tamagui/build": "1.
|
|
48
|
+
"@tamagui/build": "1.31.1",
|
|
49
49
|
"react": "^18.2.0"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|
package/types/RadioGroup.d.ts
CHANGED
|
@@ -81,6 +81,30 @@ declare const RadioGroupFrame: import("@tamagui/core").TamaguiComponent<Omit<imp
|
|
|
81
81
|
readonly orientation?: "horizontal" | "vertical" | undefined;
|
|
82
82
|
}, {
|
|
83
83
|
displayName: string | undefined;
|
|
84
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & {
|
|
85
|
+
style?: import("@tamagui/core").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
86
|
+
} & 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 & {
|
|
87
|
+
style?: import("@tamagui/core").StyleProp<React.CSSProperties & import("react-native").ViewStyle>;
|
|
88
|
+
};
|
|
89
|
+
__variantProps: {
|
|
90
|
+
readonly fullscreen?: boolean | undefined;
|
|
91
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
92
|
+
} & {
|
|
93
|
+
readonly fullscreen?: boolean | undefined;
|
|
94
|
+
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
95
|
+
} & {
|
|
96
|
+
readonly backgrounded?: boolean | undefined;
|
|
97
|
+
readonly radiused?: boolean | undefined;
|
|
98
|
+
readonly hoverTheme?: boolean | undefined;
|
|
99
|
+
readonly pressTheme?: boolean | undefined;
|
|
100
|
+
readonly focusTheme?: boolean | undefined;
|
|
101
|
+
readonly circular?: boolean | undefined;
|
|
102
|
+
readonly padded?: boolean | undefined;
|
|
103
|
+
readonly elevate?: boolean | undefined;
|
|
104
|
+
readonly bordered?: number | boolean | undefined;
|
|
105
|
+
readonly transparent?: boolean | undefined;
|
|
106
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
107
|
+
};
|
|
84
108
|
}>;
|
|
85
109
|
type RadioGroupProps = GetProps<typeof RadioGroupFrame> & {
|
|
86
110
|
value?: string;
|
|
@@ -237,7 +261,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-nat
|
|
|
237
261
|
readonly bordered?: number | boolean | undefined;
|
|
238
262
|
readonly transparent?: boolean | undefined;
|
|
239
263
|
readonly chromeless?: boolean | "all" | undefined;
|
|
240
|
-
}, "
|
|
264
|
+
}, "size" | "unstyled"> & {
|
|
241
265
|
readonly unstyled?: boolean | undefined;
|
|
242
266
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
243
267
|
} & 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 & {
|
|
@@ -257,7 +281,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-nat
|
|
|
257
281
|
readonly bordered?: number | boolean | undefined;
|
|
258
282
|
readonly transparent?: boolean | undefined;
|
|
259
283
|
readonly chromeless?: boolean | "all" | undefined;
|
|
260
|
-
}, "
|
|
284
|
+
}, "size" | "unstyled"> & {
|
|
261
285
|
readonly unstyled?: boolean | undefined;
|
|
262
286
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
263
287
|
}>> & 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 & {
|
|
@@ -277,7 +301,7 @@ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<import("react-nat
|
|
|
277
301
|
readonly bordered?: number | boolean | undefined;
|
|
278
302
|
readonly transparent?: boolean | undefined;
|
|
279
303
|
readonly chromeless?: boolean | "all" | undefined;
|
|
280
|
-
}, "
|
|
304
|
+
}, "size" | "unstyled"> & {
|
|
281
305
|
readonly unstyled?: boolean | undefined;
|
|
282
306
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
283
307
|
}>> & {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["../src/RadioGroup.tsx"],"names":[],"mappings":"AAIA,OAAO,EACL,QAAQ,EAOT,MAAM,eAAe,CAAA;AAOtB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAMnC,QAAA,MAAgC,qBAAqB,+CACf,CAAA;AAyXtC,KAAK,cAAc,GAAG,WAAW,GAAG,IAAI,CAAA;AAIxC,QAAA,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["../src/RadioGroup.tsx"],"names":[],"mappings":"AAIA,OAAO,EACL,QAAQ,EAOT,MAAM,eAAe,CAAA;AAOtB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAMnC,QAAA,MAAgC,qBAAqB,+CACf,CAAA;AAyXtC,KAAK,cAAc,GAAG,WAAW,GAAG,IAAI,CAAA;AAIxC,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAenB,CAAA;AAEF,KAAK,eAAe,GAAG,QAAQ,CAAC,OAAO,eAAe,CAAC,GAAG;IACxD,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IACvC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BARU,MAAM,KAAK,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eAlQhC,MAAM;;;;;CA8Td,CAAA;AAID,OAAO,EAAE,qBAAqB,EAAE,UAAU,EAAE,CAAA;AAC5C,YAAY,EAAE,eAAe,EAAE,CAAA"}
|