@tamagui/avatar 1.73.1 → 1.74.0
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 +6 -6
- package/types/Avatar.d.ts +34 -959
- package/types/Avatar.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/avatar",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.74.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/core": "1.
|
|
35
|
-
"@tamagui/image": "1.
|
|
36
|
-
"@tamagui/shapes": "1.
|
|
37
|
-
"@tamagui/text": "1.
|
|
34
|
+
"@tamagui/core": "1.74.0",
|
|
35
|
+
"@tamagui/image": "1.74.0",
|
|
36
|
+
"@tamagui/shapes": "1.74.0",
|
|
37
|
+
"@tamagui/text": "1.74.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"react": "*",
|
|
41
41
|
"react-native": "*"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@tamagui/build": "1.
|
|
44
|
+
"@tamagui/build": "1.74.0",
|
|
45
45
|
"react": "^18.2.0",
|
|
46
46
|
"react-native": "^0.72.1"
|
|
47
47
|
},
|
package/types/Avatar.d.ts
CHANGED
|
@@ -9,218 +9,43 @@ type AvatarImageProps = Partial<ImageProps> & {
|
|
|
9
9
|
declare const AvatarImage: React.ForwardRefExoticComponent<Partial<ImageProps> & {
|
|
10
10
|
onLoadingStatusChange?: ((status: ImageLoadingStatus) => void) | undefined;
|
|
11
11
|
} & React.RefAttributes<TamaguiElement>>;
|
|
12
|
-
export declare const AvatarFallbackFrame: 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 & {
|
|
13
|
-
target?: string | undefined;
|
|
14
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
15
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
16
|
-
dangerouslySetInnerHTML?: {
|
|
17
|
-
__html: string;
|
|
18
|
-
} | undefined;
|
|
19
|
-
children?: any;
|
|
20
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
21
|
-
disabled?: boolean | undefined;
|
|
22
|
-
className?: string | undefined;
|
|
23
|
-
themeShallow?: boolean | undefined;
|
|
24
|
-
id?: string | undefined;
|
|
25
|
-
tag?: string | undefined;
|
|
26
|
-
theme?: string | null | undefined;
|
|
27
|
-
group?: undefined;
|
|
28
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
29
|
-
componentName?: string | undefined;
|
|
30
|
-
tabIndex?: string | number | undefined;
|
|
31
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
32
|
-
disableOptimization?: boolean | undefined;
|
|
33
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
34
|
-
disableClassName?: boolean | undefined;
|
|
35
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
36
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
37
|
-
} & {
|
|
12
|
+
export declare const AvatarFallbackFrame: 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
38
13
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
39
14
|
} & 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<{}, "elevation" | "fullscreen"> & {
|
|
40
15
|
readonly fullscreen?: boolean | undefined;
|
|
41
16
|
readonly elevation?: number | SizeTokens | undefined;
|
|
42
|
-
} & 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 & {
|
|
43
|
-
target?: string | undefined;
|
|
44
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
45
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
46
|
-
dangerouslySetInnerHTML?: {
|
|
47
|
-
__html: string;
|
|
48
|
-
} | undefined;
|
|
49
|
-
children?: any;
|
|
50
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
51
|
-
disabled?: boolean | undefined;
|
|
52
|
-
className?: string | undefined;
|
|
53
|
-
themeShallow?: boolean | undefined;
|
|
54
|
-
id?: string | undefined;
|
|
55
|
-
tag?: string | undefined;
|
|
56
|
-
theme?: string | null | undefined;
|
|
57
|
-
group?: undefined;
|
|
58
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
59
|
-
componentName?: string | undefined;
|
|
60
|
-
tabIndex?: string | number | undefined;
|
|
61
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
62
|
-
disableOptimization?: boolean | undefined;
|
|
63
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
64
|
-
disableClassName?: boolean | undefined;
|
|
65
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
66
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
67
|
-
} & {
|
|
17
|
+
} & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
68
18
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
69
19
|
} & 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<{}, "elevation" | "fullscreen"> & {
|
|
70
20
|
readonly fullscreen?: boolean | undefined;
|
|
71
21
|
readonly elevation?: number | SizeTokens | undefined;
|
|
72
|
-
}>> & 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 & {
|
|
73
|
-
target?: string | undefined;
|
|
74
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
75
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
76
|
-
dangerouslySetInnerHTML?: {
|
|
77
|
-
__html: string;
|
|
78
|
-
} | undefined;
|
|
79
|
-
children?: any;
|
|
80
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
81
|
-
disabled?: boolean | undefined;
|
|
82
|
-
className?: string | undefined;
|
|
83
|
-
themeShallow?: boolean | undefined;
|
|
84
|
-
id?: string | undefined;
|
|
85
|
-
tag?: string | undefined;
|
|
86
|
-
theme?: string | null | undefined;
|
|
87
|
-
group?: undefined;
|
|
88
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
89
|
-
componentName?: string | undefined;
|
|
90
|
-
tabIndex?: string | number | undefined;
|
|
91
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
92
|
-
disableOptimization?: boolean | undefined;
|
|
93
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
94
|
-
disableClassName?: boolean | undefined;
|
|
95
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
96
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
97
|
-
} & {
|
|
22
|
+
}>> & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
98
23
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
99
24
|
} & 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<{}, "elevation" | "fullscreen"> & {
|
|
100
25
|
readonly fullscreen?: boolean | undefined;
|
|
101
26
|
readonly elevation?: number | SizeTokens | undefined;
|
|
102
|
-
}>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
103
|
-
target?: string | undefined;
|
|
104
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
105
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
106
|
-
dangerouslySetInnerHTML?: {
|
|
107
|
-
__html: string;
|
|
108
|
-
} | undefined;
|
|
109
|
-
children?: any;
|
|
110
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
111
|
-
disabled?: boolean | undefined;
|
|
112
|
-
className?: string | undefined;
|
|
113
|
-
themeShallow?: boolean | undefined;
|
|
114
|
-
id?: string | undefined;
|
|
115
|
-
tag?: string | undefined;
|
|
116
|
-
theme?: string | null | undefined;
|
|
117
|
-
group?: undefined;
|
|
118
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
119
|
-
componentName?: string | undefined;
|
|
120
|
-
tabIndex?: string | number | undefined;
|
|
121
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
122
|
-
disableOptimization?: boolean | undefined;
|
|
123
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
124
|
-
disableClassName?: boolean | undefined;
|
|
125
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
126
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
127
|
-
} & {
|
|
27
|
+
}>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
128
28
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
129
29
|
} & 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
30
|
readonly fullscreen?: boolean | undefined;
|
|
131
31
|
readonly elevation?: number | SizeTokens | undefined;
|
|
132
32
|
}, string | number> & {
|
|
133
33
|
[x: string]: undefined;
|
|
134
|
-
} & 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 & {
|
|
135
|
-
target?: string | undefined;
|
|
136
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
137
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
138
|
-
dangerouslySetInnerHTML?: {
|
|
139
|
-
__html: string;
|
|
140
|
-
} | undefined;
|
|
141
|
-
children?: any;
|
|
142
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
143
|
-
disabled?: boolean | undefined;
|
|
144
|
-
className?: string | undefined;
|
|
145
|
-
themeShallow?: boolean | undefined;
|
|
146
|
-
id?: string | undefined;
|
|
147
|
-
tag?: string | undefined;
|
|
148
|
-
theme?: string | null | undefined;
|
|
149
|
-
group?: undefined;
|
|
150
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
151
|
-
componentName?: string | undefined;
|
|
152
|
-
tabIndex?: string | number | undefined;
|
|
153
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
154
|
-
disableOptimization?: boolean | undefined;
|
|
155
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
156
|
-
disableClassName?: boolean | undefined;
|
|
157
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
158
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
159
|
-
} & {
|
|
34
|
+
} & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
160
35
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
161
36
|
} & 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<{
|
|
162
37
|
readonly fullscreen?: boolean | undefined;
|
|
163
38
|
readonly elevation?: number | SizeTokens | undefined;
|
|
164
39
|
}, string | number> & {
|
|
165
40
|
[x: string]: undefined;
|
|
166
|
-
}>> & 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 & {
|
|
167
|
-
target?: string | undefined;
|
|
168
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
169
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
170
|
-
dangerouslySetInnerHTML?: {
|
|
171
|
-
__html: string;
|
|
172
|
-
} | undefined;
|
|
173
|
-
children?: any;
|
|
174
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
175
|
-
disabled?: boolean | undefined;
|
|
176
|
-
className?: string | undefined;
|
|
177
|
-
themeShallow?: boolean | undefined;
|
|
178
|
-
id?: string | undefined;
|
|
179
|
-
tag?: string | undefined;
|
|
180
|
-
theme?: string | null | undefined;
|
|
181
|
-
group?: undefined;
|
|
182
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
183
|
-
componentName?: string | undefined;
|
|
184
|
-
tabIndex?: string | number | undefined;
|
|
185
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
186
|
-
disableOptimization?: boolean | undefined;
|
|
187
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
188
|
-
disableClassName?: boolean | undefined;
|
|
189
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
190
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
191
|
-
} & {
|
|
41
|
+
}>> & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
192
42
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
193
43
|
} & 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<{
|
|
194
44
|
readonly fullscreen?: boolean | undefined;
|
|
195
45
|
readonly elevation?: number | SizeTokens | undefined;
|
|
196
46
|
}, string | number> & {
|
|
197
47
|
[x: string]: undefined;
|
|
198
|
-
}>>), TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
199
|
-
target?: string | undefined;
|
|
200
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
201
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
202
|
-
dangerouslySetInnerHTML?: {
|
|
203
|
-
__html: string;
|
|
204
|
-
} | undefined;
|
|
205
|
-
children?: any;
|
|
206
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
207
|
-
disabled?: boolean | undefined;
|
|
208
|
-
className?: string | undefined;
|
|
209
|
-
themeShallow?: boolean | undefined;
|
|
210
|
-
id?: string | undefined;
|
|
211
|
-
tag?: string | undefined;
|
|
212
|
-
theme?: string | null | undefined;
|
|
213
|
-
group?: undefined;
|
|
214
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
215
|
-
componentName?: string | undefined;
|
|
216
|
-
tabIndex?: string | number | undefined;
|
|
217
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
218
|
-
disableOptimization?: boolean | undefined;
|
|
219
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
220
|
-
disableClassName?: boolean | undefined;
|
|
221
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
222
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
223
|
-
} & {
|
|
48
|
+
}>>), TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
224
49
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
225
50
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
226
51
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -232,59 +57,9 @@ export declare const AvatarFallbackFrame: import("@tamagui/core").TamaguiCompone
|
|
|
232
57
|
[x: string]: undefined;
|
|
233
58
|
}), {
|
|
234
59
|
displayName: string | undefined;
|
|
235
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
236
|
-
target?: string | undefined;
|
|
237
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
238
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
239
|
-
dangerouslySetInnerHTML?: {
|
|
240
|
-
__html: string;
|
|
241
|
-
} | undefined;
|
|
242
|
-
children?: any;
|
|
243
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
244
|
-
disabled?: boolean | undefined;
|
|
245
|
-
className?: string | undefined;
|
|
246
|
-
themeShallow?: boolean | undefined;
|
|
247
|
-
id?: string | undefined;
|
|
248
|
-
tag?: string | undefined;
|
|
249
|
-
theme?: string | null | undefined;
|
|
250
|
-
group?: undefined;
|
|
251
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
252
|
-
componentName?: string | undefined;
|
|
253
|
-
tabIndex?: string | number | undefined;
|
|
254
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
255
|
-
disableOptimization?: boolean | undefined;
|
|
256
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
257
|
-
disableClassName?: boolean | undefined;
|
|
258
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
259
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
260
|
-
} & {
|
|
60
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
261
61
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
262
62
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
263
|
-
target?: string | undefined;
|
|
264
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
265
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
266
|
-
dangerouslySetInnerHTML?: {
|
|
267
|
-
__html: string;
|
|
268
|
-
} | undefined;
|
|
269
|
-
children?: any;
|
|
270
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
271
|
-
disabled?: boolean | undefined;
|
|
272
|
-
className?: string | undefined;
|
|
273
|
-
themeShallow?: boolean | undefined;
|
|
274
|
-
id?: string | undefined;
|
|
275
|
-
tag?: string | undefined;
|
|
276
|
-
theme?: string | null | undefined;
|
|
277
|
-
group?: undefined;
|
|
278
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
279
|
-
componentName?: string | undefined;
|
|
280
|
-
tabIndex?: string | number | undefined;
|
|
281
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
282
|
-
disableOptimization?: boolean | undefined;
|
|
283
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
284
|
-
disableClassName?: boolean | undefined;
|
|
285
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
286
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
287
|
-
} & {
|
|
288
63
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
289
64
|
};
|
|
290
65
|
__variantProps: {
|
|
@@ -295,188 +70,38 @@ export declare const AvatarFallbackFrame: import("@tamagui/core").TamaguiCompone
|
|
|
295
70
|
type AvatarFallbackProps = GetProps<typeof AvatarFallbackFrame> & {
|
|
296
71
|
delayMs?: number;
|
|
297
72
|
};
|
|
298
|
-
declare const AvatarFallback: React.ForwardRefExoticComponent<((Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
299
|
-
target?: string | undefined;
|
|
300
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
301
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
302
|
-
dangerouslySetInnerHTML?: {
|
|
303
|
-
__html: string;
|
|
304
|
-
} | undefined;
|
|
305
|
-
children?: any;
|
|
306
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
307
|
-
disabled?: boolean | undefined;
|
|
308
|
-
className?: string | undefined;
|
|
309
|
-
themeShallow?: boolean | undefined;
|
|
310
|
-
id?: string | undefined;
|
|
311
|
-
tag?: string | undefined;
|
|
312
|
-
theme?: string | null | undefined;
|
|
313
|
-
group?: undefined;
|
|
314
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
315
|
-
componentName?: string | undefined;
|
|
316
|
-
tabIndex?: string | number | undefined;
|
|
317
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
318
|
-
disableOptimization?: boolean | undefined;
|
|
319
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
320
|
-
disableClassName?: boolean | undefined;
|
|
321
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
322
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
323
|
-
} & {
|
|
73
|
+
declare const AvatarFallback: React.ForwardRefExoticComponent<((Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
324
74
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
325
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<{}, "elevation" | "fullscreen"> & {
|
|
326
76
|
readonly fullscreen?: boolean | undefined;
|
|
327
77
|
readonly elevation?: number | SizeTokens | undefined;
|
|
328
|
-
} & 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 & {
|
|
329
|
-
target?: string | undefined;
|
|
330
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
331
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
332
|
-
dangerouslySetInnerHTML?: {
|
|
333
|
-
__html: string;
|
|
334
|
-
} | undefined;
|
|
335
|
-
children?: any;
|
|
336
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
337
|
-
disabled?: boolean | undefined;
|
|
338
|
-
className?: string | undefined;
|
|
339
|
-
themeShallow?: boolean | undefined;
|
|
340
|
-
id?: string | undefined;
|
|
341
|
-
tag?: string | undefined;
|
|
342
|
-
theme?: string | null | undefined;
|
|
343
|
-
group?: undefined;
|
|
344
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
345
|
-
componentName?: string | undefined;
|
|
346
|
-
tabIndex?: string | number | undefined;
|
|
347
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
348
|
-
disableOptimization?: boolean | undefined;
|
|
349
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
350
|
-
disableClassName?: boolean | undefined;
|
|
351
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
352
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
353
|
-
} & {
|
|
78
|
+
} & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
354
79
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
355
80
|
} & 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<{}, "elevation" | "fullscreen"> & {
|
|
356
81
|
readonly fullscreen?: boolean | undefined;
|
|
357
82
|
readonly elevation?: number | SizeTokens | undefined;
|
|
358
|
-
}>> & 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 & {
|
|
359
|
-
target?: string | undefined;
|
|
360
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
361
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
362
|
-
dangerouslySetInnerHTML?: {
|
|
363
|
-
__html: string;
|
|
364
|
-
} | undefined;
|
|
365
|
-
children?: any;
|
|
366
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
367
|
-
disabled?: boolean | undefined;
|
|
368
|
-
className?: string | undefined;
|
|
369
|
-
themeShallow?: boolean | undefined;
|
|
370
|
-
id?: string | undefined;
|
|
371
|
-
tag?: string | undefined;
|
|
372
|
-
theme?: string | null | undefined;
|
|
373
|
-
group?: undefined;
|
|
374
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
375
|
-
componentName?: string | undefined;
|
|
376
|
-
tabIndex?: string | number | undefined;
|
|
377
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
378
|
-
disableOptimization?: boolean | undefined;
|
|
379
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
380
|
-
disableClassName?: boolean | undefined;
|
|
381
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
382
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
383
|
-
} & {
|
|
83
|
+
}>> & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
384
84
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
385
85
|
} & 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<{}, "elevation" | "fullscreen"> & {
|
|
386
86
|
readonly fullscreen?: boolean | undefined;
|
|
387
87
|
readonly elevation?: number | SizeTokens | undefined;
|
|
388
88
|
}>> & {
|
|
389
89
|
delayMs?: number | undefined;
|
|
390
|
-
}) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
391
|
-
target?: string | undefined;
|
|
392
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
393
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
394
|
-
dangerouslySetInnerHTML?: {
|
|
395
|
-
__html: string;
|
|
396
|
-
} | undefined;
|
|
397
|
-
children?: any;
|
|
398
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
399
|
-
disabled?: boolean | undefined;
|
|
400
|
-
className?: string | undefined;
|
|
401
|
-
themeShallow?: boolean | undefined;
|
|
402
|
-
id?: string | undefined;
|
|
403
|
-
tag?: string | undefined;
|
|
404
|
-
theme?: string | null | undefined;
|
|
405
|
-
group?: undefined;
|
|
406
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
407
|
-
componentName?: string | undefined;
|
|
408
|
-
tabIndex?: string | number | undefined;
|
|
409
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
410
|
-
disableOptimization?: boolean | undefined;
|
|
411
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
412
|
-
disableClassName?: boolean | undefined;
|
|
413
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
414
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
415
|
-
} & {
|
|
90
|
+
}) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
416
91
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
417
92
|
} & 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<{
|
|
418
93
|
readonly fullscreen?: boolean | undefined;
|
|
419
94
|
readonly elevation?: number | SizeTokens | undefined;
|
|
420
95
|
}, string | number> & {
|
|
421
96
|
[x: string]: 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").WebOnlyPressEvents & {
|
|
423
|
-
target?: string | undefined;
|
|
424
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
425
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
426
|
-
dangerouslySetInnerHTML?: {
|
|
427
|
-
__html: string;
|
|
428
|
-
} | undefined;
|
|
429
|
-
children?: any;
|
|
430
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
431
|
-
disabled?: boolean | undefined;
|
|
432
|
-
className?: string | undefined;
|
|
433
|
-
themeShallow?: boolean | undefined;
|
|
434
|
-
id?: string | undefined;
|
|
435
|
-
tag?: string | undefined;
|
|
436
|
-
theme?: string | null | undefined;
|
|
437
|
-
group?: undefined;
|
|
438
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
439
|
-
componentName?: string | undefined;
|
|
440
|
-
tabIndex?: string | number | undefined;
|
|
441
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
442
|
-
disableOptimization?: boolean | undefined;
|
|
443
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
444
|
-
disableClassName?: boolean | undefined;
|
|
445
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
446
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
447
|
-
} & {
|
|
97
|
+
} & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
448
98
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
449
99
|
} & 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<{
|
|
450
100
|
readonly fullscreen?: boolean | undefined;
|
|
451
101
|
readonly elevation?: number | SizeTokens | undefined;
|
|
452
102
|
}, string | number> & {
|
|
453
103
|
[x: string]: undefined;
|
|
454
|
-
}>> & 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 & {
|
|
455
|
-
target?: string | undefined;
|
|
456
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
457
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
458
|
-
dangerouslySetInnerHTML?: {
|
|
459
|
-
__html: string;
|
|
460
|
-
} | undefined;
|
|
461
|
-
children?: any;
|
|
462
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
463
|
-
disabled?: boolean | undefined;
|
|
464
|
-
className?: string | undefined;
|
|
465
|
-
themeShallow?: boolean | undefined;
|
|
466
|
-
id?: string | undefined;
|
|
467
|
-
tag?: string | undefined;
|
|
468
|
-
theme?: string | null | undefined;
|
|
469
|
-
group?: undefined;
|
|
470
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
471
|
-
componentName?: string | undefined;
|
|
472
|
-
tabIndex?: string | number | undefined;
|
|
473
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
474
|
-
disableOptimization?: boolean | undefined;
|
|
475
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
476
|
-
disableClassName?: boolean | undefined;
|
|
477
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
478
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
479
|
-
} & {
|
|
104
|
+
}>> & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
480
105
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
481
106
|
} & 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<{
|
|
482
107
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -486,32 +111,7 @@ declare const AvatarFallback: React.ForwardRefExoticComponent<((Omit<import("rea
|
|
|
486
111
|
}>> & {
|
|
487
112
|
delayMs?: number | undefined;
|
|
488
113
|
}, "ref">) & React.RefAttributes<TamaguiElement>>;
|
|
489
|
-
export declare const AvatarFrame: 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 & {
|
|
490
|
-
target?: string | undefined;
|
|
491
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
492
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
493
|
-
dangerouslySetInnerHTML?: {
|
|
494
|
-
__html: string;
|
|
495
|
-
} | undefined;
|
|
496
|
-
children?: any;
|
|
497
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
498
|
-
disabled?: boolean | undefined;
|
|
499
|
-
className?: string | undefined;
|
|
500
|
-
themeShallow?: boolean | undefined;
|
|
501
|
-
id?: string | undefined;
|
|
502
|
-
tag?: string | undefined;
|
|
503
|
-
theme?: string | null | undefined;
|
|
504
|
-
group?: undefined;
|
|
505
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
506
|
-
componentName?: string | undefined;
|
|
507
|
-
tabIndex?: string | number | undefined;
|
|
508
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
509
|
-
disableOptimization?: boolean | undefined;
|
|
510
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
511
|
-
disableClassName?: boolean | undefined;
|
|
512
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
513
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
514
|
-
} & {
|
|
114
|
+
export declare const AvatarFrame: 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
515
115
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
516
116
|
} & 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<{
|
|
517
117
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -530,32 +130,7 @@ export declare const AvatarFrame: import("@tamagui/core").TamaguiComponent<(Omit
|
|
|
530
130
|
readonly chromeless?: boolean | "all" | undefined;
|
|
531
131
|
}, "size"> & {
|
|
532
132
|
readonly size?: number | SizeTokens | undefined;
|
|
533
|
-
} & 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 & {
|
|
534
|
-
target?: string | undefined;
|
|
535
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
536
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
537
|
-
dangerouslySetInnerHTML?: {
|
|
538
|
-
__html: string;
|
|
539
|
-
} | undefined;
|
|
540
|
-
children?: any;
|
|
541
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
542
|
-
disabled?: boolean | undefined;
|
|
543
|
-
className?: string | undefined;
|
|
544
|
-
themeShallow?: boolean | undefined;
|
|
545
|
-
id?: string | undefined;
|
|
546
|
-
tag?: string | undefined;
|
|
547
|
-
theme?: string | null | undefined;
|
|
548
|
-
group?: undefined;
|
|
549
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
550
|
-
componentName?: string | undefined;
|
|
551
|
-
tabIndex?: string | number | undefined;
|
|
552
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
553
|
-
disableOptimization?: boolean | undefined;
|
|
554
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
555
|
-
disableClassName?: boolean | undefined;
|
|
556
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
557
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
558
|
-
} & {
|
|
133
|
+
} & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
559
134
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
560
135
|
} & 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<{
|
|
561
136
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -574,32 +149,7 @@ export declare const AvatarFrame: import("@tamagui/core").TamaguiComponent<(Omit
|
|
|
574
149
|
readonly chromeless?: boolean | "all" | undefined;
|
|
575
150
|
}, "size"> & {
|
|
576
151
|
readonly size?: number | SizeTokens | undefined;
|
|
577
|
-
}>> & 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 & {
|
|
578
|
-
target?: string | undefined;
|
|
579
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
580
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
581
|
-
dangerouslySetInnerHTML?: {
|
|
582
|
-
__html: string;
|
|
583
|
-
} | undefined;
|
|
584
|
-
children?: any;
|
|
585
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
586
|
-
disabled?: boolean | undefined;
|
|
587
|
-
className?: string | undefined;
|
|
588
|
-
themeShallow?: boolean | undefined;
|
|
589
|
-
id?: string | undefined;
|
|
590
|
-
tag?: string | undefined;
|
|
591
|
-
theme?: string | null | undefined;
|
|
592
|
-
group?: undefined;
|
|
593
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
594
|
-
componentName?: string | undefined;
|
|
595
|
-
tabIndex?: string | number | undefined;
|
|
596
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
597
|
-
disableOptimization?: boolean | undefined;
|
|
598
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
599
|
-
disableClassName?: boolean | undefined;
|
|
600
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
601
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
602
|
-
} & {
|
|
152
|
+
}>> & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
603
153
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
604
154
|
} & 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
155
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -618,32 +168,7 @@ export declare const AvatarFrame: import("@tamagui/core").TamaguiComponent<(Omit
|
|
|
618
168
|
readonly chromeless?: boolean | "all" | undefined;
|
|
619
169
|
}, "size"> & {
|
|
620
170
|
readonly size?: number | SizeTokens | undefined;
|
|
621
|
-
}>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
622
|
-
target?: string | undefined;
|
|
623
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
624
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
625
|
-
dangerouslySetInnerHTML?: {
|
|
626
|
-
__html: string;
|
|
627
|
-
} | undefined;
|
|
628
|
-
children?: any;
|
|
629
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
630
|
-
disabled?: boolean | undefined;
|
|
631
|
-
className?: string | undefined;
|
|
632
|
-
themeShallow?: boolean | undefined;
|
|
633
|
-
id?: string | undefined;
|
|
634
|
-
tag?: string | undefined;
|
|
635
|
-
theme?: string | null | undefined;
|
|
636
|
-
group?: undefined;
|
|
637
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
638
|
-
componentName?: string | undefined;
|
|
639
|
-
tabIndex?: string | number | undefined;
|
|
640
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
641
|
-
disableOptimization?: boolean | undefined;
|
|
642
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
643
|
-
disableClassName?: boolean | undefined;
|
|
644
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
645
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
646
|
-
} & {
|
|
171
|
+
}>>) | (Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
647
172
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
648
173
|
} & 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<{
|
|
649
174
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -664,32 +189,7 @@ export declare const AvatarFrame: import("@tamagui/core").TamaguiComponent<(Omit
|
|
|
664
189
|
readonly size?: number | SizeTokens | undefined;
|
|
665
190
|
}, string | number> & {
|
|
666
191
|
[x: string]: undefined;
|
|
667
|
-
} & 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 & {
|
|
668
|
-
target?: string | undefined;
|
|
669
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
670
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
671
|
-
dangerouslySetInnerHTML?: {
|
|
672
|
-
__html: string;
|
|
673
|
-
} | undefined;
|
|
674
|
-
children?: any;
|
|
675
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
676
|
-
disabled?: boolean | undefined;
|
|
677
|
-
className?: string | undefined;
|
|
678
|
-
themeShallow?: boolean | undefined;
|
|
679
|
-
id?: string | undefined;
|
|
680
|
-
tag?: string | undefined;
|
|
681
|
-
theme?: string | null | undefined;
|
|
682
|
-
group?: undefined;
|
|
683
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
684
|
-
componentName?: string | undefined;
|
|
685
|
-
tabIndex?: string | number | undefined;
|
|
686
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
687
|
-
disableOptimization?: boolean | undefined;
|
|
688
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
689
|
-
disableClassName?: boolean | undefined;
|
|
690
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
691
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
692
|
-
} & {
|
|
192
|
+
} & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
693
193
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
694
194
|
} & 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<{
|
|
695
195
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -710,32 +210,7 @@ export declare const AvatarFrame: import("@tamagui/core").TamaguiComponent<(Omit
|
|
|
710
210
|
readonly size?: number | SizeTokens | undefined;
|
|
711
211
|
}, string | number> & {
|
|
712
212
|
[x: string]: undefined;
|
|
713
|
-
}>> & 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 & {
|
|
714
|
-
target?: string | undefined;
|
|
715
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
716
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
717
|
-
dangerouslySetInnerHTML?: {
|
|
718
|
-
__html: string;
|
|
719
|
-
} | undefined;
|
|
720
|
-
children?: any;
|
|
721
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
722
|
-
disabled?: boolean | undefined;
|
|
723
|
-
className?: string | undefined;
|
|
724
|
-
themeShallow?: boolean | undefined;
|
|
725
|
-
id?: string | undefined;
|
|
726
|
-
tag?: string | undefined;
|
|
727
|
-
theme?: string | null | undefined;
|
|
728
|
-
group?: undefined;
|
|
729
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
730
|
-
componentName?: string | undefined;
|
|
731
|
-
tabIndex?: string | number | undefined;
|
|
732
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
733
|
-
disableOptimization?: boolean | undefined;
|
|
734
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
735
|
-
disableClassName?: boolean | undefined;
|
|
736
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
737
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
738
|
-
} & {
|
|
213
|
+
}>> & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
739
214
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
740
215
|
} & 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<{
|
|
741
216
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -756,32 +231,7 @@ export declare const AvatarFrame: import("@tamagui/core").TamaguiComponent<(Omit
|
|
|
756
231
|
readonly size?: number | SizeTokens | undefined;
|
|
757
232
|
}, string | number> & {
|
|
758
233
|
[x: string]: undefined;
|
|
759
|
-
}>>), TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
760
|
-
target?: string | undefined;
|
|
761
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
762
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
763
|
-
dangerouslySetInnerHTML?: {
|
|
764
|
-
__html: string;
|
|
765
|
-
} | undefined;
|
|
766
|
-
children?: any;
|
|
767
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
768
|
-
disabled?: boolean | undefined;
|
|
769
|
-
className?: string | undefined;
|
|
770
|
-
themeShallow?: boolean | undefined;
|
|
771
|
-
id?: string | undefined;
|
|
772
|
-
tag?: string | undefined;
|
|
773
|
-
theme?: string | null | undefined;
|
|
774
|
-
group?: undefined;
|
|
775
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
776
|
-
componentName?: string | undefined;
|
|
777
|
-
tabIndex?: string | number | undefined;
|
|
778
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
779
|
-
disableOptimization?: boolean | undefined;
|
|
780
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
781
|
-
disableClassName?: boolean | undefined;
|
|
782
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
783
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
784
|
-
} & {
|
|
234
|
+
}>>), TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
785
235
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
786
236
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
787
237
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -804,85 +254,10 @@ export declare const AvatarFrame: import("@tamagui/core").TamaguiComponent<(Omit
|
|
|
804
254
|
[x: string]: undefined;
|
|
805
255
|
}), {
|
|
806
256
|
displayName: string | undefined;
|
|
807
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
808
|
-
target?: string | undefined;
|
|
809
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
810
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
811
|
-
dangerouslySetInnerHTML?: {
|
|
812
|
-
__html: string;
|
|
813
|
-
} | undefined;
|
|
814
|
-
children?: any;
|
|
815
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
816
|
-
disabled?: boolean | undefined;
|
|
817
|
-
className?: string | undefined;
|
|
818
|
-
themeShallow?: boolean | undefined;
|
|
819
|
-
id?: string | undefined;
|
|
820
|
-
tag?: string | undefined;
|
|
821
|
-
theme?: string | null | undefined;
|
|
822
|
-
group?: undefined;
|
|
823
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
824
|
-
componentName?: string | undefined;
|
|
825
|
-
tabIndex?: string | number | undefined;
|
|
826
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
827
|
-
disableOptimization?: boolean | undefined;
|
|
828
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
829
|
-
disableClassName?: boolean | undefined;
|
|
830
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
831
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
832
|
-
} & {
|
|
257
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
833
258
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
834
259
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
835
|
-
target?: string | undefined;
|
|
836
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
837
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
838
|
-
dangerouslySetInnerHTML?: {
|
|
839
|
-
__html: string;
|
|
840
|
-
} | undefined;
|
|
841
|
-
children?: any;
|
|
842
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
843
|
-
disabled?: boolean | undefined;
|
|
844
|
-
className?: string | undefined;
|
|
845
|
-
themeShallow?: boolean | undefined;
|
|
846
|
-
id?: string | undefined;
|
|
847
|
-
tag?: string | undefined;
|
|
848
|
-
theme?: string | null | undefined;
|
|
849
|
-
group?: undefined;
|
|
850
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
851
|
-
componentName?: string | undefined;
|
|
852
|
-
tabIndex?: string | number | undefined;
|
|
853
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
854
|
-
disableOptimization?: boolean | undefined;
|
|
855
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
856
|
-
disableClassName?: boolean | undefined;
|
|
857
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
858
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
859
|
-
} & {
|
|
860
260
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
861
|
-
} & {
|
|
862
|
-
target?: string | undefined;
|
|
863
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
864
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
865
|
-
dangerouslySetInnerHTML?: {
|
|
866
|
-
__html: string;
|
|
867
|
-
} | undefined;
|
|
868
|
-
children?: any;
|
|
869
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
870
|
-
disabled?: boolean | undefined;
|
|
871
|
-
className?: string | undefined;
|
|
872
|
-
themeShallow?: boolean | undefined;
|
|
873
|
-
id?: string | undefined;
|
|
874
|
-
tag?: string | undefined;
|
|
875
|
-
theme?: string | null | undefined;
|
|
876
|
-
group?: undefined;
|
|
877
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
878
|
-
componentName?: string | undefined;
|
|
879
|
-
tabIndex?: string | number | undefined;
|
|
880
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
881
|
-
disableOptimization?: boolean | undefined;
|
|
882
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
883
|
-
disableClassName?: boolean | undefined;
|
|
884
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
885
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
886
261
|
} & {
|
|
887
262
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
888
263
|
};
|
|
@@ -924,32 +299,7 @@ export declare const AvatarFrame: import("@tamagui/core").TamaguiComponent<(Omit
|
|
|
924
299
|
};
|
|
925
300
|
}>;
|
|
926
301
|
type AvatarProps = GetProps<typeof AvatarFrame>;
|
|
927
|
-
declare const Avatar: React.ForwardRefExoticComponent<((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
|
-
} & {
|
|
302
|
+
declare const Avatar: React.ForwardRefExoticComponent<((Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
953
303
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
954
304
|
} & 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<{
|
|
955
305
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -968,32 +318,7 @@ declare const Avatar: React.ForwardRefExoticComponent<((Omit<import("react-nativ
|
|
|
968
318
|
readonly chromeless?: boolean | "all" | undefined;
|
|
969
319
|
}, "size"> & {
|
|
970
320
|
readonly size?: number | SizeTokens | undefined;
|
|
971
|
-
} & 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 & {
|
|
972
|
-
target?: string | undefined;
|
|
973
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
974
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
975
|
-
dangerouslySetInnerHTML?: {
|
|
976
|
-
__html: string;
|
|
977
|
-
} | undefined;
|
|
978
|
-
children?: any;
|
|
979
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
980
|
-
disabled?: boolean | undefined;
|
|
981
|
-
className?: string | undefined;
|
|
982
|
-
themeShallow?: boolean | undefined;
|
|
983
|
-
id?: string | undefined;
|
|
984
|
-
tag?: string | undefined;
|
|
985
|
-
theme?: string | null | undefined;
|
|
986
|
-
group?: undefined;
|
|
987
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
988
|
-
componentName?: string | undefined;
|
|
989
|
-
tabIndex?: string | number | undefined;
|
|
990
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
991
|
-
disableOptimization?: boolean | undefined;
|
|
992
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
993
|
-
disableClassName?: boolean | undefined;
|
|
994
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
995
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
996
|
-
} & {
|
|
321
|
+
} & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
997
322
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
998
323
|
} & 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<{
|
|
999
324
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -1012,32 +337,7 @@ declare const Avatar: React.ForwardRefExoticComponent<((Omit<import("react-nativ
|
|
|
1012
337
|
readonly chromeless?: boolean | "all" | undefined;
|
|
1013
338
|
}, "size"> & {
|
|
1014
339
|
readonly size?: number | SizeTokens | undefined;
|
|
1015
|
-
}>> & 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 & {
|
|
1016
|
-
target?: string | undefined;
|
|
1017
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1018
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1019
|
-
dangerouslySetInnerHTML?: {
|
|
1020
|
-
__html: string;
|
|
1021
|
-
} | undefined;
|
|
1022
|
-
children?: any;
|
|
1023
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1024
|
-
disabled?: boolean | undefined;
|
|
1025
|
-
className?: string | undefined;
|
|
1026
|
-
themeShallow?: boolean | undefined;
|
|
1027
|
-
id?: string | undefined;
|
|
1028
|
-
tag?: string | undefined;
|
|
1029
|
-
theme?: string | null | undefined;
|
|
1030
|
-
group?: undefined;
|
|
1031
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
1032
|
-
componentName?: string | undefined;
|
|
1033
|
-
tabIndex?: string | number | undefined;
|
|
1034
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1035
|
-
disableOptimization?: boolean | undefined;
|
|
1036
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1037
|
-
disableClassName?: boolean | undefined;
|
|
1038
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1039
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1040
|
-
} & {
|
|
340
|
+
}>> & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
1041
341
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
1042
342
|
} & 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<{
|
|
1043
343
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -1056,32 +356,7 @@ declare const Avatar: React.ForwardRefExoticComponent<((Omit<import("react-nativ
|
|
|
1056
356
|
readonly chromeless?: boolean | "all" | undefined;
|
|
1057
357
|
}, "size"> & {
|
|
1058
358
|
readonly size?: number | SizeTokens | undefined;
|
|
1059
|
-
}>>) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1060
|
-
target?: string | undefined;
|
|
1061
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1062
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1063
|
-
dangerouslySetInnerHTML?: {
|
|
1064
|
-
__html: string;
|
|
1065
|
-
} | undefined;
|
|
1066
|
-
children?: any;
|
|
1067
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1068
|
-
disabled?: boolean | undefined;
|
|
1069
|
-
className?: string | undefined;
|
|
1070
|
-
themeShallow?: boolean | undefined;
|
|
1071
|
-
id?: string | undefined;
|
|
1072
|
-
tag?: string | undefined;
|
|
1073
|
-
theme?: string | null | undefined;
|
|
1074
|
-
group?: undefined;
|
|
1075
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
1076
|
-
componentName?: string | undefined;
|
|
1077
|
-
tabIndex?: string | number | undefined;
|
|
1078
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1079
|
-
disableOptimization?: boolean | undefined;
|
|
1080
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1081
|
-
disableClassName?: boolean | undefined;
|
|
1082
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1083
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1084
|
-
} & {
|
|
359
|
+
}>>) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
1085
360
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
1086
361
|
} & 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<{
|
|
1087
362
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -1102,32 +377,7 @@ declare const Avatar: React.ForwardRefExoticComponent<((Omit<import("react-nativ
|
|
|
1102
377
|
readonly size?: number | SizeTokens | undefined;
|
|
1103
378
|
}, string | number> & {
|
|
1104
379
|
[x: string]: undefined;
|
|
1105
|
-
} & 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 & {
|
|
1106
|
-
target?: string | undefined;
|
|
1107
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1108
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1109
|
-
dangerouslySetInnerHTML?: {
|
|
1110
|
-
__html: string;
|
|
1111
|
-
} | undefined;
|
|
1112
|
-
children?: any;
|
|
1113
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1114
|
-
disabled?: boolean | undefined;
|
|
1115
|
-
className?: string | undefined;
|
|
1116
|
-
themeShallow?: boolean | undefined;
|
|
1117
|
-
id?: string | undefined;
|
|
1118
|
-
tag?: string | undefined;
|
|
1119
|
-
theme?: string | null | undefined;
|
|
1120
|
-
group?: undefined;
|
|
1121
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
1122
|
-
componentName?: string | undefined;
|
|
1123
|
-
tabIndex?: string | number | undefined;
|
|
1124
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1125
|
-
disableOptimization?: boolean | undefined;
|
|
1126
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1127
|
-
disableClassName?: boolean | undefined;
|
|
1128
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1129
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1130
|
-
} & {
|
|
380
|
+
} & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
1131
381
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
1132
382
|
} & 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<{
|
|
1133
383
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -1148,32 +398,7 @@ declare const Avatar: React.ForwardRefExoticComponent<((Omit<import("react-nativ
|
|
|
1148
398
|
readonly size?: number | SizeTokens | undefined;
|
|
1149
399
|
}, string | number> & {
|
|
1150
400
|
[x: string]: undefined;
|
|
1151
|
-
}>> & 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 & {
|
|
1152
|
-
target?: string | undefined;
|
|
1153
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1154
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1155
|
-
dangerouslySetInnerHTML?: {
|
|
1156
|
-
__html: string;
|
|
1157
|
-
} | undefined;
|
|
1158
|
-
children?: any;
|
|
1159
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1160
|
-
disabled?: boolean | undefined;
|
|
1161
|
-
className?: string | undefined;
|
|
1162
|
-
themeShallow?: boolean | undefined;
|
|
1163
|
-
id?: string | undefined;
|
|
1164
|
-
tag?: string | undefined;
|
|
1165
|
-
theme?: string | null | undefined;
|
|
1166
|
-
group?: undefined;
|
|
1167
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
1168
|
-
componentName?: string | undefined;
|
|
1169
|
-
tabIndex?: string | number | undefined;
|
|
1170
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1171
|
-
disableOptimization?: boolean | undefined;
|
|
1172
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1173
|
-
disableClassName?: boolean | undefined;
|
|
1174
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1175
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1176
|
-
} & {
|
|
401
|
+
}>> & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
1177
402
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
1178
403
|
} & 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<{
|
|
1179
404
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -1198,188 +423,38 @@ declare const Avatar: React.ForwardRefExoticComponent<((Omit<import("react-nativ
|
|
|
1198
423
|
Image: React.ForwardRefExoticComponent<Partial<ImageProps> & {
|
|
1199
424
|
onLoadingStatusChange?: ((status: ImageLoadingStatus) => void) | undefined;
|
|
1200
425
|
} & React.RefAttributes<TamaguiElement>>;
|
|
1201
|
-
Fallback: React.ForwardRefExoticComponent<((Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1202
|
-
target?: string | undefined;
|
|
1203
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1204
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1205
|
-
dangerouslySetInnerHTML?: {
|
|
1206
|
-
__html: string;
|
|
1207
|
-
} | undefined;
|
|
1208
|
-
children?: any;
|
|
1209
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1210
|
-
disabled?: boolean | undefined;
|
|
1211
|
-
className?: string | undefined;
|
|
1212
|
-
themeShallow?: boolean | undefined;
|
|
1213
|
-
id?: string | undefined;
|
|
1214
|
-
tag?: string | undefined;
|
|
1215
|
-
theme?: string | null | undefined;
|
|
1216
|
-
group?: undefined;
|
|
1217
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
1218
|
-
componentName?: string | undefined;
|
|
1219
|
-
tabIndex?: string | number | undefined;
|
|
1220
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1221
|
-
disableOptimization?: boolean | undefined;
|
|
1222
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1223
|
-
disableClassName?: boolean | undefined;
|
|
1224
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1225
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1226
|
-
} & {
|
|
426
|
+
Fallback: React.ForwardRefExoticComponent<((Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
1227
427
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
1228
428
|
} & 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<{}, "elevation" | "fullscreen"> & {
|
|
1229
429
|
readonly fullscreen?: boolean | undefined;
|
|
1230
430
|
readonly elevation?: number | SizeTokens | undefined;
|
|
1231
|
-
} & 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 & {
|
|
1232
|
-
target?: string | undefined;
|
|
1233
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1234
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1235
|
-
dangerouslySetInnerHTML?: {
|
|
1236
|
-
__html: string;
|
|
1237
|
-
} | undefined;
|
|
1238
|
-
children?: any;
|
|
1239
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1240
|
-
disabled?: boolean | undefined;
|
|
1241
|
-
className?: string | undefined;
|
|
1242
|
-
themeShallow?: boolean | undefined;
|
|
1243
|
-
id?: string | undefined;
|
|
1244
|
-
tag?: string | undefined;
|
|
1245
|
-
theme?: string | null | undefined;
|
|
1246
|
-
group?: undefined;
|
|
1247
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
1248
|
-
componentName?: string | undefined;
|
|
1249
|
-
tabIndex?: string | number | undefined;
|
|
1250
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1251
|
-
disableOptimization?: boolean | undefined;
|
|
1252
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1253
|
-
disableClassName?: boolean | undefined;
|
|
1254
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1255
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1256
|
-
} & {
|
|
431
|
+
} & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
1257
432
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
1258
433
|
} & 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<{}, "elevation" | "fullscreen"> & {
|
|
1259
434
|
readonly fullscreen?: boolean | undefined;
|
|
1260
435
|
readonly elevation?: number | SizeTokens | undefined;
|
|
1261
|
-
}>> & 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 & {
|
|
1262
|
-
target?: string | undefined;
|
|
1263
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1264
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1265
|
-
dangerouslySetInnerHTML?: {
|
|
1266
|
-
__html: string;
|
|
1267
|
-
} | undefined;
|
|
1268
|
-
children?: any;
|
|
1269
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1270
|
-
disabled?: boolean | undefined;
|
|
1271
|
-
className?: string | undefined;
|
|
1272
|
-
themeShallow?: boolean | undefined;
|
|
1273
|
-
id?: string | undefined;
|
|
1274
|
-
tag?: string | undefined;
|
|
1275
|
-
theme?: string | null | undefined;
|
|
1276
|
-
group?: undefined;
|
|
1277
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
1278
|
-
componentName?: string | undefined;
|
|
1279
|
-
tabIndex?: string | number | undefined;
|
|
1280
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1281
|
-
disableOptimization?: boolean | undefined;
|
|
1282
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1283
|
-
disableClassName?: boolean | undefined;
|
|
1284
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1285
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1286
|
-
} & {
|
|
436
|
+
}>> & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
1287
437
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
1288
438
|
} & 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<{}, "elevation" | "fullscreen"> & {
|
|
1289
439
|
readonly fullscreen?: boolean | undefined;
|
|
1290
440
|
readonly elevation?: number | SizeTokens | undefined;
|
|
1291
441
|
}>> & {
|
|
1292
442
|
delayMs?: number | undefined;
|
|
1293
|
-
}) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
1294
|
-
target?: string | undefined;
|
|
1295
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1296
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1297
|
-
dangerouslySetInnerHTML?: {
|
|
1298
|
-
__html: string;
|
|
1299
|
-
} | undefined;
|
|
1300
|
-
children?: any;
|
|
1301
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1302
|
-
disabled?: boolean | undefined;
|
|
1303
|
-
className?: string | undefined;
|
|
1304
|
-
themeShallow?: boolean | undefined;
|
|
1305
|
-
id?: string | undefined;
|
|
1306
|
-
tag?: string | undefined;
|
|
1307
|
-
theme?: string | null | undefined;
|
|
1308
|
-
group?: undefined;
|
|
1309
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
1310
|
-
componentName?: string | undefined;
|
|
1311
|
-
tabIndex?: string | number | undefined;
|
|
1312
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1313
|
-
disableOptimization?: boolean | undefined;
|
|
1314
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1315
|
-
disableClassName?: boolean | undefined;
|
|
1316
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1317
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1318
|
-
} & {
|
|
443
|
+
}) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
1319
444
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
1320
445
|
} & 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<{
|
|
1321
446
|
readonly fullscreen?: boolean | undefined;
|
|
1322
447
|
readonly elevation?: number | SizeTokens | undefined;
|
|
1323
448
|
}, string | number> & {
|
|
1324
449
|
[x: string]: undefined;
|
|
1325
|
-
} & 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 & {
|
|
1326
|
-
target?: string | undefined;
|
|
1327
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1328
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1329
|
-
dangerouslySetInnerHTML?: {
|
|
1330
|
-
__html: string;
|
|
1331
|
-
} | undefined;
|
|
1332
|
-
children?: any;
|
|
1333
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1334
|
-
disabled?: boolean | undefined;
|
|
1335
|
-
className?: string | undefined;
|
|
1336
|
-
themeShallow?: boolean | undefined;
|
|
1337
|
-
id?: string | undefined;
|
|
1338
|
-
tag?: string | undefined;
|
|
1339
|
-
theme?: string | null | undefined;
|
|
1340
|
-
group?: undefined;
|
|
1341
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
1342
|
-
componentName?: string | undefined;
|
|
1343
|
-
tabIndex?: string | number | undefined;
|
|
1344
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1345
|
-
disableOptimization?: boolean | undefined;
|
|
1346
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1347
|
-
disableClassName?: boolean | undefined;
|
|
1348
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1349
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1350
|
-
} & {
|
|
450
|
+
} & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
1351
451
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
1352
452
|
} & 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<{
|
|
1353
453
|
readonly fullscreen?: boolean | undefined;
|
|
1354
454
|
readonly elevation?: number | SizeTokens | undefined;
|
|
1355
455
|
}, string | number> & {
|
|
1356
456
|
[x: string]: undefined;
|
|
1357
|
-
}>> & 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 & {
|
|
1358
|
-
target?: string | undefined;
|
|
1359
|
-
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
1360
|
-
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
1361
|
-
dangerouslySetInnerHTML?: {
|
|
1362
|
-
__html: string;
|
|
1363
|
-
} | undefined;
|
|
1364
|
-
children?: any;
|
|
1365
|
-
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
1366
|
-
disabled?: boolean | undefined;
|
|
1367
|
-
className?: string | undefined;
|
|
1368
|
-
themeShallow?: boolean | undefined;
|
|
1369
|
-
id?: string | undefined;
|
|
1370
|
-
tag?: string | undefined;
|
|
1371
|
-
theme?: string | null | undefined;
|
|
1372
|
-
group?: undefined;
|
|
1373
|
-
untilMeasured?: "hide" | "show" | undefined;
|
|
1374
|
-
componentName?: string | undefined;
|
|
1375
|
-
tabIndex?: string | number | undefined;
|
|
1376
|
-
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
1377
|
-
disableOptimization?: boolean | undefined;
|
|
1378
|
-
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
1379
|
-
disableClassName?: boolean | undefined;
|
|
1380
|
-
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
1381
|
-
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
1382
|
-
} & {
|
|
457
|
+
}>> & 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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
1383
458
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
1384
459
|
} & 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<{
|
|
1385
460
|
readonly fullscreen?: boolean | undefined;
|
package/types/Avatar.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../src/Avatar.tsx"],"names":[],"mappings":"AAEA,OAAO,EACL,QAAQ,EACR,UAAU,EACV,cAAc,EAMf,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAS,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAGlD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAK9B,QAAA,MAA4B,iBAAiB,+CAAmC,CAAA;AAEhF,KAAK,kBAAkB,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAA;AAiBjE,KAAK,gBAAgB,GAAG,OAAO,CAAC,UAAU,CAAC,GAAG;IAC5C,qBAAqB,CAAC,EAAE,CAAC,MAAM,EAAE,kBAAkB,KAAK,IAAI,CAAA;CAC7D,CAAA;AAED,QAAA,MAAM,WAAW;sCAHkB,kBAAkB,KAAK,IAAI;wCAoD7D,CAAA;AAUD,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"Avatar.d.ts","sourceRoot":"","sources":["../src/Avatar.tsx"],"names":[],"mappings":"AAEA,OAAO,EACL,QAAQ,EACR,UAAU,EACV,cAAc,EAMf,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAS,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAGlD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAK9B,QAAA,MAA4B,iBAAiB,+CAAmC,CAAA;AAEhF,KAAK,kBAAkB,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAA;AAiBjE,KAAK,gBAAgB,GAAG,OAAO,CAAC,UAAU,CAAC,GAAG;IAC5C,qBAAqB,CAAC,EAAE,CAAC,MAAM,EAAE,kBAAkB,KAAK,IAAI,CAAA;CAC7D,CAAA;AAED,QAAA,MAAM,WAAW;sCAHkB,kBAAkB,KAAK,IAAI;wCAoD7D,CAAA;AAUD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK9B,CAAA;AAEF,KAAK,mBAAmB,GAAG,QAAQ,CAAC,OAAO,mBAAmB,CAAC,GAAG;IAChE,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB,CAAA;AAED,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iDAmBnB,CAAA;AAQD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAItB,CAAA;AAEF,KAAK,WAAW,GAAG,QAAQ,CAAC,OAAO,WAAW,CAAC,CAAA;AAE/C,QAAA,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0CA5GuB,kBAAkB,KAAK,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkI7D,CAAA;AAID,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,WAAW,EAAE,cAAc,EAAE,CAAA;AACjE,YAAY,EAAE,WAAW,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,CAAA"}
|