@tamagui/popper 1.72.3 → 1.73.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -8
- package/types/Popper.d.ts +594 -44
- package/types/Popper.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/popper",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.73.1",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -31,19 +31,19 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@tamagui/compose-refs": "1.
|
|
35
|
-
"@tamagui/core": "1.
|
|
36
|
-
"@tamagui/floating": "1.
|
|
37
|
-
"@tamagui/get-token": "1.
|
|
38
|
-
"@tamagui/stacks": "1.
|
|
39
|
-
"@tamagui/use-controllable-state": "1.
|
|
34
|
+
"@tamagui/compose-refs": "1.73.1",
|
|
35
|
+
"@tamagui/core": "1.73.1",
|
|
36
|
+
"@tamagui/floating": "1.73.1",
|
|
37
|
+
"@tamagui/get-token": "1.73.1",
|
|
38
|
+
"@tamagui/stacks": "1.73.1",
|
|
39
|
+
"@tamagui/use-controllable-state": "1.73.1"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"react": "*",
|
|
43
43
|
"react-native": "*"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@tamagui/build": "1.
|
|
46
|
+
"@tamagui/build": "1.73.1",
|
|
47
47
|
"react": "^18.2.0",
|
|
48
48
|
"react-native": "^0.72.1"
|
|
49
49
|
},
|
package/types/Popper.d.ts
CHANGED
|
@@ -37,21 +37,96 @@ type PopperAnchorRef = HTMLElement | View;
|
|
|
37
37
|
export type PopperAnchorProps = YStackProps & {
|
|
38
38
|
virtualRef?: React.RefObject<any>;
|
|
39
39
|
};
|
|
40
|
-
export declare const PopperAnchor: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
40
|
+
export declare const PopperAnchor: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
41
|
+
target?: string | undefined;
|
|
42
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
43
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
44
|
+
dangerouslySetInnerHTML?: {
|
|
45
|
+
__html: string;
|
|
46
|
+
} | undefined;
|
|
47
|
+
children?: any;
|
|
48
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
49
|
+
disabled?: boolean | undefined;
|
|
50
|
+
className?: string | undefined;
|
|
51
|
+
themeShallow?: boolean | undefined;
|
|
52
|
+
id?: string | undefined;
|
|
53
|
+
tag?: string | undefined;
|
|
54
|
+
theme?: string | null | undefined;
|
|
55
|
+
group?: undefined;
|
|
56
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
57
|
+
componentName?: string | undefined;
|
|
58
|
+
tabIndex?: string | number | undefined;
|
|
59
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
60
|
+
disableOptimization?: boolean | undefined;
|
|
61
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
62
|
+
disableClassName?: boolean | undefined;
|
|
63
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
64
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
65
|
+
} & {
|
|
41
66
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
42
67
|
} & 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"> & {
|
|
43
68
|
readonly fullscreen?: boolean | undefined;
|
|
44
|
-
readonly elevation?: SizeTokens | undefined;
|
|
45
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
69
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
70
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
71
|
+
target?: string | undefined;
|
|
72
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
73
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
74
|
+
dangerouslySetInnerHTML?: {
|
|
75
|
+
__html: string;
|
|
76
|
+
} | undefined;
|
|
77
|
+
children?: any;
|
|
78
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
79
|
+
disabled?: boolean | undefined;
|
|
80
|
+
className?: string | undefined;
|
|
81
|
+
themeShallow?: boolean | undefined;
|
|
82
|
+
id?: string | undefined;
|
|
83
|
+
tag?: string | undefined;
|
|
84
|
+
theme?: string | null | undefined;
|
|
85
|
+
group?: undefined;
|
|
86
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
87
|
+
componentName?: string | undefined;
|
|
88
|
+
tabIndex?: string | number | undefined;
|
|
89
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
90
|
+
disableOptimization?: boolean | undefined;
|
|
91
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
92
|
+
disableClassName?: boolean | undefined;
|
|
93
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
94
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
95
|
+
} & {
|
|
46
96
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
47
97
|
} & 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"> & {
|
|
48
98
|
readonly fullscreen?: boolean | undefined;
|
|
49
|
-
readonly elevation?: SizeTokens | undefined;
|
|
50
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
99
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
100
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
101
|
+
target?: string | undefined;
|
|
102
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
103
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
104
|
+
dangerouslySetInnerHTML?: {
|
|
105
|
+
__html: string;
|
|
106
|
+
} | undefined;
|
|
107
|
+
children?: any;
|
|
108
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
109
|
+
disabled?: boolean | undefined;
|
|
110
|
+
className?: string | undefined;
|
|
111
|
+
themeShallow?: boolean | undefined;
|
|
112
|
+
id?: string | undefined;
|
|
113
|
+
tag?: string | undefined;
|
|
114
|
+
theme?: string | null | undefined;
|
|
115
|
+
group?: undefined;
|
|
116
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
117
|
+
componentName?: string | undefined;
|
|
118
|
+
tabIndex?: string | number | undefined;
|
|
119
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
120
|
+
disableOptimization?: boolean | undefined;
|
|
121
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
122
|
+
disableClassName?: boolean | undefined;
|
|
123
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
124
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
125
|
+
} & {
|
|
51
126
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
52
127
|
} & 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"> & {
|
|
53
128
|
readonly fullscreen?: boolean | undefined;
|
|
54
|
-
readonly elevation?: SizeTokens | undefined;
|
|
129
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
55
130
|
}>> & {
|
|
56
131
|
virtualRef?: React.RefObject<any> | undefined;
|
|
57
132
|
} & {
|
|
@@ -59,11 +134,36 @@ export declare const PopperAnchor: React.ForwardRefExoticComponent<Omit<import("
|
|
|
59
134
|
} & React.RefAttributes<PopperAnchorRef>>;
|
|
60
135
|
type PopperContentElement = HTMLElement | View;
|
|
61
136
|
export type PopperContentProps = SizableStackProps;
|
|
62
|
-
export declare const PopperContentFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
137
|
+
export declare const PopperContentFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
138
|
+
target?: string | undefined;
|
|
139
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
140
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
141
|
+
dangerouslySetInnerHTML?: {
|
|
142
|
+
__html: string;
|
|
143
|
+
} | undefined;
|
|
144
|
+
children?: any;
|
|
145
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
146
|
+
disabled?: boolean | undefined;
|
|
147
|
+
className?: string | undefined;
|
|
148
|
+
themeShallow?: boolean | undefined;
|
|
149
|
+
id?: string | undefined;
|
|
150
|
+
tag?: string | undefined;
|
|
151
|
+
theme?: string | null | undefined;
|
|
152
|
+
group?: undefined;
|
|
153
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
154
|
+
componentName?: string | undefined;
|
|
155
|
+
tabIndex?: string | number | undefined;
|
|
156
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
157
|
+
disableOptimization?: boolean | undefined;
|
|
158
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
159
|
+
disableClassName?: boolean | undefined;
|
|
160
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
161
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
162
|
+
} & {
|
|
63
163
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
64
164
|
} & 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<{
|
|
65
165
|
readonly fullscreen?: boolean | undefined;
|
|
66
|
-
readonly elevation?: SizeTokens | undefined;
|
|
166
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
67
167
|
} & {
|
|
68
168
|
readonly backgrounded?: boolean | undefined;
|
|
69
169
|
readonly radiused?: boolean | undefined;
|
|
@@ -79,11 +179,36 @@ export declare const PopperContentFrame: import("@tamagui/core").TamaguiComponen
|
|
|
79
179
|
}, "size" | "unstyled"> & {
|
|
80
180
|
readonly unstyled?: boolean | undefined;
|
|
81
181
|
readonly size?: SizeTokens | undefined;
|
|
82
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
182
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
183
|
+
target?: string | undefined;
|
|
184
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
185
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
186
|
+
dangerouslySetInnerHTML?: {
|
|
187
|
+
__html: string;
|
|
188
|
+
} | undefined;
|
|
189
|
+
children?: any;
|
|
190
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
191
|
+
disabled?: boolean | undefined;
|
|
192
|
+
className?: string | undefined;
|
|
193
|
+
themeShallow?: boolean | undefined;
|
|
194
|
+
id?: string | undefined;
|
|
195
|
+
tag?: string | undefined;
|
|
196
|
+
theme?: string | null | undefined;
|
|
197
|
+
group?: undefined;
|
|
198
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
199
|
+
componentName?: string | undefined;
|
|
200
|
+
tabIndex?: string | number | undefined;
|
|
201
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
202
|
+
disableOptimization?: boolean | undefined;
|
|
203
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
204
|
+
disableClassName?: boolean | undefined;
|
|
205
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
206
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
207
|
+
} & {
|
|
83
208
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
84
209
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
85
210
|
readonly fullscreen?: boolean | undefined;
|
|
86
|
-
readonly elevation?: SizeTokens | undefined;
|
|
211
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
87
212
|
} & {
|
|
88
213
|
readonly backgrounded?: boolean | undefined;
|
|
89
214
|
readonly radiused?: boolean | undefined;
|
|
@@ -99,11 +224,36 @@ export declare const PopperContentFrame: import("@tamagui/core").TamaguiComponen
|
|
|
99
224
|
}, "size" | "unstyled"> & {
|
|
100
225
|
readonly unstyled?: boolean | undefined;
|
|
101
226
|
readonly size?: SizeTokens | undefined;
|
|
102
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
227
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
228
|
+
target?: string | undefined;
|
|
229
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
230
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
231
|
+
dangerouslySetInnerHTML?: {
|
|
232
|
+
__html: string;
|
|
233
|
+
} | undefined;
|
|
234
|
+
children?: any;
|
|
235
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
236
|
+
disabled?: boolean | undefined;
|
|
237
|
+
className?: string | undefined;
|
|
238
|
+
themeShallow?: boolean | undefined;
|
|
239
|
+
id?: string | undefined;
|
|
240
|
+
tag?: string | undefined;
|
|
241
|
+
theme?: string | null | undefined;
|
|
242
|
+
group?: undefined;
|
|
243
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
244
|
+
componentName?: string | undefined;
|
|
245
|
+
tabIndex?: string | number | undefined;
|
|
246
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
247
|
+
disableOptimization?: boolean | undefined;
|
|
248
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
249
|
+
disableClassName?: boolean | undefined;
|
|
250
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
251
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
252
|
+
} & {
|
|
103
253
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
104
254
|
} & 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<{
|
|
105
255
|
readonly fullscreen?: boolean | undefined;
|
|
106
|
-
readonly elevation?: SizeTokens | undefined;
|
|
256
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
107
257
|
} & {
|
|
108
258
|
readonly backgrounded?: boolean | undefined;
|
|
109
259
|
readonly radiused?: boolean | undefined;
|
|
@@ -119,11 +269,36 @@ export declare const PopperContentFrame: import("@tamagui/core").TamaguiComponen
|
|
|
119
269
|
}, "size" | "unstyled"> & {
|
|
120
270
|
readonly unstyled?: boolean | undefined;
|
|
121
271
|
readonly size?: SizeTokens | undefined;
|
|
122
|
-
}>>, import("@tamagui/core").TamaguiElement, Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
272
|
+
}>>, import("@tamagui/core").TamaguiElement, Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
273
|
+
target?: string | undefined;
|
|
274
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
275
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
276
|
+
dangerouslySetInnerHTML?: {
|
|
277
|
+
__html: string;
|
|
278
|
+
} | undefined;
|
|
279
|
+
children?: any;
|
|
280
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
281
|
+
disabled?: boolean | undefined;
|
|
282
|
+
className?: string | undefined;
|
|
283
|
+
themeShallow?: boolean | undefined;
|
|
284
|
+
id?: string | undefined;
|
|
285
|
+
tag?: string | undefined;
|
|
286
|
+
theme?: string | null | undefined;
|
|
287
|
+
group?: undefined;
|
|
288
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
289
|
+
componentName?: string | undefined;
|
|
290
|
+
tabIndex?: string | number | undefined;
|
|
291
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
292
|
+
disableOptimization?: boolean | undefined;
|
|
293
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
294
|
+
disableClassName?: boolean | undefined;
|
|
295
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
296
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
297
|
+
} & {
|
|
123
298
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
124
299
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
125
300
|
readonly fullscreen?: boolean | undefined;
|
|
126
|
-
readonly elevation?: SizeTokens | undefined;
|
|
301
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
127
302
|
} & {
|
|
128
303
|
readonly backgrounded?: boolean | undefined;
|
|
129
304
|
readonly radiused?: boolean | undefined;
|
|
@@ -141,17 +316,67 @@ export declare const PopperContentFrame: import("@tamagui/core").TamaguiComponen
|
|
|
141
316
|
readonly size?: SizeTokens | undefined;
|
|
142
317
|
}, {
|
|
143
318
|
displayName: string | undefined;
|
|
144
|
-
__baseProps: Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
319
|
+
__baseProps: Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
320
|
+
target?: string | undefined;
|
|
321
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
322
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
323
|
+
dangerouslySetInnerHTML?: {
|
|
324
|
+
__html: string;
|
|
325
|
+
} | undefined;
|
|
326
|
+
children?: any;
|
|
327
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
328
|
+
disabled?: boolean | undefined;
|
|
329
|
+
className?: string | undefined;
|
|
330
|
+
themeShallow?: boolean | undefined;
|
|
331
|
+
id?: string | undefined;
|
|
332
|
+
tag?: string | undefined;
|
|
333
|
+
theme?: string | null | undefined;
|
|
334
|
+
group?: undefined;
|
|
335
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
336
|
+
componentName?: string | undefined;
|
|
337
|
+
tabIndex?: string | number | undefined;
|
|
338
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
339
|
+
disableOptimization?: boolean | undefined;
|
|
340
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
341
|
+
disableClassName?: boolean | undefined;
|
|
342
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
343
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
344
|
+
} & {
|
|
145
345
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
146
346
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
347
|
+
target?: string | undefined;
|
|
348
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
349
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
350
|
+
dangerouslySetInnerHTML?: {
|
|
351
|
+
__html: string;
|
|
352
|
+
} | undefined;
|
|
353
|
+
children?: any;
|
|
354
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
355
|
+
disabled?: boolean | undefined;
|
|
356
|
+
className?: string | undefined;
|
|
357
|
+
themeShallow?: boolean | undefined;
|
|
358
|
+
id?: string | undefined;
|
|
359
|
+
tag?: string | undefined;
|
|
360
|
+
theme?: string | null | undefined;
|
|
361
|
+
group?: undefined;
|
|
362
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
363
|
+
componentName?: string | undefined;
|
|
364
|
+
tabIndex?: string | number | undefined;
|
|
365
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
366
|
+
disableOptimization?: boolean | undefined;
|
|
367
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
368
|
+
disableClassName?: boolean | undefined;
|
|
369
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
370
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
371
|
+
} & {
|
|
147
372
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
148
373
|
};
|
|
149
374
|
__variantProps: {
|
|
150
375
|
readonly fullscreen?: boolean | undefined;
|
|
151
|
-
readonly elevation?: SizeTokens | undefined;
|
|
376
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
152
377
|
} & {
|
|
153
378
|
readonly fullscreen?: boolean | undefined;
|
|
154
|
-
readonly elevation?: SizeTokens | undefined;
|
|
379
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
155
380
|
} & {
|
|
156
381
|
readonly backgrounded?: boolean | undefined;
|
|
157
382
|
readonly radiused?: boolean | undefined;
|
|
@@ -166,11 +391,36 @@ export declare const PopperContentFrame: import("@tamagui/core").TamaguiComponen
|
|
|
166
391
|
readonly chromeless?: boolean | "all" | undefined;
|
|
167
392
|
};
|
|
168
393
|
}>;
|
|
169
|
-
export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
394
|
+
export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
395
|
+
target?: string | undefined;
|
|
396
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
397
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
398
|
+
dangerouslySetInnerHTML?: {
|
|
399
|
+
__html: string;
|
|
400
|
+
} | undefined;
|
|
401
|
+
children?: any;
|
|
402
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
403
|
+
disabled?: boolean | undefined;
|
|
404
|
+
className?: string | undefined;
|
|
405
|
+
themeShallow?: boolean | undefined;
|
|
406
|
+
id?: string | undefined;
|
|
407
|
+
tag?: string | undefined;
|
|
408
|
+
theme?: string | null | undefined;
|
|
409
|
+
group?: undefined;
|
|
410
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
411
|
+
componentName?: string | undefined;
|
|
412
|
+
tabIndex?: string | number | undefined;
|
|
413
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
414
|
+
disableOptimization?: boolean | undefined;
|
|
415
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
416
|
+
disableClassName?: boolean | undefined;
|
|
417
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
418
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
419
|
+
} & {
|
|
170
420
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
171
421
|
} & 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<{
|
|
172
422
|
readonly fullscreen?: boolean | undefined;
|
|
173
|
-
readonly elevation?: SizeTokens | undefined;
|
|
423
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
174
424
|
}, "size" | "circular" | "unstyled" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered"> & {
|
|
175
425
|
readonly unstyled?: boolean | undefined;
|
|
176
426
|
readonly hoverTheme?: boolean | undefined;
|
|
@@ -180,11 +430,36 @@ export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import(
|
|
|
180
430
|
readonly elevate?: boolean | undefined;
|
|
181
431
|
readonly bordered?: number | boolean | undefined;
|
|
182
432
|
readonly size?: SizeTokens | undefined;
|
|
183
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
433
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
434
|
+
target?: string | undefined;
|
|
435
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
436
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
437
|
+
dangerouslySetInnerHTML?: {
|
|
438
|
+
__html: string;
|
|
439
|
+
} | undefined;
|
|
440
|
+
children?: any;
|
|
441
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
442
|
+
disabled?: boolean | undefined;
|
|
443
|
+
className?: string | undefined;
|
|
444
|
+
themeShallow?: boolean | undefined;
|
|
445
|
+
id?: string | undefined;
|
|
446
|
+
tag?: string | undefined;
|
|
447
|
+
theme?: string | null | undefined;
|
|
448
|
+
group?: undefined;
|
|
449
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
450
|
+
componentName?: string | undefined;
|
|
451
|
+
tabIndex?: string | number | undefined;
|
|
452
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
453
|
+
disableOptimization?: boolean | undefined;
|
|
454
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
455
|
+
disableClassName?: boolean | undefined;
|
|
456
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
457
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
458
|
+
} & {
|
|
184
459
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
185
460
|
} & 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<{
|
|
186
461
|
readonly fullscreen?: boolean | undefined;
|
|
187
|
-
readonly elevation?: SizeTokens | undefined;
|
|
462
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
188
463
|
}, "size" | "circular" | "unstyled" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered"> & {
|
|
189
464
|
readonly unstyled?: boolean | undefined;
|
|
190
465
|
readonly hoverTheme?: boolean | undefined;
|
|
@@ -194,11 +469,36 @@ export declare const PopperContent: React.ForwardRefExoticComponent<Omit<import(
|
|
|
194
469
|
readonly elevate?: boolean | undefined;
|
|
195
470
|
readonly bordered?: number | boolean | undefined;
|
|
196
471
|
readonly size?: SizeTokens | undefined;
|
|
197
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
472
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
473
|
+
target?: string | undefined;
|
|
474
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
475
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
476
|
+
dangerouslySetInnerHTML?: {
|
|
477
|
+
__html: string;
|
|
478
|
+
} | undefined;
|
|
479
|
+
children?: any;
|
|
480
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
481
|
+
disabled?: boolean | undefined;
|
|
482
|
+
className?: string | undefined;
|
|
483
|
+
themeShallow?: boolean | undefined;
|
|
484
|
+
id?: string | undefined;
|
|
485
|
+
tag?: string | undefined;
|
|
486
|
+
theme?: string | null | undefined;
|
|
487
|
+
group?: undefined;
|
|
488
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
489
|
+
componentName?: string | undefined;
|
|
490
|
+
tabIndex?: string | number | undefined;
|
|
491
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
492
|
+
disableOptimization?: boolean | undefined;
|
|
493
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
494
|
+
disableClassName?: boolean | undefined;
|
|
495
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
496
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
497
|
+
} & {
|
|
198
498
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
199
499
|
} & 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<{
|
|
200
500
|
readonly fullscreen?: boolean | undefined;
|
|
201
|
-
readonly elevation?: SizeTokens | undefined;
|
|
501
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
202
502
|
}, "size" | "circular" | "unstyled" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered"> & {
|
|
203
503
|
readonly unstyled?: boolean | undefined;
|
|
204
504
|
readonly hoverTheme?: boolean | undefined;
|
|
@@ -215,48 +515,198 @@ export type PopperArrowProps = YStackProps & {
|
|
|
215
515
|
offset?: number;
|
|
216
516
|
size?: SizeTokens;
|
|
217
517
|
};
|
|
218
|
-
export declare const PopperArrow: import("@tamagui/core").ReactComponentWithRef<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
518
|
+
export declare const PopperArrow: import("@tamagui/core").ReactComponentWithRef<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
519
|
+
target?: string | undefined;
|
|
520
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
521
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
522
|
+
dangerouslySetInnerHTML?: {
|
|
523
|
+
__html: string;
|
|
524
|
+
} | undefined;
|
|
525
|
+
children?: any;
|
|
526
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
527
|
+
disabled?: boolean | undefined;
|
|
528
|
+
className?: string | undefined;
|
|
529
|
+
themeShallow?: boolean | undefined;
|
|
530
|
+
id?: string | undefined;
|
|
531
|
+
tag?: string | undefined;
|
|
532
|
+
theme?: string | null | undefined;
|
|
533
|
+
group?: undefined;
|
|
534
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
535
|
+
componentName?: string | undefined;
|
|
536
|
+
tabIndex?: string | number | undefined;
|
|
537
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
538
|
+
disableOptimization?: boolean | undefined;
|
|
539
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
540
|
+
disableClassName?: boolean | undefined;
|
|
541
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
542
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
543
|
+
} & {
|
|
219
544
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
220
545
|
} & 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"> & {
|
|
221
546
|
readonly fullscreen?: boolean | undefined;
|
|
222
|
-
readonly elevation?: SizeTokens | undefined;
|
|
223
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
547
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
548
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
549
|
+
target?: string | undefined;
|
|
550
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
551
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
552
|
+
dangerouslySetInnerHTML?: {
|
|
553
|
+
__html: string;
|
|
554
|
+
} | undefined;
|
|
555
|
+
children?: any;
|
|
556
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
557
|
+
disabled?: boolean | undefined;
|
|
558
|
+
className?: string | undefined;
|
|
559
|
+
themeShallow?: boolean | undefined;
|
|
560
|
+
id?: string | undefined;
|
|
561
|
+
tag?: string | undefined;
|
|
562
|
+
theme?: string | null | undefined;
|
|
563
|
+
group?: undefined;
|
|
564
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
565
|
+
componentName?: string | undefined;
|
|
566
|
+
tabIndex?: string | number | undefined;
|
|
567
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
568
|
+
disableOptimization?: boolean | undefined;
|
|
569
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
570
|
+
disableClassName?: boolean | undefined;
|
|
571
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
572
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
573
|
+
} & {
|
|
224
574
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
225
575
|
} & 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"> & {
|
|
226
576
|
readonly fullscreen?: boolean | undefined;
|
|
227
|
-
readonly elevation?: SizeTokens | undefined;
|
|
228
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
577
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
578
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
579
|
+
target?: string | undefined;
|
|
580
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
581
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
582
|
+
dangerouslySetInnerHTML?: {
|
|
583
|
+
__html: string;
|
|
584
|
+
} | undefined;
|
|
585
|
+
children?: any;
|
|
586
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
587
|
+
disabled?: boolean | undefined;
|
|
588
|
+
className?: string | undefined;
|
|
589
|
+
themeShallow?: boolean | undefined;
|
|
590
|
+
id?: string | undefined;
|
|
591
|
+
tag?: string | undefined;
|
|
592
|
+
theme?: string | null | undefined;
|
|
593
|
+
group?: undefined;
|
|
594
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
595
|
+
componentName?: string | undefined;
|
|
596
|
+
tabIndex?: string | number | undefined;
|
|
597
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
598
|
+
disableOptimization?: boolean | undefined;
|
|
599
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
600
|
+
disableClassName?: boolean | undefined;
|
|
601
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
602
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
603
|
+
} & {
|
|
229
604
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
230
605
|
} & 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"> & {
|
|
231
606
|
readonly fullscreen?: boolean | undefined;
|
|
232
|
-
readonly elevation?: SizeTokens | undefined;
|
|
607
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
233
608
|
}>> & {
|
|
234
609
|
offset?: number | undefined;
|
|
235
610
|
size?: SizeTokens | undefined;
|
|
236
611
|
} & {
|
|
237
612
|
__scopePopper?: string | undefined;
|
|
238
|
-
} & Omit<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
613
|
+
} & Omit<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
614
|
+
target?: string | undefined;
|
|
615
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
616
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
617
|
+
dangerouslySetInnerHTML?: {
|
|
618
|
+
__html: string;
|
|
619
|
+
} | undefined;
|
|
620
|
+
children?: any;
|
|
621
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
622
|
+
disabled?: boolean | undefined;
|
|
623
|
+
className?: string | undefined;
|
|
624
|
+
themeShallow?: boolean | undefined;
|
|
625
|
+
id?: string | undefined;
|
|
626
|
+
tag?: string | undefined;
|
|
627
|
+
theme?: string | null | undefined;
|
|
628
|
+
group?: undefined;
|
|
629
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
630
|
+
componentName?: string | undefined;
|
|
631
|
+
tabIndex?: string | number | undefined;
|
|
632
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
633
|
+
disableOptimization?: boolean | undefined;
|
|
634
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
635
|
+
disableClassName?: boolean | undefined;
|
|
636
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
637
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
638
|
+
} & {
|
|
239
639
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
240
640
|
} & 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<{
|
|
241
641
|
readonly fullscreen?: boolean | undefined;
|
|
242
|
-
readonly elevation?: SizeTokens | undefined;
|
|
642
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
243
643
|
}, "unstyled"> & {
|
|
244
644
|
readonly unstyled?: boolean | undefined;
|
|
245
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
645
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
646
|
+
target?: string | undefined;
|
|
647
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
648
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
649
|
+
dangerouslySetInnerHTML?: {
|
|
650
|
+
__html: string;
|
|
651
|
+
} | undefined;
|
|
652
|
+
children?: any;
|
|
653
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
654
|
+
disabled?: boolean | undefined;
|
|
655
|
+
className?: string | undefined;
|
|
656
|
+
themeShallow?: boolean | undefined;
|
|
657
|
+
id?: string | undefined;
|
|
658
|
+
tag?: string | undefined;
|
|
659
|
+
theme?: string | null | undefined;
|
|
660
|
+
group?: undefined;
|
|
661
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
662
|
+
componentName?: string | undefined;
|
|
663
|
+
tabIndex?: string | number | undefined;
|
|
664
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
665
|
+
disableOptimization?: boolean | undefined;
|
|
666
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
667
|
+
disableClassName?: boolean | undefined;
|
|
668
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
669
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
670
|
+
} & {
|
|
246
671
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
247
672
|
} & 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<{
|
|
248
673
|
readonly fullscreen?: boolean | undefined;
|
|
249
|
-
readonly elevation?: SizeTokens | undefined;
|
|
674
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
250
675
|
}, "unstyled"> & {
|
|
251
676
|
readonly unstyled?: boolean | undefined;
|
|
252
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
677
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
678
|
+
target?: string | undefined;
|
|
679
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
680
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
681
|
+
dangerouslySetInnerHTML?: {
|
|
682
|
+
__html: string;
|
|
683
|
+
} | undefined;
|
|
684
|
+
children?: any;
|
|
685
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
686
|
+
disabled?: boolean | undefined;
|
|
687
|
+
className?: string | undefined;
|
|
688
|
+
themeShallow?: boolean | undefined;
|
|
689
|
+
id?: string | undefined;
|
|
690
|
+
tag?: string | undefined;
|
|
691
|
+
theme?: string | null | undefined;
|
|
692
|
+
group?: undefined;
|
|
693
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
694
|
+
componentName?: string | undefined;
|
|
695
|
+
tabIndex?: string | number | undefined;
|
|
696
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
697
|
+
disableOptimization?: boolean | undefined;
|
|
698
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
699
|
+
disableClassName?: boolean | undefined;
|
|
700
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
701
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
702
|
+
} & {
|
|
253
703
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
254
704
|
} & 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<{
|
|
255
705
|
readonly fullscreen?: boolean | undefined;
|
|
256
|
-
readonly elevation?: SizeTokens | undefined;
|
|
706
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
257
707
|
}, "unstyled"> & {
|
|
258
708
|
readonly unstyled?: boolean | undefined;
|
|
259
|
-
}>>, "size" | "zIndex" | `$${string}` | `$${number}` | "top" | "right" | "bottom" | "left" | "start" | "end" | "padding" | "width" | "height" | "__scopePopper" | "offset" | "transform" | "style" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "elevation" | keyof {
|
|
709
|
+
}>>, "size" | "zIndex" | `$${string}` | `$${number}` | "top" | "right" | "bottom" | "left" | "start" | "end" | "padding" | "width" | "height" | "__scopePopper" | "children" | "offset" | "transform" | "style" | "hitSlop" | "id" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "needsOffscreenAlphaCompositing" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxProperties" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-labelledby" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-live" | "aria-modal" | "role" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "elevation" | keyof {
|
|
260
710
|
columnGap?: import("@tamagui/core").SpaceValue | undefined;
|
|
261
711
|
contain?: import("csstype").Property.Contain | undefined;
|
|
262
712
|
cursor?: import("csstype").Property.Cursor | undefined;
|
|
@@ -274,32 +724,132 @@ export declare const PopperArrow: import("@tamagui/core").ReactComponentWithRef<
|
|
|
274
724
|
animation?: import("@tamagui/core").AnimationProp | null | undefined;
|
|
275
725
|
animateOnly?: string[] | undefined;
|
|
276
726
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
277
|
-
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "justifyContent" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "fullscreen" | keyof import("@tamagui/core").TransformStyleProps | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/core").
|
|
727
|
+
} | "backgroundColor" | "borderBlockColor" | "borderBlockEndColor" | "borderBlockStartColor" | "borderBottomColor" | "borderBottomEndRadius" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStartRadius" | "borderColor" | "borderCurve" | "borderEndColor" | "borderEndEndRadius" | "borderEndStartRadius" | "borderLeftColor" | "borderRadius" | "borderRightColor" | "borderStartColor" | "borderStartEndRadius" | "borderStartStartRadius" | "borderStyle" | "borderTopColor" | "borderTopEndRadius" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStartRadius" | "opacity" | "alignContent" | "alignItems" | "alignSelf" | "aspectRatio" | "borderBottomWidth" | "borderEndWidth" | "borderLeftWidth" | "borderRightWidth" | "borderStartWidth" | "borderTopWidth" | "borderWidth" | "flex" | "flexBasis" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "justifyContent" | "margin" | "marginBottom" | "marginEnd" | "marginHorizontal" | "marginLeft" | "marginRight" | "marginStart" | "marginTop" | "marginVertical" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "overflow" | "paddingBottom" | "paddingEnd" | "paddingHorizontal" | "paddingLeft" | "paddingRight" | "paddingStart" | "paddingTop" | "paddingVertical" | "position" | "direction" | "shadowColor" | "shadowOffset" | "shadowOpacity" | "shadowRadius" | "transformMatrix" | "rotation" | "translateX" | "translateY" | "fullscreen" | keyof import("@tamagui/core").TransformStyleProps | "theme" | "group" | `$theme-${string}` | `$theme-${number}` | keyof import("@tamagui/core").WebOnlyPressEvents | "target" | "asChild" | "dangerouslySetInnerHTML" | "debug" | "disabled" | "className" | "themeShallow" | "tag" | "untilMeasured" | "componentName" | "tabIndex" | "disableOptimization" | "forceStyle" | "disableClassName" | "onFocus" | "onScroll" | keyof import("@tamagui/core").RNViewProps | keyof import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
728
|
+
target?: string | undefined;
|
|
729
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
730
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
731
|
+
dangerouslySetInnerHTML?: {
|
|
732
|
+
__html: string;
|
|
733
|
+
} | undefined;
|
|
734
|
+
children?: any;
|
|
735
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
736
|
+
disabled?: boolean | undefined;
|
|
737
|
+
className?: string | undefined;
|
|
738
|
+
themeShallow?: boolean | undefined;
|
|
739
|
+
id?: string | undefined;
|
|
740
|
+
tag?: string | undefined;
|
|
741
|
+
theme?: string | null | undefined;
|
|
742
|
+
group?: undefined;
|
|
743
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
744
|
+
componentName?: string | undefined;
|
|
745
|
+
tabIndex?: string | number | undefined;
|
|
746
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
747
|
+
disableOptimization?: boolean | undefined;
|
|
748
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
749
|
+
disableClassName?: boolean | undefined;
|
|
750
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
751
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
752
|
+
} & {
|
|
278
753
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
279
754
|
} & 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"> & {
|
|
280
755
|
readonly fullscreen?: boolean | undefined;
|
|
281
|
-
readonly elevation?: SizeTokens | undefined;
|
|
756
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
282
757
|
}>>>, import("@tamagui/core").TamaguiElement> & {
|
|
283
758
|
staticConfig: import("@tamagui/core").StaticConfig;
|
|
284
|
-
styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
759
|
+
styleable: import("@tamagui/core").Styleable<Omit<import("react-native").ViewProps, "children" | "display" | "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
|
+
} & {
|
|
285
785
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
286
786
|
} & 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<{
|
|
287
787
|
readonly fullscreen?: boolean | undefined;
|
|
288
|
-
readonly elevation?: SizeTokens | undefined;
|
|
788
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
289
789
|
}, "unstyled"> & {
|
|
290
790
|
readonly unstyled?: boolean | undefined;
|
|
291
|
-
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
791
|
+
} & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
792
|
+
target?: string | undefined;
|
|
793
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
794
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
795
|
+
dangerouslySetInnerHTML?: {
|
|
796
|
+
__html: string;
|
|
797
|
+
} | undefined;
|
|
798
|
+
children?: any;
|
|
799
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
800
|
+
disabled?: boolean | undefined;
|
|
801
|
+
className?: string | undefined;
|
|
802
|
+
themeShallow?: boolean | undefined;
|
|
803
|
+
id?: string | undefined;
|
|
804
|
+
tag?: string | undefined;
|
|
805
|
+
theme?: string | null | undefined;
|
|
806
|
+
group?: undefined;
|
|
807
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
808
|
+
componentName?: string | undefined;
|
|
809
|
+
tabIndex?: string | number | undefined;
|
|
810
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
811
|
+
disableOptimization?: boolean | undefined;
|
|
812
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
813
|
+
disableClassName?: boolean | undefined;
|
|
814
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
815
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
816
|
+
} & {
|
|
292
817
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
293
818
|
} & 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<{
|
|
294
819
|
readonly fullscreen?: boolean | undefined;
|
|
295
|
-
readonly elevation?: SizeTokens | undefined;
|
|
820
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
296
821
|
}, "unstyled"> & {
|
|
297
822
|
readonly unstyled?: boolean | undefined;
|
|
298
|
-
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
823
|
+
}>> & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
824
|
+
target?: string | undefined;
|
|
825
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
826
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
827
|
+
dangerouslySetInnerHTML?: {
|
|
828
|
+
__html: string;
|
|
829
|
+
} | undefined;
|
|
830
|
+
children?: any;
|
|
831
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
832
|
+
disabled?: boolean | undefined;
|
|
833
|
+
className?: string | undefined;
|
|
834
|
+
themeShallow?: boolean | undefined;
|
|
835
|
+
id?: string | undefined;
|
|
836
|
+
tag?: string | undefined;
|
|
837
|
+
theme?: string | null | undefined;
|
|
838
|
+
group?: undefined;
|
|
839
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
840
|
+
componentName?: string | undefined;
|
|
841
|
+
tabIndex?: string | number | undefined;
|
|
842
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
843
|
+
disableOptimization?: boolean | undefined;
|
|
844
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
845
|
+
disableClassName?: boolean | undefined;
|
|
846
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
847
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
848
|
+
} & {
|
|
299
849
|
style?: import("@tamagui/core").StyleProp<React.CSSProperties | import("react-native").ViewStyle | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
300
850
|
} & 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<{
|
|
301
851
|
readonly fullscreen?: boolean | undefined;
|
|
302
|
-
readonly elevation?: SizeTokens | undefined;
|
|
852
|
+
readonly elevation?: number | SizeTokens | undefined;
|
|
303
853
|
}, "unstyled"> & {
|
|
304
854
|
readonly unstyled?: boolean | undefined;
|
|
305
855
|
}>>, import("@tamagui/core").TamaguiElement>;
|
package/types/Popper.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Popper.d.ts","sourceRoot":"","sources":["../src/Popper.tsx"],"names":[],"mappings":"AAGA,OAAO,EACL,UAAU,EASX,MAAM,eAAe,CAAA;AACtB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAChD,OAAO,EACL,MAAM,EACN,aAAa,EACb,SAAS,EACT,QAAQ,EACR,iBAAiB,EAGjB,IAAI,EAEJ,KAAK,EAEN,MAAM,mBAAmB,CAAA;AAE1B,OAAO,EAAE,iBAAiB,EAA0B,WAAW,EAAE,MAAM,iBAAiB,CAAA;AACxF,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAY,IAAI,EAAuB,MAAM,cAAc,CAAA;AAElE,KAAK,UAAU,GAAG,OAAO,KAAK,SAAS,CAAC,OAAO,EAAE,MAAM,IAAI,KAAK,IAAI,GAAG,IAAI,GAAG,KAAK,CAAA;AACnF,KAAK,SAAS,GAAG,OAAO,IAAI,SAAS,CAAC,OAAO,EAAE,MAAM,IAAI,KAAK,IAAI,GAAG,IAAI,GAAG,KAAK,CAAA;AAMjF,MAAM,MAAM,kBAAkB,GAAG,iBAAiB,GAAG;IACnD,SAAS,EAAE,OAAO,CAAA;IAClB,SAAS,EAAE,GAAG,CAAA;IACd,IAAI,CAAC,EAAE,UAAU,CAAA;IACjB,SAAS,CAAC,EAAE,SAAS,CAAA;IACrB,QAAQ,EAAE,GAAG,CAAA;IACb,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAA;IACnC,UAAU,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,GAAG;QAC7B,YAAY,EAAE,MAAM,CAAA;KACrB,CAAA;CACF,CAAA;AAED,eAAO,MAAM,aAAa,2DAAqD,CAAA;AAE/E,eAAO,MAA0B,gBAAgB,sDAAY,cAAc;;;EAC5D,CAAA;AAEf,MAAM,MAAM,WAAW,GAAG;IACxB,IAAI,CAAC,EAAE,UAAU,CAAA;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,SAAS,CAAC,EAAE,SAAS,CAAA;IACrB,WAAW,CAAC,EAAE,UAAU,GAAG,OAAO,CAAA;IAClC,SAAS,CAAC,EAAE,SAAS,GAAG,OAAO,CAAA;IAC/B,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,MAAM,CAAC,EAAE,aAAa,CAAA;CACvB,CAAA;AAED,KAAK,iBAAiB,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAA;AAEpD,wBAAgB,MAAM,CAAC,KAAK,EAAE,iBAAiB,CAAC,WAAW,CAAC,eA+F3D;AAMD,KAAK,eAAe,GAAG,WAAW,GAAG,IAAI,CAAA;AAEzC,MAAM,MAAM,iBAAiB,GAAG,WAAW,GAAG;IAC5C,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,GAAG,CAAC,CAAA;CAClC,CAAA;AAED,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"Popper.d.ts","sourceRoot":"","sources":["../src/Popper.tsx"],"names":[],"mappings":"AAGA,OAAO,EACL,UAAU,EASX,MAAM,eAAe,CAAA;AACtB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,eAAe,CAAA;AAChD,OAAO,EACL,MAAM,EACN,aAAa,EACb,SAAS,EACT,QAAQ,EACR,iBAAiB,EAGjB,IAAI,EAEJ,KAAK,EAEN,MAAM,mBAAmB,CAAA;AAE1B,OAAO,EAAE,iBAAiB,EAA0B,WAAW,EAAE,MAAM,iBAAiB,CAAA;AACxF,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAY,IAAI,EAAuB,MAAM,cAAc,CAAA;AAElE,KAAK,UAAU,GAAG,OAAO,KAAK,SAAS,CAAC,OAAO,EAAE,MAAM,IAAI,KAAK,IAAI,GAAG,IAAI,GAAG,KAAK,CAAA;AACnF,KAAK,SAAS,GAAG,OAAO,IAAI,SAAS,CAAC,OAAO,EAAE,MAAM,IAAI,KAAK,IAAI,GAAG,IAAI,GAAG,KAAK,CAAA;AAMjF,MAAM,MAAM,kBAAkB,GAAG,iBAAiB,GAAG;IACnD,SAAS,EAAE,OAAO,CAAA;IAClB,SAAS,EAAE,GAAG,CAAA;IACd,IAAI,CAAC,EAAE,UAAU,CAAA;IACjB,SAAS,CAAC,EAAE,SAAS,CAAA;IACrB,QAAQ,EAAE,GAAG,CAAA;IACb,WAAW,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAA;IACnC,UAAU,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,GAAG;QAC7B,YAAY,EAAE,MAAM,CAAA;KACrB,CAAA;CACF,CAAA;AAED,eAAO,MAAM,aAAa,2DAAqD,CAAA;AAE/E,eAAO,MAA0B,gBAAgB,sDAAY,cAAc;;;EAC5D,CAAA;AAEf,MAAM,MAAM,WAAW,GAAG;IACxB,IAAI,CAAC,EAAE,UAAU,CAAA;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,SAAS,CAAC,EAAE,SAAS,CAAA;IACrB,WAAW,CAAC,EAAE,UAAU,GAAG,OAAO,CAAA;IAClC,SAAS,CAAC,EAAE,SAAS,GAAG,OAAO,CAAA;IAC/B,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,MAAM,CAAC,EAAE,aAAa,CAAA;CACvB,CAAA;AAED,KAAK,iBAAiB,CAAC,CAAC,IAAI,WAAW,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAA;AAEpD,wBAAgB,MAAM,CAAC,KAAK,EAAE,iBAAiB,CAAC,WAAW,CAAC,eA+F3D;AAMD,KAAK,eAAe,GAAG,WAAW,GAAG,IAAI,CAAA;AAEzC,MAAM,MAAM,iBAAiB,GAAG,WAAW,GAAG;IAC5C,UAAU,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC,GAAG,CAAC,CAAA;CAClC,CAAA;AAED,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yCAqBxB,CAAA;AAMD,KAAK,oBAAoB,GAAG,WAAW,GAAG,IAAI,CAAA;AAE9C,MAAM,MAAM,kBAAkB,GAAG,iBAAiB,CAAA;AAElD,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0B7B,CAAA;AAEF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8CA8CxB,CAAA;AAMF,MAAM,MAAM,gBAAgB,GAAG,WAAW,GAAG;IAC3C,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB,CAAA;AAkDD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoFtB,CAAA"}
|