@tamagui/group 1.73.1 → 1.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -6
- package/types/Group.d.ts +14 -389
- 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.74.0",
|
|
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.74.0",
|
|
27
|
+
"@tamagui/create-context": "1.74.0",
|
|
28
|
+
"@tamagui/stacks": "1.74.0",
|
|
29
|
+
"@tamagui/use-controllable-state": "1.74.0",
|
|
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.74.0",
|
|
37
37
|
"react": "^18.2.0"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
package/types/Group.d.ts
CHANGED
|
@@ -5,32 +5,7 @@ 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").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
|
-
} & {
|
|
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 & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
34
9
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
35
10
|
} & 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<{
|
|
36
11
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -50,32 +25,7 @@ export declare const GroupFrame: import("@tamagui/core").TamaguiComponent<Omit<i
|
|
|
50
25
|
}, "size" | "unstyled"> & {
|
|
51
26
|
readonly unstyled?: boolean | undefined;
|
|
52
27
|
readonly size?: any;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
79
29
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
80
30
|
} & 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<{
|
|
81
31
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -95,32 +45,7 @@ export declare const GroupFrame: import("@tamagui/core").TamaguiComponent<Omit<i
|
|
|
95
45
|
}, "size" | "unstyled"> & {
|
|
96
46
|
readonly unstyled?: boolean | undefined;
|
|
97
47
|
readonly size?: any;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
124
49
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
125
50
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
126
51
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -140,32 +65,7 @@ export declare const GroupFrame: import("@tamagui/core").TamaguiComponent<Omit<i
|
|
|
140
65
|
}, "size" | "unstyled"> & {
|
|
141
66
|
readonly unstyled?: boolean | undefined;
|
|
142
67
|
readonly size?: any;
|
|
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
|
-
} & {
|
|
68
|
+
}>>, TamaguiElement, Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
169
69
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
170
70
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps, {
|
|
171
71
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -187,59 +87,9 @@ export declare const GroupFrame: import("@tamagui/core").TamaguiComponent<Omit<i
|
|
|
187
87
|
readonly size?: any;
|
|
188
88
|
}, {
|
|
189
89
|
displayName: string | undefined;
|
|
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
|
-
} & {
|
|
90
|
+
__baseProps: Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers | "style"> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
216
91
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
217
92
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & {
|
|
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
|
-
} & {
|
|
243
93
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
244
94
|
};
|
|
245
95
|
__variantProps: {
|
|
@@ -290,32 +140,7 @@ export type GroupItemProps = {
|
|
|
290
140
|
export declare const useGroupItem: (childrenProps: {
|
|
291
141
|
disabled: boolean;
|
|
292
142
|
}, forcePlacement?: GroupItemProps['forcePlacement'], __scopeGroup?: Scope) => Record<string, any>;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
319
144
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
320
145
|
} & 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<{
|
|
321
146
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -335,32 +160,7 @@ export declare const Group: React.ForwardRefExoticComponent<Omit<import("react-n
|
|
|
335
160
|
}, "size" | "unstyled"> & {
|
|
336
161
|
readonly unstyled?: boolean | undefined;
|
|
337
162
|
readonly size?: any;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
364
164
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
365
165
|
} & 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<{
|
|
366
166
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -380,32 +180,7 @@ export declare const Group: React.ForwardRefExoticComponent<Omit<import("react-n
|
|
|
380
180
|
}, "size" | "unstyled"> & {
|
|
381
181
|
readonly unstyled?: boolean | undefined;
|
|
382
182
|
readonly size?: any;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
409
184
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
410
185
|
} & 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<{
|
|
411
186
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -447,32 +222,7 @@ export declare const Group: React.ForwardRefExoticComponent<Omit<import("react-n
|
|
|
447
222
|
} & React.RefAttributes<TamaguiElement>> & {
|
|
448
223
|
Item: (props: ScopedProps<GroupItemProps>) => any;
|
|
449
224
|
};
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
476
226
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
477
227
|
} & 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<{
|
|
478
228
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -492,32 +242,7 @@ export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("react-
|
|
|
492
242
|
}, "size" | "unstyled"> & {
|
|
493
243
|
readonly unstyled?: boolean | undefined;
|
|
494
244
|
readonly size?: any;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
521
246
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
522
247
|
} & 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<{
|
|
523
248
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -537,32 +262,7 @@ export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("react-
|
|
|
537
262
|
}, "size" | "unstyled"> & {
|
|
538
263
|
readonly unstyled?: boolean | undefined;
|
|
539
264
|
readonly size?: any;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
566
266
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
567
267
|
} & 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<{
|
|
568
268
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -604,32 +304,7 @@ export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("react-
|
|
|
604
304
|
} & React.RefAttributes<TamaguiElement>> & {
|
|
605
305
|
Item: (props: ScopedProps<GroupItemProps>) => any;
|
|
606
306
|
};
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
633
308
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
634
309
|
} & 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<{
|
|
635
310
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -649,32 +324,7 @@ export declare const XGroup: React.ForwardRefExoticComponent<Omit<import("react-
|
|
|
649
324
|
}, "size" | "unstyled"> & {
|
|
650
325
|
readonly unstyled?: boolean | undefined;
|
|
651
326
|
readonly size?: any;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
678
328
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
679
329
|
} & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core").RNViewProps & Omit<{
|
|
680
330
|
readonly fullscreen?: boolean | undefined;
|
|
@@ -694,32 +344,7 @@ export declare const XGroup: React.ForwardRefExoticComponent<Omit<import("react-
|
|
|
694
344
|
}, "size" | "unstyled"> & {
|
|
695
345
|
readonly unstyled?: boolean | undefined;
|
|
696
346
|
readonly size?: any;
|
|
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
|
-
} & {
|
|
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").WebOnlyPressEvents & import("@tamagui/core").TamaguiComponentPropsBaseBase & {
|
|
723
348
|
style?: import("@tamagui/core").StyleProp<import("react-native").ViewStyle | React.CSSProperties | (React.CSSProperties & import("react-native").ViewStyle)>;
|
|
724
349
|
} & 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<{
|
|
725
350
|
readonly fullscreen?: 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"}
|