@tamagui/tabs 1.15.16 → 1.15.18

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.
Files changed (2) hide show
  1. package/package.json +10 -10
  2. 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.15.16",
3
+ "version": "1.15.18",
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.15.16",
29
- "@tamagui/get-button-sized": "1.15.16",
30
- "@tamagui/group": "1.15.16",
31
- "@tamagui/roving-focus": "1.15.16",
32
- "@tamagui/stacks": "1.15.16",
33
- "@tamagui/use-controllable-state": "1.15.16",
34
- "@tamagui/use-direction": "1.15.16",
35
- "@tamagui/web": "1.15.16"
28
+ "@tamagui/create-context": "1.15.18",
29
+ "@tamagui/get-button-sized": "1.15.18",
30
+ "@tamagui/group": "1.15.18",
31
+ "@tamagui/roving-focus": "1.15.18",
32
+ "@tamagui/stacks": "1.15.18",
33
+ "@tamagui/use-controllable-state": "1.15.18",
34
+ "@tamagui/use-direction": "1.15.18",
35
+ "@tamagui/web": "1.15.18"
36
36
  },
37
37
  "peerDependencies": {
38
38
  "react": "*",
39
39
  "react-dom": "*"
40
40
  },
41
41
  "devDependencies": {
42
- "@tamagui/build": "1.15.16",
42
+ "@tamagui/build": "1.15.18",
43
43
  "react": "^18.2.0",
44
44
  "react-dom": "^18.2.0"
45
45
  },
package/types/Tabs.d.ts CHANGED
@@ -218,9 +218,9 @@ declare const TabsContentFrame: import("@tamagui/web").TamaguiComponent<(Omit<im
218
218
  readonly bordered?: number | boolean | undefined;
219
219
  readonly transparent?: boolean | undefined;
220
220
  readonly chromeless?: boolean | "all" | undefined;
221
- } & {
221
+ } & ({} | {
222
222
  [x: string]: undefined;
223
- }, {
223
+ }), {
224
224
  displayName: string | undefined;
225
225
  }>;
226
226
  type TabsContentFrameProps = GetProps<typeof TabsContentFrame>;
@@ -326,9 +326,9 @@ declare const TabsFrame: import("@tamagui/web").TamaguiComponent<(Omit<import("r
326
326
  readonly elevate?: boolean | undefined;
327
327
  readonly bordered?: number | boolean | undefined;
328
328
  readonly size?: SizeTokens | undefined;
329
- } & {
329
+ } & ({} | {
330
330
  [x: string]: undefined;
331
- }, {
331
+ }), {
332
332
  displayName: string | undefined;
333
333
  }>;
334
334
  type RovingFocusGroupProps = React.ComponentPropsWithoutRef<typeof RovingFocusGroup>;