@tamagui/tabs 1.7.7 → 1.7.9
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 +10 -10
- package/types/Tabs.d.ts +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/tabs",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.9",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -25,21 +25,21 @@
|
|
|
25
25
|
}
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@tamagui/create-context": "1.7.
|
|
29
|
-
"@tamagui/get-button-sized": "1.7.
|
|
30
|
-
"@tamagui/group": "1.7.
|
|
31
|
-
"@tamagui/roving-focus": "1.7.
|
|
32
|
-
"@tamagui/stacks": "1.7.
|
|
33
|
-
"@tamagui/use-controllable-state": "1.7.
|
|
34
|
-
"@tamagui/use-direction": "1.7.
|
|
35
|
-
"@tamagui/web": "1.7.
|
|
28
|
+
"@tamagui/create-context": "1.7.9",
|
|
29
|
+
"@tamagui/get-button-sized": "1.7.9",
|
|
30
|
+
"@tamagui/group": "1.7.9",
|
|
31
|
+
"@tamagui/roving-focus": "1.7.9",
|
|
32
|
+
"@tamagui/stacks": "1.7.9",
|
|
33
|
+
"@tamagui/use-controllable-state": "1.7.9",
|
|
34
|
+
"@tamagui/use-direction": "1.7.9",
|
|
35
|
+
"@tamagui/web": "1.7.9"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"react": "*",
|
|
39
39
|
"react-dom": "*"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@tamagui/build": "1.7.
|
|
42
|
+
"@tamagui/build": "1.7.9",
|
|
43
43
|
"react": "^18.2.0",
|
|
44
44
|
"react-dom": "^18.2.0"
|
|
45
45
|
},
|
package/types/Tabs.d.ts
CHANGED
|
@@ -321,7 +321,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
321
321
|
* @defaultValue automatic
|
|
322
322
|
* */
|
|
323
323
|
activationMode?: "automatic" | "manual" | undefined;
|
|
324
|
-
}) |
|
|
324
|
+
}) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
325
325
|
readonly fullscreen?: boolean | undefined;
|
|
326
326
|
readonly elevation?: SizeTokens | undefined;
|
|
327
327
|
} & {
|
|
@@ -385,7 +385,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
385
385
|
* @defaultValue automatic
|
|
386
386
|
* */
|
|
387
387
|
activationMode?: "automatic" | "manual" | undefined;
|
|
388
|
-
},
|
|
388
|
+
}, "ref">) & React.RefAttributes<HTMLDivElement>> & {
|
|
389
389
|
List: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
390
390
|
readonly fullscreen?: boolean | undefined;
|
|
391
391
|
readonly elevation?: SizeTokens | undefined;
|
|
@@ -558,7 +558,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
558
558
|
* controlling animation with Tamagui animations.
|
|
559
559
|
*/
|
|
560
560
|
forceMount?: true | undefined;
|
|
561
|
-
}) |
|
|
561
|
+
}) | Omit<Omit<import("react-native").ViewProps, "display" | "children" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/web").ExtendBaseStackProps & import("@tamagui/web").TamaguiComponentPropsBase & import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<import("@tamagui/web").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{
|
|
562
562
|
readonly fullscreen?: boolean | undefined;
|
|
563
563
|
readonly elevation?: SizeTokens | undefined;
|
|
564
564
|
} & {
|
|
@@ -617,7 +617,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<((Omit<import("react-
|
|
|
617
617
|
* controlling animation with Tamagui animations.
|
|
618
618
|
*/
|
|
619
619
|
forceMount?: true | undefined;
|
|
620
|
-
},
|
|
620
|
+
}, "ref">) & React.RefAttributes<HTMLDivElement>>;
|
|
621
621
|
};
|
|
622
622
|
export type { TabsProps, TabsListProps, TabsTriggerProps, TabsContentProps, TabTriggerLayout, };
|
|
623
623
|
//# sourceMappingURL=Tabs.d.ts.map
|