@tamagui/select 1.10.0 → 1.11.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.
- package/package.json +16 -16
- package/types/Select.d.ts +36 -0
- package/types/Select.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/select",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -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.
|
|
39
|
-
"@tamagui/compose-refs": "1.
|
|
40
|
-
"@tamagui/core": "1.
|
|
41
|
-
"@tamagui/create-context": "1.
|
|
42
|
-
"@tamagui/dismissable": "1.
|
|
43
|
-
"@tamagui/focus-scope": "1.
|
|
44
|
-
"@tamagui/list-item": "1.
|
|
45
|
-
"@tamagui/portal": "1.
|
|
46
|
-
"@tamagui/separator": "1.
|
|
47
|
-
"@tamagui/sheet": "1.
|
|
48
|
-
"@tamagui/stacks": "1.
|
|
49
|
-
"@tamagui/text": "1.
|
|
50
|
-
"@tamagui/use-controllable-state": "1.
|
|
51
|
-
"@tamagui/use-event": "1.
|
|
38
|
+
"@tamagui/adapt": "1.11.0",
|
|
39
|
+
"@tamagui/compose-refs": "1.11.0",
|
|
40
|
+
"@tamagui/core": "1.11.0",
|
|
41
|
+
"@tamagui/create-context": "1.11.0",
|
|
42
|
+
"@tamagui/dismissable": "1.11.0",
|
|
43
|
+
"@tamagui/focus-scope": "1.11.0",
|
|
44
|
+
"@tamagui/list-item": "1.11.0",
|
|
45
|
+
"@tamagui/portal": "1.11.0",
|
|
46
|
+
"@tamagui/separator": "1.11.0",
|
|
47
|
+
"@tamagui/sheet": "1.11.0",
|
|
48
|
+
"@tamagui/stacks": "1.11.0",
|
|
49
|
+
"@tamagui/text": "1.11.0",
|
|
50
|
+
"@tamagui/use-controllable-state": "1.11.0",
|
|
51
|
+
"@tamagui/use-event": "1.11.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.
|
|
59
|
+
"@tamagui/build": "1.11.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
|
@@ -623,16 +623,52 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
623
623
|
Overlay: ({ __scopeSheet, ...props }: import("@tamagui/sheet/types/types").SheetScopedProps<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<{
|
|
624
624
|
readonly fullscreen?: boolean | undefined;
|
|
625
625
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
626
|
+
} & {
|
|
627
|
+
readonly backgrounded?: boolean | undefined;
|
|
628
|
+
readonly radiused?: boolean | undefined;
|
|
629
|
+
readonly hoverTheme?: boolean | undefined;
|
|
630
|
+
readonly pressTheme?: boolean | undefined;
|
|
631
|
+
readonly focusTheme?: boolean | undefined;
|
|
632
|
+
readonly circular?: boolean | undefined;
|
|
633
|
+
readonly padded?: boolean | undefined;
|
|
634
|
+
readonly elevate?: boolean | undefined;
|
|
635
|
+
readonly bordered?: number | boolean | undefined;
|
|
636
|
+
readonly transparent?: boolean | undefined;
|
|
637
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
626
638
|
}, "closed"> & {
|
|
627
639
|
readonly closed?: boolean | undefined;
|
|
628
640
|
} & import("@tamagui/core").MediaProps<Partial<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<{
|
|
629
641
|
readonly fullscreen?: boolean | undefined;
|
|
630
642
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
643
|
+
} & {
|
|
644
|
+
readonly backgrounded?: boolean | undefined;
|
|
645
|
+
readonly radiused?: boolean | undefined;
|
|
646
|
+
readonly hoverTheme?: boolean | undefined;
|
|
647
|
+
readonly pressTheme?: boolean | undefined;
|
|
648
|
+
readonly focusTheme?: boolean | undefined;
|
|
649
|
+
readonly circular?: boolean | undefined;
|
|
650
|
+
readonly padded?: boolean | undefined;
|
|
651
|
+
readonly elevate?: boolean | undefined;
|
|
652
|
+
readonly bordered?: number | boolean | undefined;
|
|
653
|
+
readonly transparent?: boolean | undefined;
|
|
654
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
631
655
|
}, "closed"> & {
|
|
632
656
|
readonly closed?: boolean | undefined;
|
|
633
657
|
}>> & import("@tamagui/core").PseudoProps<Partial<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<{
|
|
634
658
|
readonly fullscreen?: boolean | undefined;
|
|
635
659
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
660
|
+
} & {
|
|
661
|
+
readonly backgrounded?: boolean | undefined;
|
|
662
|
+
readonly radiused?: boolean | undefined;
|
|
663
|
+
readonly hoverTheme?: boolean | undefined;
|
|
664
|
+
readonly pressTheme?: boolean | undefined;
|
|
665
|
+
readonly focusTheme?: boolean | undefined;
|
|
666
|
+
readonly circular?: boolean | undefined;
|
|
667
|
+
readonly padded?: boolean | undefined;
|
|
668
|
+
readonly elevate?: boolean | undefined;
|
|
669
|
+
readonly bordered?: number | boolean | undefined;
|
|
670
|
+
readonly transparent?: boolean | undefined;
|
|
671
|
+
readonly chromeless?: boolean | "all" | undefined;
|
|
636
672
|
}, "closed"> & {
|
|
637
673
|
readonly closed?: boolean | undefined;
|
|
638
674
|
}>>>) => JSX.Element;
|
package/types/Select.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../src/Select.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEL,cAAc,EAOf,MAAM,eAAe,CAAA;AACtB,OAAO,EAAY,aAAa,EAAE,MAAM,oBAAoB,CAAA;AAO5D,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAQ9B,OAAO,EAAE,WAAW,EAAmB,WAAW,EAAE,MAAM,SAAS,CAAA;AAYnE,MAAM,MAAM,kBAAkB,GAAG,aAAa,CAAA;AAE9C,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA6CzB,CAAA;AAgED,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKrB,CAAA;AAiBF,MAAM,WAAW,eAAgB,SAAQ,aAAa;IACpD,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,eAAO,MAAM,UAAU,wFA4HtB,CAAA;AAUD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;GAG9B,CAAA;AA+FF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAG3B,CAAA;AA8BF,MAAM,MAAM,gBAAgB,GAAG,aAAa,CAAA;AA2B5C,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;GAE1B,CAAA;AAoCF,eAAO,MAAM,MAAM,WACT,YAAY,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAxZlB,MAAM,SAAS;;;;;;;;;;;;;;sBAAf,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;sBAAf,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;sBAAf,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../src/Select.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEL,cAAc,EAOf,MAAM,eAAe,CAAA;AACtB,OAAO,EAAY,aAAa,EAAE,MAAM,oBAAoB,CAAA;AAO5D,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAQ9B,OAAO,EAAE,WAAW,EAAmB,WAAW,EAAE,MAAM,SAAS,CAAA;AAYnE,MAAM,MAAM,kBAAkB,GAAG,aAAa,CAAA;AAE9C,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA6CzB,CAAA;AAgED,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAKrB,CAAA;AAiBF,MAAM,WAAW,eAAgB,SAAQ,aAAa;IACpD,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,eAAO,MAAM,UAAU,wFA4HtB,CAAA;AAUD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;GAG9B,CAAA;AA+FF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAG3B,CAAA;AA8BF,MAAM,MAAM,gBAAgB,GAAG,aAAa,CAAA;AA2B5C,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;GAE1B,CAAA;AAoCF,eAAO,MAAM,MAAM,WACT,YAAY,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAxZlB,MAAM,SAAS;;;;;;;;;;;;;;sBAAf,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;sBAAf,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;sBAAf,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4gB9B,CAAA"}
|