@tamagui/card 1.73.0 → 1.73.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 +5 -5
- package/types/Card.d.ts +1369 -94
- package/types/Card.d.ts.map +1 -1
package/types/Card.d.ts
CHANGED
|
@@ -1,10 +1,35 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { GetProps, SizeTokens } from '@tamagui/web';
|
|
3
|
-
export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
3
|
+
export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
4
|
+
target?: string | undefined;
|
|
5
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
6
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
7
|
+
dangerouslySetInnerHTML?: {
|
|
8
|
+
__html: string;
|
|
9
|
+
} | undefined;
|
|
10
|
+
children?: any;
|
|
11
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
12
|
+
disabled?: boolean | undefined;
|
|
13
|
+
className?: string | undefined;
|
|
14
|
+
themeShallow?: boolean | undefined;
|
|
15
|
+
id?: string | undefined;
|
|
16
|
+
tag?: string | undefined;
|
|
17
|
+
theme?: string | null | undefined;
|
|
18
|
+
group?: undefined;
|
|
19
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
20
|
+
componentName?: string | undefined;
|
|
21
|
+
tabIndex?: string | number | undefined;
|
|
22
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
23
|
+
disableOptimization?: boolean | undefined;
|
|
24
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
25
|
+
disableClassName?: boolean | undefined;
|
|
26
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
27
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
28
|
+
} & {
|
|
4
29
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
5
30
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
6
31
|
readonly fullscreen?: boolean | undefined;
|
|
7
|
-
readonly elevation?: SizeTokens | undefined;
|
|
32
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
8
33
|
} & {
|
|
9
34
|
readonly backgrounded?: boolean | undefined;
|
|
10
35
|
readonly radiused?: boolean | undefined;
|
|
@@ -20,11 +45,36 @@ export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<imp
|
|
|
20
45
|
}, "size" | "unstyled"> & {
|
|
21
46
|
readonly unstyled?: boolean | undefined;
|
|
22
47
|
readonly size?: SizeTokens | undefined;
|
|
23
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
48
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
49
|
+
target?: string | undefined;
|
|
50
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
51
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
52
|
+
dangerouslySetInnerHTML?: {
|
|
53
|
+
__html: string;
|
|
54
|
+
} | undefined;
|
|
55
|
+
children?: any;
|
|
56
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
57
|
+
disabled?: boolean | undefined;
|
|
58
|
+
className?: string | undefined;
|
|
59
|
+
themeShallow?: boolean | undefined;
|
|
60
|
+
id?: string | undefined;
|
|
61
|
+
tag?: string | undefined;
|
|
62
|
+
theme?: string | null | undefined;
|
|
63
|
+
group?: undefined;
|
|
64
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
65
|
+
componentName?: string | undefined;
|
|
66
|
+
tabIndex?: string | number | undefined;
|
|
67
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
68
|
+
disableOptimization?: boolean | undefined;
|
|
69
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
70
|
+
disableClassName?: boolean | undefined;
|
|
71
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
72
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
73
|
+
} & {
|
|
24
74
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
25
75
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
26
76
|
readonly fullscreen?: boolean | undefined;
|
|
27
|
-
readonly elevation?: SizeTokens | undefined;
|
|
77
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
28
78
|
} & {
|
|
29
79
|
readonly backgrounded?: boolean | undefined;
|
|
30
80
|
readonly radiused?: boolean | undefined;
|
|
@@ -40,11 +90,36 @@ export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<imp
|
|
|
40
90
|
}, "size" | "unstyled"> & {
|
|
41
91
|
readonly unstyled?: boolean | undefined;
|
|
42
92
|
readonly size?: SizeTokens | undefined;
|
|
43
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
93
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
94
|
+
target?: string | undefined;
|
|
95
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
96
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
97
|
+
dangerouslySetInnerHTML?: {
|
|
98
|
+
__html: string;
|
|
99
|
+
} | undefined;
|
|
100
|
+
children?: any;
|
|
101
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
102
|
+
disabled?: boolean | undefined;
|
|
103
|
+
className?: string | undefined;
|
|
104
|
+
themeShallow?: boolean | undefined;
|
|
105
|
+
id?: string | undefined;
|
|
106
|
+
tag?: string | undefined;
|
|
107
|
+
theme?: string | null | undefined;
|
|
108
|
+
group?: undefined;
|
|
109
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
110
|
+
componentName?: string | undefined;
|
|
111
|
+
tabIndex?: string | number | undefined;
|
|
112
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
113
|
+
disableOptimization?: boolean | undefined;
|
|
114
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
115
|
+
disableClassName?: boolean | undefined;
|
|
116
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
117
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
118
|
+
} & {
|
|
44
119
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
45
120
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
46
121
|
readonly fullscreen?: boolean | undefined;
|
|
47
|
-
readonly elevation?: SizeTokens | undefined;
|
|
122
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
48
123
|
} & {
|
|
49
124
|
readonly backgrounded?: boolean | undefined;
|
|
50
125
|
readonly radiused?: boolean | undefined;
|
|
@@ -60,11 +135,36 @@ export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<imp
|
|
|
60
135
|
}, "size" | "unstyled"> & {
|
|
61
136
|
readonly unstyled?: boolean | undefined;
|
|
62
137
|
readonly size?: SizeTokens | undefined;
|
|
63
|
-
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
138
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
139
|
+
target?: string | undefined;
|
|
140
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
141
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
142
|
+
dangerouslySetInnerHTML?: {
|
|
143
|
+
__html: string;
|
|
144
|
+
} | undefined;
|
|
145
|
+
children?: any;
|
|
146
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
147
|
+
disabled?: boolean | undefined;
|
|
148
|
+
className?: string | undefined;
|
|
149
|
+
themeShallow?: boolean | undefined;
|
|
150
|
+
id?: string | undefined;
|
|
151
|
+
tag?: string | undefined;
|
|
152
|
+
theme?: string | null | undefined;
|
|
153
|
+
group?: undefined;
|
|
154
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
155
|
+
componentName?: string | undefined;
|
|
156
|
+
tabIndex?: string | number | undefined;
|
|
157
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
158
|
+
disableOptimization?: boolean | undefined;
|
|
159
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
160
|
+
disableClassName?: boolean | undefined;
|
|
161
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
162
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
163
|
+
} & {
|
|
64
164
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
65
165
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
66
166
|
readonly fullscreen?: boolean | undefined;
|
|
67
|
-
readonly elevation?: SizeTokens | undefined;
|
|
167
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
68
168
|
} & {
|
|
69
169
|
readonly backgrounded?: boolean | undefined;
|
|
70
170
|
readonly radiused?: boolean | undefined;
|
|
@@ -82,17 +182,67 @@ export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<imp
|
|
|
82
182
|
readonly size?: SizeTokens | undefined;
|
|
83
183
|
}, {
|
|
84
184
|
displayName: string | undefined;
|
|
85
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
185
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
186
|
+
target?: string | undefined;
|
|
187
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
188
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
189
|
+
dangerouslySetInnerHTML?: {
|
|
190
|
+
__html: string;
|
|
191
|
+
} | undefined;
|
|
192
|
+
children?: any;
|
|
193
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
194
|
+
disabled?: boolean | undefined;
|
|
195
|
+
className?: string | undefined;
|
|
196
|
+
themeShallow?: boolean | undefined;
|
|
197
|
+
id?: string | undefined;
|
|
198
|
+
tag?: string | undefined;
|
|
199
|
+
theme?: string | null | undefined;
|
|
200
|
+
group?: undefined;
|
|
201
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
202
|
+
componentName?: string | undefined;
|
|
203
|
+
tabIndex?: string | number | undefined;
|
|
204
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
205
|
+
disableOptimization?: boolean | undefined;
|
|
206
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
207
|
+
disableClassName?: boolean | undefined;
|
|
208
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
209
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
210
|
+
} & {
|
|
86
211
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
87
212
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
213
|
+
target?: string | undefined;
|
|
214
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
215
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
216
|
+
dangerouslySetInnerHTML?: {
|
|
217
|
+
__html: string;
|
|
218
|
+
} | undefined;
|
|
219
|
+
children?: any;
|
|
220
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
221
|
+
disabled?: boolean | undefined;
|
|
222
|
+
className?: string | undefined;
|
|
223
|
+
themeShallow?: boolean | undefined;
|
|
224
|
+
id?: string | undefined;
|
|
225
|
+
tag?: string | undefined;
|
|
226
|
+
theme?: string | null | undefined;
|
|
227
|
+
group?: undefined;
|
|
228
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
229
|
+
componentName?: string | undefined;
|
|
230
|
+
tabIndex?: string | number | undefined;
|
|
231
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
232
|
+
disableOptimization?: boolean | undefined;
|
|
233
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
234
|
+
disableClassName?: boolean | undefined;
|
|
235
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
236
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
237
|
+
} & {
|
|
88
238
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
89
239
|
};
|
|
90
240
|
__variantProps: {
|
|
91
241
|
readonly fullscreen?: boolean | undefined;
|
|
92
|
-
readonly elevation?: SizeTokens | undefined;
|
|
242
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
93
243
|
} & {
|
|
94
244
|
readonly fullscreen?: boolean | undefined;
|
|
95
|
-
readonly elevation?: SizeTokens | undefined;
|
|
245
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
96
246
|
} & {
|
|
97
247
|
readonly backgrounded?: boolean | undefined;
|
|
98
248
|
readonly radiused?: boolean | undefined;
|
|
@@ -107,11 +257,36 @@ export declare const CardFrame: import("@tamagui/web").TamaguiComponent<Omit<imp
|
|
|
107
257
|
readonly chromeless?: boolean | "all" | undefined;
|
|
108
258
|
};
|
|
109
259
|
}>;
|
|
110
|
-
export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
260
|
+
export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
261
|
+
target?: string | undefined;
|
|
262
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
263
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
264
|
+
dangerouslySetInnerHTML?: {
|
|
265
|
+
__html: string;
|
|
266
|
+
} | undefined;
|
|
267
|
+
children?: any;
|
|
268
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
269
|
+
disabled?: boolean | undefined;
|
|
270
|
+
className?: string | undefined;
|
|
271
|
+
themeShallow?: boolean | undefined;
|
|
272
|
+
id?: string | undefined;
|
|
273
|
+
tag?: string | undefined;
|
|
274
|
+
theme?: string | null | undefined;
|
|
275
|
+
group?: undefined;
|
|
276
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
277
|
+
componentName?: string | undefined;
|
|
278
|
+
tabIndex?: string | number | undefined;
|
|
279
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
280
|
+
disableOptimization?: boolean | undefined;
|
|
281
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
282
|
+
disableClassName?: boolean | undefined;
|
|
283
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
284
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
285
|
+
} & {
|
|
111
286
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
112
287
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
113
288
|
readonly fullscreen?: boolean | undefined;
|
|
114
|
-
readonly elevation?: SizeTokens | undefined;
|
|
289
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
115
290
|
} & {
|
|
116
291
|
readonly backgrounded?: boolean | undefined;
|
|
117
292
|
readonly radiused?: boolean | undefined;
|
|
@@ -127,11 +302,36 @@ export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
127
302
|
}, "size" | "unstyled"> & {
|
|
128
303
|
readonly unstyled?: boolean | undefined;
|
|
129
304
|
readonly size?: SizeTokens | undefined;
|
|
130
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
305
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
306
|
+
target?: string | undefined;
|
|
307
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
308
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
309
|
+
dangerouslySetInnerHTML?: {
|
|
310
|
+
__html: string;
|
|
311
|
+
} | undefined;
|
|
312
|
+
children?: any;
|
|
313
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
314
|
+
disabled?: boolean | undefined;
|
|
315
|
+
className?: string | undefined;
|
|
316
|
+
themeShallow?: boolean | undefined;
|
|
317
|
+
id?: string | undefined;
|
|
318
|
+
tag?: string | undefined;
|
|
319
|
+
theme?: string | null | undefined;
|
|
320
|
+
group?: undefined;
|
|
321
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
322
|
+
componentName?: string | undefined;
|
|
323
|
+
tabIndex?: string | number | undefined;
|
|
324
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
325
|
+
disableOptimization?: boolean | undefined;
|
|
326
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
327
|
+
disableClassName?: boolean | undefined;
|
|
328
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
329
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
330
|
+
} & {
|
|
131
331
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
132
332
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
133
333
|
readonly fullscreen?: boolean | undefined;
|
|
134
|
-
readonly elevation?: SizeTokens | undefined;
|
|
334
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
135
335
|
} & {
|
|
136
336
|
readonly backgrounded?: boolean | undefined;
|
|
137
337
|
readonly radiused?: boolean | undefined;
|
|
@@ -147,11 +347,36 @@ export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
147
347
|
}, "size" | "unstyled"> & {
|
|
148
348
|
readonly unstyled?: boolean | undefined;
|
|
149
349
|
readonly size?: SizeTokens | undefined;
|
|
150
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
350
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
351
|
+
target?: string | undefined;
|
|
352
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
353
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
354
|
+
dangerouslySetInnerHTML?: {
|
|
355
|
+
__html: string;
|
|
356
|
+
} | undefined;
|
|
357
|
+
children?: any;
|
|
358
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
359
|
+
disabled?: boolean | undefined;
|
|
360
|
+
className?: string | undefined;
|
|
361
|
+
themeShallow?: boolean | undefined;
|
|
362
|
+
id?: string | undefined;
|
|
363
|
+
tag?: string | undefined;
|
|
364
|
+
theme?: string | null | undefined;
|
|
365
|
+
group?: undefined;
|
|
366
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
367
|
+
componentName?: string | undefined;
|
|
368
|
+
tabIndex?: string | number | undefined;
|
|
369
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
370
|
+
disableOptimization?: boolean | undefined;
|
|
371
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
372
|
+
disableClassName?: boolean | undefined;
|
|
373
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
374
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
375
|
+
} & {
|
|
151
376
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
152
377
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
153
378
|
readonly fullscreen?: boolean | undefined;
|
|
154
|
-
readonly elevation?: SizeTokens | undefined;
|
|
379
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
155
380
|
} & {
|
|
156
381
|
readonly backgrounded?: boolean | undefined;
|
|
157
382
|
readonly radiused?: boolean | undefined;
|
|
@@ -167,11 +392,36 @@ export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
167
392
|
}, "size" | "unstyled"> & {
|
|
168
393
|
readonly unstyled?: boolean | undefined;
|
|
169
394
|
readonly size?: SizeTokens | undefined;
|
|
170
|
-
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
395
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
396
|
+
target?: string | undefined;
|
|
397
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
398
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
399
|
+
dangerouslySetInnerHTML?: {
|
|
400
|
+
__html: string;
|
|
401
|
+
} | undefined;
|
|
402
|
+
children?: any;
|
|
403
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
404
|
+
disabled?: boolean | undefined;
|
|
405
|
+
className?: string | undefined;
|
|
406
|
+
themeShallow?: boolean | undefined;
|
|
407
|
+
id?: string | undefined;
|
|
408
|
+
tag?: string | undefined;
|
|
409
|
+
theme?: string | null | undefined;
|
|
410
|
+
group?: undefined;
|
|
411
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
412
|
+
componentName?: string | undefined;
|
|
413
|
+
tabIndex?: string | number | undefined;
|
|
414
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
415
|
+
disableOptimization?: boolean | undefined;
|
|
416
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
417
|
+
disableClassName?: boolean | undefined;
|
|
418
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
419
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
420
|
+
} & {
|
|
171
421
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
172
422
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
173
423
|
readonly fullscreen?: boolean | undefined;
|
|
174
|
-
readonly elevation?: SizeTokens | undefined;
|
|
424
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
175
425
|
} & {
|
|
176
426
|
readonly backgrounded?: boolean | undefined;
|
|
177
427
|
readonly radiused?: boolean | undefined;
|
|
@@ -189,17 +439,67 @@ export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
189
439
|
readonly size?: SizeTokens | undefined;
|
|
190
440
|
}, {
|
|
191
441
|
displayName: string | undefined;
|
|
192
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
442
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
443
|
+
target?: string | undefined;
|
|
444
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
445
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
446
|
+
dangerouslySetInnerHTML?: {
|
|
447
|
+
__html: string;
|
|
448
|
+
} | undefined;
|
|
449
|
+
children?: any;
|
|
450
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
451
|
+
disabled?: boolean | undefined;
|
|
452
|
+
className?: string | undefined;
|
|
453
|
+
themeShallow?: boolean | undefined;
|
|
454
|
+
id?: string | undefined;
|
|
455
|
+
tag?: string | undefined;
|
|
456
|
+
theme?: string | null | undefined;
|
|
457
|
+
group?: undefined;
|
|
458
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
459
|
+
componentName?: string | undefined;
|
|
460
|
+
tabIndex?: string | number | undefined;
|
|
461
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
462
|
+
disableOptimization?: boolean | undefined;
|
|
463
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
464
|
+
disableClassName?: boolean | undefined;
|
|
465
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
466
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
467
|
+
} & {
|
|
193
468
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
194
469
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
470
|
+
target?: string | undefined;
|
|
471
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
472
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
473
|
+
dangerouslySetInnerHTML?: {
|
|
474
|
+
__html: string;
|
|
475
|
+
} | undefined;
|
|
476
|
+
children?: any;
|
|
477
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
478
|
+
disabled?: boolean | undefined;
|
|
479
|
+
className?: string | undefined;
|
|
480
|
+
themeShallow?: boolean | undefined;
|
|
481
|
+
id?: string | undefined;
|
|
482
|
+
tag?: string | undefined;
|
|
483
|
+
theme?: string | null | undefined;
|
|
484
|
+
group?: undefined;
|
|
485
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
486
|
+
componentName?: string | undefined;
|
|
487
|
+
tabIndex?: string | number | undefined;
|
|
488
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
489
|
+
disableOptimization?: boolean | undefined;
|
|
490
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
491
|
+
disableClassName?: boolean | undefined;
|
|
492
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
493
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
494
|
+
} & {
|
|
195
495
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
196
496
|
};
|
|
197
497
|
__variantProps: {
|
|
198
498
|
readonly fullscreen?: boolean | undefined;
|
|
199
|
-
readonly elevation?: SizeTokens | undefined;
|
|
499
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
200
500
|
} & {
|
|
201
501
|
readonly fullscreen?: boolean | undefined;
|
|
202
|
-
readonly elevation?: SizeTokens | undefined;
|
|
502
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
203
503
|
} & {
|
|
204
504
|
readonly backgrounded?: boolean | undefined;
|
|
205
505
|
readonly radiused?: boolean | undefined;
|
|
@@ -214,11 +514,36 @@ export declare const CardHeader: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
214
514
|
readonly chromeless?: boolean | "all" | undefined;
|
|
215
515
|
};
|
|
216
516
|
}>;
|
|
217
|
-
export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
517
|
+
export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
518
|
+
target?: string | undefined;
|
|
519
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
520
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
521
|
+
dangerouslySetInnerHTML?: {
|
|
522
|
+
__html: string;
|
|
523
|
+
} | undefined;
|
|
524
|
+
children?: any;
|
|
525
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
526
|
+
disabled?: boolean | undefined;
|
|
527
|
+
className?: string | undefined;
|
|
528
|
+
themeShallow?: boolean | undefined;
|
|
529
|
+
id?: string | undefined;
|
|
530
|
+
tag?: string | undefined;
|
|
531
|
+
theme?: string | null | undefined;
|
|
532
|
+
group?: undefined;
|
|
533
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
534
|
+
componentName?: string | undefined;
|
|
535
|
+
tabIndex?: string | number | undefined;
|
|
536
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
537
|
+
disableOptimization?: boolean | undefined;
|
|
538
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
539
|
+
disableClassName?: boolean | undefined;
|
|
540
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
541
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
542
|
+
} & {
|
|
218
543
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
219
544
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
220
545
|
readonly fullscreen?: boolean | undefined;
|
|
221
|
-
readonly elevation?: SizeTokens | undefined;
|
|
546
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
222
547
|
} & {
|
|
223
548
|
readonly backgrounded?: boolean | undefined;
|
|
224
549
|
readonly radiused?: boolean | undefined;
|
|
@@ -236,11 +561,36 @@ export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
236
561
|
readonly size?: SizeTokens | undefined;
|
|
237
562
|
}, "unstyled"> & {
|
|
238
563
|
readonly unstyled?: boolean | undefined;
|
|
239
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
564
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
565
|
+
target?: string | undefined;
|
|
566
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
567
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
568
|
+
dangerouslySetInnerHTML?: {
|
|
569
|
+
__html: string;
|
|
570
|
+
} | undefined;
|
|
571
|
+
children?: any;
|
|
572
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
573
|
+
disabled?: boolean | undefined;
|
|
574
|
+
className?: string | undefined;
|
|
575
|
+
themeShallow?: boolean | undefined;
|
|
576
|
+
id?: string | undefined;
|
|
577
|
+
tag?: string | undefined;
|
|
578
|
+
theme?: string | null | undefined;
|
|
579
|
+
group?: undefined;
|
|
580
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
581
|
+
componentName?: string | undefined;
|
|
582
|
+
tabIndex?: string | number | undefined;
|
|
583
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
584
|
+
disableOptimization?: boolean | undefined;
|
|
585
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
586
|
+
disableClassName?: boolean | undefined;
|
|
587
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
588
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
589
|
+
} & {
|
|
240
590
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
241
591
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
242
592
|
readonly fullscreen?: boolean | undefined;
|
|
243
|
-
readonly elevation?: SizeTokens | undefined;
|
|
593
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
244
594
|
} & {
|
|
245
595
|
readonly backgrounded?: boolean | undefined;
|
|
246
596
|
readonly radiused?: boolean | undefined;
|
|
@@ -258,11 +608,36 @@ export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
258
608
|
readonly size?: SizeTokens | undefined;
|
|
259
609
|
}, "unstyled"> & {
|
|
260
610
|
readonly unstyled?: boolean | undefined;
|
|
261
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
611
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
612
|
+
target?: string | undefined;
|
|
613
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
614
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
615
|
+
dangerouslySetInnerHTML?: {
|
|
616
|
+
__html: string;
|
|
617
|
+
} | undefined;
|
|
618
|
+
children?: any;
|
|
619
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
620
|
+
disabled?: boolean | undefined;
|
|
621
|
+
className?: string | undefined;
|
|
622
|
+
themeShallow?: boolean | undefined;
|
|
623
|
+
id?: string | undefined;
|
|
624
|
+
tag?: string | undefined;
|
|
625
|
+
theme?: string | null | undefined;
|
|
626
|
+
group?: undefined;
|
|
627
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
628
|
+
componentName?: string | undefined;
|
|
629
|
+
tabIndex?: string | number | undefined;
|
|
630
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
631
|
+
disableOptimization?: boolean | undefined;
|
|
632
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
633
|
+
disableClassName?: boolean | undefined;
|
|
634
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
635
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
636
|
+
} & {
|
|
262
637
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
263
638
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
264
639
|
readonly fullscreen?: boolean | undefined;
|
|
265
|
-
readonly elevation?: SizeTokens | undefined;
|
|
640
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
266
641
|
} & {
|
|
267
642
|
readonly backgrounded?: boolean | undefined;
|
|
268
643
|
readonly radiused?: boolean | undefined;
|
|
@@ -280,11 +655,36 @@ export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
280
655
|
readonly size?: SizeTokens | undefined;
|
|
281
656
|
}, "unstyled"> & {
|
|
282
657
|
readonly unstyled?: boolean | undefined;
|
|
283
|
-
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
658
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
659
|
+
target?: string | undefined;
|
|
660
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
661
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
662
|
+
dangerouslySetInnerHTML?: {
|
|
663
|
+
__html: string;
|
|
664
|
+
} | undefined;
|
|
665
|
+
children?: any;
|
|
666
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
667
|
+
disabled?: boolean | undefined;
|
|
668
|
+
className?: string | undefined;
|
|
669
|
+
themeShallow?: boolean | undefined;
|
|
670
|
+
id?: string | undefined;
|
|
671
|
+
tag?: string | undefined;
|
|
672
|
+
theme?: string | null | undefined;
|
|
673
|
+
group?: undefined;
|
|
674
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
675
|
+
componentName?: string | undefined;
|
|
676
|
+
tabIndex?: string | number | undefined;
|
|
677
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
678
|
+
disableOptimization?: boolean | undefined;
|
|
679
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
680
|
+
disableClassName?: boolean | undefined;
|
|
681
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
682
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
683
|
+
} & {
|
|
284
684
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
285
685
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
286
686
|
readonly fullscreen?: boolean | undefined;
|
|
287
|
-
readonly elevation?: SizeTokens | undefined;
|
|
687
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
288
688
|
} & {
|
|
289
689
|
readonly backgrounded?: boolean | undefined;
|
|
290
690
|
readonly radiused?: boolean | undefined;
|
|
@@ -304,17 +704,67 @@ export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
304
704
|
readonly unstyled?: boolean | undefined;
|
|
305
705
|
}, {
|
|
306
706
|
displayName: string | undefined;
|
|
307
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
707
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
708
|
+
target?: string | undefined;
|
|
709
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
710
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
711
|
+
dangerouslySetInnerHTML?: {
|
|
712
|
+
__html: string;
|
|
713
|
+
} | undefined;
|
|
714
|
+
children?: any;
|
|
715
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
716
|
+
disabled?: boolean | undefined;
|
|
717
|
+
className?: string | undefined;
|
|
718
|
+
themeShallow?: boolean | undefined;
|
|
719
|
+
id?: string | undefined;
|
|
720
|
+
tag?: string | undefined;
|
|
721
|
+
theme?: string | null | undefined;
|
|
722
|
+
group?: undefined;
|
|
723
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
724
|
+
componentName?: string | undefined;
|
|
725
|
+
tabIndex?: string | number | undefined;
|
|
726
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
727
|
+
disableOptimization?: boolean | undefined;
|
|
728
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
729
|
+
disableClassName?: boolean | undefined;
|
|
730
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
731
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
732
|
+
} & {
|
|
308
733
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
309
734
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
735
|
+
target?: string | undefined;
|
|
736
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
737
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
738
|
+
dangerouslySetInnerHTML?: {
|
|
739
|
+
__html: string;
|
|
740
|
+
} | undefined;
|
|
741
|
+
children?: any;
|
|
742
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
743
|
+
disabled?: boolean | undefined;
|
|
744
|
+
className?: string | undefined;
|
|
745
|
+
themeShallow?: boolean | undefined;
|
|
746
|
+
id?: string | undefined;
|
|
747
|
+
tag?: string | undefined;
|
|
748
|
+
theme?: string | null | undefined;
|
|
749
|
+
group?: undefined;
|
|
750
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
751
|
+
componentName?: string | undefined;
|
|
752
|
+
tabIndex?: string | number | undefined;
|
|
753
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
754
|
+
disableOptimization?: boolean | undefined;
|
|
755
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
756
|
+
disableClassName?: boolean | undefined;
|
|
757
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
758
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
759
|
+
} & {
|
|
310
760
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
311
761
|
};
|
|
312
762
|
__variantProps: {
|
|
313
763
|
readonly fullscreen?: boolean | undefined;
|
|
314
|
-
readonly elevation?: SizeTokens | undefined;
|
|
764
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
315
765
|
} & {
|
|
316
766
|
readonly fullscreen?: boolean | undefined;
|
|
317
|
-
readonly elevation?: SizeTokens | undefined;
|
|
767
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
318
768
|
} & {
|
|
319
769
|
readonly backgrounded?: boolean | undefined;
|
|
320
770
|
readonly radiused?: boolean | undefined;
|
|
@@ -332,11 +782,36 @@ export declare const CardFooter: import("@tamagui/web").TamaguiComponent<Omit<im
|
|
|
332
782
|
readonly size?: SizeTokens | undefined;
|
|
333
783
|
};
|
|
334
784
|
}>;
|
|
335
|
-
export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
785
|
+
export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
786
|
+
target?: string | undefined;
|
|
787
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
788
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
789
|
+
dangerouslySetInnerHTML?: {
|
|
790
|
+
__html: string;
|
|
791
|
+
} | undefined;
|
|
792
|
+
children?: any;
|
|
793
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
794
|
+
disabled?: boolean | undefined;
|
|
795
|
+
className?: string | undefined;
|
|
796
|
+
themeShallow?: boolean | undefined;
|
|
797
|
+
id?: string | undefined;
|
|
798
|
+
tag?: string | undefined;
|
|
799
|
+
theme?: string | null | undefined;
|
|
800
|
+
group?: undefined;
|
|
801
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
802
|
+
componentName?: string | undefined;
|
|
803
|
+
tabIndex?: string | number | undefined;
|
|
804
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
805
|
+
disableOptimization?: boolean | undefined;
|
|
806
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
807
|
+
disableClassName?: boolean | undefined;
|
|
808
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
809
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
810
|
+
} & {
|
|
336
811
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
337
812
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
338
813
|
readonly fullscreen?: boolean | undefined;
|
|
339
|
-
readonly elevation?: SizeTokens | undefined;
|
|
814
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
340
815
|
} & {
|
|
341
816
|
readonly backgrounded?: boolean | undefined;
|
|
342
817
|
readonly radiused?: boolean | undefined;
|
|
@@ -351,11 +826,36 @@ export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
351
826
|
readonly chromeless?: boolean | "all" | undefined;
|
|
352
827
|
}, "unstyled"> & {
|
|
353
828
|
readonly unstyled?: boolean | undefined;
|
|
354
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
829
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
830
|
+
target?: string | undefined;
|
|
831
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
832
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
833
|
+
dangerouslySetInnerHTML?: {
|
|
834
|
+
__html: string;
|
|
835
|
+
} | undefined;
|
|
836
|
+
children?: any;
|
|
837
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
838
|
+
disabled?: boolean | undefined;
|
|
839
|
+
className?: string | undefined;
|
|
840
|
+
themeShallow?: boolean | undefined;
|
|
841
|
+
id?: string | undefined;
|
|
842
|
+
tag?: string | undefined;
|
|
843
|
+
theme?: string | null | undefined;
|
|
844
|
+
group?: undefined;
|
|
845
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
846
|
+
componentName?: string | undefined;
|
|
847
|
+
tabIndex?: string | number | undefined;
|
|
848
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
849
|
+
disableOptimization?: boolean | undefined;
|
|
850
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
851
|
+
disableClassName?: boolean | undefined;
|
|
852
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
853
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
854
|
+
} & {
|
|
355
855
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
356
856
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
357
857
|
readonly fullscreen?: boolean | undefined;
|
|
358
|
-
readonly elevation?: SizeTokens | undefined;
|
|
858
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
359
859
|
} & {
|
|
360
860
|
readonly backgrounded?: boolean | undefined;
|
|
361
861
|
readonly radiused?: boolean | undefined;
|
|
@@ -370,11 +870,36 @@ export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
370
870
|
readonly chromeless?: boolean | "all" | undefined;
|
|
371
871
|
}, "unstyled"> & {
|
|
372
872
|
readonly unstyled?: boolean | undefined;
|
|
373
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
873
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
874
|
+
target?: string | undefined;
|
|
875
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
876
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
877
|
+
dangerouslySetInnerHTML?: {
|
|
878
|
+
__html: string;
|
|
879
|
+
} | undefined;
|
|
880
|
+
children?: any;
|
|
881
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
882
|
+
disabled?: boolean | undefined;
|
|
883
|
+
className?: string | undefined;
|
|
884
|
+
themeShallow?: boolean | undefined;
|
|
885
|
+
id?: string | undefined;
|
|
886
|
+
tag?: string | undefined;
|
|
887
|
+
theme?: string | null | undefined;
|
|
888
|
+
group?: undefined;
|
|
889
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
890
|
+
componentName?: string | undefined;
|
|
891
|
+
tabIndex?: string | number | undefined;
|
|
892
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
893
|
+
disableOptimization?: boolean | undefined;
|
|
894
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
895
|
+
disableClassName?: boolean | undefined;
|
|
896
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
897
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
898
|
+
} & {
|
|
374
899
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
375
900
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
376
901
|
readonly fullscreen?: boolean | undefined;
|
|
377
|
-
readonly elevation?: SizeTokens | undefined;
|
|
902
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
378
903
|
} & {
|
|
379
904
|
readonly backgrounded?: boolean | undefined;
|
|
380
905
|
readonly radiused?: boolean | undefined;
|
|
@@ -389,11 +914,36 @@ export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
389
914
|
readonly chromeless?: boolean | "all" | undefined;
|
|
390
915
|
}, "unstyled"> & {
|
|
391
916
|
readonly unstyled?: boolean | undefined;
|
|
392
|
-
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
917
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
918
|
+
target?: string | undefined;
|
|
919
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
920
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
921
|
+
dangerouslySetInnerHTML?: {
|
|
922
|
+
__html: string;
|
|
923
|
+
} | undefined;
|
|
924
|
+
children?: any;
|
|
925
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
926
|
+
disabled?: boolean | undefined;
|
|
927
|
+
className?: string | undefined;
|
|
928
|
+
themeShallow?: boolean | undefined;
|
|
929
|
+
id?: string | undefined;
|
|
930
|
+
tag?: string | undefined;
|
|
931
|
+
theme?: string | null | undefined;
|
|
932
|
+
group?: undefined;
|
|
933
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
934
|
+
componentName?: string | undefined;
|
|
935
|
+
tabIndex?: string | number | undefined;
|
|
936
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
937
|
+
disableOptimization?: boolean | undefined;
|
|
938
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
939
|
+
disableClassName?: boolean | undefined;
|
|
940
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
941
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
942
|
+
} & {
|
|
393
943
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
394
944
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
395
945
|
readonly fullscreen?: boolean | undefined;
|
|
396
|
-
readonly elevation?: SizeTokens | undefined;
|
|
946
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
397
947
|
} & {
|
|
398
948
|
readonly backgrounded?: boolean | undefined;
|
|
399
949
|
readonly radiused?: boolean | undefined;
|
|
@@ -410,17 +960,67 @@ export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
410
960
|
readonly unstyled?: boolean | undefined;
|
|
411
961
|
}, {
|
|
412
962
|
displayName: string | undefined;
|
|
413
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
963
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
964
|
+
target?: string | undefined;
|
|
965
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
966
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
967
|
+
dangerouslySetInnerHTML?: {
|
|
968
|
+
__html: string;
|
|
969
|
+
} | undefined;
|
|
970
|
+
children?: any;
|
|
971
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
972
|
+
disabled?: boolean | undefined;
|
|
973
|
+
className?: string | undefined;
|
|
974
|
+
themeShallow?: boolean | undefined;
|
|
975
|
+
id?: string | undefined;
|
|
976
|
+
tag?: string | undefined;
|
|
977
|
+
theme?: string | null | undefined;
|
|
978
|
+
group?: undefined;
|
|
979
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
980
|
+
componentName?: string | undefined;
|
|
981
|
+
tabIndex?: string | number | undefined;
|
|
982
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
983
|
+
disableOptimization?: boolean | undefined;
|
|
984
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
985
|
+
disableClassName?: boolean | undefined;
|
|
986
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
987
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
988
|
+
} & {
|
|
414
989
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
415
990
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
991
|
+
target?: string | undefined;
|
|
992
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
993
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
994
|
+
dangerouslySetInnerHTML?: {
|
|
995
|
+
__html: string;
|
|
996
|
+
} | undefined;
|
|
997
|
+
children?: any;
|
|
998
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
999
|
+
disabled?: boolean | undefined;
|
|
1000
|
+
className?: string | undefined;
|
|
1001
|
+
themeShallow?: boolean | undefined;
|
|
1002
|
+
id?: string | undefined;
|
|
1003
|
+
tag?: string | undefined;
|
|
1004
|
+
theme?: string | null | undefined;
|
|
1005
|
+
group?: undefined;
|
|
1006
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1007
|
+
componentName?: string | undefined;
|
|
1008
|
+
tabIndex?: string | number | undefined;
|
|
1009
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1010
|
+
disableOptimization?: boolean | undefined;
|
|
1011
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1012
|
+
disableClassName?: boolean | undefined;
|
|
1013
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1014
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1015
|
+
} & {
|
|
416
1016
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
417
1017
|
};
|
|
418
1018
|
__variantProps: {
|
|
419
1019
|
readonly fullscreen?: boolean | undefined;
|
|
420
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1020
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
421
1021
|
} & {
|
|
422
1022
|
readonly fullscreen?: boolean | undefined;
|
|
423
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1023
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
424
1024
|
} & {
|
|
425
1025
|
readonly backgrounded?: boolean | undefined;
|
|
426
1026
|
readonly radiused?: boolean | undefined;
|
|
@@ -438,11 +1038,36 @@ export declare const CardBackground: import("@tamagui/web").TamaguiComponent<Omi
|
|
|
438
1038
|
export type CardHeaderProps = GetProps<typeof CardHeader>;
|
|
439
1039
|
export type CardFooterProps = GetProps<typeof CardFooter>;
|
|
440
1040
|
export type CardProps = GetProps<typeof CardFrame>;
|
|
441
|
-
export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1041
|
+
export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1042
|
+
target?: string | undefined;
|
|
1043
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1044
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1045
|
+
dangerouslySetInnerHTML?: {
|
|
1046
|
+
__html: string;
|
|
1047
|
+
} | undefined;
|
|
1048
|
+
children?: any;
|
|
1049
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1050
|
+
disabled?: boolean | undefined;
|
|
1051
|
+
className?: string | undefined;
|
|
1052
|
+
themeShallow?: boolean | undefined;
|
|
1053
|
+
id?: string | undefined;
|
|
1054
|
+
tag?: string | undefined;
|
|
1055
|
+
theme?: string | null | undefined;
|
|
1056
|
+
group?: undefined;
|
|
1057
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1058
|
+
componentName?: string | undefined;
|
|
1059
|
+
tabIndex?: string | number | undefined;
|
|
1060
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1061
|
+
disableOptimization?: boolean | undefined;
|
|
1062
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1063
|
+
disableClassName?: boolean | undefined;
|
|
1064
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1065
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1066
|
+
} & {
|
|
442
1067
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
443
1068
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
444
1069
|
readonly fullscreen?: boolean | undefined;
|
|
445
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1070
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
446
1071
|
} & {
|
|
447
1072
|
readonly backgrounded?: boolean | undefined;
|
|
448
1073
|
readonly radiused?: boolean | undefined;
|
|
@@ -458,11 +1083,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
458
1083
|
}, "size" | "unstyled"> & {
|
|
459
1084
|
readonly unstyled?: boolean | undefined;
|
|
460
1085
|
readonly size?: SizeTokens | undefined;
|
|
461
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1086
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1087
|
+
target?: string | undefined;
|
|
1088
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1089
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1090
|
+
dangerouslySetInnerHTML?: {
|
|
1091
|
+
__html: string;
|
|
1092
|
+
} | undefined;
|
|
1093
|
+
children?: any;
|
|
1094
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1095
|
+
disabled?: boolean | undefined;
|
|
1096
|
+
className?: string | undefined;
|
|
1097
|
+
themeShallow?: boolean | undefined;
|
|
1098
|
+
id?: string | undefined;
|
|
1099
|
+
tag?: string | undefined;
|
|
1100
|
+
theme?: string | null | undefined;
|
|
1101
|
+
group?: undefined;
|
|
1102
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1103
|
+
componentName?: string | undefined;
|
|
1104
|
+
tabIndex?: string | number | undefined;
|
|
1105
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1106
|
+
disableOptimization?: boolean | undefined;
|
|
1107
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1108
|
+
disableClassName?: boolean | undefined;
|
|
1109
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1110
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1111
|
+
} & {
|
|
462
1112
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
463
1113
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
464
1114
|
readonly fullscreen?: boolean | undefined;
|
|
465
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1115
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
466
1116
|
} & {
|
|
467
1117
|
readonly backgrounded?: boolean | undefined;
|
|
468
1118
|
readonly radiused?: boolean | undefined;
|
|
@@ -478,11 +1128,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
478
1128
|
}, "size" | "unstyled"> & {
|
|
479
1129
|
readonly unstyled?: boolean | undefined;
|
|
480
1130
|
readonly size?: SizeTokens | undefined;
|
|
481
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1131
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1132
|
+
target?: string | undefined;
|
|
1133
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1134
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1135
|
+
dangerouslySetInnerHTML?: {
|
|
1136
|
+
__html: string;
|
|
1137
|
+
} | undefined;
|
|
1138
|
+
children?: any;
|
|
1139
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1140
|
+
disabled?: boolean | undefined;
|
|
1141
|
+
className?: string | undefined;
|
|
1142
|
+
themeShallow?: boolean | undefined;
|
|
1143
|
+
id?: string | undefined;
|
|
1144
|
+
tag?: string | undefined;
|
|
1145
|
+
theme?: string | null | undefined;
|
|
1146
|
+
group?: undefined;
|
|
1147
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1148
|
+
componentName?: string | undefined;
|
|
1149
|
+
tabIndex?: string | number | undefined;
|
|
1150
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1151
|
+
disableOptimization?: boolean | undefined;
|
|
1152
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1153
|
+
disableClassName?: boolean | undefined;
|
|
1154
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1155
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1156
|
+
} & {
|
|
482
1157
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
483
1158
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
484
1159
|
readonly fullscreen?: boolean | undefined;
|
|
485
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1160
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
486
1161
|
} & {
|
|
487
1162
|
readonly backgrounded?: boolean | undefined;
|
|
488
1163
|
readonly radiused?: boolean | undefined;
|
|
@@ -501,11 +1176,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
501
1176
|
}>>, import("@tamagui/web").TamaguiElement> & {
|
|
502
1177
|
staticConfig: import("@tamagui/web").StaticConfig;
|
|
503
1178
|
extractable: <X>(a: X, staticConfig?: Partial<import("@tamagui/web").StaticConfig> | undefined) => X;
|
|
504
|
-
styleable: import("@tamagui/web").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1179
|
+
styleable: import("@tamagui/web").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1180
|
+
target?: string | undefined;
|
|
1181
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1182
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1183
|
+
dangerouslySetInnerHTML?: {
|
|
1184
|
+
__html: string;
|
|
1185
|
+
} | undefined;
|
|
1186
|
+
children?: any;
|
|
1187
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1188
|
+
disabled?: boolean | undefined;
|
|
1189
|
+
className?: string | undefined;
|
|
1190
|
+
themeShallow?: boolean | undefined;
|
|
1191
|
+
id?: string | undefined;
|
|
1192
|
+
tag?: string | undefined;
|
|
1193
|
+
theme?: string | null | undefined;
|
|
1194
|
+
group?: undefined;
|
|
1195
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1196
|
+
componentName?: string | undefined;
|
|
1197
|
+
tabIndex?: string | number | undefined;
|
|
1198
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1199
|
+
disableOptimization?: boolean | undefined;
|
|
1200
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1201
|
+
disableClassName?: boolean | undefined;
|
|
1202
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1203
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1204
|
+
} & {
|
|
505
1205
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
506
1206
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
507
1207
|
readonly fullscreen?: boolean | undefined;
|
|
508
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1208
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
509
1209
|
} & {
|
|
510
1210
|
readonly backgrounded?: boolean | undefined;
|
|
511
1211
|
readonly radiused?: boolean | undefined;
|
|
@@ -521,11 +1221,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
521
1221
|
}, "size" | "unstyled"> & {
|
|
522
1222
|
readonly unstyled?: boolean | undefined;
|
|
523
1223
|
readonly size?: SizeTokens | undefined;
|
|
524
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1224
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1225
|
+
target?: string | undefined;
|
|
1226
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1227
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1228
|
+
dangerouslySetInnerHTML?: {
|
|
1229
|
+
__html: string;
|
|
1230
|
+
} | undefined;
|
|
1231
|
+
children?: any;
|
|
1232
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1233
|
+
disabled?: boolean | undefined;
|
|
1234
|
+
className?: string | undefined;
|
|
1235
|
+
themeShallow?: boolean | undefined;
|
|
1236
|
+
id?: string | undefined;
|
|
1237
|
+
tag?: string | undefined;
|
|
1238
|
+
theme?: string | null | undefined;
|
|
1239
|
+
group?: undefined;
|
|
1240
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1241
|
+
componentName?: string | undefined;
|
|
1242
|
+
tabIndex?: string | number | undefined;
|
|
1243
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1244
|
+
disableOptimization?: boolean | undefined;
|
|
1245
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1246
|
+
disableClassName?: boolean | undefined;
|
|
1247
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1248
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1249
|
+
} & {
|
|
525
1250
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
526
1251
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
527
1252
|
readonly fullscreen?: boolean | undefined;
|
|
528
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1253
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
529
1254
|
} & {
|
|
530
1255
|
readonly backgrounded?: boolean | undefined;
|
|
531
1256
|
readonly radiused?: boolean | undefined;
|
|
@@ -541,11 +1266,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
541
1266
|
}, "size" | "unstyled"> & {
|
|
542
1267
|
readonly unstyled?: boolean | undefined;
|
|
543
1268
|
readonly size?: SizeTokens | undefined;
|
|
544
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1269
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1270
|
+
target?: string | undefined;
|
|
1271
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1272
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1273
|
+
dangerouslySetInnerHTML?: {
|
|
1274
|
+
__html: string;
|
|
1275
|
+
} | undefined;
|
|
1276
|
+
children?: any;
|
|
1277
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1278
|
+
disabled?: boolean | undefined;
|
|
1279
|
+
className?: string | undefined;
|
|
1280
|
+
themeShallow?: boolean | undefined;
|
|
1281
|
+
id?: string | undefined;
|
|
1282
|
+
tag?: string | undefined;
|
|
1283
|
+
theme?: string | null | undefined;
|
|
1284
|
+
group?: undefined;
|
|
1285
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1286
|
+
componentName?: string | undefined;
|
|
1287
|
+
tabIndex?: string | number | undefined;
|
|
1288
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1289
|
+
disableOptimization?: boolean | undefined;
|
|
1290
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1291
|
+
disableClassName?: boolean | undefined;
|
|
1292
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1293
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1294
|
+
} & {
|
|
545
1295
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
546
1296
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
547
1297
|
readonly fullscreen?: boolean | undefined;
|
|
548
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1298
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
549
1299
|
} & {
|
|
550
1300
|
readonly backgrounded?: boolean | undefined;
|
|
551
1301
|
readonly radiused?: boolean | undefined;
|
|
@@ -564,17 +1314,67 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
564
1314
|
}>>, import("@tamagui/web").TamaguiElement>;
|
|
565
1315
|
} & {
|
|
566
1316
|
displayName: string | undefined;
|
|
567
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1317
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1318
|
+
target?: string | undefined;
|
|
1319
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1320
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1321
|
+
dangerouslySetInnerHTML?: {
|
|
1322
|
+
__html: string;
|
|
1323
|
+
} | undefined;
|
|
1324
|
+
children?: any;
|
|
1325
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1326
|
+
disabled?: boolean | undefined;
|
|
1327
|
+
className?: string | undefined;
|
|
1328
|
+
themeShallow?: boolean | undefined;
|
|
1329
|
+
id?: string | undefined;
|
|
1330
|
+
tag?: string | undefined;
|
|
1331
|
+
theme?: string | null | undefined;
|
|
1332
|
+
group?: undefined;
|
|
1333
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1334
|
+
componentName?: string | undefined;
|
|
1335
|
+
tabIndex?: string | number | undefined;
|
|
1336
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1337
|
+
disableOptimization?: boolean | undefined;
|
|
1338
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1339
|
+
disableClassName?: boolean | undefined;
|
|
1340
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1341
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1342
|
+
} & {
|
|
568
1343
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
569
1344
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
1345
|
+
target?: string | undefined;
|
|
1346
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1347
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1348
|
+
dangerouslySetInnerHTML?: {
|
|
1349
|
+
__html: string;
|
|
1350
|
+
} | undefined;
|
|
1351
|
+
children?: any;
|
|
1352
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1353
|
+
disabled?: boolean | undefined;
|
|
1354
|
+
className?: string | undefined;
|
|
1355
|
+
themeShallow?: boolean | undefined;
|
|
1356
|
+
id?: string | undefined;
|
|
1357
|
+
tag?: string | undefined;
|
|
1358
|
+
theme?: string | null | undefined;
|
|
1359
|
+
group?: undefined;
|
|
1360
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1361
|
+
componentName?: string | undefined;
|
|
1362
|
+
tabIndex?: string | number | undefined;
|
|
1363
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1364
|
+
disableOptimization?: boolean | undefined;
|
|
1365
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1366
|
+
disableClassName?: boolean | undefined;
|
|
1367
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1368
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1369
|
+
} & {
|
|
570
1370
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
571
1371
|
};
|
|
572
1372
|
__variantProps: {
|
|
573
1373
|
readonly fullscreen?: boolean | undefined;
|
|
574
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1374
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
575
1375
|
} & {
|
|
576
1376
|
readonly fullscreen?: boolean | undefined;
|
|
577
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1377
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
578
1378
|
} & {
|
|
579
1379
|
readonly backgrounded?: boolean | undefined;
|
|
580
1380
|
readonly radiused?: boolean | undefined;
|
|
@@ -589,12 +1389,37 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
589
1389
|
readonly chromeless?: boolean | "all" | undefined;
|
|
590
1390
|
};
|
|
591
1391
|
} & {
|
|
592
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1392
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1393
|
+
target?: string | undefined;
|
|
1394
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1395
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1396
|
+
dangerouslySetInnerHTML?: {
|
|
1397
|
+
__html: string;
|
|
1398
|
+
} | undefined;
|
|
1399
|
+
children?: any;
|
|
1400
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1401
|
+
disabled?: boolean | undefined;
|
|
1402
|
+
className?: string | undefined;
|
|
1403
|
+
themeShallow?: boolean | undefined;
|
|
1404
|
+
id?: string | undefined;
|
|
1405
|
+
tag?: string | undefined;
|
|
1406
|
+
theme?: string | null | undefined;
|
|
1407
|
+
group?: undefined;
|
|
1408
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1409
|
+
componentName?: string | undefined;
|
|
1410
|
+
tabIndex?: string | number | undefined;
|
|
1411
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1412
|
+
disableOptimization?: boolean | undefined;
|
|
1413
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1414
|
+
disableClassName?: boolean | undefined;
|
|
1415
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1416
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1417
|
+
} & {
|
|
593
1418
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
594
1419
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps;
|
|
595
1420
|
__variantProps: {
|
|
596
1421
|
readonly fullscreen?: boolean | undefined;
|
|
597
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1422
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
598
1423
|
} & {
|
|
599
1424
|
readonly backgrounded?: boolean | undefined;
|
|
600
1425
|
readonly radiused?: boolean | undefined;
|
|
@@ -612,11 +1437,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
612
1437
|
readonly size?: SizeTokens | undefined;
|
|
613
1438
|
};
|
|
614
1439
|
} & {
|
|
615
|
-
Header: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1440
|
+
Header: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1441
|
+
target?: string | undefined;
|
|
1442
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1443
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1444
|
+
dangerouslySetInnerHTML?: {
|
|
1445
|
+
__html: string;
|
|
1446
|
+
} | undefined;
|
|
1447
|
+
children?: any;
|
|
1448
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1449
|
+
disabled?: boolean | undefined;
|
|
1450
|
+
className?: string | undefined;
|
|
1451
|
+
themeShallow?: boolean | undefined;
|
|
1452
|
+
id?: string | undefined;
|
|
1453
|
+
tag?: string | undefined;
|
|
1454
|
+
theme?: string | null | undefined;
|
|
1455
|
+
group?: undefined;
|
|
1456
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1457
|
+
componentName?: string | undefined;
|
|
1458
|
+
tabIndex?: string | number | undefined;
|
|
1459
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1460
|
+
disableOptimization?: boolean | undefined;
|
|
1461
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1462
|
+
disableClassName?: boolean | undefined;
|
|
1463
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1464
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1465
|
+
} & {
|
|
616
1466
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
617
1467
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
618
1468
|
readonly fullscreen?: boolean | undefined;
|
|
619
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1469
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
620
1470
|
} & {
|
|
621
1471
|
readonly backgrounded?: boolean | undefined;
|
|
622
1472
|
readonly radiused?: boolean | undefined;
|
|
@@ -632,11 +1482,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
632
1482
|
}, "size" | "unstyled"> & {
|
|
633
1483
|
readonly unstyled?: boolean | undefined;
|
|
634
1484
|
readonly size?: SizeTokens | undefined;
|
|
635
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1485
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1486
|
+
target?: string | undefined;
|
|
1487
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1488
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1489
|
+
dangerouslySetInnerHTML?: {
|
|
1490
|
+
__html: string;
|
|
1491
|
+
} | undefined;
|
|
1492
|
+
children?: any;
|
|
1493
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1494
|
+
disabled?: boolean | undefined;
|
|
1495
|
+
className?: string | undefined;
|
|
1496
|
+
themeShallow?: boolean | undefined;
|
|
1497
|
+
id?: string | undefined;
|
|
1498
|
+
tag?: string | undefined;
|
|
1499
|
+
theme?: string | null | undefined;
|
|
1500
|
+
group?: undefined;
|
|
1501
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1502
|
+
componentName?: string | undefined;
|
|
1503
|
+
tabIndex?: string | number | undefined;
|
|
1504
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1505
|
+
disableOptimization?: boolean | undefined;
|
|
1506
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1507
|
+
disableClassName?: boolean | undefined;
|
|
1508
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1509
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1510
|
+
} & {
|
|
636
1511
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
637
1512
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
638
1513
|
readonly fullscreen?: boolean | undefined;
|
|
639
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1514
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
640
1515
|
} & {
|
|
641
1516
|
readonly backgrounded?: boolean | undefined;
|
|
642
1517
|
readonly radiused?: boolean | undefined;
|
|
@@ -652,11 +1527,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
652
1527
|
}, "size" | "unstyled"> & {
|
|
653
1528
|
readonly unstyled?: boolean | undefined;
|
|
654
1529
|
readonly size?: SizeTokens | undefined;
|
|
655
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1530
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1531
|
+
target?: string | undefined;
|
|
1532
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1533
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1534
|
+
dangerouslySetInnerHTML?: {
|
|
1535
|
+
__html: string;
|
|
1536
|
+
} | undefined;
|
|
1537
|
+
children?: any;
|
|
1538
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1539
|
+
disabled?: boolean | undefined;
|
|
1540
|
+
className?: string | undefined;
|
|
1541
|
+
themeShallow?: boolean | undefined;
|
|
1542
|
+
id?: string | undefined;
|
|
1543
|
+
tag?: string | undefined;
|
|
1544
|
+
theme?: string | null | undefined;
|
|
1545
|
+
group?: undefined;
|
|
1546
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1547
|
+
componentName?: string | undefined;
|
|
1548
|
+
tabIndex?: string | number | undefined;
|
|
1549
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1550
|
+
disableOptimization?: boolean | undefined;
|
|
1551
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1552
|
+
disableClassName?: boolean | undefined;
|
|
1553
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1554
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1555
|
+
} & {
|
|
656
1556
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
657
1557
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
658
1558
|
readonly fullscreen?: boolean | undefined;
|
|
659
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1559
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
660
1560
|
} & {
|
|
661
1561
|
readonly backgrounded?: boolean | undefined;
|
|
662
1562
|
readonly radiused?: boolean | undefined;
|
|
@@ -672,11 +1572,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
672
1572
|
}, "size" | "unstyled"> & {
|
|
673
1573
|
readonly unstyled?: boolean | undefined;
|
|
674
1574
|
readonly size?: SizeTokens | undefined;
|
|
675
|
-
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1575
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1576
|
+
target?: string | undefined;
|
|
1577
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1578
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1579
|
+
dangerouslySetInnerHTML?: {
|
|
1580
|
+
__html: string;
|
|
1581
|
+
} | undefined;
|
|
1582
|
+
children?: any;
|
|
1583
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1584
|
+
disabled?: boolean | undefined;
|
|
1585
|
+
className?: string | undefined;
|
|
1586
|
+
themeShallow?: boolean | undefined;
|
|
1587
|
+
id?: string | undefined;
|
|
1588
|
+
tag?: string | undefined;
|
|
1589
|
+
theme?: string | null | undefined;
|
|
1590
|
+
group?: undefined;
|
|
1591
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1592
|
+
componentName?: string | undefined;
|
|
1593
|
+
tabIndex?: string | number | undefined;
|
|
1594
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1595
|
+
disableOptimization?: boolean | undefined;
|
|
1596
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1597
|
+
disableClassName?: boolean | undefined;
|
|
1598
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1599
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1600
|
+
} & {
|
|
676
1601
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
677
1602
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
678
1603
|
readonly fullscreen?: boolean | undefined;
|
|
679
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1604
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
680
1605
|
} & {
|
|
681
1606
|
readonly backgrounded?: boolean | undefined;
|
|
682
1607
|
readonly radiused?: boolean | undefined;
|
|
@@ -694,17 +1619,67 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
694
1619
|
readonly size?: SizeTokens | undefined;
|
|
695
1620
|
}, {
|
|
696
1621
|
displayName: string | undefined;
|
|
697
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1622
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1623
|
+
target?: string | undefined;
|
|
1624
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1625
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1626
|
+
dangerouslySetInnerHTML?: {
|
|
1627
|
+
__html: string;
|
|
1628
|
+
} | undefined;
|
|
1629
|
+
children?: any;
|
|
1630
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1631
|
+
disabled?: boolean | undefined;
|
|
1632
|
+
className?: string | undefined;
|
|
1633
|
+
themeShallow?: boolean | undefined;
|
|
1634
|
+
id?: string | undefined;
|
|
1635
|
+
tag?: string | undefined;
|
|
1636
|
+
theme?: string | null | undefined;
|
|
1637
|
+
group?: undefined;
|
|
1638
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1639
|
+
componentName?: string | undefined;
|
|
1640
|
+
tabIndex?: string | number | undefined;
|
|
1641
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1642
|
+
disableOptimization?: boolean | undefined;
|
|
1643
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1644
|
+
disableClassName?: boolean | undefined;
|
|
1645
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1646
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1647
|
+
} & {
|
|
698
1648
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
699
1649
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
1650
|
+
target?: string | undefined;
|
|
1651
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1652
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1653
|
+
dangerouslySetInnerHTML?: {
|
|
1654
|
+
__html: string;
|
|
1655
|
+
} | undefined;
|
|
1656
|
+
children?: any;
|
|
1657
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1658
|
+
disabled?: boolean | undefined;
|
|
1659
|
+
className?: string | undefined;
|
|
1660
|
+
themeShallow?: boolean | undefined;
|
|
1661
|
+
id?: string | undefined;
|
|
1662
|
+
tag?: string | undefined;
|
|
1663
|
+
theme?: string | null | undefined;
|
|
1664
|
+
group?: undefined;
|
|
1665
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1666
|
+
componentName?: string | undefined;
|
|
1667
|
+
tabIndex?: string | number | undefined;
|
|
1668
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1669
|
+
disableOptimization?: boolean | undefined;
|
|
1670
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1671
|
+
disableClassName?: boolean | undefined;
|
|
1672
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1673
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1674
|
+
} & {
|
|
700
1675
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
701
1676
|
};
|
|
702
1677
|
__variantProps: {
|
|
703
1678
|
readonly fullscreen?: boolean | undefined;
|
|
704
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1679
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
705
1680
|
} & {
|
|
706
1681
|
readonly fullscreen?: boolean | undefined;
|
|
707
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1682
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
708
1683
|
} & {
|
|
709
1684
|
readonly backgrounded?: boolean | undefined;
|
|
710
1685
|
readonly radiused?: boolean | undefined;
|
|
@@ -719,11 +1694,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
719
1694
|
readonly chromeless?: boolean | "all" | undefined;
|
|
720
1695
|
};
|
|
721
1696
|
}>;
|
|
722
|
-
Footer: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1697
|
+
Footer: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1698
|
+
target?: string | undefined;
|
|
1699
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1700
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1701
|
+
dangerouslySetInnerHTML?: {
|
|
1702
|
+
__html: string;
|
|
1703
|
+
} | undefined;
|
|
1704
|
+
children?: any;
|
|
1705
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1706
|
+
disabled?: boolean | undefined;
|
|
1707
|
+
className?: string | undefined;
|
|
1708
|
+
themeShallow?: boolean | undefined;
|
|
1709
|
+
id?: string | undefined;
|
|
1710
|
+
tag?: string | undefined;
|
|
1711
|
+
theme?: string | null | undefined;
|
|
1712
|
+
group?: undefined;
|
|
1713
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1714
|
+
componentName?: string | undefined;
|
|
1715
|
+
tabIndex?: string | number | undefined;
|
|
1716
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1717
|
+
disableOptimization?: boolean | undefined;
|
|
1718
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1719
|
+
disableClassName?: boolean | undefined;
|
|
1720
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1721
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1722
|
+
} & {
|
|
723
1723
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
724
1724
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
725
1725
|
readonly fullscreen?: boolean | undefined;
|
|
726
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1726
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
727
1727
|
} & {
|
|
728
1728
|
readonly backgrounded?: boolean | undefined;
|
|
729
1729
|
readonly radiused?: boolean | undefined;
|
|
@@ -741,11 +1741,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
741
1741
|
readonly size?: SizeTokens | undefined;
|
|
742
1742
|
}, "unstyled"> & {
|
|
743
1743
|
readonly unstyled?: boolean | undefined;
|
|
744
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1744
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1745
|
+
target?: string | undefined;
|
|
1746
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1747
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1748
|
+
dangerouslySetInnerHTML?: {
|
|
1749
|
+
__html: string;
|
|
1750
|
+
} | undefined;
|
|
1751
|
+
children?: any;
|
|
1752
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1753
|
+
disabled?: boolean | undefined;
|
|
1754
|
+
className?: string | undefined;
|
|
1755
|
+
themeShallow?: boolean | undefined;
|
|
1756
|
+
id?: string | undefined;
|
|
1757
|
+
tag?: string | undefined;
|
|
1758
|
+
theme?: string | null | undefined;
|
|
1759
|
+
group?: undefined;
|
|
1760
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1761
|
+
componentName?: string | undefined;
|
|
1762
|
+
tabIndex?: string | number | undefined;
|
|
1763
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1764
|
+
disableOptimization?: boolean | undefined;
|
|
1765
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1766
|
+
disableClassName?: boolean | undefined;
|
|
1767
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1768
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1769
|
+
} & {
|
|
745
1770
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
746
1771
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
747
1772
|
readonly fullscreen?: boolean | undefined;
|
|
748
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1773
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
749
1774
|
} & {
|
|
750
1775
|
readonly backgrounded?: boolean | undefined;
|
|
751
1776
|
readonly radiused?: boolean | undefined;
|
|
@@ -763,11 +1788,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
763
1788
|
readonly size?: SizeTokens | undefined;
|
|
764
1789
|
}, "unstyled"> & {
|
|
765
1790
|
readonly unstyled?: boolean | undefined;
|
|
766
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1791
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1792
|
+
target?: string | undefined;
|
|
1793
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1794
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1795
|
+
dangerouslySetInnerHTML?: {
|
|
1796
|
+
__html: string;
|
|
1797
|
+
} | undefined;
|
|
1798
|
+
children?: any;
|
|
1799
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1800
|
+
disabled?: boolean | undefined;
|
|
1801
|
+
className?: string | undefined;
|
|
1802
|
+
themeShallow?: boolean | undefined;
|
|
1803
|
+
id?: string | undefined;
|
|
1804
|
+
tag?: string | undefined;
|
|
1805
|
+
theme?: string | null | undefined;
|
|
1806
|
+
group?: undefined;
|
|
1807
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1808
|
+
componentName?: string | undefined;
|
|
1809
|
+
tabIndex?: string | number | undefined;
|
|
1810
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1811
|
+
disableOptimization?: boolean | undefined;
|
|
1812
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1813
|
+
disableClassName?: boolean | undefined;
|
|
1814
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1815
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1816
|
+
} & {
|
|
767
1817
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
768
1818
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
769
1819
|
readonly fullscreen?: boolean | undefined;
|
|
770
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1820
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
771
1821
|
} & {
|
|
772
1822
|
readonly backgrounded?: boolean | undefined;
|
|
773
1823
|
readonly radiused?: boolean | undefined;
|
|
@@ -785,11 +1835,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
785
1835
|
readonly size?: SizeTokens | undefined;
|
|
786
1836
|
}, "unstyled"> & {
|
|
787
1837
|
readonly unstyled?: boolean | undefined;
|
|
788
|
-
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1838
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1839
|
+
target?: string | undefined;
|
|
1840
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1841
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1842
|
+
dangerouslySetInnerHTML?: {
|
|
1843
|
+
__html: string;
|
|
1844
|
+
} | undefined;
|
|
1845
|
+
children?: any;
|
|
1846
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1847
|
+
disabled?: boolean | undefined;
|
|
1848
|
+
className?: string | undefined;
|
|
1849
|
+
themeShallow?: boolean | undefined;
|
|
1850
|
+
id?: string | undefined;
|
|
1851
|
+
tag?: string | undefined;
|
|
1852
|
+
theme?: string | null | undefined;
|
|
1853
|
+
group?: undefined;
|
|
1854
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1855
|
+
componentName?: string | undefined;
|
|
1856
|
+
tabIndex?: string | number | undefined;
|
|
1857
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1858
|
+
disableOptimization?: boolean | undefined;
|
|
1859
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1860
|
+
disableClassName?: boolean | undefined;
|
|
1861
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1862
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1863
|
+
} & {
|
|
789
1864
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
790
1865
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
791
1866
|
readonly fullscreen?: boolean | undefined;
|
|
792
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1867
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
793
1868
|
} & {
|
|
794
1869
|
readonly backgrounded?: boolean | undefined;
|
|
795
1870
|
readonly radiused?: boolean | undefined;
|
|
@@ -809,17 +1884,67 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
809
1884
|
readonly unstyled?: boolean | undefined;
|
|
810
1885
|
}, {
|
|
811
1886
|
displayName: string | undefined;
|
|
812
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1887
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1888
|
+
target?: string | undefined;
|
|
1889
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1890
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1891
|
+
dangerouslySetInnerHTML?: {
|
|
1892
|
+
__html: string;
|
|
1893
|
+
} | undefined;
|
|
1894
|
+
children?: any;
|
|
1895
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1896
|
+
disabled?: boolean | undefined;
|
|
1897
|
+
className?: string | undefined;
|
|
1898
|
+
themeShallow?: boolean | undefined;
|
|
1899
|
+
id?: string | undefined;
|
|
1900
|
+
tag?: string | undefined;
|
|
1901
|
+
theme?: string | null | undefined;
|
|
1902
|
+
group?: undefined;
|
|
1903
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1904
|
+
componentName?: string | undefined;
|
|
1905
|
+
tabIndex?: string | number | undefined;
|
|
1906
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1907
|
+
disableOptimization?: boolean | undefined;
|
|
1908
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1909
|
+
disableClassName?: boolean | undefined;
|
|
1910
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1911
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1912
|
+
} & {
|
|
813
1913
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
814
1914
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
1915
|
+
target?: string | undefined;
|
|
1916
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1917
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1918
|
+
dangerouslySetInnerHTML?: {
|
|
1919
|
+
__html: string;
|
|
1920
|
+
} | undefined;
|
|
1921
|
+
children?: any;
|
|
1922
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1923
|
+
disabled?: boolean | undefined;
|
|
1924
|
+
className?: string | undefined;
|
|
1925
|
+
themeShallow?: boolean | undefined;
|
|
1926
|
+
id?: string | undefined;
|
|
1927
|
+
tag?: string | undefined;
|
|
1928
|
+
theme?: string | null | undefined;
|
|
1929
|
+
group?: undefined;
|
|
1930
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1931
|
+
componentName?: string | undefined;
|
|
1932
|
+
tabIndex?: string | number | undefined;
|
|
1933
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1934
|
+
disableOptimization?: boolean | undefined;
|
|
1935
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1936
|
+
disableClassName?: boolean | undefined;
|
|
1937
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1938
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1939
|
+
} & {
|
|
815
1940
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
816
1941
|
};
|
|
817
1942
|
__variantProps: {
|
|
818
1943
|
readonly fullscreen?: boolean | undefined;
|
|
819
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1944
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
820
1945
|
} & {
|
|
821
1946
|
readonly fullscreen?: boolean | undefined;
|
|
822
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1947
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
823
1948
|
} & {
|
|
824
1949
|
readonly backgrounded?: boolean | undefined;
|
|
825
1950
|
readonly radiused?: boolean | undefined;
|
|
@@ -837,11 +1962,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
837
1962
|
readonly size?: SizeTokens | undefined;
|
|
838
1963
|
};
|
|
839
1964
|
}>;
|
|
840
|
-
Background: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
1965
|
+
Background: import("@tamagui/web").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
1966
|
+
target?: string | undefined;
|
|
1967
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1968
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1969
|
+
dangerouslySetInnerHTML?: {
|
|
1970
|
+
__html: string;
|
|
1971
|
+
} | undefined;
|
|
1972
|
+
children?: any;
|
|
1973
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
1974
|
+
disabled?: boolean | undefined;
|
|
1975
|
+
className?: string | undefined;
|
|
1976
|
+
themeShallow?: boolean | undefined;
|
|
1977
|
+
id?: string | undefined;
|
|
1978
|
+
tag?: string | undefined;
|
|
1979
|
+
theme?: string | null | undefined;
|
|
1980
|
+
group?: undefined;
|
|
1981
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1982
|
+
componentName?: string | undefined;
|
|
1983
|
+
tabIndex?: string | number | undefined;
|
|
1984
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1985
|
+
disableOptimization?: boolean | undefined;
|
|
1986
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1987
|
+
disableClassName?: boolean | undefined;
|
|
1988
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1989
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1990
|
+
} & {
|
|
841
1991
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
842
1992
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
843
1993
|
readonly fullscreen?: boolean | undefined;
|
|
844
|
-
readonly elevation?: SizeTokens | undefined;
|
|
1994
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
845
1995
|
} & {
|
|
846
1996
|
readonly backgrounded?: boolean | undefined;
|
|
847
1997
|
readonly radiused?: boolean | undefined;
|
|
@@ -856,11 +2006,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
856
2006
|
readonly chromeless?: boolean | "all" | undefined;
|
|
857
2007
|
}, "unstyled"> & {
|
|
858
2008
|
readonly unstyled?: boolean | undefined;
|
|
859
|
-
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2009
|
+
} & import("@tamagui/web").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2010
|
+
target?: string | undefined;
|
|
2011
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2012
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2013
|
+
dangerouslySetInnerHTML?: {
|
|
2014
|
+
__html: string;
|
|
2015
|
+
} | undefined;
|
|
2016
|
+
children?: any;
|
|
2017
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2018
|
+
disabled?: boolean | undefined;
|
|
2019
|
+
className?: string | undefined;
|
|
2020
|
+
themeShallow?: boolean | undefined;
|
|
2021
|
+
id?: string | undefined;
|
|
2022
|
+
tag?: string | undefined;
|
|
2023
|
+
theme?: string | null | undefined;
|
|
2024
|
+
group?: undefined;
|
|
2025
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2026
|
+
componentName?: string | undefined;
|
|
2027
|
+
tabIndex?: string | number | undefined;
|
|
2028
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2029
|
+
disableOptimization?: boolean | undefined;
|
|
2030
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2031
|
+
disableClassName?: boolean | undefined;
|
|
2032
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2033
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2034
|
+
} & {
|
|
860
2035
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
861
2036
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
862
2037
|
readonly fullscreen?: boolean | undefined;
|
|
863
|
-
readonly elevation?: SizeTokens | undefined;
|
|
2038
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
864
2039
|
} & {
|
|
865
2040
|
readonly backgrounded?: boolean | undefined;
|
|
866
2041
|
readonly radiused?: boolean | undefined;
|
|
@@ -875,11 +2050,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
875
2050
|
readonly chromeless?: boolean | "all" | undefined;
|
|
876
2051
|
}, "unstyled"> & {
|
|
877
2052
|
readonly unstyled?: boolean | undefined;
|
|
878
|
-
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2053
|
+
}>> & import("@tamagui/web").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2054
|
+
target?: string | undefined;
|
|
2055
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2056
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2057
|
+
dangerouslySetInnerHTML?: {
|
|
2058
|
+
__html: string;
|
|
2059
|
+
} | undefined;
|
|
2060
|
+
children?: any;
|
|
2061
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2062
|
+
disabled?: boolean | undefined;
|
|
2063
|
+
className?: string | undefined;
|
|
2064
|
+
themeShallow?: boolean | undefined;
|
|
2065
|
+
id?: string | undefined;
|
|
2066
|
+
tag?: string | undefined;
|
|
2067
|
+
theme?: string | null | undefined;
|
|
2068
|
+
group?: undefined;
|
|
2069
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2070
|
+
componentName?: string | undefined;
|
|
2071
|
+
tabIndex?: string | number | undefined;
|
|
2072
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2073
|
+
disableOptimization?: boolean | undefined;
|
|
2074
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2075
|
+
disableClassName?: boolean | undefined;
|
|
2076
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2077
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2078
|
+
} & {
|
|
879
2079
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
880
2080
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
881
2081
|
readonly fullscreen?: boolean | undefined;
|
|
882
|
-
readonly elevation?: SizeTokens | undefined;
|
|
2082
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
883
2083
|
} & {
|
|
884
2084
|
readonly backgrounded?: boolean | undefined;
|
|
885
2085
|
readonly radiused?: boolean | undefined;
|
|
@@ -894,11 +2094,36 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
894
2094
|
readonly chromeless?: boolean | "all" | undefined;
|
|
895
2095
|
}, "unstyled"> & {
|
|
896
2096
|
readonly unstyled?: boolean | undefined;
|
|
897
|
-
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2097
|
+
}>>, import("@tamagui/web").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2098
|
+
target?: string | undefined;
|
|
2099
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2100
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2101
|
+
dangerouslySetInnerHTML?: {
|
|
2102
|
+
__html: string;
|
|
2103
|
+
} | undefined;
|
|
2104
|
+
children?: any;
|
|
2105
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2106
|
+
disabled?: boolean | undefined;
|
|
2107
|
+
className?: string | undefined;
|
|
2108
|
+
themeShallow?: boolean | undefined;
|
|
2109
|
+
id?: string | undefined;
|
|
2110
|
+
tag?: string | undefined;
|
|
2111
|
+
theme?: string | null | undefined;
|
|
2112
|
+
group?: undefined;
|
|
2113
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2114
|
+
componentName?: string | undefined;
|
|
2115
|
+
tabIndex?: string | number | undefined;
|
|
2116
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2117
|
+
disableOptimization?: boolean | undefined;
|
|
2118
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2119
|
+
disableClassName?: boolean | undefined;
|
|
2120
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2121
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2122
|
+
} & {
|
|
898
2123
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
899
2124
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
900
2125
|
readonly fullscreen?: boolean | undefined;
|
|
901
|
-
readonly elevation?: SizeTokens | undefined;
|
|
2126
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
902
2127
|
} & {
|
|
903
2128
|
readonly backgrounded?: boolean | undefined;
|
|
904
2129
|
readonly radiused?: boolean | undefined;
|
|
@@ -915,17 +2140,67 @@ export declare const Card: import("@tamagui/web").ReactComponentWithRef<Omit<imp
|
|
|
915
2140
|
readonly unstyled?: boolean | undefined;
|
|
916
2141
|
}, {
|
|
917
2142
|
displayName: string | undefined;
|
|
918
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").
|
|
2143
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").WebOnlyPressEvents & {
|
|
2144
|
+
target?: string | undefined;
|
|
2145
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2146
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2147
|
+
dangerouslySetInnerHTML?: {
|
|
2148
|
+
__html: string;
|
|
2149
|
+
} | undefined;
|
|
2150
|
+
children?: any;
|
|
2151
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2152
|
+
disabled?: boolean | undefined;
|
|
2153
|
+
className?: string | undefined;
|
|
2154
|
+
themeShallow?: boolean | undefined;
|
|
2155
|
+
id?: string | undefined;
|
|
2156
|
+
tag?: string | undefined;
|
|
2157
|
+
theme?: string | null | undefined;
|
|
2158
|
+
group?: undefined;
|
|
2159
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2160
|
+
componentName?: string | undefined;
|
|
2161
|
+
tabIndex?: string | number | undefined;
|
|
2162
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2163
|
+
disableOptimization?: boolean | undefined;
|
|
2164
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2165
|
+
disableClassName?: boolean | undefined;
|
|
2166
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2167
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2168
|
+
} & {
|
|
919
2169
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
920
2170
|
} & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
2171
|
+
target?: string | undefined;
|
|
2172
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
2173
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
2174
|
+
dangerouslySetInnerHTML?: {
|
|
2175
|
+
__html: string;
|
|
2176
|
+
} | undefined;
|
|
2177
|
+
children?: any;
|
|
2178
|
+
debug?: import("@tamagui/web").DebugProp | undefined;
|
|
2179
|
+
disabled?: boolean | undefined;
|
|
2180
|
+
className?: string | undefined;
|
|
2181
|
+
themeShallow?: boolean | undefined;
|
|
2182
|
+
id?: string | undefined;
|
|
2183
|
+
tag?: string | undefined;
|
|
2184
|
+
theme?: string | null | undefined;
|
|
2185
|
+
group?: undefined;
|
|
2186
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
2187
|
+
componentName?: string | undefined;
|
|
2188
|
+
tabIndex?: string | number | undefined;
|
|
2189
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
2190
|
+
disableOptimization?: boolean | undefined;
|
|
2191
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
2192
|
+
disableClassName?: boolean | undefined;
|
|
2193
|
+
onFocus?: ((event: import("react").FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
2194
|
+
onScroll?: ((event: import("react").UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
2195
|
+
} & {
|
|
921
2196
|
style?: import("@tamagui/web").StyleProp<import("react-native").ViewStyle | import("react").CSSProperties | (import("react").CSSProperties & import("react-native").ViewStyle)>;
|
|
922
2197
|
};
|
|
923
2198
|
__variantProps: {
|
|
924
2199
|
readonly fullscreen?: boolean | undefined;
|
|
925
|
-
readonly elevation?: SizeTokens | undefined;
|
|
2200
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
926
2201
|
} & {
|
|
927
2202
|
readonly fullscreen?: boolean | undefined;
|
|
928
|
-
readonly elevation?: SizeTokens | undefined;
|
|
2203
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
929
2204
|
} & {
|
|
930
2205
|
readonly backgrounded?: boolean | undefined;
|
|
931
2206
|
readonly radiused?: boolean | undefined;
|