@tamagui/group 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 +6 -6
- package/types/Group.d.ts +404 -29
- package/types/Group.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/group",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.73.1",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"clean:build": "tamagui-build clean:build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@tamagui/core": "1.
|
|
27
|
-
"@tamagui/create-context": "1.
|
|
28
|
-
"@tamagui/stacks": "1.
|
|
29
|
-
"@tamagui/use-controllable-state": "1.
|
|
26
|
+
"@tamagui/core": "1.73.1",
|
|
27
|
+
"@tamagui/create-context": "1.73.1",
|
|
28
|
+
"@tamagui/stacks": "1.73.1",
|
|
29
|
+
"@tamagui/use-controllable-state": "1.73.1",
|
|
30
30
|
"reforest": "^0.13.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react": "*"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@tamagui/build": "1.
|
|
36
|
+
"@tamagui/build": "1.73.1",
|
|
37
37
|
"react": "^18.2.0"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
package/types/Group.d.ts
CHANGED
|
@@ -5,11 +5,36 @@ type DisablePassBorderRadius = boolean | 'bottom' | 'top' | 'start' | 'end';
|
|
|
5
5
|
type ScopedProps<P> = P & {
|
|
6
6
|
__scopeGroup?: Scope;
|
|
7
7
|
};
|
|
8
|
-
export declare const GroupFrame: 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").
|
|
8
|
+
export declare const GroupFrame: 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 & {
|
|
9
|
+
target?: string | undefined;
|
|
10
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
11
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
12
|
+
dangerouslySetInnerHTML?: {
|
|
13
|
+
__html: string;
|
|
14
|
+
} | undefined;
|
|
15
|
+
children?: any;
|
|
16
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
17
|
+
disabled?: boolean | undefined;
|
|
18
|
+
className?: string | undefined;
|
|
19
|
+
themeShallow?: boolean | undefined;
|
|
20
|
+
id?: string | undefined;
|
|
21
|
+
tag?: string | undefined;
|
|
22
|
+
theme?: string | null | undefined;
|
|
23
|
+
group?: undefined;
|
|
24
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
25
|
+
componentName?: string | undefined;
|
|
26
|
+
tabIndex?: string | number | undefined;
|
|
27
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
28
|
+
disableOptimization?: boolean | undefined;
|
|
29
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
30
|
+
disableClassName?: boolean | undefined;
|
|
31
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
32
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
33
|
+
} & {
|
|
9
34
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
10
35
|
} & 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<{
|
|
11
36
|
readonly fullscreen?: boolean | undefined;
|
|
12
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
37
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
13
38
|
} & {
|
|
14
39
|
readonly backgrounded?: boolean | undefined;
|
|
15
40
|
readonly radiused?: boolean | undefined;
|
|
@@ -25,11 +50,36 @@ export declare const GroupFrame: import("@tamagui/core").TamaguiComponent<Omit<i
|
|
|
25
50
|
}, "size" | "unstyled"> & {
|
|
26
51
|
readonly unstyled?: boolean | undefined;
|
|
27
52
|
readonly size?: any;
|
|
28
|
-
} & 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").
|
|
53
|
+
} & 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 & {
|
|
54
|
+
target?: string | undefined;
|
|
55
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
56
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
57
|
+
dangerouslySetInnerHTML?: {
|
|
58
|
+
__html: string;
|
|
59
|
+
} | undefined;
|
|
60
|
+
children?: any;
|
|
61
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
62
|
+
disabled?: boolean | undefined;
|
|
63
|
+
className?: string | undefined;
|
|
64
|
+
themeShallow?: boolean | undefined;
|
|
65
|
+
id?: string | undefined;
|
|
66
|
+
tag?: string | undefined;
|
|
67
|
+
theme?: string | null | undefined;
|
|
68
|
+
group?: undefined;
|
|
69
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
70
|
+
componentName?: string | undefined;
|
|
71
|
+
tabIndex?: string | number | undefined;
|
|
72
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
73
|
+
disableOptimization?: boolean | undefined;
|
|
74
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
75
|
+
disableClassName?: boolean | undefined;
|
|
76
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
77
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
78
|
+
} & {
|
|
29
79
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
30
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<{
|
|
31
81
|
readonly fullscreen?: boolean | undefined;
|
|
32
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
82
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
33
83
|
} & {
|
|
34
84
|
readonly backgrounded?: boolean | undefined;
|
|
35
85
|
readonly radiused?: boolean | undefined;
|
|
@@ -45,11 +95,36 @@ export declare const GroupFrame: import("@tamagui/core").TamaguiComponent<Omit<i
|
|
|
45
95
|
}, "size" | "unstyled"> & {
|
|
46
96
|
readonly unstyled?: boolean | undefined;
|
|
47
97
|
readonly size?: any;
|
|
48
|
-
}>> & 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").
|
|
98
|
+
}>> & 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 & {
|
|
99
|
+
target?: string | undefined;
|
|
100
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
101
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
102
|
+
dangerouslySetInnerHTML?: {
|
|
103
|
+
__html: string;
|
|
104
|
+
} | undefined;
|
|
105
|
+
children?: any;
|
|
106
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
107
|
+
disabled?: boolean | undefined;
|
|
108
|
+
className?: string | undefined;
|
|
109
|
+
themeShallow?: boolean | undefined;
|
|
110
|
+
id?: string | undefined;
|
|
111
|
+
tag?: string | undefined;
|
|
112
|
+
theme?: string | null | undefined;
|
|
113
|
+
group?: undefined;
|
|
114
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
115
|
+
componentName?: string | undefined;
|
|
116
|
+
tabIndex?: string | number | undefined;
|
|
117
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
118
|
+
disableOptimization?: boolean | undefined;
|
|
119
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
120
|
+
disableClassName?: boolean | undefined;
|
|
121
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
122
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
123
|
+
} & {
|
|
49
124
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
50
125
|
} & 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<{
|
|
51
126
|
readonly fullscreen?: boolean | undefined;
|
|
52
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
127
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
53
128
|
} & {
|
|
54
129
|
readonly backgrounded?: boolean | undefined;
|
|
55
130
|
readonly radiused?: boolean | undefined;
|
|
@@ -65,11 +140,36 @@ export declare const GroupFrame: import("@tamagui/core").TamaguiComponent<Omit<i
|
|
|
65
140
|
}, "size" | "unstyled"> & {
|
|
66
141
|
readonly unstyled?: boolean | undefined;
|
|
67
142
|
readonly size?: any;
|
|
68
|
-
}>>, TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
143
|
+
}>>, TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
144
|
+
target?: string | undefined;
|
|
145
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
146
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
147
|
+
dangerouslySetInnerHTML?: {
|
|
148
|
+
__html: string;
|
|
149
|
+
} | undefined;
|
|
150
|
+
children?: any;
|
|
151
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
152
|
+
disabled?: boolean | undefined;
|
|
153
|
+
className?: string | undefined;
|
|
154
|
+
themeShallow?: boolean | undefined;
|
|
155
|
+
id?: string | undefined;
|
|
156
|
+
tag?: string | undefined;
|
|
157
|
+
theme?: string | null | undefined;
|
|
158
|
+
group?: undefined;
|
|
159
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
160
|
+
componentName?: string | undefined;
|
|
161
|
+
tabIndex?: string | number | undefined;
|
|
162
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
163
|
+
disableOptimization?: boolean | undefined;
|
|
164
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
165
|
+
disableClassName?: boolean | undefined;
|
|
166
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
167
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
168
|
+
} & {
|
|
69
169
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
70
170
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
71
171
|
readonly fullscreen?: boolean | undefined;
|
|
72
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
172
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
73
173
|
} & {
|
|
74
174
|
readonly backgrounded?: boolean | undefined;
|
|
75
175
|
readonly radiused?: boolean | undefined;
|
|
@@ -87,17 +187,67 @@ export declare const GroupFrame: import("@tamagui/core").TamaguiComponent<Omit<i
|
|
|
87
187
|
readonly size?: any;
|
|
88
188
|
}, {
|
|
89
189
|
displayName: string | undefined;
|
|
90
|
-
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
190
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
191
|
+
target?: string | undefined;
|
|
192
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
193
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
194
|
+
dangerouslySetInnerHTML?: {
|
|
195
|
+
__html: string;
|
|
196
|
+
} | undefined;
|
|
197
|
+
children?: any;
|
|
198
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
199
|
+
disabled?: boolean | undefined;
|
|
200
|
+
className?: string | undefined;
|
|
201
|
+
themeShallow?: boolean | undefined;
|
|
202
|
+
id?: string | undefined;
|
|
203
|
+
tag?: string | undefined;
|
|
204
|
+
theme?: string | null | undefined;
|
|
205
|
+
group?: undefined;
|
|
206
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
207
|
+
componentName?: string | undefined;
|
|
208
|
+
tabIndex?: string | number | undefined;
|
|
209
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
210
|
+
disableOptimization?: boolean | undefined;
|
|
211
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
212
|
+
disableClassName?: boolean | undefined;
|
|
213
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
214
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
215
|
+
} & {
|
|
91
216
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
92
217
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
218
|
+
target?: string | undefined;
|
|
219
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
220
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
221
|
+
dangerouslySetInnerHTML?: {
|
|
222
|
+
__html: string;
|
|
223
|
+
} | undefined;
|
|
224
|
+
children?: any;
|
|
225
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
226
|
+
disabled?: boolean | undefined;
|
|
227
|
+
className?: string | undefined;
|
|
228
|
+
themeShallow?: boolean | undefined;
|
|
229
|
+
id?: string | undefined;
|
|
230
|
+
tag?: string | undefined;
|
|
231
|
+
theme?: string | null | undefined;
|
|
232
|
+
group?: undefined;
|
|
233
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
234
|
+
componentName?: string | undefined;
|
|
235
|
+
tabIndex?: string | number | undefined;
|
|
236
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
237
|
+
disableOptimization?: boolean | undefined;
|
|
238
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
239
|
+
disableClassName?: boolean | undefined;
|
|
240
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
241
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
242
|
+
} & {
|
|
93
243
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
94
244
|
};
|
|
95
245
|
__variantProps: {
|
|
96
246
|
readonly fullscreen?: boolean | undefined;
|
|
97
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
247
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
98
248
|
} & {
|
|
99
249
|
readonly fullscreen?: boolean | undefined;
|
|
100
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
250
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
101
251
|
} & {
|
|
102
252
|
readonly backgrounded?: boolean | undefined;
|
|
103
253
|
readonly radiused?: boolean | undefined;
|
|
@@ -140,11 +290,36 @@ export type GroupItemProps = {
|
|
|
140
290
|
export declare const useGroupItem: (childrenProps: {
|
|
141
291
|
disabled: boolean;
|
|
142
292
|
}, forcePlacement?: GroupItemProps['forcePlacement'], __scopeGroup?: Scope) => Record<string, any>;
|
|
143
|
-
export declare const Group: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
293
|
+
export declare const Group: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
294
|
+
target?: string | undefined;
|
|
295
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
296
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
297
|
+
dangerouslySetInnerHTML?: {
|
|
298
|
+
__html: string;
|
|
299
|
+
} | undefined;
|
|
300
|
+
children?: any;
|
|
301
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
302
|
+
disabled?: boolean | undefined;
|
|
303
|
+
className?: string | undefined;
|
|
304
|
+
themeShallow?: boolean | undefined;
|
|
305
|
+
id?: string | undefined;
|
|
306
|
+
tag?: string | undefined;
|
|
307
|
+
theme?: string | null | undefined;
|
|
308
|
+
group?: undefined;
|
|
309
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
310
|
+
componentName?: string | undefined;
|
|
311
|
+
tabIndex?: string | number | undefined;
|
|
312
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
313
|
+
disableOptimization?: boolean | undefined;
|
|
314
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
315
|
+
disableClassName?: boolean | undefined;
|
|
316
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
317
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
318
|
+
} & {
|
|
144
319
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
145
320
|
} & 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<{
|
|
146
321
|
readonly fullscreen?: boolean | undefined;
|
|
147
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
322
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
148
323
|
} & {
|
|
149
324
|
readonly backgrounded?: boolean | undefined;
|
|
150
325
|
readonly radiused?: boolean | undefined;
|
|
@@ -160,11 +335,36 @@ export declare const Group: React.ForwardRefExoticComponent<Omit<import("react-n
|
|
|
160
335
|
}, "size" | "unstyled"> & {
|
|
161
336
|
readonly unstyled?: boolean | undefined;
|
|
162
337
|
readonly size?: any;
|
|
163
|
-
} & 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").
|
|
338
|
+
} & 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 & {
|
|
339
|
+
target?: string | undefined;
|
|
340
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
341
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
342
|
+
dangerouslySetInnerHTML?: {
|
|
343
|
+
__html: string;
|
|
344
|
+
} | undefined;
|
|
345
|
+
children?: any;
|
|
346
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
347
|
+
disabled?: boolean | undefined;
|
|
348
|
+
className?: string | undefined;
|
|
349
|
+
themeShallow?: boolean | undefined;
|
|
350
|
+
id?: string | undefined;
|
|
351
|
+
tag?: string | undefined;
|
|
352
|
+
theme?: string | null | undefined;
|
|
353
|
+
group?: undefined;
|
|
354
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
355
|
+
componentName?: string | undefined;
|
|
356
|
+
tabIndex?: string | number | undefined;
|
|
357
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
358
|
+
disableOptimization?: boolean | undefined;
|
|
359
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
360
|
+
disableClassName?: boolean | undefined;
|
|
361
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
362
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
363
|
+
} & {
|
|
164
364
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
165
365
|
} & 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<{
|
|
166
366
|
readonly fullscreen?: boolean | undefined;
|
|
167
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
367
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
168
368
|
} & {
|
|
169
369
|
readonly backgrounded?: boolean | undefined;
|
|
170
370
|
readonly radiused?: boolean | undefined;
|
|
@@ -180,11 +380,36 @@ export declare const Group: React.ForwardRefExoticComponent<Omit<import("react-n
|
|
|
180
380
|
}, "size" | "unstyled"> & {
|
|
181
381
|
readonly unstyled?: boolean | undefined;
|
|
182
382
|
readonly size?: any;
|
|
183
|
-
}>> & 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").
|
|
383
|
+
}>> & 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 & {
|
|
384
|
+
target?: string | undefined;
|
|
385
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
386
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
387
|
+
dangerouslySetInnerHTML?: {
|
|
388
|
+
__html: string;
|
|
389
|
+
} | undefined;
|
|
390
|
+
children?: any;
|
|
391
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
392
|
+
disabled?: boolean | undefined;
|
|
393
|
+
className?: string | undefined;
|
|
394
|
+
themeShallow?: boolean | undefined;
|
|
395
|
+
id?: string | undefined;
|
|
396
|
+
tag?: string | undefined;
|
|
397
|
+
theme?: string | null | undefined;
|
|
398
|
+
group?: undefined;
|
|
399
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
400
|
+
componentName?: string | undefined;
|
|
401
|
+
tabIndex?: string | number | undefined;
|
|
402
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
403
|
+
disableOptimization?: boolean | undefined;
|
|
404
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
405
|
+
disableClassName?: boolean | undefined;
|
|
406
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
407
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
408
|
+
} & {
|
|
184
409
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
185
410
|
} & 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
411
|
readonly fullscreen?: boolean | undefined;
|
|
187
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
412
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
188
413
|
} & {
|
|
189
414
|
readonly backgrounded?: boolean | undefined;
|
|
190
415
|
readonly radiused?: boolean | undefined;
|
|
@@ -222,11 +447,36 @@ export declare const Group: React.ForwardRefExoticComponent<Omit<import("react-n
|
|
|
222
447
|
} & React.RefAttributes<TamaguiElement>> & {
|
|
223
448
|
Item: (props: ScopedProps<GroupItemProps>) => any;
|
|
224
449
|
};
|
|
225
|
-
export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
450
|
+
export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
451
|
+
target?: string | undefined;
|
|
452
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
453
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
454
|
+
dangerouslySetInnerHTML?: {
|
|
455
|
+
__html: string;
|
|
456
|
+
} | undefined;
|
|
457
|
+
children?: any;
|
|
458
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
459
|
+
disabled?: boolean | undefined;
|
|
460
|
+
className?: string | undefined;
|
|
461
|
+
themeShallow?: boolean | undefined;
|
|
462
|
+
id?: string | undefined;
|
|
463
|
+
tag?: string | undefined;
|
|
464
|
+
theme?: string | null | undefined;
|
|
465
|
+
group?: undefined;
|
|
466
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
467
|
+
componentName?: string | undefined;
|
|
468
|
+
tabIndex?: string | number | undefined;
|
|
469
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
470
|
+
disableOptimization?: boolean | undefined;
|
|
471
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
472
|
+
disableClassName?: boolean | undefined;
|
|
473
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
474
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
475
|
+
} & {
|
|
226
476
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
227
477
|
} & 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<{
|
|
228
478
|
readonly fullscreen?: boolean | undefined;
|
|
229
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
479
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
230
480
|
} & {
|
|
231
481
|
readonly backgrounded?: boolean | undefined;
|
|
232
482
|
readonly radiused?: boolean | undefined;
|
|
@@ -242,11 +492,36 @@ export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("react-
|
|
|
242
492
|
}, "size" | "unstyled"> & {
|
|
243
493
|
readonly unstyled?: boolean | undefined;
|
|
244
494
|
readonly size?: any;
|
|
245
|
-
} & 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").
|
|
495
|
+
} & 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 & {
|
|
496
|
+
target?: string | undefined;
|
|
497
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
498
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
499
|
+
dangerouslySetInnerHTML?: {
|
|
500
|
+
__html: string;
|
|
501
|
+
} | undefined;
|
|
502
|
+
children?: any;
|
|
503
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
504
|
+
disabled?: boolean | undefined;
|
|
505
|
+
className?: string | undefined;
|
|
506
|
+
themeShallow?: boolean | undefined;
|
|
507
|
+
id?: string | undefined;
|
|
508
|
+
tag?: string | undefined;
|
|
509
|
+
theme?: string | null | undefined;
|
|
510
|
+
group?: undefined;
|
|
511
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
512
|
+
componentName?: string | undefined;
|
|
513
|
+
tabIndex?: string | number | undefined;
|
|
514
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
515
|
+
disableOptimization?: boolean | undefined;
|
|
516
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
517
|
+
disableClassName?: boolean | undefined;
|
|
518
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
519
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
520
|
+
} & {
|
|
246
521
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
247
522
|
} & 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
523
|
readonly fullscreen?: boolean | undefined;
|
|
249
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
524
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
250
525
|
} & {
|
|
251
526
|
readonly backgrounded?: boolean | undefined;
|
|
252
527
|
readonly radiused?: boolean | undefined;
|
|
@@ -262,11 +537,36 @@ export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("react-
|
|
|
262
537
|
}, "size" | "unstyled"> & {
|
|
263
538
|
readonly unstyled?: boolean | undefined;
|
|
264
539
|
readonly size?: any;
|
|
265
|
-
}>> & 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").
|
|
540
|
+
}>> & 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 & {
|
|
541
|
+
target?: string | undefined;
|
|
542
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
543
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
544
|
+
dangerouslySetInnerHTML?: {
|
|
545
|
+
__html: string;
|
|
546
|
+
} | undefined;
|
|
547
|
+
children?: any;
|
|
548
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
549
|
+
disabled?: boolean | undefined;
|
|
550
|
+
className?: string | undefined;
|
|
551
|
+
themeShallow?: boolean | undefined;
|
|
552
|
+
id?: string | undefined;
|
|
553
|
+
tag?: string | undefined;
|
|
554
|
+
theme?: string | null | undefined;
|
|
555
|
+
group?: undefined;
|
|
556
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
557
|
+
componentName?: string | undefined;
|
|
558
|
+
tabIndex?: string | number | undefined;
|
|
559
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
560
|
+
disableOptimization?: boolean | undefined;
|
|
561
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
562
|
+
disableClassName?: boolean | undefined;
|
|
563
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
564
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
565
|
+
} & {
|
|
266
566
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
267
567
|
} & 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<{
|
|
268
568
|
readonly fullscreen?: boolean | undefined;
|
|
269
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
569
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
270
570
|
} & {
|
|
271
571
|
readonly backgrounded?: boolean | undefined;
|
|
272
572
|
readonly radiused?: boolean | undefined;
|
|
@@ -304,11 +604,36 @@ export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("react-
|
|
|
304
604
|
} & React.RefAttributes<TamaguiElement>> & {
|
|
305
605
|
Item: (props: ScopedProps<GroupItemProps>) => any;
|
|
306
606
|
};
|
|
307
|
-
export declare const XGroup: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").
|
|
607
|
+
export declare const XGroup: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & {
|
|
608
|
+
target?: string | undefined;
|
|
609
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
610
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
611
|
+
dangerouslySetInnerHTML?: {
|
|
612
|
+
__html: string;
|
|
613
|
+
} | undefined;
|
|
614
|
+
children?: any;
|
|
615
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
616
|
+
disabled?: boolean | undefined;
|
|
617
|
+
className?: string | undefined;
|
|
618
|
+
themeShallow?: boolean | undefined;
|
|
619
|
+
id?: string | undefined;
|
|
620
|
+
tag?: string | undefined;
|
|
621
|
+
theme?: string | null | undefined;
|
|
622
|
+
group?: undefined;
|
|
623
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
624
|
+
componentName?: string | undefined;
|
|
625
|
+
tabIndex?: string | number | undefined;
|
|
626
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
627
|
+
disableOptimization?: boolean | undefined;
|
|
628
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
629
|
+
disableClassName?: boolean | undefined;
|
|
630
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
631
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
632
|
+
} & {
|
|
308
633
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
309
634
|
} & 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<{
|
|
310
635
|
readonly fullscreen?: boolean | undefined;
|
|
311
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
636
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
312
637
|
} & {
|
|
313
638
|
readonly backgrounded?: boolean | undefined;
|
|
314
639
|
readonly radiused?: boolean | undefined;
|
|
@@ -324,11 +649,36 @@ export declare const XGroup: React.ForwardRefExoticComponent<Omit<import("react-
|
|
|
324
649
|
}, "size" | "unstyled"> & {
|
|
325
650
|
readonly unstyled?: boolean | undefined;
|
|
326
651
|
readonly size?: any;
|
|
327
|
-
} & 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").
|
|
652
|
+
} & 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 & {
|
|
653
|
+
target?: string | undefined;
|
|
654
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
655
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
656
|
+
dangerouslySetInnerHTML?: {
|
|
657
|
+
__html: string;
|
|
658
|
+
} | undefined;
|
|
659
|
+
children?: any;
|
|
660
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
661
|
+
disabled?: boolean | undefined;
|
|
662
|
+
className?: string | undefined;
|
|
663
|
+
themeShallow?: boolean | undefined;
|
|
664
|
+
id?: string | undefined;
|
|
665
|
+
tag?: string | undefined;
|
|
666
|
+
theme?: string | null | undefined;
|
|
667
|
+
group?: undefined;
|
|
668
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
669
|
+
componentName?: string | undefined;
|
|
670
|
+
tabIndex?: string | number | undefined;
|
|
671
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
672
|
+
disableOptimization?: boolean | undefined;
|
|
673
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
674
|
+
disableClassName?: boolean | undefined;
|
|
675
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
676
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
677
|
+
} & {
|
|
328
678
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
329
679
|
} & 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<{
|
|
330
680
|
readonly fullscreen?: boolean | undefined;
|
|
331
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
681
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
332
682
|
} & {
|
|
333
683
|
readonly backgrounded?: boolean | undefined;
|
|
334
684
|
readonly radiused?: boolean | undefined;
|
|
@@ -344,11 +694,36 @@ export declare const XGroup: React.ForwardRefExoticComponent<Omit<import("react-
|
|
|
344
694
|
}, "size" | "unstyled"> & {
|
|
345
695
|
readonly unstyled?: boolean | undefined;
|
|
346
696
|
readonly size?: any;
|
|
347
|
-
}>> & 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").
|
|
697
|
+
}>> & 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 & {
|
|
698
|
+
target?: string | undefined;
|
|
699
|
+
hitSlop?: number | import("react-native").Insets | null | undefined;
|
|
700
|
+
asChild?: boolean | "web" | "except-style" | "except-style-web" | undefined;
|
|
701
|
+
dangerouslySetInnerHTML?: {
|
|
702
|
+
__html: string;
|
|
703
|
+
} | undefined;
|
|
704
|
+
children?: any;
|
|
705
|
+
debug?: import("@tamagui/core").DebugProp | undefined;
|
|
706
|
+
disabled?: boolean | undefined;
|
|
707
|
+
className?: string | undefined;
|
|
708
|
+
themeShallow?: boolean | undefined;
|
|
709
|
+
id?: string | undefined;
|
|
710
|
+
tag?: string | undefined;
|
|
711
|
+
theme?: string | null | undefined;
|
|
712
|
+
group?: undefined;
|
|
713
|
+
untilMeasured?: "hide" | "show" | undefined;
|
|
714
|
+
componentName?: string | undefined;
|
|
715
|
+
tabIndex?: string | number | undefined;
|
|
716
|
+
role?: import("@tamagui/web/types/interfaces/Role").Role | undefined;
|
|
717
|
+
disableOptimization?: boolean | undefined;
|
|
718
|
+
forceStyle?: "hover" | "press" | "focus" | undefined;
|
|
719
|
+
disableClassName?: boolean | undefined;
|
|
720
|
+
onFocus?: ((event: React.FocusEvent<HTMLDivElement, Element>) => void) | undefined;
|
|
721
|
+
onScroll?: ((event: React.UIEvent<HTMLDivElement, UIEvent>) => void) | undefined;
|
|
722
|
+
} & {
|
|
348
723
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
349
724
|
} & 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<{
|
|
350
725
|
readonly fullscreen?: boolean | undefined;
|
|
351
|
-
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
726
|
+
readonly elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
352
727
|
} & {
|
|
353
728
|
readonly backgrounded?: boolean | undefined;
|
|
354
729
|
readonly radiused?: boolean | undefined;
|
package/types/Group.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Group.d.ts","sourceRoot":"","sources":["../src/Group.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EACR,cAAc,EAaf,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,KAAK,EAAsB,MAAM,yBAAyB,CAAA;AAGnE,OAAO,KAA+C,MAAM,OAAO,CAAA;AAInE,KAAK,uBAAuB,GAAG,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,OAAO,GAAG,KAAK,CAAA;AAa3E,KAAK,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,YAAY,CAAC,EAAE,KAAK,CAAA;CAAE,CAAA;AAIlD,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"Group.d.ts","sourceRoot":"","sources":["../src/Group.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,QAAQ,EACR,cAAc,EAaf,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,KAAK,EAAsB,MAAM,yBAAyB,CAAA;AAGnE,OAAO,KAA+C,MAAM,OAAO,CAAA;AAInE,KAAK,uBAAuB,GAAG,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,OAAO,GAAG,KAAK,CAAA;AAa3E,KAAK,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,YAAY,CAAC,EAAE,KAAK,CAAA;CAAE,CAAA;AAIlD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsBrB,CAAA;AAEF,MAAM,MAAM,UAAU,GAAG,QAAQ,CAAC,OAAO,UAAU,CAAC,GAAG;IACrD;;OAEG;IACH,IAAI,CAAC,EAAE,YAAY,GAAG,UAAU,CAAA;IAChC,WAAW,CAAC,EAAE,YAAY,GAAG,UAAU,CAAA;IACvC,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,uBAAuB,CAAC,EAAE,uBAAuB,CAAA;IACjD;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB,CAAA;AAoHD,MAAM,MAAM,cAAc,GAAG;IAC3B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;IACzB;;OAEG;IACH,cAAc,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAA;CAC7C,CAAA;AA0BD,eAAO,MAAM,YAAY,kBACR;IAAE,QAAQ,EAAE,OAAO,CAAA;CAAE,mBACnB,cAAc,CAAC,gBAAgB,CAAC,iBAClC,KAAK,wBAuCrB,CAAA;AAED,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAhNhB;;OAEG;;;;IAIH;;OAEG;;;;IAIH;;OAEG;;;mBA3CsC,KAAK;;kBAyKtB,YAAY,cAAc,CAAC;CAoEf,CAAA;AACtC,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAjNjB;;OAEG;;;;IAIH;;OAEG;;;;IAIH;;OAEG;;;mBA3CsC,KAAK;;kBAyKtB,YAAY,cAAc,CAAC;CAqE1B,CAAA;AAC3B,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAlNjB;;OAEG;;;;IAIH;;OAEG;;;;IAIH;;OAEG;;;mBA3CsC,KAAK;;kBAyKtB,YAAY,cAAc,CAAC;CAsEb,CAAA"}
|