@tamagui/radio-group 1.0.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/LICENSE +21 -0
- package/dist/cjs/RadioGroup.cjs +132 -0
- package/dist/cjs/RadioGroup.js +120 -0
- package/dist/cjs/RadioGroup.js.map +6 -0
- package/dist/cjs/RadioGroup.native.js +137 -0
- package/dist/cjs/RadioGroup.native.js.map +1 -0
- package/dist/cjs/RadioGroupStyledContext.cjs +30 -0
- package/dist/cjs/RadioGroupStyledContext.js +28 -0
- package/dist/cjs/RadioGroupStyledContext.js.map +6 -0
- package/dist/cjs/RadioGroupStyledContext.native.js +33 -0
- package/dist/cjs/RadioGroupStyledContext.native.js.map +1 -0
- package/dist/cjs/createRadioGroup.cjs +165 -0
- package/dist/cjs/createRadioGroup.js +106 -0
- package/dist/cjs/createRadioGroup.js.map +6 -0
- package/dist/cjs/createRadioGroup.native.js +168 -0
- package/dist/cjs/createRadioGroup.native.js.map +1 -0
- package/dist/cjs/index.cjs +36 -0
- package/dist/cjs/index.js +29 -0
- package/dist/cjs/index.js.map +6 -0
- package/dist/cjs/index.native.js +39 -0
- package/dist/cjs/index.native.js.map +1 -0
- package/dist/esm/RadioGroup.js +106 -0
- package/dist/esm/RadioGroup.js.map +6 -0
- package/dist/esm/RadioGroup.mjs +107 -0
- package/dist/esm/RadioGroup.mjs.map +1 -0
- package/dist/esm/RadioGroup.native.js +109 -0
- package/dist/esm/RadioGroup.native.js.map +1 -0
- package/dist/esm/RadioGroupStyledContext.js +12 -0
- package/dist/esm/RadioGroupStyledContext.js.map +6 -0
- package/dist/esm/RadioGroupStyledContext.mjs +7 -0
- package/dist/esm/RadioGroupStyledContext.mjs.map +1 -0
- package/dist/esm/RadioGroupStyledContext.native.js +7 -0
- package/dist/esm/RadioGroupStyledContext.native.js.map +1 -0
- package/dist/esm/createRadioGroup.js +95 -0
- package/dist/esm/createRadioGroup.js.map +6 -0
- package/dist/esm/createRadioGroup.mjs +131 -0
- package/dist/esm/createRadioGroup.mjs.map +1 -0
- package/dist/esm/createRadioGroup.native.js +131 -0
- package/dist/esm/createRadioGroup.native.js.map +1 -0
- package/dist/esm/index.js +18 -0
- package/dist/esm/index.js.map +6 -0
- package/dist/esm/index.mjs +12 -0
- package/dist/esm/index.mjs.map +1 -0
- package/dist/esm/index.native.js +12 -0
- package/dist/esm/index.native.js.map +1 -0
- package/dist/jsx/RadioGroup.js +106 -0
- package/dist/jsx/RadioGroup.js.map +6 -0
- package/dist/jsx/RadioGroup.mjs +107 -0
- package/dist/jsx/RadioGroup.mjs.map +1 -0
- package/dist/jsx/RadioGroup.native.js +137 -0
- package/dist/jsx/RadioGroup.native.js.map +1 -0
- package/dist/jsx/RadioGroupStyledContext.js +12 -0
- package/dist/jsx/RadioGroupStyledContext.js.map +6 -0
- package/dist/jsx/RadioGroupStyledContext.mjs +7 -0
- package/dist/jsx/RadioGroupStyledContext.mjs.map +1 -0
- package/dist/jsx/RadioGroupStyledContext.native.js +33 -0
- package/dist/jsx/RadioGroupStyledContext.native.js.map +1 -0
- package/dist/jsx/createRadioGroup.js +95 -0
- package/dist/jsx/createRadioGroup.js.map +6 -0
- package/dist/jsx/createRadioGroup.mjs +131 -0
- package/dist/jsx/createRadioGroup.mjs.map +1 -0
- package/dist/jsx/createRadioGroup.native.js +168 -0
- package/dist/jsx/createRadioGroup.native.js.map +1 -0
- package/dist/jsx/index.js +18 -0
- package/dist/jsx/index.js.map +6 -0
- package/dist/jsx/index.mjs +12 -0
- package/dist/jsx/index.mjs.map +1 -0
- package/dist/jsx/index.native.js +39 -0
- package/dist/jsx/index.native.js.map +1 -0
- package/package.json +62 -0
- package/src/RadioGroup.tsx +125 -0
- package/src/RadioGroupStyledContext.tsx +10 -0
- package/src/createRadioGroup.tsx +191 -0
- package/src/index.ts +16 -0
- package/types/RadioGroup.d.ts +18 -0
- package/types/RadioGroup.d.ts.map +1 -0
- package/types/RadioGroupStyledContext.d.ts +6 -0
- package/types/RadioGroupStyledContext.d.ts.map +1 -0
- package/types/createRadioGroup.d.ts +282 -0
- package/types/createRadioGroup.d.ts.map +1 -0
- package/types/index.d.ts +253 -0
- package/types/index.d.ts.map +1 -0
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
import type { GetProps } from '@tamagui/core';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { RadioGroupFrame, RadioGroupIndicatorFrame, RadioGroupItemFrame } from './RadioGroup';
|
|
4
|
+
type RadioIndicatorProps = GetProps<typeof RadioGroupIndicatorFrame> & {
|
|
5
|
+
forceMount?: boolean;
|
|
6
|
+
unstyled?: boolean;
|
|
7
|
+
};
|
|
8
|
+
export type RadioGroupItemProps = GetProps<typeof RadioGroupItemFrame> & {
|
|
9
|
+
value: string;
|
|
10
|
+
id?: string;
|
|
11
|
+
labelledBy?: string;
|
|
12
|
+
disabled?: boolean;
|
|
13
|
+
};
|
|
14
|
+
export type RadioGroupProps = GetProps<typeof RadioGroupFrame> & {
|
|
15
|
+
value?: string;
|
|
16
|
+
defaultValue?: string;
|
|
17
|
+
onValueChange?: (value: string) => void;
|
|
18
|
+
required?: boolean;
|
|
19
|
+
disabled?: boolean;
|
|
20
|
+
name?: string;
|
|
21
|
+
native?: boolean;
|
|
22
|
+
accentColor?: string;
|
|
23
|
+
};
|
|
24
|
+
type RadioGroupComponent = (props: RadioGroupProps) => any;
|
|
25
|
+
type RadioGroupIndicatorComponent = (props: RadioIndicatorProps) => any;
|
|
26
|
+
type RadioGroupItemComponent = (props: RadioGroupItemProps) => any;
|
|
27
|
+
export declare function createRadioGroup<F extends RadioGroupComponent, D extends RadioGroupIndicatorComponent, I extends RadioGroupItemComponent>(createProps: {
|
|
28
|
+
disableActiveTheme?: boolean;
|
|
29
|
+
Frame?: F;
|
|
30
|
+
Indicator?: D;
|
|
31
|
+
Item?: I;
|
|
32
|
+
}): React.ForwardRefExoticComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
33
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
34
|
+
fullscreen?: boolean | undefined;
|
|
35
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
36
|
+
}>, "native" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "name" | keyof import("@tamagui/core").RNTamaguiViewNonStyleProps | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "value" | "orientation" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
37
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
38
|
+
fullscreen?: boolean | undefined;
|
|
39
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
40
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> | "defaultValue" | "onValueChange" | "required" | "accentColor"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
41
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
42
|
+
fullscreen?: boolean | undefined;
|
|
43
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
44
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
45
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
46
|
+
fullscreen?: boolean | undefined;
|
|
47
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
48
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
49
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
50
|
+
fullscreen?: boolean | undefined;
|
|
51
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
52
|
+
}>> & {
|
|
53
|
+
value?: string;
|
|
54
|
+
defaultValue?: string;
|
|
55
|
+
onValueChange?: (value: string) => void;
|
|
56
|
+
required?: boolean;
|
|
57
|
+
disabled?: boolean;
|
|
58
|
+
name?: string;
|
|
59
|
+
native?: boolean;
|
|
60
|
+
accentColor?: string;
|
|
61
|
+
} & React.RefAttributes<import("@tamagui/core").TamaguiElement>> & import("@tamagui/core").StaticComponentObject<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
62
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
63
|
+
fullscreen?: boolean | undefined;
|
|
64
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
65
|
+
}>, "native" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "name" | keyof import("@tamagui/core").RNTamaguiViewNonStyleProps | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "value" | "orientation" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
66
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
67
|
+
fullscreen?: boolean | undefined;
|
|
68
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
69
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> | "defaultValue" | "onValueChange" | "required" | "accentColor"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
70
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
71
|
+
fullscreen?: boolean | undefined;
|
|
72
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
73
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
74
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
75
|
+
fullscreen?: boolean | undefined;
|
|
76
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
77
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
78
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
79
|
+
fullscreen?: boolean | undefined;
|
|
80
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
81
|
+
}>> & {
|
|
82
|
+
value?: string;
|
|
83
|
+
defaultValue?: string;
|
|
84
|
+
onValueChange?: (value: string) => void;
|
|
85
|
+
required?: boolean;
|
|
86
|
+
disabled?: boolean;
|
|
87
|
+
name?: string;
|
|
88
|
+
native?: boolean;
|
|
89
|
+
accentColor?: string;
|
|
90
|
+
}, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
91
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
92
|
+
fullscreen?: boolean | undefined;
|
|
93
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
94
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
95
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
96
|
+
fullscreen?: boolean | undefined;
|
|
97
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
98
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
99
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
100
|
+
fullscreen?: boolean | undefined;
|
|
101
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
102
|
+
}>> & {
|
|
103
|
+
value?: string;
|
|
104
|
+
defaultValue?: string;
|
|
105
|
+
onValueChange?: (value: string) => void;
|
|
106
|
+
required?: boolean;
|
|
107
|
+
disabled?: boolean;
|
|
108
|
+
name?: string;
|
|
109
|
+
native?: boolean;
|
|
110
|
+
accentColor?: string;
|
|
111
|
+
}, import("@tamagui/core").StackStyleBase, {
|
|
112
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
113
|
+
fullscreen?: boolean | undefined;
|
|
114
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
115
|
+
}, import("@tamagui/core").StaticConfigPublic> & Omit<import("@tamagui/core").StaticConfigPublic, "staticConfig" | "styleable"> & {
|
|
116
|
+
__tama: [Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
117
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
118
|
+
fullscreen?: boolean | undefined;
|
|
119
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
120
|
+
}>, "native" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "name" | keyof import("@tamagui/core").RNTamaguiViewNonStyleProps | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "value" | "orientation" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
121
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
122
|
+
fullscreen?: boolean | undefined;
|
|
123
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
124
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> | "defaultValue" | "onValueChange" | "required" | "accentColor"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
125
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
126
|
+
fullscreen?: boolean | undefined;
|
|
127
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
128
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
129
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
130
|
+
fullscreen?: boolean | undefined;
|
|
131
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
132
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
133
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
134
|
+
fullscreen?: boolean | undefined;
|
|
135
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
136
|
+
}>> & {
|
|
137
|
+
value?: string;
|
|
138
|
+
defaultValue?: string;
|
|
139
|
+
onValueChange?: (value: string) => void;
|
|
140
|
+
required?: boolean;
|
|
141
|
+
disabled?: boolean;
|
|
142
|
+
name?: string;
|
|
143
|
+
native?: boolean;
|
|
144
|
+
accentColor?: string;
|
|
145
|
+
}, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "orientation"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
146
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
147
|
+
fullscreen?: boolean | undefined;
|
|
148
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
149
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
150
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
151
|
+
fullscreen?: boolean | undefined;
|
|
152
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
153
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
154
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
155
|
+
fullscreen?: boolean | undefined;
|
|
156
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
157
|
+
}>> & {
|
|
158
|
+
value?: string;
|
|
159
|
+
defaultValue?: string;
|
|
160
|
+
onValueChange?: (value: string) => void;
|
|
161
|
+
required?: boolean;
|
|
162
|
+
disabled?: boolean;
|
|
163
|
+
name?: string;
|
|
164
|
+
native?: boolean;
|
|
165
|
+
accentColor?: string;
|
|
166
|
+
}, import("@tamagui/core").StackStyleBase, {
|
|
167
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
168
|
+
fullscreen?: boolean | undefined;
|
|
169
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
170
|
+
}, import("@tamagui/core").StaticConfigPublic];
|
|
171
|
+
} & {
|
|
172
|
+
Item: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
173
|
+
disabled?: boolean | undefined;
|
|
174
|
+
unstyled?: boolean | undefined;
|
|
175
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
176
|
+
fullscreen?: boolean | undefined;
|
|
177
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
178
|
+
}>, "theme" | "debug" | "style" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "render" | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "unstyled" | "id" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "animatedBy" | "onStartShouldSetResponder" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "elevationAndroid" | "rel" | "download" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "onFocus" | "onBlur" | "onPointerCancel" | "onPointerDown" | "onPointerMove" | "onPointerUp" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancelCapture" | "onPointerDownCapture" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onMouseMove" | "onMouseOver" | "onMouseOut" | "onClick" | "onDoubleClick" | "onContextMenu" | "onWheel" | "onKeyDown" | "onKeyUp" | "onChange" | "onInput" | "onBeforeInput" | "onScroll" | "onCopy" | "onCut" | "onPaste" | "onDrag" | "onDragStart" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDrop" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "size" | "value" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
179
|
+
disabled?: boolean | undefined;
|
|
180
|
+
unstyled?: boolean | undefined;
|
|
181
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
182
|
+
fullscreen?: boolean | undefined;
|
|
183
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
184
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> | "labelledBy"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "unstyled" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "size"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
185
|
+
disabled?: boolean | undefined;
|
|
186
|
+
unstyled?: boolean | undefined;
|
|
187
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
188
|
+
fullscreen?: boolean | undefined;
|
|
189
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
190
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
191
|
+
disabled?: boolean | undefined;
|
|
192
|
+
unstyled?: boolean | undefined;
|
|
193
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
194
|
+
fullscreen?: boolean | undefined;
|
|
195
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
196
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
197
|
+
disabled?: boolean | undefined;
|
|
198
|
+
unstyled?: boolean | undefined;
|
|
199
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
200
|
+
fullscreen?: boolean | undefined;
|
|
201
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
202
|
+
}>> & {
|
|
203
|
+
value: string;
|
|
204
|
+
id?: string;
|
|
205
|
+
labelledBy?: string;
|
|
206
|
+
disabled?: boolean;
|
|
207
|
+
}, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "unstyled" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "size"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
208
|
+
disabled?: boolean | undefined;
|
|
209
|
+
unstyled?: boolean | undefined;
|
|
210
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
211
|
+
fullscreen?: boolean | undefined;
|
|
212
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
213
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
214
|
+
disabled?: boolean | undefined;
|
|
215
|
+
unstyled?: boolean | undefined;
|
|
216
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
217
|
+
fullscreen?: boolean | undefined;
|
|
218
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
219
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
220
|
+
disabled?: boolean | undefined;
|
|
221
|
+
unstyled?: boolean | undefined;
|
|
222
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
223
|
+
fullscreen?: boolean | undefined;
|
|
224
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
225
|
+
}>> & {
|
|
226
|
+
value: string;
|
|
227
|
+
id?: string;
|
|
228
|
+
labelledBy?: string;
|
|
229
|
+
disabled?: boolean;
|
|
230
|
+
}, import("@tamagui/core").StackStyleBase, {
|
|
231
|
+
disabled?: boolean | undefined;
|
|
232
|
+
unstyled?: boolean | undefined;
|
|
233
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
234
|
+
fullscreen?: boolean | undefined;
|
|
235
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
236
|
+
}, import("@tamagui/core").StaticConfigPublic>;
|
|
237
|
+
Indicator: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
238
|
+
unstyled?: boolean | undefined;
|
|
239
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
240
|
+
fullscreen?: boolean | undefined;
|
|
241
|
+
}>, "theme" | "debug" | "style" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "render" | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "unstyled" | "id" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "animatedBy" | "onStartShouldSetResponder" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "elevationAndroid" | "rel" | "download" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "onFocus" | "onBlur" | "onPointerCancel" | "onPointerDown" | "onPointerMove" | "onPointerUp" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancelCapture" | "onPointerDownCapture" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onMouseMove" | "onMouseOver" | "onMouseOut" | "onClick" | "onDoubleClick" | "onContextMenu" | "onWheel" | "onKeyDown" | "onKeyUp" | "onChange" | "onInput" | "onBeforeInput" | "onScroll" | "onCopy" | "onCut" | "onPaste" | "onDrag" | "onDragStart" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDrop" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
242
|
+
unstyled?: boolean | undefined;
|
|
243
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
244
|
+
fullscreen?: boolean | undefined;
|
|
245
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> | "forceMount"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
246
|
+
unstyled?: boolean | undefined;
|
|
247
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
248
|
+
fullscreen?: boolean | undefined;
|
|
249
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
250
|
+
unstyled?: boolean | undefined;
|
|
251
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
252
|
+
fullscreen?: boolean | undefined;
|
|
253
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
254
|
+
unstyled?: boolean | undefined;
|
|
255
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
256
|
+
fullscreen?: boolean | undefined;
|
|
257
|
+
}>> & {
|
|
258
|
+
forceMount?: boolean;
|
|
259
|
+
unstyled?: boolean;
|
|
260
|
+
}, import("@tamagui/core").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
261
|
+
unstyled?: boolean | undefined;
|
|
262
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
263
|
+
fullscreen?: boolean | undefined;
|
|
264
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
265
|
+
unstyled?: boolean | undefined;
|
|
266
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
267
|
+
fullscreen?: boolean | undefined;
|
|
268
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
269
|
+
unstyled?: boolean | undefined;
|
|
270
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
271
|
+
fullscreen?: boolean | undefined;
|
|
272
|
+
}>> & {
|
|
273
|
+
forceMount?: boolean;
|
|
274
|
+
unstyled?: boolean;
|
|
275
|
+
}, import("@tamagui/core").StackStyleBase, {
|
|
276
|
+
unstyled?: boolean | undefined;
|
|
277
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
278
|
+
fullscreen?: boolean | undefined;
|
|
279
|
+
}, import("@tamagui/core").StaticConfigPublic>;
|
|
280
|
+
};
|
|
281
|
+
export {};
|
|
282
|
+
//# sourceMappingURL=createRadioGroup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createRadioGroup.d.ts","sourceRoot":"","sources":["../src/createRadioGroup.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAY7C,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EACL,eAAe,EACf,wBAAwB,EACxB,mBAAmB,EACpB,MAAM,cAAc,CAAA;AAQrB,KAAK,mBAAmB,GAAG,QAAQ,CAAC,OAAO,wBAAwB,CAAC,GAAG;IACrE,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAA;AAQD,MAAM,MAAM,mBAAmB,GAAG,QAAQ,CAAC,OAAO,mBAAmB,CAAC,GAAG;IACvE,KAAK,EAAE,MAAM,CAAA;IACb,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAA;AAED,MAAM,MAAM,eAAe,GAAG,QAAQ,CAAC,OAAO,eAAe,CAAC,GAAG;IAC/D,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,KAAK,mBAAmB,GAAG,CAAC,KAAK,EAAE,eAAe,KAAK,GAAG,CAAA;AAE1D,KAAK,4BAA4B,GAAG,CAAC,KAAK,EAAE,mBAAmB,KAAK,GAAG,CAAA;AAEvE,KAAK,uBAAuB,GAAG,CAAC,KAAK,EAAE,mBAAmB,KAAK,GAAG,CAAA;AAElE,wBAAgB,gBAAgB,CAC9B,CAAC,SAAS,mBAAmB,EAC7B,CAAC,SAAS,4BAA4B,EACtC,CAAC,SAAS,uBAAuB,EACjC,WAAW,EAAE;IAAE,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAAC,KAAK,CAAC,EAAE,CAAC,CAAC;IAAC,SAAS,CAAC,EAAE,CAAC,CAAC;IAAC,IAAI,CAAC,EAAE,CAAC,CAAA;CAAE;;;;;;;;;;;;;;;;;;;;;YAkBvE,MAAM;mBACC,MAAM;oBACL,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI;eAC5B,OAAO;eACP,OAAO;WACX,MAAM;aACJ,OAAO;kBACF,MAAM;;;;;;;;;;;;;;;;;;;;;;YAPZ,MAAM;mBACC,MAAM;oBACL,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI;eAC5B,OAAO;eACP,OAAO;WACX,MAAM;aACJ,OAAO;kBACF,MAAM;;;;;;;;;;;;;;YAPZ,MAAM;mBACC,MAAM;oBACL,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI;eAC5B,OAAO;eACP,OAAO;WACX,MAAM;aACJ,OAAO;kBACF,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAPZ,MAAM;uBACC,MAAM;wBACL,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI;mBAC5B,OAAO;mBACP,OAAO;eACX,MAAM;iBACJ,OAAO;sBACF,MAAM;;;;;;;;;;;;;;gBAPZ,MAAM;uBACC,MAAM;wBACL,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI;mBAC5B,OAAO;mBACP,OAAO;eACX,MAAM;iBACJ,OAAO;sBACF,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eApDf,MAAM;aACR,MAAM;qBACE,MAAM;mBACR,OAAO;;;;;;;;;;;;;;;;;;;;eAHX,MAAM;aACR,MAAM;qBACE,MAAM;mBACR,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAdL,OAAO;mBACT,OAAO;;;;;;;;;;;;;;qBADL,OAAO;mBACT,OAAO;;;;;;EAmKnB"}
|
package/types/index.d.ts
ADDED
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
export * from './createRadioGroup';
|
|
2
|
+
export * from './RadioGroup';
|
|
3
|
+
export * from './RadioGroupStyledContext';
|
|
4
|
+
export declare const RadioGroup: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
5
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
6
|
+
fullscreen?: boolean | undefined;
|
|
7
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
8
|
+
}>, "native" | `$${string}` | `$${number}` | import("@tamagui/web").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "name" | keyof import("@tamagui/core").RNTamaguiViewNonStyleProps | "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | "value" | "orientation" | keyof import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
9
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
10
|
+
fullscreen?: boolean | undefined;
|
|
11
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
12
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> | "defaultValue" | "onValueChange" | "required" | "accentColor"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | "orientation"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
13
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
14
|
+
fullscreen?: boolean | undefined;
|
|
15
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
16
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
17
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
18
|
+
fullscreen?: boolean | undefined;
|
|
19
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
20
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
21
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
22
|
+
fullscreen?: boolean | undefined;
|
|
23
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
24
|
+
}>> & {
|
|
25
|
+
value?: string;
|
|
26
|
+
defaultValue?: string;
|
|
27
|
+
onValueChange?: ((value: string) => void) | undefined;
|
|
28
|
+
required?: boolean;
|
|
29
|
+
disabled?: boolean;
|
|
30
|
+
name?: string;
|
|
31
|
+
native?: boolean;
|
|
32
|
+
accentColor?: string;
|
|
33
|
+
} & import("react").RefAttributes<import("@tamagui/web").TamaguiElement>> & import("@tamagui/web").StaticComponentObject<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
34
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
35
|
+
fullscreen?: boolean | undefined;
|
|
36
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
37
|
+
}>, "native" | `$${string}` | `$${number}` | import("@tamagui/web").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "name" | keyof import("@tamagui/core").RNTamaguiViewNonStyleProps | "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | "value" | "orientation" | keyof import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
38
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
39
|
+
fullscreen?: boolean | undefined;
|
|
40
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
41
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> | "defaultValue" | "onValueChange" | "required" | "accentColor"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | "orientation"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
42
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
43
|
+
fullscreen?: boolean | undefined;
|
|
44
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
45
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
46
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
47
|
+
fullscreen?: boolean | undefined;
|
|
48
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
49
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
50
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
51
|
+
fullscreen?: boolean | undefined;
|
|
52
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
53
|
+
}>> & {
|
|
54
|
+
value?: string;
|
|
55
|
+
defaultValue?: string;
|
|
56
|
+
onValueChange?: ((value: string) => void) | undefined;
|
|
57
|
+
required?: boolean;
|
|
58
|
+
disabled?: boolean;
|
|
59
|
+
name?: string;
|
|
60
|
+
native?: boolean;
|
|
61
|
+
accentColor?: string;
|
|
62
|
+
}, import("@tamagui/web").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | "orientation"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
63
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
64
|
+
fullscreen?: boolean | undefined;
|
|
65
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
66
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
67
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
68
|
+
fullscreen?: boolean | undefined;
|
|
69
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
70
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
71
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
72
|
+
fullscreen?: boolean | undefined;
|
|
73
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
74
|
+
}>> & {
|
|
75
|
+
value?: string;
|
|
76
|
+
defaultValue?: string;
|
|
77
|
+
onValueChange?: ((value: string) => void) | undefined;
|
|
78
|
+
required?: boolean;
|
|
79
|
+
disabled?: boolean;
|
|
80
|
+
name?: string;
|
|
81
|
+
native?: boolean;
|
|
82
|
+
accentColor?: string;
|
|
83
|
+
}, import("@tamagui/web").StackStyleBase, {
|
|
84
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
85
|
+
fullscreen?: boolean | undefined;
|
|
86
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
87
|
+
}, import("@tamagui/web").StaticConfigPublic> & Omit<import("@tamagui/web").StaticConfigPublic, "staticConfig" | "styleable"> & {
|
|
88
|
+
__tama: [Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
89
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
90
|
+
fullscreen?: boolean | undefined;
|
|
91
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
92
|
+
}>, "native" | `$${string}` | `$${number}` | import("@tamagui/web").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "name" | keyof import("@tamagui/core").RNTamaguiViewNonStyleProps | "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | "value" | "orientation" | keyof import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
93
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
94
|
+
fullscreen?: boolean | undefined;
|
|
95
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
96
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> | "defaultValue" | "onValueChange" | "required" | "accentColor"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | "orientation"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
97
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
98
|
+
fullscreen?: boolean | undefined;
|
|
99
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
100
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
101
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
102
|
+
fullscreen?: boolean | undefined;
|
|
103
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
104
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
105
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
106
|
+
fullscreen?: boolean | undefined;
|
|
107
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
108
|
+
}>> & {
|
|
109
|
+
value?: string;
|
|
110
|
+
defaultValue?: string;
|
|
111
|
+
onValueChange?: ((value: string) => void) | undefined;
|
|
112
|
+
required?: boolean;
|
|
113
|
+
disabled?: boolean;
|
|
114
|
+
name?: string;
|
|
115
|
+
native?: boolean;
|
|
116
|
+
accentColor?: string;
|
|
117
|
+
}, import("@tamagui/web").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | "orientation"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
118
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
119
|
+
fullscreen?: boolean | undefined;
|
|
120
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
121
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
122
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
123
|
+
fullscreen?: boolean | undefined;
|
|
124
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
125
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
126
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
127
|
+
fullscreen?: boolean | undefined;
|
|
128
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
129
|
+
}>> & {
|
|
130
|
+
value?: string;
|
|
131
|
+
defaultValue?: string;
|
|
132
|
+
onValueChange?: ((value: string) => void) | undefined;
|
|
133
|
+
required?: boolean;
|
|
134
|
+
disabled?: boolean;
|
|
135
|
+
name?: string;
|
|
136
|
+
native?: boolean;
|
|
137
|
+
accentColor?: string;
|
|
138
|
+
}, import("@tamagui/web").StackStyleBase, {
|
|
139
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
140
|
+
fullscreen?: boolean | undefined;
|
|
141
|
+
orientation?: "horizontal" | "vertical" | undefined;
|
|
142
|
+
}, import("@tamagui/web").StaticConfigPublic];
|
|
143
|
+
} & {
|
|
144
|
+
Item: import("@tamagui/web").TamaguiComponent<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
145
|
+
disabled?: boolean | undefined;
|
|
146
|
+
unstyled?: boolean | undefined;
|
|
147
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
148
|
+
fullscreen?: boolean | undefined;
|
|
149
|
+
size?: import("@tamagui/web").SizeTokens | undefined;
|
|
150
|
+
}>, "theme" | "debug" | "style" | `$${string}` | `$${number}` | import("@tamagui/web").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "render" | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "unstyled" | "id" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "animatedBy" | "onStartShouldSetResponder" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "elevationAndroid" | "rel" | "download" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "onFocus" | "onBlur" | "onPointerCancel" | "onPointerDown" | "onPointerMove" | "onPointerUp" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancelCapture" | "onPointerDownCapture" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onMouseMove" | "onMouseOver" | "onMouseOut" | "onClick" | "onDoubleClick" | "onContextMenu" | "onWheel" | "onKeyDown" | "onKeyUp" | "onChange" | "onInput" | "onBeforeInput" | "onScroll" | "onCopy" | "onCut" | "onPaste" | "onDrag" | "onDragStart" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDrop" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | "size" | "value" | keyof import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
151
|
+
disabled?: boolean | undefined;
|
|
152
|
+
unstyled?: boolean | undefined;
|
|
153
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
154
|
+
fullscreen?: boolean | undefined;
|
|
155
|
+
size?: import("@tamagui/web").SizeTokens | undefined;
|
|
156
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> | "labelledBy"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "unstyled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | "size"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
157
|
+
disabled?: boolean | undefined;
|
|
158
|
+
unstyled?: boolean | undefined;
|
|
159
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
160
|
+
fullscreen?: boolean | undefined;
|
|
161
|
+
size?: import("@tamagui/web").SizeTokens | undefined;
|
|
162
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
163
|
+
disabled?: boolean | undefined;
|
|
164
|
+
unstyled?: boolean | undefined;
|
|
165
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
166
|
+
fullscreen?: boolean | undefined;
|
|
167
|
+
size?: import("@tamagui/web").SizeTokens | undefined;
|
|
168
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
169
|
+
disabled?: boolean | undefined;
|
|
170
|
+
unstyled?: boolean | undefined;
|
|
171
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
172
|
+
fullscreen?: boolean | undefined;
|
|
173
|
+
size?: import("@tamagui/web").SizeTokens | undefined;
|
|
174
|
+
}>> & {
|
|
175
|
+
value: string;
|
|
176
|
+
id?: string;
|
|
177
|
+
labelledBy?: string;
|
|
178
|
+
disabled?: boolean;
|
|
179
|
+
}, import("@tamagui/web").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "unstyled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | "size"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
180
|
+
disabled?: boolean | undefined;
|
|
181
|
+
unstyled?: boolean | undefined;
|
|
182
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
183
|
+
fullscreen?: boolean | undefined;
|
|
184
|
+
size?: import("@tamagui/web").SizeTokens | undefined;
|
|
185
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
186
|
+
disabled?: boolean | undefined;
|
|
187
|
+
unstyled?: boolean | undefined;
|
|
188
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
189
|
+
fullscreen?: boolean | undefined;
|
|
190
|
+
size?: import("@tamagui/web").SizeTokens | undefined;
|
|
191
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
192
|
+
disabled?: boolean | undefined;
|
|
193
|
+
unstyled?: boolean | undefined;
|
|
194
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
195
|
+
fullscreen?: boolean | undefined;
|
|
196
|
+
size?: import("@tamagui/web").SizeTokens | undefined;
|
|
197
|
+
}>> & {
|
|
198
|
+
value: string;
|
|
199
|
+
id?: string;
|
|
200
|
+
labelledBy?: string;
|
|
201
|
+
disabled?: boolean;
|
|
202
|
+
}, import("@tamagui/web").StackStyleBase, {
|
|
203
|
+
disabled?: boolean | undefined;
|
|
204
|
+
unstyled?: boolean | undefined;
|
|
205
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
206
|
+
fullscreen?: boolean | undefined;
|
|
207
|
+
size?: import("@tamagui/web").SizeTokens | undefined;
|
|
208
|
+
}, import("@tamagui/web").StaticConfigPublic>;
|
|
209
|
+
Indicator: import("@tamagui/web").TamaguiComponent<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
210
|
+
unstyled?: boolean | undefined;
|
|
211
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
212
|
+
fullscreen?: boolean | undefined;
|
|
213
|
+
}>, "theme" | "debug" | "style" | `$${string}` | `$${number}` | import("@tamagui/web").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "render" | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "unstyled" | "id" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "animatedBy" | "onStartShouldSetResponder" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "elevationAndroid" | "rel" | "download" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "onFocus" | "onBlur" | "onPointerCancel" | "onPointerDown" | "onPointerMove" | "onPointerUp" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancelCapture" | "onPointerDownCapture" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onMouseMove" | "onMouseOver" | "onMouseOut" | "onClick" | "onDoubleClick" | "onContextMenu" | "onWheel" | "onKeyDown" | "onKeyUp" | "onChange" | "onInput" | "onBeforeInput" | "onScroll" | "onCopy" | "onCut" | "onPaste" | "onDrag" | "onDragStart" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDrop" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen" | keyof import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
214
|
+
unstyled?: boolean | undefined;
|
|
215
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
216
|
+
fullscreen?: boolean | undefined;
|
|
217
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> | "forceMount"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
218
|
+
unstyled?: boolean | undefined;
|
|
219
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
220
|
+
fullscreen?: boolean | undefined;
|
|
221
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
222
|
+
unstyled?: boolean | undefined;
|
|
223
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
224
|
+
fullscreen?: boolean | undefined;
|
|
225
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
226
|
+
unstyled?: boolean | undefined;
|
|
227
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
228
|
+
fullscreen?: boolean | undefined;
|
|
229
|
+
}>> & {
|
|
230
|
+
forceMount?: boolean;
|
|
231
|
+
unstyled?: boolean;
|
|
232
|
+
}, import("@tamagui/web").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "fullscreen"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
233
|
+
unstyled?: boolean | undefined;
|
|
234
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
235
|
+
fullscreen?: boolean | undefined;
|
|
236
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
237
|
+
unstyled?: boolean | undefined;
|
|
238
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
239
|
+
fullscreen?: boolean | undefined;
|
|
240
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
241
|
+
unstyled?: boolean | undefined;
|
|
242
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
243
|
+
fullscreen?: boolean | undefined;
|
|
244
|
+
}>> & {
|
|
245
|
+
forceMount?: boolean;
|
|
246
|
+
unstyled?: boolean;
|
|
247
|
+
}, import("@tamagui/web").StackStyleBase, {
|
|
248
|
+
unstyled?: boolean | undefined;
|
|
249
|
+
elevation?: number | import("@tamagui/web").SizeTokens | undefined;
|
|
250
|
+
fullscreen?: boolean | undefined;
|
|
251
|
+
}, import("@tamagui/web").StaticConfigPublic>;
|
|
252
|
+
};
|
|
253
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAOA,cAAc,oBAAoB,CAAA;AAClC,cAAc,cAAc,CAAA;AAC5B,cAAc,2BAA2B,CAAA;AAEzC,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIrB,CAAA"}
|