@tamagui/select 1.0.1-rc.1.4 → 1.0.1-rc.2

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 +15 -15
  2. package/types/Select.d.ts +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/select",
3
- "version": "1.0.1-rc.1.4",
3
+ "version": "1.0.1-rc.2",
4
4
  "sideEffects": [
5
5
  "*.css"
6
6
  ],
@@ -27,19 +27,19 @@
27
27
  "@floating-ui/react-dom-interactions": "^0.13.3",
28
28
  "@floating-ui/react-native": "^0.8.2",
29
29
  "@radix-ui/react-use-previous": "^0.1.1",
30
- "@tamagui/adapt": "^1.0.1-rc.1.4",
31
- "@tamagui/compose-refs": "^1.0.1-rc.1.4",
32
- "@tamagui/core": "^1.0.1-rc.1.4",
33
- "@tamagui/create-context": "^1.0.1-rc.1.4",
34
- "@tamagui/dismissable": "^1.0.1-rc.1.4",
35
- "@tamagui/focus-scope": "^1.0.1-rc.1.4",
36
- "@tamagui/list-item": "^1.0.1-rc.1.4",
37
- "@tamagui/portal": "^1.0.1-rc.1.4",
38
- "@tamagui/separator": "^1.0.1-rc.1.4",
39
- "@tamagui/stacks": "^1.0.1-rc.1.4",
40
- "@tamagui/text": "^1.0.1-rc.1.4",
41
- "@tamagui/use-controllable-state": "^1.0.1-rc.1.4",
42
- "@tamagui/use-event": "^1.0.1-rc.1.4"
30
+ "@tamagui/adapt": "^1.0.1-rc.2",
31
+ "@tamagui/compose-refs": "^1.0.1-rc.2",
32
+ "@tamagui/core": "^1.0.1-rc.2",
33
+ "@tamagui/create-context": "^1.0.1-rc.2",
34
+ "@tamagui/dismissable": "^1.0.1-rc.2",
35
+ "@tamagui/focus-scope": "^1.0.1-rc.2",
36
+ "@tamagui/list-item": "^1.0.1-rc.2",
37
+ "@tamagui/portal": "^1.0.1-rc.2",
38
+ "@tamagui/separator": "^1.0.1-rc.2",
39
+ "@tamagui/stacks": "^1.0.1-rc.2",
40
+ "@tamagui/text": "^1.0.1-rc.2",
41
+ "@tamagui/use-controllable-state": "^1.0.1-rc.2",
42
+ "@tamagui/use-event": "^1.0.1-rc.2"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "react": ">=18",
@@ -47,7 +47,7 @@
47
47
  "react-native": "*"
48
48
  },
49
49
  "devDependencies": {
50
- "@tamagui/build": "^1.0.1-rc.1.4",
50
+ "@tamagui/build": "^1.0.1-rc.2",
51
51
  "@types/react-native": "^0.69.2",
52
52
  "react": ">=18",
53
53
  "react-dom": ">=18",
package/types/Select.d.ts CHANGED
@@ -210,7 +210,10 @@ export declare const SelectSheetContents: {
210
210
  };
211
211
  export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element) & {
212
212
  Adapt: (({ platform, when, children }: import("@tamagui/adapt").AdaptProps) => any) & {
213
- Contents: () => React.FunctionComponentElement<any>;
213
+ Contents: {
214
+ (props: any): React.FunctionComponentElement<any>;
215
+ shouldForwardSpace: boolean;
216
+ };
214
217
  };
215
218
  Content: ({ children, __scopeSelect, zIndex, ...focusScopeProps }: {
216
219
  children?: React.ReactNode;