@tamagui/tabs 1.125.2 → 1.125.4
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/dist/cjs/Tabs.cjs +3 -4
- package/dist/cjs/Tabs.js +43 -46
- package/dist/cjs/Tabs.js.map +2 -2
- package/dist/cjs/Tabs.native.js +2 -3
- package/dist/cjs/Tabs.native.js.map +1 -1
- package/dist/esm/Tabs.js +43 -46
- package/dist/esm/Tabs.js.map +2 -2
- package/dist/esm/Tabs.mjs +3 -4
- package/dist/esm/Tabs.mjs.map +1 -1
- package/dist/esm/Tabs.native.js +2 -3
- package/dist/esm/Tabs.native.js.map +1 -1
- package/dist/jsx/Tabs.js +43 -46
- package/dist/jsx/Tabs.js.map +2 -2
- package/dist/jsx/Tabs.mjs +3 -4
- package/dist/jsx/Tabs.mjs.map +1 -1
- package/dist/jsx/Tabs.native.js +2 -3
- package/dist/jsx/Tabs.native.js.map +1 -1
- package/package.json +13 -13
- package/src/Tabs.tsx +71 -54
- package/types/Tabs.d.ts +75 -74
- package/types/Tabs.d.ts.map +1 -1
package/types/Tabs.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { RNTamaguiViewNonStyleProps } from '@tamagui/core/types';
|
|
1
2
|
import type { GroupProps } from '@tamagui/group';
|
|
2
3
|
import { RovingFocusGroup } from '@tamagui/roving-focus';
|
|
3
|
-
import type { GetProps, SizeTokens, TamaguiElement } from '@tamagui/web';
|
|
4
|
+
import type { GetProps, SizeTokens, StackStyleBase, StaticConfigPublic, TamaDefer, TamaguiComponent, TamaguiElement } from '@tamagui/web';
|
|
4
5
|
import * as React from 'react';
|
|
5
6
|
import type { LayoutRectangle } from 'react-native';
|
|
6
7
|
type TabsListFrameProps = GroupProps;
|
|
@@ -11,7 +12,7 @@ type TabsListProps = TabsListFrameProps & {
|
|
|
11
12
|
*/
|
|
12
13
|
loop?: boolean;
|
|
13
14
|
};
|
|
14
|
-
declare const TabsTriggerFrame:
|
|
15
|
+
declare const TabsTriggerFrame: TamaguiComponent<TamaDefer, TamaguiElement, RNTamaguiViewNonStyleProps, StackStyleBase, {
|
|
15
16
|
disabled?: boolean | undefined;
|
|
16
17
|
elevation?: number | SizeTokens | undefined;
|
|
17
18
|
inset?: number | SizeTokens | {
|
|
@@ -35,7 +36,7 @@ declare const TabsTriggerFrame: import("@tamagui/web").TamaguiComponent<import("
|
|
|
35
36
|
size?: SizeTokens | undefined;
|
|
36
37
|
unstyled?: boolean | undefined;
|
|
37
38
|
active?: boolean | undefined;
|
|
38
|
-
},
|
|
39
|
+
}, StaticConfigPublic>;
|
|
39
40
|
/**
|
|
40
41
|
* @deprecated Use `TabLayout` instead
|
|
41
42
|
*/
|
|
@@ -55,9 +56,9 @@ type TabsTriggerProps = TabsTriggerFrameProps & {
|
|
|
55
56
|
disableActiveTheme?: boolean;
|
|
56
57
|
};
|
|
57
58
|
type TabsTabProps = TabsTriggerProps;
|
|
58
|
-
declare const TabsContentFrame:
|
|
59
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
60
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
59
|
+
declare const TabsContentFrame: TamaguiComponent<TamaDefer, TamaguiElement, RNTamaguiViewNonStyleProps, StackStyleBase, {
|
|
60
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
61
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
61
62
|
top?: number;
|
|
62
63
|
bottom?: number;
|
|
63
64
|
left?: number;
|
|
@@ -75,7 +76,7 @@ declare const TabsContentFrame: import("@tamagui/web").TamaguiComponent<import("
|
|
|
75
76
|
radiused?: boolean | undefined;
|
|
76
77
|
padded?: boolean | undefined;
|
|
77
78
|
chromeless?: boolean | "all" | undefined;
|
|
78
|
-
},
|
|
79
|
+
}, StaticConfigPublic>;
|
|
79
80
|
type TabsContentFrameProps = GetProps<typeof TabsContentFrame>;
|
|
80
81
|
type TabsContentExtraProps = {
|
|
81
82
|
/** Will show the content when the value matches the state of Tabs root */
|
|
@@ -100,10 +101,10 @@ type TabsContextValue = {
|
|
|
100
101
|
triggersCount: number;
|
|
101
102
|
};
|
|
102
103
|
declare const useTabsContext: (scope?: string) => TabsContextValue;
|
|
103
|
-
declare const TabsFrame:
|
|
104
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
105
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
106
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
104
|
+
declare const TabsFrame: TamaguiComponent<TamaDefer, TamaguiElement, RNTamaguiViewNonStyleProps, StackStyleBase, {
|
|
105
|
+
size?: import("@tamagui/core/types").SizeTokens | undefined;
|
|
106
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
107
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
107
108
|
top?: number;
|
|
108
109
|
bottom?: number;
|
|
109
110
|
left?: number;
|
|
@@ -117,16 +118,16 @@ declare const TabsFrame: import("@tamagui/web").TamaguiComponent<import("@tamagu
|
|
|
117
118
|
elevate?: boolean | undefined;
|
|
118
119
|
bordered?: number | boolean | undefined;
|
|
119
120
|
unstyled?: boolean | undefined;
|
|
120
|
-
},
|
|
121
|
+
}, StaticConfigPublic>;
|
|
121
122
|
type RovingFocusGroupProps = React.ComponentPropsWithoutRef<typeof RovingFocusGroup>;
|
|
122
123
|
type TabsFrameProps = GetProps<typeof TabsFrame>;
|
|
123
|
-
type TabsExtraProps = {
|
|
124
|
+
type TabsExtraProps<Tab = string> = {
|
|
124
125
|
/** The value for the selected tab, if controlled */
|
|
125
126
|
value?: string;
|
|
126
127
|
/** The value of the tab to select by default, if uncontrolled */
|
|
127
|
-
defaultValue?:
|
|
128
|
+
defaultValue?: Tab;
|
|
128
129
|
/** A function called when a new tab is selected */
|
|
129
|
-
onValueChange?: (value:
|
|
130
|
+
onValueChange?: (value: Tab) => void;
|
|
130
131
|
/**
|
|
131
132
|
* The orientation the tabs are layed out.
|
|
132
133
|
* Mainly so arrow navigation is done accordingly (left & right vs. up & down)
|
|
@@ -143,11 +144,11 @@ type TabsExtraProps = {
|
|
|
143
144
|
* */
|
|
144
145
|
activationMode?: 'automatic' | 'manual';
|
|
145
146
|
};
|
|
146
|
-
type TabsProps = TabsFrameProps & TabsExtraProps
|
|
147
|
-
export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui/web").GetFinalProps<
|
|
148
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
149
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
150
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
147
|
+
type TabsProps<Tab = string> = TabsFrameProps & TabsExtraProps<Tab>;
|
|
148
|
+
export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui/web").GetFinalProps<RNTamaguiViewNonStyleProps, StackStyleBase, {
|
|
149
|
+
size?: import("@tamagui/core/types").SizeTokens | undefined;
|
|
150
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
151
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
151
152
|
top?: number;
|
|
152
153
|
bottom?: number;
|
|
153
154
|
left?: number;
|
|
@@ -161,10 +162,10 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
161
162
|
elevate?: boolean | undefined;
|
|
162
163
|
bordered?: number | boolean | undefined;
|
|
163
164
|
unstyled?: boolean | undefined;
|
|
164
|
-
}>, keyof TabsExtraProps
|
|
165
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
166
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
167
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
165
|
+
}>, keyof TabsExtraProps<string>> & TabsExtraProps<string> & React.RefAttributes<TamaguiElement>> & import("@tamagui/web").StaticComponentObject<Omit<import("@tamagui/web").GetFinalProps<RNTamaguiViewNonStyleProps, StackStyleBase, {
|
|
166
|
+
size?: import("@tamagui/core/types").SizeTokens | undefined;
|
|
167
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
168
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
168
169
|
top?: number;
|
|
169
170
|
bottom?: number;
|
|
170
171
|
left?: number;
|
|
@@ -178,10 +179,10 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
178
179
|
elevate?: boolean | undefined;
|
|
179
180
|
bordered?: number | boolean | undefined;
|
|
180
181
|
unstyled?: boolean | undefined;
|
|
181
|
-
}>, keyof TabsExtraProps
|
|
182
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
183
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
184
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
182
|
+
}>, keyof TabsExtraProps<string>> & TabsExtraProps<string>, TamaguiElement, RNTamaguiViewNonStyleProps & TabsExtraProps<string>, StackStyleBase, {
|
|
183
|
+
size?: import("@tamagui/core/types").SizeTokens | undefined;
|
|
184
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
185
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
185
186
|
top?: number;
|
|
186
187
|
bottom?: number;
|
|
187
188
|
left?: number;
|
|
@@ -195,11 +196,11 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
195
196
|
elevate?: boolean | undefined;
|
|
196
197
|
bordered?: number | boolean | undefined;
|
|
197
198
|
unstyled?: boolean | undefined;
|
|
198
|
-
},
|
|
199
|
-
__tama: [Omit<import("@tamagui/web").GetFinalProps<
|
|
200
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
201
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
202
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
199
|
+
}, StaticConfigPublic> & Omit<StaticConfigPublic, "staticConfig" | "extractable" | "styleable"> & {
|
|
200
|
+
__tama: [Omit<import("@tamagui/web").GetFinalProps<RNTamaguiViewNonStyleProps, StackStyleBase, {
|
|
201
|
+
size?: import("@tamagui/core/types").SizeTokens | undefined;
|
|
202
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
203
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
203
204
|
top?: number;
|
|
204
205
|
bottom?: number;
|
|
205
206
|
left?: number;
|
|
@@ -213,10 +214,10 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
213
214
|
elevate?: boolean | undefined;
|
|
214
215
|
bordered?: number | boolean | undefined;
|
|
215
216
|
unstyled?: boolean | undefined;
|
|
216
|
-
}>, keyof TabsExtraProps
|
|
217
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
218
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
219
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
217
|
+
}>, keyof TabsExtraProps<string>> & TabsExtraProps<string>, TamaguiElement, RNTamaguiViewNonStyleProps & TabsExtraProps<string>, StackStyleBase, {
|
|
218
|
+
size?: import("@tamagui/core/types").SizeTokens | undefined;
|
|
219
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
220
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
220
221
|
top?: number;
|
|
221
222
|
bottom?: number;
|
|
222
223
|
left?: number;
|
|
@@ -230,11 +231,11 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
230
231
|
elevate?: boolean | undefined;
|
|
231
232
|
bordered?: number | boolean | undefined;
|
|
232
233
|
unstyled?: boolean | undefined;
|
|
233
|
-
},
|
|
234
|
+
}, StaticConfigPublic];
|
|
234
235
|
} & {
|
|
235
|
-
List: React.ForwardRefExoticComponent<Omit<
|
|
236
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
237
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
236
|
+
List: React.ForwardRefExoticComponent<Omit<RNTamaguiViewNonStyleProps, "elevation" | keyof StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled"> & import("@tamagui/web").WithThemeValues<StackStyleBase> & {
|
|
237
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
238
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
238
239
|
top?: number;
|
|
239
240
|
bottom?: number;
|
|
240
241
|
left?: number;
|
|
@@ -254,9 +255,9 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
254
255
|
chromeless?: boolean | "all" | undefined;
|
|
255
256
|
size?: any;
|
|
256
257
|
unstyled?: boolean | undefined;
|
|
257
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
258
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
259
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
258
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<StackStyleBase> & {
|
|
259
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
260
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
260
261
|
top?: number;
|
|
261
262
|
bottom?: number;
|
|
262
263
|
left?: number;
|
|
@@ -276,9 +277,9 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
276
277
|
chromeless?: boolean | "all" | undefined;
|
|
277
278
|
size?: any;
|
|
278
279
|
unstyled?: boolean | undefined;
|
|
279
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
280
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
281
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
280
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<StackStyleBase, {
|
|
281
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
282
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
282
283
|
top?: number;
|
|
283
284
|
bottom?: number;
|
|
284
285
|
left?: number;
|
|
@@ -308,7 +309,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
308
309
|
/**
|
|
309
310
|
* @deprecated Use Tabs.Tab instead
|
|
310
311
|
*/
|
|
311
|
-
Trigger:
|
|
312
|
+
Trigger: TamaguiComponent<Omit<import("@tamagui/web").GetFinalProps<RNTamaguiViewNonStyleProps, StackStyleBase, {
|
|
312
313
|
disabled?: boolean | undefined;
|
|
313
314
|
elevation?: number | SizeTokens | undefined;
|
|
314
315
|
inset?: number | SizeTokens | {
|
|
@@ -332,7 +333,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
332
333
|
size?: SizeTokens | undefined;
|
|
333
334
|
unstyled?: boolean | undefined;
|
|
334
335
|
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" | "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
|
|
336
|
+
}>, "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 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<StackStyleBase> & {
|
|
336
337
|
disabled?: boolean | undefined;
|
|
337
338
|
elevation?: number | SizeTokens | undefined;
|
|
338
339
|
inset?: number | SizeTokens | {
|
|
@@ -356,7 +357,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
356
357
|
size?: SizeTokens | undefined;
|
|
357
358
|
unstyled?: boolean | undefined;
|
|
358
359
|
active?: boolean | undefined;
|
|
359
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
360
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>>> | "value" | "onInteraction" | "disableActiveTheme" | "__scopeTabs"> & Omit<RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled" | "active"> & import("@tamagui/web").WithThemeValues<StackStyleBase> & {
|
|
360
361
|
disabled?: boolean | undefined;
|
|
361
362
|
elevation?: number | SizeTokens | undefined;
|
|
362
363
|
inset?: number | SizeTokens | {
|
|
@@ -380,7 +381,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
380
381
|
size?: SizeTokens | undefined;
|
|
381
382
|
unstyled?: boolean | undefined;
|
|
382
383
|
active?: boolean | undefined;
|
|
383
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
384
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<StackStyleBase> & {
|
|
384
385
|
disabled?: boolean | undefined;
|
|
385
386
|
elevation?: number | SizeTokens | undefined;
|
|
386
387
|
inset?: number | SizeTokens | {
|
|
@@ -404,7 +405,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
404
405
|
size?: SizeTokens | undefined;
|
|
405
406
|
unstyled?: boolean | undefined;
|
|
406
407
|
active?: boolean | undefined;
|
|
407
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
408
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<StackStyleBase, {
|
|
408
409
|
disabled?: boolean | undefined;
|
|
409
410
|
elevation?: number | SizeTokens | undefined;
|
|
410
411
|
inset?: number | SizeTokens | {
|
|
@@ -437,7 +438,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
437
438
|
disableActiveTheme?: boolean;
|
|
438
439
|
} & {
|
|
439
440
|
__scopeTabs?: string;
|
|
440
|
-
}, TamaguiElement,
|
|
441
|
+
}, TamaguiElement, RNTamaguiViewNonStyleProps & Omit<RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled" | "active"> & import("@tamagui/web").WithThemeValues<StackStyleBase> & {
|
|
441
442
|
disabled?: boolean | undefined;
|
|
442
443
|
elevation?: number | SizeTokens | undefined;
|
|
443
444
|
inset?: number | SizeTokens | {
|
|
@@ -461,7 +462,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
461
462
|
size?: SizeTokens | undefined;
|
|
462
463
|
unstyled?: boolean | undefined;
|
|
463
464
|
active?: boolean | undefined;
|
|
464
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
465
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<StackStyleBase> & {
|
|
465
466
|
disabled?: boolean | undefined;
|
|
466
467
|
elevation?: number | SizeTokens | undefined;
|
|
467
468
|
inset?: number | SizeTokens | {
|
|
@@ -485,7 +486,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
485
486
|
size?: SizeTokens | undefined;
|
|
486
487
|
unstyled?: boolean | undefined;
|
|
487
488
|
active?: boolean | undefined;
|
|
488
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
489
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<StackStyleBase, {
|
|
489
490
|
disabled?: boolean | undefined;
|
|
490
491
|
elevation?: number | SizeTokens | undefined;
|
|
491
492
|
inset?: number | SizeTokens | {
|
|
@@ -518,7 +519,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
518
519
|
disableActiveTheme?: boolean;
|
|
519
520
|
} & {
|
|
520
521
|
__scopeTabs?: string;
|
|
521
|
-
},
|
|
522
|
+
}, StackStyleBase, {
|
|
522
523
|
disabled?: boolean | undefined;
|
|
523
524
|
elevation?: number | SizeTokens | undefined;
|
|
524
525
|
inset?: number | SizeTokens | {
|
|
@@ -542,8 +543,8 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
542
543
|
size?: SizeTokens | undefined;
|
|
543
544
|
unstyled?: boolean | undefined;
|
|
544
545
|
active?: boolean | undefined;
|
|
545
|
-
},
|
|
546
|
-
Tab:
|
|
546
|
+
}, StaticConfigPublic>;
|
|
547
|
+
Tab: TamaguiComponent<Omit<import("@tamagui/web").GetFinalProps<RNTamaguiViewNonStyleProps, StackStyleBase, {
|
|
547
548
|
disabled?: boolean | undefined;
|
|
548
549
|
elevation?: number | SizeTokens | undefined;
|
|
549
550
|
inset?: number | SizeTokens | {
|
|
@@ -567,7 +568,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
567
568
|
size?: SizeTokens | undefined;
|
|
568
569
|
unstyled?: boolean | undefined;
|
|
569
570
|
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" | "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
|
|
571
|
+
}>, "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 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<StackStyleBase> & {
|
|
571
572
|
disabled?: boolean | undefined;
|
|
572
573
|
elevation?: number | SizeTokens | undefined;
|
|
573
574
|
inset?: number | SizeTokens | {
|
|
@@ -591,7 +592,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
591
592
|
size?: SizeTokens | undefined;
|
|
592
593
|
unstyled?: boolean | undefined;
|
|
593
594
|
active?: boolean | undefined;
|
|
594
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
595
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>>> | "value" | "onInteraction" | "disableActiveTheme" | "__scopeTabs"> & Omit<RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled" | "active"> & import("@tamagui/web").WithThemeValues<StackStyleBase> & {
|
|
595
596
|
disabled?: boolean | undefined;
|
|
596
597
|
elevation?: number | SizeTokens | undefined;
|
|
597
598
|
inset?: number | SizeTokens | {
|
|
@@ -615,7 +616,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
615
616
|
size?: SizeTokens | undefined;
|
|
616
617
|
unstyled?: boolean | undefined;
|
|
617
618
|
active?: boolean | undefined;
|
|
618
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
619
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<StackStyleBase> & {
|
|
619
620
|
disabled?: boolean | undefined;
|
|
620
621
|
elevation?: number | SizeTokens | undefined;
|
|
621
622
|
inset?: number | SizeTokens | {
|
|
@@ -639,7 +640,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
639
640
|
size?: SizeTokens | undefined;
|
|
640
641
|
unstyled?: boolean | undefined;
|
|
641
642
|
active?: boolean | undefined;
|
|
642
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
643
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<StackStyleBase, {
|
|
643
644
|
disabled?: boolean | undefined;
|
|
644
645
|
elevation?: number | SizeTokens | undefined;
|
|
645
646
|
inset?: number | SizeTokens | {
|
|
@@ -672,7 +673,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
672
673
|
disableActiveTheme?: boolean;
|
|
673
674
|
} & {
|
|
674
675
|
__scopeTabs?: string;
|
|
675
|
-
}, TamaguiElement,
|
|
676
|
+
}, TamaguiElement, RNTamaguiViewNonStyleProps & Omit<RNTamaguiViewNonStyleProps, "disabled" | "elevation" | keyof StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "size" | "unstyled" | "active"> & import("@tamagui/web").WithThemeValues<StackStyleBase> & {
|
|
676
677
|
disabled?: boolean | undefined;
|
|
677
678
|
elevation?: number | SizeTokens | undefined;
|
|
678
679
|
inset?: number | SizeTokens | {
|
|
@@ -696,7 +697,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
696
697
|
size?: SizeTokens | undefined;
|
|
697
698
|
unstyled?: boolean | undefined;
|
|
698
699
|
active?: boolean | undefined;
|
|
699
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
700
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>> & import("@tamagui/web").WithPseudoProps<import("@tamagui/web").WithThemeValues<StackStyleBase> & {
|
|
700
701
|
disabled?: boolean | undefined;
|
|
701
702
|
elevation?: number | SizeTokens | undefined;
|
|
702
703
|
inset?: number | SizeTokens | {
|
|
@@ -720,7 +721,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
720
721
|
size?: SizeTokens | undefined;
|
|
721
722
|
unstyled?: boolean | undefined;
|
|
722
723
|
active?: boolean | undefined;
|
|
723
|
-
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<
|
|
724
|
+
} & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<StackStyleBase>>> & import("@tamagui/web").WithMediaProps<import("@tamagui/web").WithThemeShorthandsAndPseudos<StackStyleBase, {
|
|
724
725
|
disabled?: boolean | undefined;
|
|
725
726
|
elevation?: number | SizeTokens | undefined;
|
|
726
727
|
inset?: number | SizeTokens | {
|
|
@@ -753,7 +754,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
753
754
|
disableActiveTheme?: boolean;
|
|
754
755
|
} & {
|
|
755
756
|
__scopeTabs?: string;
|
|
756
|
-
},
|
|
757
|
+
}, StackStyleBase, {
|
|
757
758
|
disabled?: boolean | undefined;
|
|
758
759
|
elevation?: number | SizeTokens | undefined;
|
|
759
760
|
inset?: number | SizeTokens | {
|
|
@@ -777,10 +778,10 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
777
778
|
size?: SizeTokens | undefined;
|
|
778
779
|
unstyled?: boolean | undefined;
|
|
779
780
|
active?: boolean | undefined;
|
|
780
|
-
},
|
|
781
|
-
Content:
|
|
782
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
783
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
781
|
+
}, StaticConfigPublic>;
|
|
782
|
+
Content: TamaguiComponent<Omit<import("@tamagui/web").GetFinalProps<RNTamaguiViewNonStyleProps, StackStyleBase, {
|
|
783
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
784
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
784
785
|
top?: number;
|
|
785
786
|
bottom?: number;
|
|
786
787
|
left?: number;
|
|
@@ -798,9 +799,9 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
798
799
|
radiused?: boolean | undefined;
|
|
799
800
|
padded?: boolean | undefined;
|
|
800
801
|
chromeless?: boolean | "all" | undefined;
|
|
801
|
-
}>, keyof TabsContentExtraProps> & TabsContentExtraProps, TamaguiElement,
|
|
802
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
803
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
802
|
+
}>, keyof TabsContentExtraProps> & TabsContentExtraProps, TamaguiElement, RNTamaguiViewNonStyleProps & TabsContentExtraProps, StackStyleBase, {
|
|
803
|
+
elevation?: number | import("@tamagui/core/types").SizeTokens | undefined;
|
|
804
|
+
inset?: number | import("@tamagui/core/types").SizeTokens | {
|
|
804
805
|
top?: number;
|
|
805
806
|
bottom?: number;
|
|
806
807
|
left?: number;
|
|
@@ -818,7 +819,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<import("@tamagui
|
|
|
818
819
|
radiused?: boolean | undefined;
|
|
819
820
|
padded?: boolean | undefined;
|
|
820
821
|
chromeless?: boolean | "all" | undefined;
|
|
821
|
-
},
|
|
822
|
+
}, StaticConfigPublic>;
|
|
822
823
|
};
|
|
823
824
|
export { useTabsContext };
|
|
824
825
|
export type { TabsProps, TabsListProps, TabsTriggerProps, TabsTriggerLayout, TabsTabProps, TabsContentProps, TabLayout, };
|
package/types/Tabs.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../src/Tabs.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../src/Tabs.tsx"],"names":[],"mappings":"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"}
|