@tamagui/tabs 1.120.2 → 1.121.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 +13 -13
- package/types/Tabs.d.ts +169 -169
- package/types/Tabs.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/tabs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.121.0",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -34,23 +34,23 @@
|
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@tamagui/compose-refs": "1.
|
|
38
|
-
"@tamagui/constants": "1.
|
|
39
|
-
"@tamagui/create-context": "1.
|
|
40
|
-
"@tamagui/get-button-sized": "1.
|
|
41
|
-
"@tamagui/group": "1.
|
|
42
|
-
"@tamagui/helpers": "1.
|
|
43
|
-
"@tamagui/roving-focus": "1.
|
|
44
|
-
"@tamagui/stacks": "1.
|
|
45
|
-
"@tamagui/use-controllable-state": "1.
|
|
46
|
-
"@tamagui/use-direction": "1.
|
|
47
|
-
"@tamagui/web": "1.
|
|
37
|
+
"@tamagui/compose-refs": "1.121.0",
|
|
38
|
+
"@tamagui/constants": "1.121.0",
|
|
39
|
+
"@tamagui/create-context": "1.121.0",
|
|
40
|
+
"@tamagui/get-button-sized": "1.121.0",
|
|
41
|
+
"@tamagui/group": "1.121.0",
|
|
42
|
+
"@tamagui/helpers": "1.121.0",
|
|
43
|
+
"@tamagui/roving-focus": "1.121.0",
|
|
44
|
+
"@tamagui/stacks": "1.121.0",
|
|
45
|
+
"@tamagui/use-controllable-state": "1.121.0",
|
|
46
|
+
"@tamagui/use-direction": "1.121.0",
|
|
47
|
+
"@tamagui/web": "1.121.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "*"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@tamagui/build": "1.
|
|
53
|
+
"@tamagui/build": "1.121.0",
|
|
54
54
|
"react": "*"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": {
|
package/types/Tabs.d.ts
CHANGED
|
@@ -14,17 +14,15 @@ type TabsListProps = TabsListFrameProps & {
|
|
|
14
14
|
declare const TabsTriggerFrame: import("@tamagui/web").TamaguiComponent<import("@tamagui/web").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
15
15
|
disabled?: boolean | undefined;
|
|
16
16
|
elevation?: number | SizeTokens | undefined;
|
|
17
|
-
unstyled?: boolean | undefined;
|
|
18
|
-
size?: SizeTokens | undefined;
|
|
19
|
-
transparent?: boolean | undefined;
|
|
20
|
-
fullscreen?: boolean | undefined;
|
|
21
|
-
circular?: boolean | undefined;
|
|
22
17
|
inset?: number | SizeTokens | {
|
|
23
18
|
top?: number;
|
|
24
19
|
bottom?: number;
|
|
25
20
|
left?: number;
|
|
26
21
|
right?: number;
|
|
27
|
-
} | undefined;
|
|
22
|
+
} | null | undefined;
|
|
23
|
+
transparent?: boolean | undefined;
|
|
24
|
+
fullscreen?: boolean | undefined;
|
|
25
|
+
circular?: boolean | undefined;
|
|
28
26
|
hoverTheme?: boolean | undefined;
|
|
29
27
|
pressTheme?: boolean | undefined;
|
|
30
28
|
focusTheme?: boolean | undefined;
|
|
@@ -34,6 +32,8 @@ declare const TabsTriggerFrame: import("@tamagui/web").TamaguiComponent<import("
|
|
|
34
32
|
radiused?: boolean | undefined;
|
|
35
33
|
padded?: boolean | undefined;
|
|
36
34
|
chromeless?: boolean | "all" | undefined;
|
|
35
|
+
size?: SizeTokens | undefined;
|
|
36
|
+
unstyled?: boolean | undefined;
|
|
37
37
|
active?: boolean | undefined;
|
|
38
38
|
}, import("@tamagui/web").StaticConfigPublic>;
|
|
39
39
|
/**
|
|
@@ -57,15 +57,15 @@ type TabsTriggerProps = TabsTriggerFrameProps & {
|
|
|
57
57
|
type TabsTabProps = TabsTriggerProps;
|
|
58
58
|
declare const TabsContentFrame: import("@tamagui/web").TamaguiComponent<import("@tamagui/web").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
59
59
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
60
|
-
transparent?: boolean | undefined;
|
|
61
|
-
fullscreen?: boolean | undefined;
|
|
62
|
-
circular?: boolean | undefined;
|
|
63
60
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
64
61
|
top?: number;
|
|
65
62
|
bottom?: number;
|
|
66
63
|
left?: number;
|
|
67
64
|
right?: number;
|
|
68
|
-
} | undefined;
|
|
65
|
+
} | null | undefined;
|
|
66
|
+
transparent?: boolean | undefined;
|
|
67
|
+
fullscreen?: boolean | undefined;
|
|
68
|
+
circular?: boolean | undefined;
|
|
69
69
|
hoverTheme?: boolean | undefined;
|
|
70
70
|
pressTheme?: boolean | undefined;
|
|
71
71
|
focusTheme?: boolean | undefined;
|
|
@@ -103,14 +103,14 @@ declare const useTabsContext: (scope?: string) => TabsContextValue;
|
|
|
103
103
|
declare const TabsFrame: import("@tamagui/web").TamaguiComponent<import("@tamagui/web").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
104
104
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
105
105
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
106
|
-
fullscreen?: boolean | undefined;
|
|
107
|
-
circular?: boolean | undefined;
|
|
108
106
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
109
107
|
top?: number;
|
|
110
108
|
bottom?: number;
|
|
111
109
|
left?: number;
|
|
112
110
|
right?: number;
|
|
113
|
-
} | undefined;
|
|
111
|
+
} | null | undefined;
|
|
112
|
+
fullscreen?: boolean | undefined;
|
|
113
|
+
circular?: boolean | undefined;
|
|
114
114
|
hoverTheme?: boolean | undefined;
|
|
115
115
|
pressTheme?: boolean | undefined;
|
|
116
116
|
focusTheme?: boolean | undefined;
|
|
@@ -147,14 +147,14 @@ type TabsProps = TabsFrameProps & TabsExtraProps;
|
|
|
147
147
|
export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
148
148
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
149
149
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
150
|
-
fullscreen?: boolean | undefined;
|
|
151
|
-
circular?: boolean | undefined;
|
|
152
150
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
153
151
|
top?: number;
|
|
154
152
|
bottom?: number;
|
|
155
153
|
left?: number;
|
|
156
154
|
right?: number;
|
|
157
|
-
} | undefined;
|
|
155
|
+
} | null | undefined;
|
|
156
|
+
fullscreen?: boolean | undefined;
|
|
157
|
+
circular?: boolean | undefined;
|
|
158
158
|
hoverTheme?: boolean | undefined;
|
|
159
159
|
pressTheme?: boolean | undefined;
|
|
160
160
|
focusTheme?: boolean | undefined;
|
|
@@ -164,14 +164,14 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
164
164
|
}>, keyof TabsExtraProps> & TabsExtraProps & React.RefAttributes<TamaguiElement>> & import("@tamagui/web").StaticComponentObject<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
165
165
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
166
166
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
167
|
-
fullscreen?: boolean | undefined;
|
|
168
|
-
circular?: boolean | undefined;
|
|
169
167
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
170
168
|
top?: number;
|
|
171
169
|
bottom?: number;
|
|
172
170
|
left?: number;
|
|
173
171
|
right?: number;
|
|
174
|
-
} | undefined;
|
|
172
|
+
} | null | undefined;
|
|
173
|
+
fullscreen?: boolean | undefined;
|
|
174
|
+
circular?: boolean | undefined;
|
|
175
175
|
hoverTheme?: boolean | undefined;
|
|
176
176
|
pressTheme?: boolean | undefined;
|
|
177
177
|
focusTheme?: boolean | undefined;
|
|
@@ -181,14 +181,14 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
181
181
|
}>, keyof TabsExtraProps> & TabsExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & TabsExtraProps, import("@tamagui/web").StackStyleBase, {
|
|
182
182
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
183
183
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
184
|
-
fullscreen?: boolean | undefined;
|
|
185
|
-
circular?: boolean | undefined;
|
|
186
184
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
187
185
|
top?: number;
|
|
188
186
|
bottom?: number;
|
|
189
187
|
left?: number;
|
|
190
188
|
right?: number;
|
|
191
|
-
} | undefined;
|
|
189
|
+
} | null | undefined;
|
|
190
|
+
fullscreen?: boolean | undefined;
|
|
191
|
+
circular?: boolean | undefined;
|
|
192
192
|
hoverTheme?: boolean | undefined;
|
|
193
193
|
pressTheme?: boolean | undefined;
|
|
194
194
|
focusTheme?: boolean | undefined;
|
|
@@ -199,14 +199,14 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
199
199
|
__tama: [Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
200
200
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
201
201
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
202
|
-
fullscreen?: boolean | undefined;
|
|
203
|
-
circular?: boolean | undefined;
|
|
204
202
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
205
203
|
top?: number;
|
|
206
204
|
bottom?: number;
|
|
207
205
|
left?: number;
|
|
208
206
|
right?: number;
|
|
209
|
-
} | undefined;
|
|
207
|
+
} | null | undefined;
|
|
208
|
+
fullscreen?: boolean | undefined;
|
|
209
|
+
circular?: boolean | undefined;
|
|
210
210
|
hoverTheme?: boolean | undefined;
|
|
211
211
|
pressTheme?: boolean | undefined;
|
|
212
212
|
focusTheme?: boolean | undefined;
|
|
@@ -216,14 +216,14 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
216
216
|
}>, keyof TabsExtraProps> & TabsExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & TabsExtraProps, import("@tamagui/web").StackStyleBase, {
|
|
217
217
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
218
218
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
219
|
-
fullscreen?: boolean | undefined;
|
|
220
|
-
circular?: boolean | undefined;
|
|
221
219
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
222
220
|
top?: number;
|
|
223
221
|
bottom?: number;
|
|
224
222
|
left?: number;
|
|
225
223
|
right?: number;
|
|
226
|
-
} | undefined;
|
|
224
|
+
} | null | undefined;
|
|
225
|
+
fullscreen?: boolean | undefined;
|
|
226
|
+
circular?: boolean | undefined;
|
|
227
227
|
hoverTheme?: boolean | undefined;
|
|
228
228
|
pressTheme?: boolean | undefined;
|
|
229
229
|
focusTheme?: boolean | undefined;
|
|
@@ -232,19 +232,17 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
232
232
|
unstyled?: boolean | undefined;
|
|
233
233
|
}, import("@tamagui/web").StaticConfigPublic];
|
|
234
234
|
} & {
|
|
235
|
-
List: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/web").StackStyleBase | "
|
|
236
|
-
unstyled?: boolean | undefined;
|
|
237
|
-
size?: any;
|
|
235
|
+
List: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/web").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
238
236
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
239
|
-
transparent?: boolean | undefined;
|
|
240
|
-
fullscreen?: boolean | undefined;
|
|
241
|
-
circular?: boolean | undefined;
|
|
242
237
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
243
238
|
top?: number;
|
|
244
239
|
bottom?: number;
|
|
245
240
|
left?: number;
|
|
246
241
|
right?: number;
|
|
247
|
-
} | undefined;
|
|
242
|
+
} | null | undefined;
|
|
243
|
+
transparent?: boolean | undefined;
|
|
244
|
+
fullscreen?: boolean | undefined;
|
|
245
|
+
circular?: boolean | undefined;
|
|
248
246
|
hoverTheme?: boolean | undefined;
|
|
249
247
|
pressTheme?: boolean | undefined;
|
|
250
248
|
focusTheme?: boolean | undefined;
|
|
@@ -254,19 +252,19 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
254
252
|
radiused?: boolean | undefined;
|
|
255
253
|
padded?: boolean | undefined;
|
|
256
254
|
chromeless?: boolean | "all" | undefined;
|
|
257
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
258
|
-
unstyled?: boolean | undefined;
|
|
259
255
|
size?: any;
|
|
256
|
+
unstyled?: boolean | undefined;
|
|
257
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
260
258
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
261
|
-
transparent?: boolean | undefined;
|
|
262
|
-
fullscreen?: boolean | undefined;
|
|
263
|
-
circular?: boolean | undefined;
|
|
264
259
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
265
260
|
top?: number;
|
|
266
261
|
bottom?: number;
|
|
267
262
|
left?: number;
|
|
268
263
|
right?: number;
|
|
269
|
-
} | undefined;
|
|
264
|
+
} | null | undefined;
|
|
265
|
+
transparent?: boolean | undefined;
|
|
266
|
+
fullscreen?: boolean | undefined;
|
|
267
|
+
circular?: boolean | undefined;
|
|
270
268
|
hoverTheme?: boolean | undefined;
|
|
271
269
|
pressTheme?: boolean | undefined;
|
|
272
270
|
focusTheme?: boolean | undefined;
|
|
@@ -276,19 +274,19 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
276
274
|
radiused?: boolean | undefined;
|
|
277
275
|
padded?: boolean | undefined;
|
|
278
276
|
chromeless?: boolean | "all" | undefined;
|
|
279
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
280
|
-
unstyled?: boolean | undefined;
|
|
281
277
|
size?: any;
|
|
278
|
+
unstyled?: boolean | undefined;
|
|
279
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
282
280
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
283
|
-
transparent?: boolean | undefined;
|
|
284
|
-
fullscreen?: boolean | undefined;
|
|
285
|
-
circular?: boolean | undefined;
|
|
286
281
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
287
282
|
top?: number;
|
|
288
283
|
bottom?: number;
|
|
289
284
|
left?: number;
|
|
290
285
|
right?: number;
|
|
291
|
-
} | undefined;
|
|
286
|
+
} | null | undefined;
|
|
287
|
+
transparent?: boolean | undefined;
|
|
288
|
+
fullscreen?: boolean | undefined;
|
|
289
|
+
circular?: boolean | undefined;
|
|
292
290
|
hoverTheme?: boolean | undefined;
|
|
293
291
|
pressTheme?: boolean | undefined;
|
|
294
292
|
focusTheme?: boolean | undefined;
|
|
@@ -298,6 +296,8 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
298
296
|
radiused?: boolean | undefined;
|
|
299
297
|
padded?: boolean | undefined;
|
|
300
298
|
chromeless?: boolean | "all" | undefined;
|
|
299
|
+
size?: any;
|
|
300
|
+
unstyled?: boolean | undefined;
|
|
301
301
|
}>> & import("@tamagui/group").GroupExtraProps & {
|
|
302
302
|
/**
|
|
303
303
|
* Whether to loop over after reaching the end or start of the items
|
|
@@ -311,17 +311,15 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
311
311
|
Trigger: import("@tamagui/web").TamaguiComponent<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
312
312
|
disabled?: boolean | undefined;
|
|
313
313
|
elevation?: number | SizeTokens | undefined;
|
|
314
|
-
unstyled?: boolean | undefined;
|
|
315
|
-
size?: SizeTokens | undefined;
|
|
316
|
-
transparent?: boolean | undefined;
|
|
317
|
-
fullscreen?: boolean | undefined;
|
|
318
|
-
circular?: boolean | undefined;
|
|
319
314
|
inset?: number | SizeTokens | {
|
|
320
315
|
top?: number;
|
|
321
316
|
bottom?: number;
|
|
322
317
|
left?: number;
|
|
323
318
|
right?: number;
|
|
324
|
-
} | undefined;
|
|
319
|
+
} | null | undefined;
|
|
320
|
+
transparent?: boolean | undefined;
|
|
321
|
+
fullscreen?: boolean | undefined;
|
|
322
|
+
circular?: boolean | undefined;
|
|
325
323
|
hoverTheme?: boolean | undefined;
|
|
326
324
|
pressTheme?: boolean | undefined;
|
|
327
325
|
focusTheme?: boolean | undefined;
|
|
@@ -331,21 +329,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
331
329
|
radiused?: boolean | undefined;
|
|
332
330
|
padded?: boolean | undefined;
|
|
333
331
|
chromeless?: boolean | "all" | undefined;
|
|
332
|
+
size?: SizeTokens | undefined;
|
|
333
|
+
unstyled?: boolean | undefined;
|
|
334
334
|
active?: boolean | undefined;
|
|
335
|
-
}>, "theme" | "debug" | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "themeInverse" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "href" | "hrefAttrs" | "elevationAndroid" | "rel" | "download" | "focusable" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "
|
|
335
|
+
}>, "theme" | "debug" | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "themeInverse" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "href" | "hrefAttrs" | "elevationAndroid" | "rel" | "download" | "focusable" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onHoverIn" | "onHoverOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onFocus" | "onBlur" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled" | `$${string}` | `$${number}` | import("@tamagui/web").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "active" | keyof import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
336
336
|
disabled?: boolean | undefined;
|
|
337
337
|
elevation?: number | SizeTokens | undefined;
|
|
338
|
-
unstyled?: boolean | undefined;
|
|
339
|
-
size?: SizeTokens | undefined;
|
|
340
|
-
transparent?: boolean | undefined;
|
|
341
|
-
fullscreen?: boolean | undefined;
|
|
342
|
-
circular?: boolean | undefined;
|
|
343
338
|
inset?: number | SizeTokens | {
|
|
344
339
|
top?: number;
|
|
345
340
|
bottom?: number;
|
|
346
341
|
left?: number;
|
|
347
342
|
right?: number;
|
|
348
|
-
} | undefined;
|
|
343
|
+
} | null | undefined;
|
|
344
|
+
transparent?: boolean | undefined;
|
|
345
|
+
fullscreen?: boolean | undefined;
|
|
346
|
+
circular?: boolean | undefined;
|
|
349
347
|
hoverTheme?: boolean | undefined;
|
|
350
348
|
pressTheme?: boolean | undefined;
|
|
351
349
|
focusTheme?: boolean | undefined;
|
|
@@ -355,21 +353,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
355
353
|
radiused?: boolean | undefined;
|
|
356
354
|
padded?: boolean | undefined;
|
|
357
355
|
chromeless?: boolean | "all" | undefined;
|
|
356
|
+
size?: SizeTokens | undefined;
|
|
357
|
+
unstyled?: boolean | undefined;
|
|
358
358
|
active?: boolean | undefined;
|
|
359
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> | "value" | "onInteraction" | "disableActiveTheme" | "__scopeTabs"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "
|
|
359
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> | "value" | "onInteraction" | "disableActiveTheme" | "__scopeTabs"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled" | "active"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
360
360
|
disabled?: boolean | undefined;
|
|
361
361
|
elevation?: number | SizeTokens | undefined;
|
|
362
|
-
unstyled?: boolean | undefined;
|
|
363
|
-
size?: SizeTokens | undefined;
|
|
364
|
-
transparent?: boolean | undefined;
|
|
365
|
-
fullscreen?: boolean | undefined;
|
|
366
|
-
circular?: boolean | undefined;
|
|
367
362
|
inset?: number | SizeTokens | {
|
|
368
363
|
top?: number;
|
|
369
364
|
bottom?: number;
|
|
370
365
|
left?: number;
|
|
371
366
|
right?: number;
|
|
372
|
-
} | undefined;
|
|
367
|
+
} | null | undefined;
|
|
368
|
+
transparent?: boolean | undefined;
|
|
369
|
+
fullscreen?: boolean | undefined;
|
|
370
|
+
circular?: boolean | undefined;
|
|
373
371
|
hoverTheme?: boolean | undefined;
|
|
374
372
|
pressTheme?: boolean | undefined;
|
|
375
373
|
focusTheme?: boolean | undefined;
|
|
@@ -379,21 +377,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
379
377
|
radiused?: boolean | undefined;
|
|
380
378
|
padded?: boolean | undefined;
|
|
381
379
|
chromeless?: boolean | "all" | undefined;
|
|
380
|
+
size?: SizeTokens | undefined;
|
|
381
|
+
unstyled?: boolean | undefined;
|
|
382
382
|
active?: boolean | undefined;
|
|
383
383
|
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
384
384
|
disabled?: boolean | undefined;
|
|
385
385
|
elevation?: number | SizeTokens | undefined;
|
|
386
|
-
unstyled?: boolean | undefined;
|
|
387
|
-
size?: SizeTokens | undefined;
|
|
388
|
-
transparent?: boolean | undefined;
|
|
389
|
-
fullscreen?: boolean | undefined;
|
|
390
|
-
circular?: boolean | undefined;
|
|
391
386
|
inset?: number | SizeTokens | {
|
|
392
387
|
top?: number;
|
|
393
388
|
bottom?: number;
|
|
394
389
|
left?: number;
|
|
395
390
|
right?: number;
|
|
396
|
-
} | undefined;
|
|
391
|
+
} | null | undefined;
|
|
392
|
+
transparent?: boolean | undefined;
|
|
393
|
+
fullscreen?: boolean | undefined;
|
|
394
|
+
circular?: boolean | undefined;
|
|
397
395
|
hoverTheme?: boolean | undefined;
|
|
398
396
|
pressTheme?: boolean | undefined;
|
|
399
397
|
focusTheme?: boolean | undefined;
|
|
@@ -403,21 +401,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
403
401
|
radiused?: boolean | undefined;
|
|
404
402
|
padded?: boolean | undefined;
|
|
405
403
|
chromeless?: boolean | "all" | undefined;
|
|
404
|
+
size?: SizeTokens | undefined;
|
|
405
|
+
unstyled?: boolean | undefined;
|
|
406
406
|
active?: boolean | undefined;
|
|
407
407
|
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
408
408
|
disabled?: boolean | undefined;
|
|
409
409
|
elevation?: number | SizeTokens | undefined;
|
|
410
|
-
unstyled?: boolean | undefined;
|
|
411
|
-
size?: SizeTokens | undefined;
|
|
412
|
-
transparent?: boolean | undefined;
|
|
413
|
-
fullscreen?: boolean | undefined;
|
|
414
|
-
circular?: boolean | undefined;
|
|
415
410
|
inset?: number | SizeTokens | {
|
|
416
411
|
top?: number;
|
|
417
412
|
bottom?: number;
|
|
418
413
|
left?: number;
|
|
419
414
|
right?: number;
|
|
420
|
-
} | undefined;
|
|
415
|
+
} | null | undefined;
|
|
416
|
+
transparent?: boolean | undefined;
|
|
417
|
+
fullscreen?: boolean | undefined;
|
|
418
|
+
circular?: boolean | undefined;
|
|
421
419
|
hoverTheme?: boolean | undefined;
|
|
422
420
|
pressTheme?: boolean | undefined;
|
|
423
421
|
focusTheme?: boolean | undefined;
|
|
@@ -427,6 +425,8 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
427
425
|
radiused?: boolean | undefined;
|
|
428
426
|
padded?: boolean | undefined;
|
|
429
427
|
chromeless?: boolean | "all" | undefined;
|
|
428
|
+
size?: SizeTokens | undefined;
|
|
429
|
+
unstyled?: boolean | undefined;
|
|
430
430
|
active?: boolean | undefined;
|
|
431
431
|
}>> & {
|
|
432
432
|
/** The value for the tabs state to be changed to after activation of the trigger */
|
|
@@ -437,20 +437,18 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
437
437
|
disableActiveTheme?: boolean;
|
|
438
438
|
} & {
|
|
439
439
|
__scopeTabs?: string;
|
|
440
|
-
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "
|
|
440
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled" | "active"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
441
441
|
disabled?: boolean | undefined;
|
|
442
442
|
elevation?: number | SizeTokens | undefined;
|
|
443
|
-
unstyled?: boolean | undefined;
|
|
444
|
-
size?: SizeTokens | undefined;
|
|
445
|
-
transparent?: boolean | undefined;
|
|
446
|
-
fullscreen?: boolean | undefined;
|
|
447
|
-
circular?: boolean | undefined;
|
|
448
443
|
inset?: number | SizeTokens | {
|
|
449
444
|
top?: number;
|
|
450
445
|
bottom?: number;
|
|
451
446
|
left?: number;
|
|
452
447
|
right?: number;
|
|
453
|
-
} | undefined;
|
|
448
|
+
} | null | undefined;
|
|
449
|
+
transparent?: boolean | undefined;
|
|
450
|
+
fullscreen?: boolean | undefined;
|
|
451
|
+
circular?: boolean | undefined;
|
|
454
452
|
hoverTheme?: boolean | undefined;
|
|
455
453
|
pressTheme?: boolean | undefined;
|
|
456
454
|
focusTheme?: boolean | undefined;
|
|
@@ -460,21 +458,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
460
458
|
radiused?: boolean | undefined;
|
|
461
459
|
padded?: boolean | undefined;
|
|
462
460
|
chromeless?: boolean | "all" | undefined;
|
|
461
|
+
size?: SizeTokens | undefined;
|
|
462
|
+
unstyled?: boolean | undefined;
|
|
463
463
|
active?: boolean | undefined;
|
|
464
464
|
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
465
465
|
disabled?: boolean | undefined;
|
|
466
466
|
elevation?: number | SizeTokens | undefined;
|
|
467
|
-
unstyled?: boolean | undefined;
|
|
468
|
-
size?: SizeTokens | undefined;
|
|
469
|
-
transparent?: boolean | undefined;
|
|
470
|
-
fullscreen?: boolean | undefined;
|
|
471
|
-
circular?: boolean | undefined;
|
|
472
467
|
inset?: number | SizeTokens | {
|
|
473
468
|
top?: number;
|
|
474
469
|
bottom?: number;
|
|
475
470
|
left?: number;
|
|
476
471
|
right?: number;
|
|
477
|
-
} | undefined;
|
|
472
|
+
} | null | undefined;
|
|
473
|
+
transparent?: boolean | undefined;
|
|
474
|
+
fullscreen?: boolean | undefined;
|
|
475
|
+
circular?: boolean | undefined;
|
|
478
476
|
hoverTheme?: boolean | undefined;
|
|
479
477
|
pressTheme?: boolean | undefined;
|
|
480
478
|
focusTheme?: boolean | undefined;
|
|
@@ -484,21 +482,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
484
482
|
radiused?: boolean | undefined;
|
|
485
483
|
padded?: boolean | undefined;
|
|
486
484
|
chromeless?: boolean | "all" | undefined;
|
|
485
|
+
size?: SizeTokens | undefined;
|
|
486
|
+
unstyled?: boolean | undefined;
|
|
487
487
|
active?: boolean | undefined;
|
|
488
488
|
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
489
489
|
disabled?: boolean | undefined;
|
|
490
490
|
elevation?: number | SizeTokens | undefined;
|
|
491
|
-
unstyled?: boolean | undefined;
|
|
492
|
-
size?: SizeTokens | undefined;
|
|
493
|
-
transparent?: boolean | undefined;
|
|
494
|
-
fullscreen?: boolean | undefined;
|
|
495
|
-
circular?: boolean | undefined;
|
|
496
491
|
inset?: number | SizeTokens | {
|
|
497
492
|
top?: number;
|
|
498
493
|
bottom?: number;
|
|
499
494
|
left?: number;
|
|
500
495
|
right?: number;
|
|
501
|
-
} | undefined;
|
|
496
|
+
} | null | undefined;
|
|
497
|
+
transparent?: boolean | undefined;
|
|
498
|
+
fullscreen?: boolean | undefined;
|
|
499
|
+
circular?: boolean | undefined;
|
|
502
500
|
hoverTheme?: boolean | undefined;
|
|
503
501
|
pressTheme?: boolean | undefined;
|
|
504
502
|
focusTheme?: boolean | undefined;
|
|
@@ -508,6 +506,8 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
508
506
|
radiused?: boolean | undefined;
|
|
509
507
|
padded?: boolean | undefined;
|
|
510
508
|
chromeless?: boolean | "all" | undefined;
|
|
509
|
+
size?: SizeTokens | undefined;
|
|
510
|
+
unstyled?: boolean | undefined;
|
|
511
511
|
active?: boolean | undefined;
|
|
512
512
|
}>> & {
|
|
513
513
|
/** The value for the tabs state to be changed to after activation of the trigger */
|
|
@@ -521,17 +521,15 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
521
521
|
}, import("@tamagui/web").StackStyleBase, {
|
|
522
522
|
disabled?: boolean | undefined;
|
|
523
523
|
elevation?: number | SizeTokens | undefined;
|
|
524
|
-
unstyled?: boolean | undefined;
|
|
525
|
-
size?: SizeTokens | undefined;
|
|
526
|
-
transparent?: boolean | undefined;
|
|
527
|
-
fullscreen?: boolean | undefined;
|
|
528
|
-
circular?: boolean | undefined;
|
|
529
524
|
inset?: number | SizeTokens | {
|
|
530
525
|
top?: number;
|
|
531
526
|
bottom?: number;
|
|
532
527
|
left?: number;
|
|
533
528
|
right?: number;
|
|
534
|
-
} | undefined;
|
|
529
|
+
} | null | undefined;
|
|
530
|
+
transparent?: boolean | undefined;
|
|
531
|
+
fullscreen?: boolean | undefined;
|
|
532
|
+
circular?: boolean | undefined;
|
|
535
533
|
hoverTheme?: boolean | undefined;
|
|
536
534
|
pressTheme?: boolean | undefined;
|
|
537
535
|
focusTheme?: boolean | undefined;
|
|
@@ -541,22 +539,22 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
541
539
|
radiused?: boolean | undefined;
|
|
542
540
|
padded?: boolean | undefined;
|
|
543
541
|
chromeless?: boolean | "all" | undefined;
|
|
542
|
+
size?: SizeTokens | undefined;
|
|
543
|
+
unstyled?: boolean | undefined;
|
|
544
544
|
active?: boolean | undefined;
|
|
545
545
|
}, import("@tamagui/web").StaticConfigPublic>;
|
|
546
546
|
Tab: import("@tamagui/web").TamaguiComponent<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
547
547
|
disabled?: boolean | undefined;
|
|
548
548
|
elevation?: number | SizeTokens | undefined;
|
|
549
|
-
unstyled?: boolean | undefined;
|
|
550
|
-
size?: SizeTokens | undefined;
|
|
551
|
-
transparent?: boolean | undefined;
|
|
552
|
-
fullscreen?: boolean | undefined;
|
|
553
|
-
circular?: boolean | undefined;
|
|
554
549
|
inset?: number | SizeTokens | {
|
|
555
550
|
top?: number;
|
|
556
551
|
bottom?: number;
|
|
557
552
|
left?: number;
|
|
558
553
|
right?: number;
|
|
559
|
-
} | undefined;
|
|
554
|
+
} | null | undefined;
|
|
555
|
+
transparent?: boolean | undefined;
|
|
556
|
+
fullscreen?: boolean | undefined;
|
|
557
|
+
circular?: boolean | undefined;
|
|
560
558
|
hoverTheme?: boolean | undefined;
|
|
561
559
|
pressTheme?: boolean | undefined;
|
|
562
560
|
focusTheme?: boolean | undefined;
|
|
@@ -566,21 +564,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
566
564
|
radiused?: boolean | undefined;
|
|
567
565
|
padded?: boolean | undefined;
|
|
568
566
|
chromeless?: boolean | "all" | undefined;
|
|
567
|
+
size?: SizeTokens | undefined;
|
|
568
|
+
unstyled?: boolean | undefined;
|
|
569
569
|
active?: boolean | undefined;
|
|
570
|
-
}>, "theme" | "debug" | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "themeInverse" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "href" | "hrefAttrs" | "elevationAndroid" | "rel" | "download" | "focusable" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "
|
|
570
|
+
}>, "theme" | "debug" | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "themeInverse" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "href" | "hrefAttrs" | "elevationAndroid" | "rel" | "download" | "focusable" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerUp" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onHoverIn" | "onHoverOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onFocus" | "onBlur" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled" | `$${string}` | `$${number}` | import("@tamagui/web").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "active" | keyof import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
571
571
|
disabled?: boolean | undefined;
|
|
572
572
|
elevation?: number | SizeTokens | undefined;
|
|
573
|
-
unstyled?: boolean | undefined;
|
|
574
|
-
size?: SizeTokens | undefined;
|
|
575
|
-
transparent?: boolean | undefined;
|
|
576
|
-
fullscreen?: boolean | undefined;
|
|
577
|
-
circular?: boolean | undefined;
|
|
578
573
|
inset?: number | SizeTokens | {
|
|
579
574
|
top?: number;
|
|
580
575
|
bottom?: number;
|
|
581
576
|
left?: number;
|
|
582
577
|
right?: number;
|
|
583
|
-
} | undefined;
|
|
578
|
+
} | null | undefined;
|
|
579
|
+
transparent?: boolean | undefined;
|
|
580
|
+
fullscreen?: boolean | undefined;
|
|
581
|
+
circular?: boolean | undefined;
|
|
584
582
|
hoverTheme?: boolean | undefined;
|
|
585
583
|
pressTheme?: boolean | undefined;
|
|
586
584
|
focusTheme?: boolean | undefined;
|
|
@@ -590,21 +588,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
590
588
|
radiused?: boolean | undefined;
|
|
591
589
|
padded?: boolean | undefined;
|
|
592
590
|
chromeless?: boolean | "all" | undefined;
|
|
591
|
+
size?: SizeTokens | undefined;
|
|
592
|
+
unstyled?: boolean | undefined;
|
|
593
593
|
active?: boolean | undefined;
|
|
594
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> | "value" | "onInteraction" | "disableActiveTheme" | "__scopeTabs"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "
|
|
594
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> | "value" | "onInteraction" | "disableActiveTheme" | "__scopeTabs"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled" | "active"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
595
595
|
disabled?: boolean | undefined;
|
|
596
596
|
elevation?: number | SizeTokens | undefined;
|
|
597
|
-
unstyled?: boolean | undefined;
|
|
598
|
-
size?: SizeTokens | undefined;
|
|
599
|
-
transparent?: boolean | undefined;
|
|
600
|
-
fullscreen?: boolean | undefined;
|
|
601
|
-
circular?: boolean | undefined;
|
|
602
597
|
inset?: number | SizeTokens | {
|
|
603
598
|
top?: number;
|
|
604
599
|
bottom?: number;
|
|
605
600
|
left?: number;
|
|
606
601
|
right?: number;
|
|
607
|
-
} | undefined;
|
|
602
|
+
} | null | undefined;
|
|
603
|
+
transparent?: boolean | undefined;
|
|
604
|
+
fullscreen?: boolean | undefined;
|
|
605
|
+
circular?: boolean | undefined;
|
|
608
606
|
hoverTheme?: boolean | undefined;
|
|
609
607
|
pressTheme?: boolean | undefined;
|
|
610
608
|
focusTheme?: boolean | undefined;
|
|
@@ -614,21 +612,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
614
612
|
radiused?: boolean | undefined;
|
|
615
613
|
padded?: boolean | undefined;
|
|
616
614
|
chromeless?: boolean | "all" | undefined;
|
|
615
|
+
size?: SizeTokens | undefined;
|
|
616
|
+
unstyled?: boolean | undefined;
|
|
617
617
|
active?: boolean | undefined;
|
|
618
618
|
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
619
619
|
disabled?: boolean | undefined;
|
|
620
620
|
elevation?: number | SizeTokens | undefined;
|
|
621
|
-
unstyled?: boolean | undefined;
|
|
622
|
-
size?: SizeTokens | undefined;
|
|
623
|
-
transparent?: boolean | undefined;
|
|
624
|
-
fullscreen?: boolean | undefined;
|
|
625
|
-
circular?: boolean | undefined;
|
|
626
621
|
inset?: number | SizeTokens | {
|
|
627
622
|
top?: number;
|
|
628
623
|
bottom?: number;
|
|
629
624
|
left?: number;
|
|
630
625
|
right?: number;
|
|
631
|
-
} | undefined;
|
|
626
|
+
} | null | undefined;
|
|
627
|
+
transparent?: boolean | undefined;
|
|
628
|
+
fullscreen?: boolean | undefined;
|
|
629
|
+
circular?: boolean | undefined;
|
|
632
630
|
hoverTheme?: boolean | undefined;
|
|
633
631
|
pressTheme?: boolean | undefined;
|
|
634
632
|
focusTheme?: boolean | undefined;
|
|
@@ -638,21 +636,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
638
636
|
radiused?: boolean | undefined;
|
|
639
637
|
padded?: boolean | undefined;
|
|
640
638
|
chromeless?: boolean | "all" | undefined;
|
|
639
|
+
size?: SizeTokens | undefined;
|
|
640
|
+
unstyled?: boolean | undefined;
|
|
641
641
|
active?: boolean | undefined;
|
|
642
642
|
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
643
643
|
disabled?: boolean | undefined;
|
|
644
644
|
elevation?: number | SizeTokens | undefined;
|
|
645
|
-
unstyled?: boolean | undefined;
|
|
646
|
-
size?: SizeTokens | undefined;
|
|
647
|
-
transparent?: boolean | undefined;
|
|
648
|
-
fullscreen?: boolean | undefined;
|
|
649
|
-
circular?: boolean | undefined;
|
|
650
645
|
inset?: number | SizeTokens | {
|
|
651
646
|
top?: number;
|
|
652
647
|
bottom?: number;
|
|
653
648
|
left?: number;
|
|
654
649
|
right?: number;
|
|
655
|
-
} | undefined;
|
|
650
|
+
} | null | undefined;
|
|
651
|
+
transparent?: boolean | undefined;
|
|
652
|
+
fullscreen?: boolean | undefined;
|
|
653
|
+
circular?: boolean | undefined;
|
|
656
654
|
hoverTheme?: boolean | undefined;
|
|
657
655
|
pressTheme?: boolean | undefined;
|
|
658
656
|
focusTheme?: boolean | undefined;
|
|
@@ -662,6 +660,8 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
662
660
|
radiused?: boolean | undefined;
|
|
663
661
|
padded?: boolean | undefined;
|
|
664
662
|
chromeless?: boolean | "all" | undefined;
|
|
663
|
+
size?: SizeTokens | undefined;
|
|
664
|
+
unstyled?: boolean | undefined;
|
|
665
665
|
active?: boolean | undefined;
|
|
666
666
|
}>> & {
|
|
667
667
|
/** The value for the tabs state to be changed to after activation of the trigger */
|
|
@@ -672,20 +672,18 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
672
672
|
disableActiveTheme?: boolean;
|
|
673
673
|
} & {
|
|
674
674
|
__scopeTabs?: string;
|
|
675
|
-
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "
|
|
675
|
+
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof import("@tamagui/web").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled" | "active"> & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
676
676
|
disabled?: boolean | undefined;
|
|
677
677
|
elevation?: number | SizeTokens | undefined;
|
|
678
|
-
unstyled?: boolean | undefined;
|
|
679
|
-
size?: SizeTokens | undefined;
|
|
680
|
-
transparent?: boolean | undefined;
|
|
681
|
-
fullscreen?: boolean | undefined;
|
|
682
|
-
circular?: boolean | undefined;
|
|
683
678
|
inset?: number | SizeTokens | {
|
|
684
679
|
top?: number;
|
|
685
680
|
bottom?: number;
|
|
686
681
|
left?: number;
|
|
687
682
|
right?: number;
|
|
688
|
-
} | undefined;
|
|
683
|
+
} | null | undefined;
|
|
684
|
+
transparent?: boolean | undefined;
|
|
685
|
+
fullscreen?: boolean | undefined;
|
|
686
|
+
circular?: boolean | undefined;
|
|
689
687
|
hoverTheme?: boolean | undefined;
|
|
690
688
|
pressTheme?: boolean | undefined;
|
|
691
689
|
focusTheme?: boolean | undefined;
|
|
@@ -695,21 +693,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
695
693
|
radiused?: boolean | undefined;
|
|
696
694
|
padded?: boolean | undefined;
|
|
697
695
|
chromeless?: boolean | "all" | undefined;
|
|
696
|
+
size?: SizeTokens | undefined;
|
|
697
|
+
unstyled?: boolean | undefined;
|
|
698
698
|
active?: boolean | undefined;
|
|
699
699
|
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase> & {
|
|
700
700
|
disabled?: boolean | undefined;
|
|
701
701
|
elevation?: number | SizeTokens | undefined;
|
|
702
|
-
unstyled?: boolean | undefined;
|
|
703
|
-
size?: SizeTokens | undefined;
|
|
704
|
-
transparent?: boolean | undefined;
|
|
705
|
-
fullscreen?: boolean | undefined;
|
|
706
|
-
circular?: boolean | undefined;
|
|
707
702
|
inset?: number | SizeTokens | {
|
|
708
703
|
top?: number;
|
|
709
704
|
bottom?: number;
|
|
710
705
|
left?: number;
|
|
711
706
|
right?: number;
|
|
712
|
-
} | undefined;
|
|
707
|
+
} | null | undefined;
|
|
708
|
+
transparent?: boolean | undefined;
|
|
709
|
+
fullscreen?: boolean | undefined;
|
|
710
|
+
circular?: boolean | undefined;
|
|
713
711
|
hoverTheme?: boolean | undefined;
|
|
714
712
|
pressTheme?: boolean | undefined;
|
|
715
713
|
focusTheme?: boolean | undefined;
|
|
@@ -719,21 +717,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
719
717
|
radiused?: boolean | undefined;
|
|
720
718
|
padded?: boolean | undefined;
|
|
721
719
|
chromeless?: boolean | "all" | undefined;
|
|
720
|
+
size?: SizeTokens | undefined;
|
|
721
|
+
unstyled?: boolean | undefined;
|
|
722
722
|
active?: boolean | undefined;
|
|
723
723
|
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<import("@tamagui/web").StackStyleBase, {
|
|
724
724
|
disabled?: boolean | undefined;
|
|
725
725
|
elevation?: number | SizeTokens | undefined;
|
|
726
|
-
unstyled?: boolean | undefined;
|
|
727
|
-
size?: SizeTokens | undefined;
|
|
728
|
-
transparent?: boolean | undefined;
|
|
729
|
-
fullscreen?: boolean | undefined;
|
|
730
|
-
circular?: boolean | undefined;
|
|
731
726
|
inset?: number | SizeTokens | {
|
|
732
727
|
top?: number;
|
|
733
728
|
bottom?: number;
|
|
734
729
|
left?: number;
|
|
735
730
|
right?: number;
|
|
736
|
-
} | undefined;
|
|
731
|
+
} | null | undefined;
|
|
732
|
+
transparent?: boolean | undefined;
|
|
733
|
+
fullscreen?: boolean | undefined;
|
|
734
|
+
circular?: boolean | undefined;
|
|
737
735
|
hoverTheme?: boolean | undefined;
|
|
738
736
|
pressTheme?: boolean | undefined;
|
|
739
737
|
focusTheme?: boolean | undefined;
|
|
@@ -743,6 +741,8 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
743
741
|
radiused?: boolean | undefined;
|
|
744
742
|
padded?: boolean | undefined;
|
|
745
743
|
chromeless?: boolean | "all" | undefined;
|
|
744
|
+
size?: SizeTokens | undefined;
|
|
745
|
+
unstyled?: boolean | undefined;
|
|
746
746
|
active?: boolean | undefined;
|
|
747
747
|
}>> & {
|
|
748
748
|
/** The value for the tabs state to be changed to after activation of the trigger */
|
|
@@ -756,17 +756,15 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
756
756
|
}, import("@tamagui/web").StackStyleBase, {
|
|
757
757
|
disabled?: boolean | undefined;
|
|
758
758
|
elevation?: number | SizeTokens | undefined;
|
|
759
|
-
unstyled?: boolean | undefined;
|
|
760
|
-
size?: SizeTokens | undefined;
|
|
761
|
-
transparent?: boolean | undefined;
|
|
762
|
-
fullscreen?: boolean | undefined;
|
|
763
|
-
circular?: boolean | undefined;
|
|
764
759
|
inset?: number | SizeTokens | {
|
|
765
760
|
top?: number;
|
|
766
761
|
bottom?: number;
|
|
767
762
|
left?: number;
|
|
768
763
|
right?: number;
|
|
769
|
-
} | undefined;
|
|
764
|
+
} | null | undefined;
|
|
765
|
+
transparent?: boolean | undefined;
|
|
766
|
+
fullscreen?: boolean | undefined;
|
|
767
|
+
circular?: boolean | undefined;
|
|
770
768
|
hoverTheme?: boolean | undefined;
|
|
771
769
|
pressTheme?: boolean | undefined;
|
|
772
770
|
focusTheme?: boolean | undefined;
|
|
@@ -776,19 +774,21 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
776
774
|
radiused?: boolean | undefined;
|
|
777
775
|
padded?: boolean | undefined;
|
|
778
776
|
chromeless?: boolean | "all" | undefined;
|
|
777
|
+
size?: SizeTokens | undefined;
|
|
778
|
+
unstyled?: boolean | undefined;
|
|
779
779
|
active?: boolean | undefined;
|
|
780
780
|
}, import("@tamagui/web").StaticConfigPublic>;
|
|
781
781
|
Content: import("@tamagui/web").TamaguiComponent<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
782
782
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
783
|
-
transparent?: boolean | undefined;
|
|
784
|
-
fullscreen?: boolean | undefined;
|
|
785
|
-
circular?: boolean | undefined;
|
|
786
783
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
787
784
|
top?: number;
|
|
788
785
|
bottom?: number;
|
|
789
786
|
left?: number;
|
|
790
787
|
right?: number;
|
|
791
|
-
} | undefined;
|
|
788
|
+
} | null | undefined;
|
|
789
|
+
transparent?: boolean | undefined;
|
|
790
|
+
fullscreen?: boolean | undefined;
|
|
791
|
+
circular?: boolean | undefined;
|
|
792
792
|
hoverTheme?: boolean | undefined;
|
|
793
793
|
pressTheme?: boolean | undefined;
|
|
794
794
|
focusTheme?: boolean | undefined;
|
|
@@ -800,15 +800,15 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
800
800
|
chromeless?: boolean | "all" | undefined;
|
|
801
801
|
}>, keyof TabsContentExtraProps> & TabsContentExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & TabsContentExtraProps, import("@tamagui/web").StackStyleBase, {
|
|
802
802
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
803
|
-
transparent?: boolean | undefined;
|
|
804
|
-
fullscreen?: boolean | undefined;
|
|
805
|
-
circular?: boolean | undefined;
|
|
806
803
|
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
807
804
|
top?: number;
|
|
808
805
|
bottom?: number;
|
|
809
806
|
left?: number;
|
|
810
807
|
right?: number;
|
|
811
|
-
} | undefined;
|
|
808
|
+
} | null | undefined;
|
|
809
|
+
transparent?: boolean | undefined;
|
|
810
|
+
fullscreen?: boolean | undefined;
|
|
811
|
+
circular?: boolean | undefined;
|
|
812
812
|
hoverTheme?: boolean | undefined;
|
|
813
813
|
pressTheme?: boolean | undefined;
|
|
814
814
|
focusTheme?: boolean | undefined;
|
package/types/Tabs.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../src/Tabs.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAGhD,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AAIxD,OAAO,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AAExE,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AAUnD,KAAK,kBAAkB,GAAG,UAAU,CAAA;AAEpC,KAAK,aAAa,GAAG,kBAAkB,GAAG;IACxC;;;OAGG;IACH,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAA;AAsCD,QAAA,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;6CAuDpB,CAAA;AAEF;;GAEG;AACH,KAAK,iBAAiB,GAAG,eAAe,CAAA;AACxC,KAAK,SAAS,GAAG,eAAe,CAAA;AAChC,KAAK,eAAe,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,CAAA;AAEnD,KAAK,qBAAqB,GAAG,QAAQ,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAE9D;;GAEG;AACH,KAAK,gBAAgB,GAAG,qBAAqB,GAAG;IAC9C,oFAAoF;IACpF,KAAK,EAAE,MAAM,CAAA;IAEb,qEAAqE;IACrE,aAAa,CAAC,EAAE,CAAC,IAAI,EAAE,eAAe,EAAE,MAAM,EAAE,SAAS,GAAG,IAAI,KAAK,IAAI,CAAA;IAEzE,2DAA2D;IAC3D,kBAAkB,CAAC,EAAE,OAAO,CAAA;CAC7B,CAAA;AAED,KAAK,YAAY,GAAG,gBAAgB,CAAA;AAiJpC,QAAA,MAAM,gBAAgB;gCA/KX,eAEA
|
|
1
|
+
{"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../src/Tabs.tsx"],"names":[],"mappings":"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"}
|