@tamagui/group 1.88.9 → 1.88.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -7
- package/types/Group.d.ts +10 -106
- 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.88.
|
|
3
|
+
"version": "1.88.11",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"clean:build": "tamagui-build clean:build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@tamagui/core": "1.88.
|
|
27
|
-
"@tamagui/create-context": "1.88.
|
|
28
|
-
"@tamagui/helpers": "1.88.
|
|
29
|
-
"@tamagui/stacks": "1.88.
|
|
30
|
-
"@tamagui/use-controllable-state": "1.88.
|
|
26
|
+
"@tamagui/core": "1.88.11",
|
|
27
|
+
"@tamagui/create-context": "1.88.11",
|
|
28
|
+
"@tamagui/helpers": "1.88.11",
|
|
29
|
+
"@tamagui/stacks": "1.88.11",
|
|
30
|
+
"@tamagui/use-controllable-state": "1.88.11",
|
|
31
31
|
"reforest": "^0.13.0"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"react": "*"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@tamagui/build": "1.88.
|
|
37
|
+
"@tamagui/build": "1.88.11",
|
|
38
38
|
"react": "^18.2.0"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
package/types/Group.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare const GroupFrame: import("@tamagui/core").TamaguiComponent<import
|
|
|
21
21
|
radiused?: boolean | undefined;
|
|
22
22
|
padded?: boolean | undefined;
|
|
23
23
|
chromeless?: boolean | "all" | undefined;
|
|
24
|
-
},
|
|
24
|
+
}, import("@tamagui/core").StaticConfigPublic>;
|
|
25
25
|
export type GroupProps = GetProps<typeof GroupFrame> & {
|
|
26
26
|
/**
|
|
27
27
|
* @deprecated use `orientation` instead
|
|
@@ -50,7 +50,7 @@ export type GroupItemProps = {
|
|
|
50
50
|
export declare const useGroupItem: (childrenProps: {
|
|
51
51
|
disabled: boolean;
|
|
52
52
|
}, forcePlacement?: GroupItemProps['forcePlacement'], __scopeGroup?: Scope) => Record<string, any>;
|
|
53
|
-
export declare const Group: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "size" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
53
|
+
export declare const Group: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "size" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
54
54
|
unstyled?: boolean | undefined;
|
|
55
55
|
size?: any;
|
|
56
56
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -66,7 +66,7 @@ export declare const Group: React.ForwardRefExoticComponent<Omit<import("@tamagu
|
|
|
66
66
|
radiused?: boolean | undefined;
|
|
67
67
|
padded?: boolean | undefined;
|
|
68
68
|
chromeless?: boolean | "all" | undefined;
|
|
69
|
-
}
|
|
69
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
70
70
|
unstyled?: boolean | undefined;
|
|
71
71
|
size?: any;
|
|
72
72
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -82,39 +82,7 @@ export declare const Group: React.ForwardRefExoticComponent<Omit<import("@tamagu
|
|
|
82
82
|
radiused?: boolean | undefined;
|
|
83
83
|
padded?: boolean | undefined;
|
|
84
84
|
chromeless?: boolean | "all" | undefined;
|
|
85
|
-
}
|
|
86
|
-
unstyled?: boolean | undefined;
|
|
87
|
-
size?: any;
|
|
88
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
89
|
-
transparent?: boolean | undefined;
|
|
90
|
-
fullscreen?: boolean | undefined;
|
|
91
|
-
circular?: boolean | undefined;
|
|
92
|
-
hoverTheme?: boolean | undefined;
|
|
93
|
-
pressTheme?: boolean | undefined;
|
|
94
|
-
focusTheme?: boolean | undefined;
|
|
95
|
-
elevate?: boolean | undefined;
|
|
96
|
-
bordered?: number | boolean | undefined;
|
|
97
|
-
backgrounded?: boolean | undefined;
|
|
98
|
-
radiused?: boolean | undefined;
|
|
99
|
-
padded?: boolean | undefined;
|
|
100
|
-
chromeless?: boolean | "all" | undefined;
|
|
101
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
102
|
-
unstyled?: boolean | undefined;
|
|
103
|
-
size?: any;
|
|
104
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
105
|
-
transparent?: boolean | undefined;
|
|
106
|
-
fullscreen?: boolean | undefined;
|
|
107
|
-
circular?: boolean | undefined;
|
|
108
|
-
hoverTheme?: boolean | undefined;
|
|
109
|
-
pressTheme?: boolean | undefined;
|
|
110
|
-
focusTheme?: boolean | undefined;
|
|
111
|
-
elevate?: boolean | undefined;
|
|
112
|
-
bordered?: number | boolean | undefined;
|
|
113
|
-
backgrounded?: boolean | undefined;
|
|
114
|
-
radiused?: boolean | undefined;
|
|
115
|
-
padded?: boolean | undefined;
|
|
116
|
-
chromeless?: boolean | "all" | undefined;
|
|
117
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
85
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
118
86
|
unstyled?: boolean | undefined;
|
|
119
87
|
size?: any;
|
|
120
88
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -152,23 +120,7 @@ export declare const Group: React.ForwardRefExoticComponent<Omit<import("@tamagu
|
|
|
152
120
|
} & React.RefAttributes<TamaguiElement>> & {
|
|
153
121
|
Item: (props: ScopedProps<GroupItemProps>) => any;
|
|
154
122
|
};
|
|
155
|
-
export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "size" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
156
|
-
unstyled?: boolean | undefined;
|
|
157
|
-
size?: any;
|
|
158
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
159
|
-
transparent?: boolean | undefined;
|
|
160
|
-
fullscreen?: boolean | undefined;
|
|
161
|
-
circular?: boolean | undefined;
|
|
162
|
-
hoverTheme?: boolean | undefined;
|
|
163
|
-
pressTheme?: boolean | undefined;
|
|
164
|
-
focusTheme?: boolean | undefined;
|
|
165
|
-
elevate?: boolean | undefined;
|
|
166
|
-
bordered?: number | boolean | undefined;
|
|
167
|
-
backgrounded?: boolean | undefined;
|
|
168
|
-
radiused?: boolean | undefined;
|
|
169
|
-
padded?: boolean | undefined;
|
|
170
|
-
chromeless?: boolean | "all" | undefined;
|
|
171
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
123
|
+
export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "size" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
172
124
|
unstyled?: boolean | undefined;
|
|
173
125
|
size?: any;
|
|
174
126
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -184,7 +136,7 @@ export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("@tamag
|
|
|
184
136
|
radiused?: boolean | undefined;
|
|
185
137
|
padded?: boolean | undefined;
|
|
186
138
|
chromeless?: boolean | "all" | undefined;
|
|
187
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
139
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
188
140
|
unstyled?: boolean | undefined;
|
|
189
141
|
size?: any;
|
|
190
142
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -200,23 +152,7 @@ export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("@tamag
|
|
|
200
152
|
radiused?: boolean | undefined;
|
|
201
153
|
padded?: boolean | undefined;
|
|
202
154
|
chromeless?: boolean | "all" | undefined;
|
|
203
|
-
}
|
|
204
|
-
unstyled?: boolean | undefined;
|
|
205
|
-
size?: any;
|
|
206
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
207
|
-
transparent?: boolean | undefined;
|
|
208
|
-
fullscreen?: boolean | undefined;
|
|
209
|
-
circular?: boolean | undefined;
|
|
210
|
-
hoverTheme?: boolean | undefined;
|
|
211
|
-
pressTheme?: boolean | undefined;
|
|
212
|
-
focusTheme?: boolean | undefined;
|
|
213
|
-
elevate?: boolean | undefined;
|
|
214
|
-
bordered?: number | boolean | undefined;
|
|
215
|
-
backgrounded?: boolean | undefined;
|
|
216
|
-
radiused?: boolean | undefined;
|
|
217
|
-
padded?: boolean | undefined;
|
|
218
|
-
chromeless?: boolean | "all" | undefined;
|
|
219
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
155
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
220
156
|
unstyled?: boolean | undefined;
|
|
221
157
|
size?: any;
|
|
222
158
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -254,39 +190,7 @@ export declare const YGroup: React.ForwardRefExoticComponent<Omit<import("@tamag
|
|
|
254
190
|
} & React.RefAttributes<TamaguiElement>> & {
|
|
255
191
|
Item: (props: ScopedProps<GroupItemProps>) => any;
|
|
256
192
|
};
|
|
257
|
-
export declare const XGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "size" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
258
|
-
unstyled?: boolean | undefined;
|
|
259
|
-
size?: any;
|
|
260
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
261
|
-
transparent?: boolean | undefined;
|
|
262
|
-
fullscreen?: boolean | undefined;
|
|
263
|
-
circular?: boolean | undefined;
|
|
264
|
-
hoverTheme?: boolean | undefined;
|
|
265
|
-
pressTheme?: boolean | undefined;
|
|
266
|
-
focusTheme?: boolean | undefined;
|
|
267
|
-
elevate?: boolean | undefined;
|
|
268
|
-
bordered?: number | boolean | undefined;
|
|
269
|
-
backgrounded?: boolean | undefined;
|
|
270
|
-
radiused?: boolean | undefined;
|
|
271
|
-
padded?: boolean | undefined;
|
|
272
|
-
chromeless?: boolean | "all" | undefined;
|
|
273
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
274
|
-
unstyled?: boolean | undefined;
|
|
275
|
-
size?: any;
|
|
276
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
277
|
-
transparent?: boolean | undefined;
|
|
278
|
-
fullscreen?: boolean | undefined;
|
|
279
|
-
circular?: boolean | undefined;
|
|
280
|
-
hoverTheme?: boolean | undefined;
|
|
281
|
-
pressTheme?: boolean | undefined;
|
|
282
|
-
focusTheme?: boolean | undefined;
|
|
283
|
-
elevate?: boolean | undefined;
|
|
284
|
-
bordered?: number | boolean | undefined;
|
|
285
|
-
backgrounded?: boolean | undefined;
|
|
286
|
-
radiused?: boolean | undefined;
|
|
287
|
-
padded?: boolean | undefined;
|
|
288
|
-
chromeless?: boolean | "all" | undefined;
|
|
289
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
193
|
+
export declare const XGroup: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "unstyled" | "size" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
290
194
|
unstyled?: boolean | undefined;
|
|
291
195
|
size?: any;
|
|
292
196
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -302,7 +206,7 @@ export declare const XGroup: React.ForwardRefExoticComponent<Omit<import("@tamag
|
|
|
302
206
|
radiused?: boolean | undefined;
|
|
303
207
|
padded?: boolean | undefined;
|
|
304
208
|
chromeless?: boolean | "all" | undefined;
|
|
305
|
-
}
|
|
209
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
306
210
|
unstyled?: boolean | undefined;
|
|
307
211
|
size?: any;
|
|
308
212
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -318,7 +222,7 @@ export declare const XGroup: React.ForwardRefExoticComponent<Omit<import("@tamag
|
|
|
318
222
|
radiused?: boolean | undefined;
|
|
319
223
|
padded?: boolean | undefined;
|
|
320
224
|
chromeless?: boolean | "all" | undefined;
|
|
321
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
225
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
322
226
|
unstyled?: boolean | undefined;
|
|
323
227
|
size?: any;
|
|
324
228
|
elevation?: number | import("@tamagui/core").SizeTokens | 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,EAWf,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,KAAK,EAAsB,MAAM,yBAAyB,CAAA;AAInE,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,EAWf,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,KAAK,EAAsB,MAAM,yBAAyB,CAAA;AAInE,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;;;;;;;;;;;;;;;;8CAqBrB,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;AA2BD,eAAO,MAAM,YAAY,kBACR;IAAE,QAAQ,EAAE,OAAO,CAAA;CAAE,mBACnB,cAAc,CAAC,gBAAgB,CAAC,iBAClC,KAAK,wBAuCrB,CAAA;AAED,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAjNhB;;OAEG;;;;IAIH;;OAEG;;;;IAIH;;OAEG;;;mBA1CsC,KAAK;;kBAwKtB,YAAY,cAAc,CAAC;CAqEf,CAAA;AACtC,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAlNjB;;OAEG;;;;IAIH;;OAEG;;;;IAIH;;OAEG;;;mBA1CsC,KAAK;;kBAwKtB,YAAY,cAAc,CAAC;CAsE1B,CAAA;AAC3B,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAnNjB;;OAEG;;;;IAIH;;OAEG;;;;IAIH;;OAEG;;;mBA1CsC,KAAK;;kBAwKtB,YAAY,cAAc,CAAC;CAuEb,CAAA"}
|