@tamagui/progress 1.72.3 → 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 +7 -7
- package/types/Progress.d.ts +917 -67
- package/types/Progress.d.ts.map +1 -1
package/types/Progress.d.ts
CHANGED
|
@@ -1,11 +1,36 @@
|
|
|
1
1
|
import { GetProps } from '@tamagui/core';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
declare const createProgressScope: import("@tamagui/create-context").CreateScope;
|
|
4
|
-
export declare const ProgressIndicatorFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
4
|
+
export declare const ProgressIndicatorFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
5
|
+
target?: string | undefined;
|
|
6
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
7
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
8
|
+
dangerouslySetInnerHTML?: {
|
|
9
|
+
__html: string;
|
|
10
|
+
} | undefined;
|
|
11
|
+
children?: any;
|
|
12
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
13
|
+
disabled?: boolean | undefined;
|
|
14
|
+
className?: string | undefined;
|
|
15
|
+
themeShallow?: boolean | undefined;
|
|
16
|
+
id?: string | undefined;
|
|
17
|
+
tag?: string | undefined;
|
|
18
|
+
theme?: string | null | undefined;
|
|
19
|
+
group?: undefined;
|
|
20
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
21
|
+
componentName?: string | undefined;
|
|
22
|
+
tabIndex?: string | number | undefined;
|
|
23
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
24
|
+
disableOptimization?: boolean | undefined;
|
|
25
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
26
|
+
disableClassName?: boolean | undefined;
|
|
27
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
28
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
29
|
+
} & {
|
|
5
30
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
6
31
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
7
32
|
readonly fullscreen?: boolean | undefined;
|
|
8
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
33
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
9
34
|
} & {
|
|
10
35
|
readonly backgrounded?: boolean | undefined;
|
|
11
36
|
readonly radiused?: boolean | undefined;
|
|
@@ -20,11 +45,36 @@ export declare const ProgressIndicatorFrame: import("@tamagui/core").TamaguiComp
|
|
|
20
45
|
readonly chromeless?: boolean | "all" | undefined;
|
|
21
46
|
}, "unstyled"> & {
|
|
22
47
|
readonly unstyled?: boolean | undefined;
|
|
23
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
48
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").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/core").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: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
72
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
73
|
+
} & {
|
|
24
74
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
25
75
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
26
76
|
readonly fullscreen?: boolean | undefined;
|
|
27
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
77
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
28
78
|
} & {
|
|
29
79
|
readonly backgrounded?: boolean | undefined;
|
|
30
80
|
readonly radiused?: boolean | undefined;
|
|
@@ -39,11 +89,36 @@ export declare const ProgressIndicatorFrame: import("@tamagui/core").TamaguiComp
|
|
|
39
89
|
readonly chromeless?: boolean | "all" | undefined;
|
|
40
90
|
}, "unstyled"> & {
|
|
41
91
|
readonly unstyled?: boolean | undefined;
|
|
42
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
92
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
93
|
+
target?: string | undefined;
|
|
94
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
95
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
96
|
+
dangerouslySetInnerHTML?: {
|
|
97
|
+
__html: string;
|
|
98
|
+
} | undefined;
|
|
99
|
+
children?: any;
|
|
100
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
101
|
+
disabled?: boolean | undefined;
|
|
102
|
+
className?: string | undefined;
|
|
103
|
+
themeShallow?: boolean | undefined;
|
|
104
|
+
id?: string | undefined;
|
|
105
|
+
tag?: string | undefined;
|
|
106
|
+
theme?: string | null | undefined;
|
|
107
|
+
group?: undefined;
|
|
108
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
109
|
+
componentName?: string | undefined;
|
|
110
|
+
tabIndex?: string | number | undefined;
|
|
111
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
112
|
+
disableOptimization?: boolean | undefined;
|
|
113
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
114
|
+
disableClassName?: boolean | undefined;
|
|
115
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
116
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
117
|
+
} & {
|
|
43
118
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
44
119
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
45
120
|
readonly fullscreen?: boolean | undefined;
|
|
46
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
121
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
47
122
|
} & {
|
|
48
123
|
readonly backgrounded?: boolean | undefined;
|
|
49
124
|
readonly radiused?: boolean | undefined;
|
|
@@ -58,11 +133,36 @@ export declare const ProgressIndicatorFrame: import("@tamagui/core").TamaguiComp
|
|
|
58
133
|
readonly chromeless?: boolean | "all" | undefined;
|
|
59
134
|
}, "unstyled"> & {
|
|
60
135
|
readonly unstyled?: boolean | undefined;
|
|
61
|
-
}>>, import("@tamagui/core").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
136
|
+
}>>, import("@tamagui/core").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
137
|
+
target?: string | undefined;
|
|
138
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
139
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
140
|
+
dangerouslySetInnerHTML?: {
|
|
141
|
+
__html: string;
|
|
142
|
+
} | undefined;
|
|
143
|
+
children?: any;
|
|
144
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
145
|
+
disabled?: boolean | undefined;
|
|
146
|
+
className?: string | undefined;
|
|
147
|
+
themeShallow?: boolean | undefined;
|
|
148
|
+
id?: string | undefined;
|
|
149
|
+
tag?: string | undefined;
|
|
150
|
+
theme?: string | null | undefined;
|
|
151
|
+
group?: undefined;
|
|
152
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
153
|
+
componentName?: string | undefined;
|
|
154
|
+
tabIndex?: string | number | undefined;
|
|
155
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
156
|
+
disableOptimization?: boolean | undefined;
|
|
157
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
158
|
+
disableClassName?: boolean | undefined;
|
|
159
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
160
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
161
|
+
} & {
|
|
62
162
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
63
163
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
64
164
|
readonly fullscreen?: boolean | undefined;
|
|
65
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
165
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
66
166
|
} & {
|
|
67
167
|
readonly backgrounded?: boolean | undefined;
|
|
68
168
|
readonly radiused?: boolean | undefined;
|
|
@@ -79,17 +179,67 @@ export declare const ProgressIndicatorFrame: import("@tamagui/core").TamaguiComp
|
|
|
79
179
|
readonly unstyled?: boolean | undefined;
|
|
80
180
|
}, {
|
|
81
181
|
displayName: string | undefined;
|
|
82
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
182
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
183
|
+
target?: string | undefined;
|
|
184
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
185
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
186
|
+
dangerouslySetInnerHTML?: {
|
|
187
|
+
__html: string;
|
|
188
|
+
} | undefined;
|
|
189
|
+
children?: any;
|
|
190
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
191
|
+
disabled?: boolean | undefined;
|
|
192
|
+
className?: string | undefined;
|
|
193
|
+
themeShallow?: boolean | undefined;
|
|
194
|
+
id?: string | undefined;
|
|
195
|
+
tag?: string | undefined;
|
|
196
|
+
theme?: string | null | undefined;
|
|
197
|
+
group?: undefined;
|
|
198
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
199
|
+
componentName?: string | undefined;
|
|
200
|
+
tabIndex?: string | number | undefined;
|
|
201
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
202
|
+
disableOptimization?: boolean | undefined;
|
|
203
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
204
|
+
disableClassName?: boolean | undefined;
|
|
205
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
206
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
207
|
+
} & {
|
|
83
208
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
84
209
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
210
|
+
target?: string | undefined;
|
|
211
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
212
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
213
|
+
dangerouslySetInnerHTML?: {
|
|
214
|
+
__html: string;
|
|
215
|
+
} | undefined;
|
|
216
|
+
children?: any;
|
|
217
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
218
|
+
disabled?: boolean | undefined;
|
|
219
|
+
className?: string | undefined;
|
|
220
|
+
themeShallow?: boolean | undefined;
|
|
221
|
+
id?: string | undefined;
|
|
222
|
+
tag?: string | undefined;
|
|
223
|
+
theme?: string | null | undefined;
|
|
224
|
+
group?: undefined;
|
|
225
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
226
|
+
componentName?: string | undefined;
|
|
227
|
+
tabIndex?: string | number | undefined;
|
|
228
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
229
|
+
disableOptimization?: boolean | undefined;
|
|
230
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
231
|
+
disableClassName?: boolean | undefined;
|
|
232
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
233
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
234
|
+
} & {
|
|
85
235
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
86
236
|
};
|
|
87
237
|
__variantProps: {
|
|
88
238
|
readonly fullscreen?: boolean | undefined;
|
|
89
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
239
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
90
240
|
} & {
|
|
91
241
|
readonly fullscreen?: boolean | undefined;
|
|
92
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
242
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
93
243
|
} & {
|
|
94
244
|
readonly backgrounded?: boolean | undefined;
|
|
95
245
|
readonly radiused?: boolean | undefined;
|
|
@@ -105,11 +255,36 @@ export declare const ProgressIndicatorFrame: import("@tamagui/core").TamaguiComp
|
|
|
105
255
|
};
|
|
106
256
|
}>;
|
|
107
257
|
type ProgressIndicatorProps = GetProps<typeof ProgressIndicatorFrame>;
|
|
108
|
-
declare const ProgressIndicator: import("@tamagui/core").ReactComponentWithRef<Object & Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
258
|
+
declare const ProgressIndicator: import("@tamagui/core").ReactComponentWithRef<Object & Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
259
|
+
target?: string | undefined;
|
|
260
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
261
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
262
|
+
dangerouslySetInnerHTML?: {
|
|
263
|
+
__html: string;
|
|
264
|
+
} | undefined;
|
|
265
|
+
children?: any;
|
|
266
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
267
|
+
disabled?: boolean | undefined;
|
|
268
|
+
className?: string | undefined;
|
|
269
|
+
themeShallow?: boolean | undefined;
|
|
270
|
+
id?: string | undefined;
|
|
271
|
+
tag?: string | undefined;
|
|
272
|
+
theme?: string | null | undefined;
|
|
273
|
+
group?: undefined;
|
|
274
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
275
|
+
componentName?: string | undefined;
|
|
276
|
+
tabIndex?: string | number | undefined;
|
|
277
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
278
|
+
disableOptimization?: boolean | undefined;
|
|
279
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
280
|
+
disableClassName?: boolean | undefined;
|
|
281
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
282
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
283
|
+
} & {
|
|
109
284
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
110
285
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
111
286
|
readonly fullscreen?: boolean | undefined;
|
|
112
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
287
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
113
288
|
} & {
|
|
114
289
|
readonly backgrounded?: boolean | undefined;
|
|
115
290
|
readonly radiused?: boolean | undefined;
|
|
@@ -124,11 +299,36 @@ declare const ProgressIndicator: import("@tamagui/core").ReactComponentWithRef<O
|
|
|
124
299
|
readonly chromeless?: boolean | "all" | undefined;
|
|
125
300
|
}, "unstyled"> & {
|
|
126
301
|
readonly unstyled?: boolean | undefined;
|
|
127
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
302
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
303
|
+
target?: string | undefined;
|
|
304
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
305
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
306
|
+
dangerouslySetInnerHTML?: {
|
|
307
|
+
__html: string;
|
|
308
|
+
} | undefined;
|
|
309
|
+
children?: any;
|
|
310
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
311
|
+
disabled?: boolean | undefined;
|
|
312
|
+
className?: string | undefined;
|
|
313
|
+
themeShallow?: boolean | undefined;
|
|
314
|
+
id?: string | undefined;
|
|
315
|
+
tag?: string | undefined;
|
|
316
|
+
theme?: string | null | undefined;
|
|
317
|
+
group?: undefined;
|
|
318
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
319
|
+
componentName?: string | undefined;
|
|
320
|
+
tabIndex?: string | number | undefined;
|
|
321
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
322
|
+
disableOptimization?: boolean | undefined;
|
|
323
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
324
|
+
disableClassName?: boolean | undefined;
|
|
325
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
326
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
327
|
+
} & {
|
|
128
328
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
129
329
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
130
330
|
readonly fullscreen?: boolean | undefined;
|
|
131
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
331
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
132
332
|
} & {
|
|
133
333
|
readonly backgrounded?: boolean | undefined;
|
|
134
334
|
readonly radiused?: boolean | undefined;
|
|
@@ -143,11 +343,36 @@ declare const ProgressIndicator: import("@tamagui/core").ReactComponentWithRef<O
|
|
|
143
343
|
readonly chromeless?: boolean | "all" | undefined;
|
|
144
344
|
}, "unstyled"> & {
|
|
145
345
|
readonly unstyled?: boolean | undefined;
|
|
146
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
346
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
347
|
+
target?: string | undefined;
|
|
348
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
349
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
350
|
+
dangerouslySetInnerHTML?: {
|
|
351
|
+
__html: string;
|
|
352
|
+
} | undefined;
|
|
353
|
+
children?: any;
|
|
354
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
355
|
+
disabled?: boolean | undefined;
|
|
356
|
+
className?: string | undefined;
|
|
357
|
+
themeShallow?: boolean | undefined;
|
|
358
|
+
id?: string | undefined;
|
|
359
|
+
tag?: string | undefined;
|
|
360
|
+
theme?: string | null | undefined;
|
|
361
|
+
group?: undefined;
|
|
362
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
363
|
+
componentName?: string | undefined;
|
|
364
|
+
tabIndex?: string | number | undefined;
|
|
365
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
366
|
+
disableOptimization?: boolean | undefined;
|
|
367
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
368
|
+
disableClassName?: boolean | undefined;
|
|
369
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
370
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
371
|
+
} & {
|
|
147
372
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
148
373
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
149
374
|
readonly fullscreen?: boolean | undefined;
|
|
150
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
375
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
151
376
|
} & {
|
|
152
377
|
readonly backgrounded?: boolean | undefined;
|
|
153
378
|
readonly radiused?: boolean | undefined;
|
|
@@ -164,11 +389,36 @@ declare const ProgressIndicator: import("@tamagui/core").ReactComponentWithRef<O
|
|
|
164
389
|
readonly unstyled?: boolean | undefined;
|
|
165
390
|
}>>, keyof Object>, import("@tamagui/core").TamaguiElement> & {
|
|
166
391
|
staticConfig: import("@tamagui/core").StaticConfig;
|
|
167
|
-
styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
392
|
+
styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
393
|
+
target?: string | undefined;
|
|
394
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
395
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
396
|
+
dangerouslySetInnerHTML?: {
|
|
397
|
+
__html: string;
|
|
398
|
+
} | undefined;
|
|
399
|
+
children?: any;
|
|
400
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
401
|
+
disabled?: boolean | undefined;
|
|
402
|
+
className?: string | undefined;
|
|
403
|
+
themeShallow?: boolean | undefined;
|
|
404
|
+
id?: string | undefined;
|
|
405
|
+
tag?: string | undefined;
|
|
406
|
+
theme?: string | null | undefined;
|
|
407
|
+
group?: undefined;
|
|
408
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
409
|
+
componentName?: string | undefined;
|
|
410
|
+
tabIndex?: string | number | undefined;
|
|
411
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
412
|
+
disableOptimization?: boolean | undefined;
|
|
413
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
414
|
+
disableClassName?: boolean | undefined;
|
|
415
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
416
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
417
|
+
} & {
|
|
168
418
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
169
419
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
170
420
|
readonly fullscreen?: boolean | undefined;
|
|
171
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
421
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
172
422
|
} & {
|
|
173
423
|
readonly backgrounded?: boolean | undefined;
|
|
174
424
|
readonly radiused?: boolean | undefined;
|
|
@@ -183,11 +433,36 @@ declare const ProgressIndicator: import("@tamagui/core").ReactComponentWithRef<O
|
|
|
183
433
|
readonly chromeless?: boolean | "all" | undefined;
|
|
184
434
|
}, "unstyled"> & {
|
|
185
435
|
readonly unstyled?: boolean | undefined;
|
|
186
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
436
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
437
|
+
target?: string | undefined;
|
|
438
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
439
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
440
|
+
dangerouslySetInnerHTML?: {
|
|
441
|
+
__html: string;
|
|
442
|
+
} | undefined;
|
|
443
|
+
children?: any;
|
|
444
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
445
|
+
disabled?: boolean | undefined;
|
|
446
|
+
className?: string | undefined;
|
|
447
|
+
themeShallow?: boolean | undefined;
|
|
448
|
+
id?: string | undefined;
|
|
449
|
+
tag?: string | undefined;
|
|
450
|
+
theme?: string | null | undefined;
|
|
451
|
+
group?: undefined;
|
|
452
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
453
|
+
componentName?: string | undefined;
|
|
454
|
+
tabIndex?: string | number | undefined;
|
|
455
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
456
|
+
disableOptimization?: boolean | undefined;
|
|
457
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
458
|
+
disableClassName?: boolean | undefined;
|
|
459
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
460
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
461
|
+
} & {
|
|
187
462
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
188
463
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
189
464
|
readonly fullscreen?: boolean | undefined;
|
|
190
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
465
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
191
466
|
} & {
|
|
192
467
|
readonly backgrounded?: boolean | undefined;
|
|
193
468
|
readonly radiused?: boolean | undefined;
|
|
@@ -202,11 +477,36 @@ declare const ProgressIndicator: import("@tamagui/core").ReactComponentWithRef<O
|
|
|
202
477
|
readonly chromeless?: boolean | "all" | undefined;
|
|
203
478
|
}, "unstyled"> & {
|
|
204
479
|
readonly unstyled?: boolean | undefined;
|
|
205
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
480
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
481
|
+
target?: string | undefined;
|
|
482
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
483
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
484
|
+
dangerouslySetInnerHTML?: {
|
|
485
|
+
__html: string;
|
|
486
|
+
} | undefined;
|
|
487
|
+
children?: any;
|
|
488
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
489
|
+
disabled?: boolean | undefined;
|
|
490
|
+
className?: string | undefined;
|
|
491
|
+
themeShallow?: boolean | undefined;
|
|
492
|
+
id?: string | undefined;
|
|
493
|
+
tag?: string | undefined;
|
|
494
|
+
theme?: string | null | undefined;
|
|
495
|
+
group?: undefined;
|
|
496
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
497
|
+
componentName?: string | undefined;
|
|
498
|
+
tabIndex?: string | number | undefined;
|
|
499
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
500
|
+
disableOptimization?: boolean | undefined;
|
|
501
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
502
|
+
disableClassName?: boolean | undefined;
|
|
503
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
504
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
505
|
+
} & {
|
|
206
506
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
207
507
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
208
508
|
readonly fullscreen?: boolean | undefined;
|
|
209
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
509
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
210
510
|
} & {
|
|
211
511
|
readonly backgrounded?: boolean | undefined;
|
|
212
512
|
readonly radiused?: boolean | undefined;
|
|
@@ -223,11 +523,36 @@ declare const ProgressIndicator: import("@tamagui/core").ReactComponentWithRef<O
|
|
|
223
523
|
readonly unstyled?: boolean | undefined;
|
|
224
524
|
}>>, import("@tamagui/core").TamaguiElement>;
|
|
225
525
|
};
|
|
226
|
-
export declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
526
|
+
export declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
527
|
+
target?: string | undefined;
|
|
528
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
529
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
530
|
+
dangerouslySetInnerHTML?: {
|
|
531
|
+
__html: string;
|
|
532
|
+
} | undefined;
|
|
533
|
+
children?: any;
|
|
534
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
535
|
+
disabled?: boolean | undefined;
|
|
536
|
+
className?: string | undefined;
|
|
537
|
+
themeShallow?: boolean | undefined;
|
|
538
|
+
id?: string | undefined;
|
|
539
|
+
tag?: string | undefined;
|
|
540
|
+
theme?: string | null | undefined;
|
|
541
|
+
group?: undefined;
|
|
542
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
543
|
+
componentName?: string | undefined;
|
|
544
|
+
tabIndex?: string | number | undefined;
|
|
545
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
546
|
+
disableOptimization?: boolean | undefined;
|
|
547
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
548
|
+
disableClassName?: boolean | undefined;
|
|
549
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
550
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
551
|
+
} & {
|
|
227
552
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
228
553
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
229
554
|
readonly fullscreen?: boolean | undefined;
|
|
230
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
555
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
231
556
|
} & {
|
|
232
557
|
readonly backgrounded?: boolean | undefined;
|
|
233
558
|
readonly radiused?: boolean | undefined;
|
|
@@ -243,11 +568,36 @@ export declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
243
568
|
}, "size" | "unstyled"> & {
|
|
244
569
|
readonly unstyled?: boolean | undefined;
|
|
245
570
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
246
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
571
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
572
|
+
target?: string | undefined;
|
|
573
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
574
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
575
|
+
dangerouslySetInnerHTML?: {
|
|
576
|
+
__html: string;
|
|
577
|
+
} | undefined;
|
|
578
|
+
children?: any;
|
|
579
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
580
|
+
disabled?: boolean | undefined;
|
|
581
|
+
className?: string | undefined;
|
|
582
|
+
themeShallow?: boolean | undefined;
|
|
583
|
+
id?: string | undefined;
|
|
584
|
+
tag?: string | undefined;
|
|
585
|
+
theme?: string | null | undefined;
|
|
586
|
+
group?: undefined;
|
|
587
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
588
|
+
componentName?: string | undefined;
|
|
589
|
+
tabIndex?: string | number | undefined;
|
|
590
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
591
|
+
disableOptimization?: boolean | undefined;
|
|
592
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
593
|
+
disableClassName?: boolean | undefined;
|
|
594
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
595
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
596
|
+
} & {
|
|
247
597
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
248
598
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
249
599
|
readonly fullscreen?: boolean | undefined;
|
|
250
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
600
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
251
601
|
} & {
|
|
252
602
|
readonly backgrounded?: boolean | undefined;
|
|
253
603
|
readonly radiused?: boolean | undefined;
|
|
@@ -263,11 +613,36 @@ export declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
263
613
|
}, "size" | "unstyled"> & {
|
|
264
614
|
readonly unstyled?: boolean | undefined;
|
|
265
615
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
266
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
616
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
617
|
+
target?: string | undefined;
|
|
618
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
619
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
620
|
+
dangerouslySetInnerHTML?: {
|
|
621
|
+
__html: string;
|
|
622
|
+
} | undefined;
|
|
623
|
+
children?: any;
|
|
624
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
625
|
+
disabled?: boolean | undefined;
|
|
626
|
+
className?: string | undefined;
|
|
627
|
+
themeShallow?: boolean | undefined;
|
|
628
|
+
id?: string | undefined;
|
|
629
|
+
tag?: string | undefined;
|
|
630
|
+
theme?: string | null | undefined;
|
|
631
|
+
group?: undefined;
|
|
632
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
633
|
+
componentName?: string | undefined;
|
|
634
|
+
tabIndex?: string | number | undefined;
|
|
635
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
636
|
+
disableOptimization?: boolean | undefined;
|
|
637
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
638
|
+
disableClassName?: boolean | undefined;
|
|
639
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
640
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
641
|
+
} & {
|
|
267
642
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
268
643
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
269
644
|
readonly fullscreen?: boolean | undefined;
|
|
270
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
645
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
271
646
|
} & {
|
|
272
647
|
readonly backgrounded?: boolean | undefined;
|
|
273
648
|
readonly radiused?: boolean | undefined;
|
|
@@ -283,11 +658,36 @@ export declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
283
658
|
}, "size" | "unstyled"> & {
|
|
284
659
|
readonly unstyled?: boolean | undefined;
|
|
285
660
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
286
|
-
}>>, import("@tamagui/core").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
661
|
+
}>>, import("@tamagui/core").TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
662
|
+
target?: string | undefined;
|
|
663
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
664
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
665
|
+
dangerouslySetInnerHTML?: {
|
|
666
|
+
__html: string;
|
|
667
|
+
} | undefined;
|
|
668
|
+
children?: any;
|
|
669
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
670
|
+
disabled?: boolean | undefined;
|
|
671
|
+
className?: string | undefined;
|
|
672
|
+
themeShallow?: boolean | undefined;
|
|
673
|
+
id?: string | undefined;
|
|
674
|
+
tag?: string | undefined;
|
|
675
|
+
theme?: string | null | undefined;
|
|
676
|
+
group?: undefined;
|
|
677
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
678
|
+
componentName?: string | undefined;
|
|
679
|
+
tabIndex?: string | number | undefined;
|
|
680
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
681
|
+
disableOptimization?: boolean | undefined;
|
|
682
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
683
|
+
disableClassName?: boolean | undefined;
|
|
684
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
685
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
686
|
+
} & {
|
|
287
687
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
288
688
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
289
689
|
readonly fullscreen?: boolean | undefined;
|
|
290
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
690
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
291
691
|
} & {
|
|
292
692
|
readonly backgrounded?: boolean | undefined;
|
|
293
693
|
readonly radiused?: boolean | undefined;
|
|
@@ -305,17 +705,67 @@ export declare const ProgressFrame: import("@tamagui/core").TamaguiComponent<Omi
|
|
|
305
705
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
306
706
|
}, {
|
|
307
707
|
displayName: string | undefined;
|
|
308
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
708
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
709
|
+
target?: string | undefined;
|
|
710
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
711
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
712
|
+
dangerouslySetInnerHTML?: {
|
|
713
|
+
__html: string;
|
|
714
|
+
} | undefined;
|
|
715
|
+
children?: any;
|
|
716
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
717
|
+
disabled?: boolean | undefined;
|
|
718
|
+
className?: string | undefined;
|
|
719
|
+
themeShallow?: boolean | undefined;
|
|
720
|
+
id?: string | undefined;
|
|
721
|
+
tag?: string | undefined;
|
|
722
|
+
theme?: string | null | undefined;
|
|
723
|
+
group?: undefined;
|
|
724
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
725
|
+
componentName?: string | undefined;
|
|
726
|
+
tabIndex?: string | number | undefined;
|
|
727
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
728
|
+
disableOptimization?: boolean | undefined;
|
|
729
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
730
|
+
disableClassName?: boolean | undefined;
|
|
731
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
732
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
733
|
+
} & {
|
|
309
734
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
310
735
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
736
|
+
target?: string | undefined;
|
|
737
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
738
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
739
|
+
dangerouslySetInnerHTML?: {
|
|
740
|
+
__html: string;
|
|
741
|
+
} | undefined;
|
|
742
|
+
children?: any;
|
|
743
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
744
|
+
disabled?: boolean | undefined;
|
|
745
|
+
className?: string | undefined;
|
|
746
|
+
themeShallow?: boolean | undefined;
|
|
747
|
+
id?: string | undefined;
|
|
748
|
+
tag?: string | undefined;
|
|
749
|
+
theme?: string | null | undefined;
|
|
750
|
+
group?: undefined;
|
|
751
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
752
|
+
componentName?: string | undefined;
|
|
753
|
+
tabIndex?: string | number | undefined;
|
|
754
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
755
|
+
disableOptimization?: boolean | undefined;
|
|
756
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
757
|
+
disableClassName?: boolean | undefined;
|
|
758
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
759
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
760
|
+
} & {
|
|
311
761
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
312
762
|
};
|
|
313
763
|
__variantProps: {
|
|
314
764
|
readonly fullscreen?: boolean | undefined;
|
|
315
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
765
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
316
766
|
} & {
|
|
317
767
|
readonly fullscreen?: boolean | undefined;
|
|
318
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
768
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
319
769
|
} & {
|
|
320
770
|
readonly backgrounded?: boolean | undefined;
|
|
321
771
|
readonly radiused?: boolean | undefined;
|
|
@@ -335,11 +785,36 @@ type ProgressProps = GetProps<typeof ProgressFrame> & {
|
|
|
335
785
|
max?: number;
|
|
336
786
|
getValueLabel?(value: number, max: number): string;
|
|
337
787
|
};
|
|
338
|
-
declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
788
|
+
declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
789
|
+
target?: string | undefined;
|
|
790
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
791
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
792
|
+
dangerouslySetInnerHTML?: {
|
|
793
|
+
__html: string;
|
|
794
|
+
} | undefined;
|
|
795
|
+
children?: any;
|
|
796
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
797
|
+
disabled?: boolean | undefined;
|
|
798
|
+
className?: string | undefined;
|
|
799
|
+
themeShallow?: boolean | undefined;
|
|
800
|
+
id?: string | undefined;
|
|
801
|
+
tag?: string | undefined;
|
|
802
|
+
theme?: string | null | undefined;
|
|
803
|
+
group?: undefined;
|
|
804
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
805
|
+
componentName?: string | undefined;
|
|
806
|
+
tabIndex?: string | number | undefined;
|
|
807
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
808
|
+
disableOptimization?: boolean | undefined;
|
|
809
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
810
|
+
disableClassName?: boolean | undefined;
|
|
811
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
812
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
813
|
+
} & {
|
|
339
814
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
340
815
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
341
816
|
readonly fullscreen?: boolean | undefined;
|
|
342
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
817
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
343
818
|
} & {
|
|
344
819
|
readonly backgrounded?: boolean | undefined;
|
|
345
820
|
readonly radiused?: boolean | undefined;
|
|
@@ -355,11 +830,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
355
830
|
}, "size" | "unstyled"> & {
|
|
356
831
|
readonly unstyled?: boolean | undefined;
|
|
357
832
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
358
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
833
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
834
|
+
target?: string | undefined;
|
|
835
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
836
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
837
|
+
dangerouslySetInnerHTML?: {
|
|
838
|
+
__html: string;
|
|
839
|
+
} | undefined;
|
|
840
|
+
children?: any;
|
|
841
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
842
|
+
disabled?: boolean | undefined;
|
|
843
|
+
className?: string | undefined;
|
|
844
|
+
themeShallow?: boolean | undefined;
|
|
845
|
+
id?: string | undefined;
|
|
846
|
+
tag?: string | undefined;
|
|
847
|
+
theme?: string | null | undefined;
|
|
848
|
+
group?: undefined;
|
|
849
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
850
|
+
componentName?: string | undefined;
|
|
851
|
+
tabIndex?: string | number | undefined;
|
|
852
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
853
|
+
disableOptimization?: boolean | undefined;
|
|
854
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
855
|
+
disableClassName?: boolean | undefined;
|
|
856
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
857
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
858
|
+
} & {
|
|
359
859
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
360
860
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
361
861
|
readonly fullscreen?: boolean | undefined;
|
|
362
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
862
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
363
863
|
} & {
|
|
364
864
|
readonly backgrounded?: boolean | undefined;
|
|
365
865
|
readonly radiused?: boolean | undefined;
|
|
@@ -375,11 +875,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
375
875
|
}, "size" | "unstyled"> & {
|
|
376
876
|
readonly unstyled?: boolean | undefined;
|
|
377
877
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
378
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
878
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
879
|
+
target?: string | undefined;
|
|
880
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
881
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
882
|
+
dangerouslySetInnerHTML?: {
|
|
883
|
+
__html: string;
|
|
884
|
+
} | undefined;
|
|
885
|
+
children?: any;
|
|
886
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
887
|
+
disabled?: boolean | undefined;
|
|
888
|
+
className?: string | undefined;
|
|
889
|
+
themeShallow?: boolean | undefined;
|
|
890
|
+
id?: string | undefined;
|
|
891
|
+
tag?: string | undefined;
|
|
892
|
+
theme?: string | null | undefined;
|
|
893
|
+
group?: undefined;
|
|
894
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
895
|
+
componentName?: string | undefined;
|
|
896
|
+
tabIndex?: string | number | undefined;
|
|
897
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
898
|
+
disableOptimization?: boolean | undefined;
|
|
899
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
900
|
+
disableClassName?: boolean | undefined;
|
|
901
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
902
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
903
|
+
} & {
|
|
379
904
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
380
905
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
381
906
|
readonly fullscreen?: boolean | undefined;
|
|
382
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
907
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
383
908
|
} & {
|
|
384
909
|
readonly backgrounded?: boolean | undefined;
|
|
385
910
|
readonly radiused?: boolean | undefined;
|
|
@@ -399,11 +924,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
399
924
|
value?: number | null | undefined;
|
|
400
925
|
max?: number | undefined;
|
|
401
926
|
getValueLabel?(value: number, max: number): string;
|
|
402
|
-
} & Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
927
|
+
} & Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
928
|
+
target?: string | undefined;
|
|
929
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
930
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
931
|
+
dangerouslySetInnerHTML?: {
|
|
932
|
+
__html: string;
|
|
933
|
+
} | undefined;
|
|
934
|
+
children?: any;
|
|
935
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
936
|
+
disabled?: boolean | undefined;
|
|
937
|
+
className?: string | undefined;
|
|
938
|
+
themeShallow?: boolean | undefined;
|
|
939
|
+
id?: string | undefined;
|
|
940
|
+
tag?: string | undefined;
|
|
941
|
+
theme?: string | null | undefined;
|
|
942
|
+
group?: undefined;
|
|
943
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
944
|
+
componentName?: string | undefined;
|
|
945
|
+
tabIndex?: string | number | undefined;
|
|
946
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
947
|
+
disableOptimization?: boolean | undefined;
|
|
948
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
949
|
+
disableClassName?: boolean | undefined;
|
|
950
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
951
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
952
|
+
} & {
|
|
403
953
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
404
954
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
405
955
|
readonly fullscreen?: boolean | undefined;
|
|
406
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
956
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
407
957
|
} & {
|
|
408
958
|
readonly backgrounded?: boolean | undefined;
|
|
409
959
|
readonly radiused?: boolean | undefined;
|
|
@@ -419,11 +969,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
419
969
|
}, "size" | "unstyled"> & {
|
|
420
970
|
readonly unstyled?: boolean | undefined;
|
|
421
971
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
422
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
972
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
973
|
+
target?: string | undefined;
|
|
974
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
975
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
976
|
+
dangerouslySetInnerHTML?: {
|
|
977
|
+
__html: string;
|
|
978
|
+
} | undefined;
|
|
979
|
+
children?: any;
|
|
980
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
981
|
+
disabled?: boolean | undefined;
|
|
982
|
+
className?: string | undefined;
|
|
983
|
+
themeShallow?: boolean | undefined;
|
|
984
|
+
id?: string | undefined;
|
|
985
|
+
tag?: string | undefined;
|
|
986
|
+
theme?: string | null | undefined;
|
|
987
|
+
group?: undefined;
|
|
988
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
989
|
+
componentName?: string | undefined;
|
|
990
|
+
tabIndex?: string | number | undefined;
|
|
991
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
992
|
+
disableOptimization?: boolean | undefined;
|
|
993
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
994
|
+
disableClassName?: boolean | undefined;
|
|
995
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
996
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
997
|
+
} & {
|
|
423
998
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
424
999
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
425
1000
|
readonly fullscreen?: boolean | undefined;
|
|
426
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1001
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
427
1002
|
} & {
|
|
428
1003
|
readonly backgrounded?: boolean | undefined;
|
|
429
1004
|
readonly radiused?: boolean | undefined;
|
|
@@ -439,11 +1014,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
439
1014
|
}, "size" | "unstyled"> & {
|
|
440
1015
|
readonly unstyled?: boolean | undefined;
|
|
441
1016
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
442
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
1017
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1018
|
+
target?: string | undefined;
|
|
1019
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1020
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1021
|
+
dangerouslySetInnerHTML?: {
|
|
1022
|
+
__html: string;
|
|
1023
|
+
} | undefined;
|
|
1024
|
+
children?: any;
|
|
1025
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1026
|
+
disabled?: boolean | undefined;
|
|
1027
|
+
className?: string | undefined;
|
|
1028
|
+
themeShallow?: boolean | undefined;
|
|
1029
|
+
id?: string | undefined;
|
|
1030
|
+
tag?: string | undefined;
|
|
1031
|
+
theme?: string | null | undefined;
|
|
1032
|
+
group?: undefined;
|
|
1033
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1034
|
+
componentName?: string | undefined;
|
|
1035
|
+
tabIndex?: string | number | undefined;
|
|
1036
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1037
|
+
disableOptimization?: boolean | undefined;
|
|
1038
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1039
|
+
disableClassName?: boolean | undefined;
|
|
1040
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1041
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1042
|
+
} & {
|
|
443
1043
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
444
1044
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
445
1045
|
readonly fullscreen?: boolean | undefined;
|
|
446
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1046
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
447
1047
|
} & {
|
|
448
1048
|
readonly backgrounded?: boolean | undefined;
|
|
449
1049
|
readonly radiused?: boolean | undefined;
|
|
@@ -459,7 +1059,7 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
459
1059
|
}, "size" | "unstyled"> & {
|
|
460
1060
|
readonly unstyled?: boolean | undefined;
|
|
461
1061
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
462
|
-
}>>, "style" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "elevation" | keyof {
|
|
1062
|
+
}>>, "children" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "elevation" | keyof {
|
|
463
1063
|
columnGap?: import("@tamagui/core").SpaceValue | undefined;
|
|
464
1064
|
contain?: import("csstype").Property.Contain | undefined;
|
|
465
1065
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -477,11 +1077,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
477
1077
|
animation?: import("@tamagui/core").AnimationProp | null | undefined;
|
|
478
1078
|
animateOnly?: string[] | undefined;
|
|
479
1079
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
480
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "transparent" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "fullscreen" | keyof import("@tamagui/core").TransformStyleProps | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/core").
|
|
1080
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "bottom" | "end" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "padding" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "right" | "start" | "top" | "width" | "zIndex" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transform" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "transparent" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "fullscreen" | keyof import("@tamagui/core").TransformStyleProps | "theme" | "group" | `$${string}` | `$${number}` | `$theme-${string}` | `$theme-${number}` | "disabled" | keyof import("@tamagui/core").WebOnlyPressEvents | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/core").RNViewProps | "size" | "unstyled" | keyof import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1081
|
+
target?: string | undefined;
|
|
1082
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1083
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1084
|
+
dangerouslySetInnerHTML?: {
|
|
1085
|
+
__html: string;
|
|
1086
|
+
} | undefined;
|
|
1087
|
+
children?: any;
|
|
1088
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1089
|
+
disabled?: boolean | undefined;
|
|
1090
|
+
className?: string | undefined;
|
|
1091
|
+
themeShallow?: boolean | undefined;
|
|
1092
|
+
id?: string | undefined;
|
|
1093
|
+
tag?: string | undefined;
|
|
1094
|
+
theme?: string | null | undefined;
|
|
1095
|
+
group?: undefined;
|
|
1096
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1097
|
+
componentName?: string | undefined;
|
|
1098
|
+
tabIndex?: string | number | undefined;
|
|
1099
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1100
|
+
disableOptimization?: boolean | undefined;
|
|
1101
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1102
|
+
disableClassName?: boolean | undefined;
|
|
1103
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1104
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1105
|
+
} & {
|
|
481
1106
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
482
1107
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
483
1108
|
readonly fullscreen?: boolean | undefined;
|
|
484
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1109
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
485
1110
|
} & {
|
|
486
1111
|
readonly backgrounded?: boolean | undefined;
|
|
487
1112
|
readonly radiused?: boolean | undefined;
|
|
@@ -499,11 +1124,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
499
1124
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
500
1125
|
}>> | "value" | "max" | "getValueLabel">, import("@tamagui/core").TamaguiElement> & {
|
|
501
1126
|
staticConfig: import("@tamagui/core").StaticConfig;
|
|
502
|
-
styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
1127
|
+
styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1128
|
+
target?: string | undefined;
|
|
1129
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1130
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1131
|
+
dangerouslySetInnerHTML?: {
|
|
1132
|
+
__html: string;
|
|
1133
|
+
} | undefined;
|
|
1134
|
+
children?: any;
|
|
1135
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1136
|
+
disabled?: boolean | undefined;
|
|
1137
|
+
className?: string | undefined;
|
|
1138
|
+
themeShallow?: boolean | undefined;
|
|
1139
|
+
id?: string | undefined;
|
|
1140
|
+
tag?: string | undefined;
|
|
1141
|
+
theme?: string | null | undefined;
|
|
1142
|
+
group?: undefined;
|
|
1143
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1144
|
+
componentName?: string | undefined;
|
|
1145
|
+
tabIndex?: string | number | undefined;
|
|
1146
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1147
|
+
disableOptimization?: boolean | undefined;
|
|
1148
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1149
|
+
disableClassName?: boolean | undefined;
|
|
1150
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1151
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1152
|
+
} & {
|
|
503
1153
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
504
1154
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
505
1155
|
readonly fullscreen?: boolean | undefined;
|
|
506
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1156
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
507
1157
|
} & {
|
|
508
1158
|
readonly backgrounded?: boolean | undefined;
|
|
509
1159
|
readonly radiused?: boolean | undefined;
|
|
@@ -519,11 +1169,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
519
1169
|
}, "size" | "unstyled"> & {
|
|
520
1170
|
readonly unstyled?: boolean | undefined;
|
|
521
1171
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
522
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
1172
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1173
|
+
target?: string | undefined;
|
|
1174
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1175
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1176
|
+
dangerouslySetInnerHTML?: {
|
|
1177
|
+
__html: string;
|
|
1178
|
+
} | undefined;
|
|
1179
|
+
children?: any;
|
|
1180
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1181
|
+
disabled?: boolean | undefined;
|
|
1182
|
+
className?: string | undefined;
|
|
1183
|
+
themeShallow?: boolean | undefined;
|
|
1184
|
+
id?: string | undefined;
|
|
1185
|
+
tag?: string | undefined;
|
|
1186
|
+
theme?: string | null | undefined;
|
|
1187
|
+
group?: undefined;
|
|
1188
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1189
|
+
componentName?: string | undefined;
|
|
1190
|
+
tabIndex?: string | number | undefined;
|
|
1191
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1192
|
+
disableOptimization?: boolean | undefined;
|
|
1193
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1194
|
+
disableClassName?: boolean | undefined;
|
|
1195
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1196
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1197
|
+
} & {
|
|
523
1198
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
524
1199
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
525
1200
|
readonly fullscreen?: boolean | undefined;
|
|
526
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1201
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
527
1202
|
} & {
|
|
528
1203
|
readonly backgrounded?: boolean | undefined;
|
|
529
1204
|
readonly radiused?: boolean | undefined;
|
|
@@ -539,11 +1214,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
539
1214
|
}, "size" | "unstyled"> & {
|
|
540
1215
|
readonly unstyled?: boolean | undefined;
|
|
541
1216
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
542
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
1217
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1218
|
+
target?: string | undefined;
|
|
1219
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1220
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1221
|
+
dangerouslySetInnerHTML?: {
|
|
1222
|
+
__html: string;
|
|
1223
|
+
} | undefined;
|
|
1224
|
+
children?: any;
|
|
1225
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1226
|
+
disabled?: boolean | undefined;
|
|
1227
|
+
className?: string | undefined;
|
|
1228
|
+
themeShallow?: boolean | undefined;
|
|
1229
|
+
id?: string | undefined;
|
|
1230
|
+
tag?: string | undefined;
|
|
1231
|
+
theme?: string | null | undefined;
|
|
1232
|
+
group?: undefined;
|
|
1233
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1234
|
+
componentName?: string | undefined;
|
|
1235
|
+
tabIndex?: string | number | undefined;
|
|
1236
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1237
|
+
disableOptimization?: boolean | undefined;
|
|
1238
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1239
|
+
disableClassName?: boolean | undefined;
|
|
1240
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1241
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1242
|
+
} & {
|
|
543
1243
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
544
1244
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
545
1245
|
readonly fullscreen?: boolean | undefined;
|
|
546
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1246
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
547
1247
|
} & {
|
|
548
1248
|
readonly backgrounded?: boolean | undefined;
|
|
549
1249
|
readonly radiused?: boolean | undefined;
|
|
@@ -561,11 +1261,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
561
1261
|
readonly size?: import("@tamagui/core").SizeTokens | undefined;
|
|
562
1262
|
}>>, import("@tamagui/core").TamaguiElement>;
|
|
563
1263
|
} & {
|
|
564
|
-
Indicator: import("@tamagui/core").ReactComponentWithRef<Object & Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
1264
|
+
Indicator: import("@tamagui/core").ReactComponentWithRef<Object & Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1265
|
+
target?: string | undefined;
|
|
1266
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1267
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1268
|
+
dangerouslySetInnerHTML?: {
|
|
1269
|
+
__html: string;
|
|
1270
|
+
} | undefined;
|
|
1271
|
+
children?: any;
|
|
1272
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1273
|
+
disabled?: boolean | undefined;
|
|
1274
|
+
className?: string | undefined;
|
|
1275
|
+
themeShallow?: boolean | undefined;
|
|
1276
|
+
id?: string | undefined;
|
|
1277
|
+
tag?: string | undefined;
|
|
1278
|
+
theme?: string | null | undefined;
|
|
1279
|
+
group?: undefined;
|
|
1280
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1281
|
+
componentName?: string | undefined;
|
|
1282
|
+
tabIndex?: string | number | undefined;
|
|
1283
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1284
|
+
disableOptimization?: boolean | undefined;
|
|
1285
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1286
|
+
disableClassName?: boolean | undefined;
|
|
1287
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1288
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1289
|
+
} & {
|
|
565
1290
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
566
1291
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
567
1292
|
readonly fullscreen?: boolean | undefined;
|
|
568
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1293
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
569
1294
|
} & {
|
|
570
1295
|
readonly backgrounded?: boolean | undefined;
|
|
571
1296
|
readonly radiused?: boolean | undefined;
|
|
@@ -580,11 +1305,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
580
1305
|
readonly chromeless?: boolean | "all" | undefined;
|
|
581
1306
|
}, "unstyled"> & {
|
|
582
1307
|
readonly unstyled?: boolean | undefined;
|
|
583
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
1308
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1309
|
+
target?: string | undefined;
|
|
1310
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1311
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1312
|
+
dangerouslySetInnerHTML?: {
|
|
1313
|
+
__html: string;
|
|
1314
|
+
} | undefined;
|
|
1315
|
+
children?: any;
|
|
1316
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1317
|
+
disabled?: boolean | undefined;
|
|
1318
|
+
className?: string | undefined;
|
|
1319
|
+
themeShallow?: boolean | undefined;
|
|
1320
|
+
id?: string | undefined;
|
|
1321
|
+
tag?: string | undefined;
|
|
1322
|
+
theme?: string | null | undefined;
|
|
1323
|
+
group?: undefined;
|
|
1324
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1325
|
+
componentName?: string | undefined;
|
|
1326
|
+
tabIndex?: string | number | undefined;
|
|
1327
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1328
|
+
disableOptimization?: boolean | undefined;
|
|
1329
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1330
|
+
disableClassName?: boolean | undefined;
|
|
1331
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1332
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1333
|
+
} & {
|
|
584
1334
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
585
1335
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
586
1336
|
readonly fullscreen?: boolean | undefined;
|
|
587
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1337
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
588
1338
|
} & {
|
|
589
1339
|
readonly backgrounded?: boolean | undefined;
|
|
590
1340
|
readonly radiused?: boolean | undefined;
|
|
@@ -599,11 +1349,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
599
1349
|
readonly chromeless?: boolean | "all" | undefined;
|
|
600
1350
|
}, "unstyled"> & {
|
|
601
1351
|
readonly unstyled?: boolean | undefined;
|
|
602
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
1352
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1353
|
+
target?: string | undefined;
|
|
1354
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1355
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1356
|
+
dangerouslySetInnerHTML?: {
|
|
1357
|
+
__html: string;
|
|
1358
|
+
} | undefined;
|
|
1359
|
+
children?: any;
|
|
1360
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1361
|
+
disabled?: boolean | undefined;
|
|
1362
|
+
className?: string | undefined;
|
|
1363
|
+
themeShallow?: boolean | undefined;
|
|
1364
|
+
id?: string | undefined;
|
|
1365
|
+
tag?: string | undefined;
|
|
1366
|
+
theme?: string | null | undefined;
|
|
1367
|
+
group?: undefined;
|
|
1368
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1369
|
+
componentName?: string | undefined;
|
|
1370
|
+
tabIndex?: string | number | undefined;
|
|
1371
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1372
|
+
disableOptimization?: boolean | undefined;
|
|
1373
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1374
|
+
disableClassName?: boolean | undefined;
|
|
1375
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1376
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1377
|
+
} & {
|
|
603
1378
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
604
1379
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
605
1380
|
readonly fullscreen?: boolean | undefined;
|
|
606
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1381
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
607
1382
|
} & {
|
|
608
1383
|
readonly backgrounded?: boolean | undefined;
|
|
609
1384
|
readonly radiused?: boolean | undefined;
|
|
@@ -620,11 +1395,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
620
1395
|
readonly unstyled?: boolean | undefined;
|
|
621
1396
|
}>>, keyof Object>, import("@tamagui/core").TamaguiElement> & {
|
|
622
1397
|
staticConfig: import("@tamagui/core").StaticConfig;
|
|
623
|
-
styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
1398
|
+
styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1399
|
+
target?: string | undefined;
|
|
1400
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1401
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1402
|
+
dangerouslySetInnerHTML?: {
|
|
1403
|
+
__html: string;
|
|
1404
|
+
} | undefined;
|
|
1405
|
+
children?: any;
|
|
1406
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1407
|
+
disabled?: boolean | undefined;
|
|
1408
|
+
className?: string | undefined;
|
|
1409
|
+
themeShallow?: boolean | undefined;
|
|
1410
|
+
id?: string | undefined;
|
|
1411
|
+
tag?: string | undefined;
|
|
1412
|
+
theme?: string | null | undefined;
|
|
1413
|
+
group?: undefined;
|
|
1414
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1415
|
+
componentName?: string | undefined;
|
|
1416
|
+
tabIndex?: string | number | undefined;
|
|
1417
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1418
|
+
disableOptimization?: boolean | undefined;
|
|
1419
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1420
|
+
disableClassName?: boolean | undefined;
|
|
1421
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1422
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1423
|
+
} & {
|
|
624
1424
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
625
1425
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
626
1426
|
readonly fullscreen?: boolean | undefined;
|
|
627
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1427
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
628
1428
|
} & {
|
|
629
1429
|
readonly backgrounded?: boolean | undefined;
|
|
630
1430
|
readonly radiused?: boolean | undefined;
|
|
@@ -639,11 +1439,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
639
1439
|
readonly chromeless?: boolean | "all" | undefined;
|
|
640
1440
|
}, "unstyled"> & {
|
|
641
1441
|
readonly unstyled?: boolean | undefined;
|
|
642
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
1442
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1443
|
+
target?: string | undefined;
|
|
1444
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1445
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1446
|
+
dangerouslySetInnerHTML?: {
|
|
1447
|
+
__html: string;
|
|
1448
|
+
} | undefined;
|
|
1449
|
+
children?: any;
|
|
1450
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1451
|
+
disabled?: boolean | undefined;
|
|
1452
|
+
className?: string | undefined;
|
|
1453
|
+
themeShallow?: boolean | undefined;
|
|
1454
|
+
id?: string | undefined;
|
|
1455
|
+
tag?: string | undefined;
|
|
1456
|
+
theme?: string | null | undefined;
|
|
1457
|
+
group?: undefined;
|
|
1458
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1459
|
+
componentName?: string | undefined;
|
|
1460
|
+
tabIndex?: string | number | undefined;
|
|
1461
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1462
|
+
disableOptimization?: boolean | undefined;
|
|
1463
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1464
|
+
disableClassName?: boolean | undefined;
|
|
1465
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1466
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1467
|
+
} & {
|
|
643
1468
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
644
1469
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
645
1470
|
readonly fullscreen?: boolean | undefined;
|
|
646
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1471
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
647
1472
|
} & {
|
|
648
1473
|
readonly backgrounded?: boolean | undefined;
|
|
649
1474
|
readonly radiused?: boolean | undefined;
|
|
@@ -658,11 +1483,36 @@ declare const Progress: import("@tamagui/core").ReactComponentWithRef<Omit<impor
|
|
|
658
1483
|
readonly chromeless?: boolean | "all" | undefined;
|
|
659
1484
|
}, "unstyled"> & {
|
|
660
1485
|
readonly unstyled?: boolean | undefined;
|
|
661
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
1486
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1487
|
+
target?: string | undefined;
|
|
1488
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1489
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1490
|
+
dangerouslySetInnerHTML?: {
|
|
1491
|
+
__html: string;
|
|
1492
|
+
} | undefined;
|
|
1493
|
+
children?: any;
|
|
1494
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1495
|
+
disabled?: boolean | undefined;
|
|
1496
|
+
className?: string | undefined;
|
|
1497
|
+
themeShallow?: boolean | undefined;
|
|
1498
|
+
id?: string | undefined;
|
|
1499
|
+
tag?: string | undefined;
|
|
1500
|
+
theme?: string | null | undefined;
|
|
1501
|
+
group?: undefined;
|
|
1502
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
1503
|
+
componentName?: string | undefined;
|
|
1504
|
+
tabIndex?: string | number | undefined;
|
|
1505
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1506
|
+
disableOptimization?: boolean | undefined;
|
|
1507
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1508
|
+
disableClassName?: boolean | undefined;
|
|
1509
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1510
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1511
|
+
} & {
|
|
662
1512
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
663
1513
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
664
1514
|
readonly fullscreen?: boolean | undefined;
|
|
665
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
1515
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
666
1516
|
} & {
|
|
667
1517
|
readonly backgrounded?: boolean | undefined;
|
|
668
1518
|
readonly radiused?: boolean | undefined;
|