@tamagui/select 1.14.9 → 1.15.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.
Files changed (2) hide show
  1. package/package.json +17 -17
  2. package/types/Select.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/select",
3
- "version": "1.14.9",
3
+ "version": "1.15.0",
4
4
  "sideEffects": [
5
5
  "*.css"
6
6
  ],
@@ -20,7 +20,7 @@
20
20
  "clean": "tamagui-build clean",
21
21
  "clean:build": "tamagui-build clean:build",
22
22
  "lint": "../../node_modules/.bin/rome check src",
23
- "lint:fix": "../../node_modules/.bin/rome check --apply-suggested src"
23
+ "lint:fix": "../../node_modules/.bin/rome check --apply src"
24
24
  },
25
25
  "exports": {
26
26
  "./package.json": "./package.json",
@@ -35,20 +35,20 @@
35
35
  "@floating-ui/react-dom": "^1.2.2",
36
36
  "@floating-ui/react-native": "^0.9.0",
37
37
  "@radix-ui/react-use-previous": "^0.1.1",
38
- "@tamagui/adapt": "1.14.9",
39
- "@tamagui/compose-refs": "1.14.9",
40
- "@tamagui/core": "1.14.9",
41
- "@tamagui/create-context": "1.14.9",
42
- "@tamagui/dismissable": "1.14.9",
43
- "@tamagui/focus-scope": "1.14.9",
44
- "@tamagui/list-item": "1.14.9",
45
- "@tamagui/portal": "1.14.9",
46
- "@tamagui/separator": "1.14.9",
47
- "@tamagui/sheet": "1.14.9",
48
- "@tamagui/stacks": "1.14.9",
49
- "@tamagui/text": "1.14.9",
50
- "@tamagui/use-controllable-state": "1.14.9",
51
- "@tamagui/use-event": "1.14.9"
38
+ "@tamagui/adapt": "1.15.0",
39
+ "@tamagui/compose-refs": "1.15.0",
40
+ "@tamagui/core": "1.15.0",
41
+ "@tamagui/create-context": "1.15.0",
42
+ "@tamagui/dismissable": "1.15.0",
43
+ "@tamagui/focus-scope": "1.15.0",
44
+ "@tamagui/list-item": "1.15.0",
45
+ "@tamagui/portal": "1.15.0",
46
+ "@tamagui/separator": "1.15.0",
47
+ "@tamagui/sheet": "1.15.0",
48
+ "@tamagui/stacks": "1.15.0",
49
+ "@tamagui/text": "1.15.0",
50
+ "@tamagui/use-controllable-state": "1.15.0",
51
+ "@tamagui/use-event": "1.15.0"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "react": "*",
@@ -56,7 +56,7 @@
56
56
  "react-native": "*"
57
57
  },
58
58
  "devDependencies": {
59
- "@tamagui/build": "1.14.9",
59
+ "@tamagui/build": "1.15.0",
60
60
  "react": "^18.2.0",
61
61
  "react-dom": "^18.2.0",
62
62
  "react-native": "^0.71.4"
package/types/Select.d.ts CHANGED
@@ -222,7 +222,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
222
222
  children?: React.ReactNode;
223
223
  zIndex?: number | undefined;
224
224
  } & {
225
- __scopeSelect?: import("@tamagui/create-context").Scope<any>;
225
+ __scopeSelect?: import("@tamagui/create-context").Scope;
226
226
  } & import("@tamagui/focus-scope").FocusScopeProps) => JSX.Element | null;
227
227
  Group: React.ForwardRefExoticComponent<((Omit<import("react-native").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native").GestureResponderHandlers> & import("@tamagui/core").ExtendBaseStackProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & import("@tamagui/core/types/reactNativeTypes").RNViewProps & Omit<{}, "elevation" | "fullscreen"> & {
228
228
  readonly fullscreen?: boolean | undefined;