@tamagui/select 1.20.6 → 1.21.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 +17 -17
- package/types/Select.d.ts +9 -6
- 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.21.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.21.0",
|
|
39
|
+
"@tamagui/compose-refs": "1.21.0",
|
|
40
|
+
"@tamagui/core": "1.21.0",
|
|
41
|
+
"@tamagui/create-context": "1.21.0",
|
|
42
|
+
"@tamagui/dismissable": "1.21.0",
|
|
43
|
+
"@tamagui/focus-scope": "1.21.0",
|
|
44
|
+
"@tamagui/list-item": "1.21.0",
|
|
45
|
+
"@tamagui/portal": "1.21.0",
|
|
46
|
+
"@tamagui/separator": "1.21.0",
|
|
47
|
+
"@tamagui/sheet": "1.21.0",
|
|
48
|
+
"@tamagui/stacks": "1.21.0",
|
|
49
|
+
"@tamagui/text": "1.21.0",
|
|
50
|
+
"@tamagui/use-controllable-state": "1.21.0",
|
|
51
|
+
"@tamagui/use-event": "1.21.0"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "*",
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
"react-native": "*"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@tamagui/build": "1.
|
|
59
|
+
"@tamagui/build": "1.21.0",
|
|
60
60
|
"react": "^18.2.0",
|
|
61
61
|
"react-dom": "^18.2.0",
|
|
62
|
-
"react-native": "^0.71.
|
|
62
|
+
"react-native": "^0.71.7"
|
|
63
63
|
},
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|
package/types/Select.d.ts
CHANGED
|
@@ -607,8 +607,8 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
607
607
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
608
608
|
disableScroll?: boolean | undefined;
|
|
609
609
|
} & React.RefAttributes<TamaguiElement>>;
|
|
610
|
-
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet
|
|
611
|
-
Handle: ({ __scopeSheet, ...props }: import("@tamagui/sheet
|
|
610
|
+
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<import("react-native/types").View>> & {
|
|
611
|
+
Handle: ({ __scopeSheet, ...props }: import("@tamagui/sheet").SheetScopedProps<Omit<import("react-native/types").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native/types").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"> & {
|
|
612
612
|
readonly fullscreen?: boolean | undefined;
|
|
613
613
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
614
614
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native/types").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"> & {
|
|
@@ -630,7 +630,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
630
630
|
}>> & {
|
|
631
631
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
632
632
|
} & React.RefAttributes<unknown>>;
|
|
633
|
-
Overlay: ({ __scopeSheet, ...props }: import("@tamagui/sheet
|
|
633
|
+
Overlay: ({ __scopeSheet, ...props }: import("@tamagui/sheet").SheetScopedProps<Omit<import("react-native/types").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native/types").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
634
|
readonly fullscreen?: boolean | undefined;
|
|
635
635
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
636
636
|
} & {
|
|
@@ -645,8 +645,9 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
645
645
|
readonly bordered?: number | boolean | undefined;
|
|
646
646
|
readonly transparent?: boolean | undefined;
|
|
647
647
|
readonly chromeless?: boolean | "all" | undefined;
|
|
648
|
-
}, "closed"> & {
|
|
648
|
+
}, "unstyled" | "closed"> & {
|
|
649
649
|
readonly closed?: boolean | undefined;
|
|
650
|
+
readonly unstyled?: boolean | undefined;
|
|
650
651
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native/types").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native/types").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<{
|
|
651
652
|
readonly fullscreen?: boolean | undefined;
|
|
652
653
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -662,8 +663,9 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
662
663
|
readonly bordered?: number | boolean | undefined;
|
|
663
664
|
readonly transparent?: boolean | undefined;
|
|
664
665
|
readonly chromeless?: boolean | "all" | undefined;
|
|
665
|
-
}, "closed"> & {
|
|
666
|
+
}, "unstyled" | "closed"> & {
|
|
666
667
|
readonly closed?: boolean | undefined;
|
|
668
|
+
readonly unstyled?: boolean | undefined;
|
|
667
669
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native/types").ViewProps, "children" | "display" | "onLayout" | keyof import("react-native/types").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<{
|
|
668
670
|
readonly fullscreen?: boolean | undefined;
|
|
669
671
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
@@ -679,8 +681,9 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
679
681
|
readonly bordered?: number | boolean | undefined;
|
|
680
682
|
readonly transparent?: boolean | undefined;
|
|
681
683
|
readonly chromeless?: boolean | "all" | undefined;
|
|
682
|
-
}, "closed"> & {
|
|
684
|
+
}, "unstyled" | "closed"> & {
|
|
683
685
|
readonly closed?: boolean | undefined;
|
|
686
|
+
readonly unstyled?: boolean | undefined;
|
|
684
687
|
}>>>) => JSX.Element;
|
|
685
688
|
ScrollView: React.ForwardRefExoticComponent<import("react-native/types").ScrollViewProps & Omit<import("@tamagui/core").StackProps, keyof import("react-native/types").ScrollViewProps> & Omit<{}, "fullscreen"> & {
|
|
686
689
|
readonly fullscreen?: boolean | undefined;
|
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;AAEtB,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAgDzB,CAAA;AAgED,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKrB,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,wFAgItB,CAAA;AAUD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;EAG9B,CAAA;AAkGF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG3B,CAAA;AAqGF,MAAM,MAAM,gBAAgB,GAAG,aAAa,CAAA;AAgC5C,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;EAE1B,CAAA;AAoCF,eAAO,MAAM,MAAM,WACT,YAAY,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBA3elB,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;AAEtB,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAgDzB,CAAA;AAgED,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKrB,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,wFAgItB,CAAA;AAUD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;EAG9B,CAAA;AAkGF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG3B,CAAA;AAqGF,MAAM,MAAM,gBAAgB,GAAG,aAAa,CAAA;AAgC5C,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;EAE1B,CAAA;AAoCF,eAAO,MAAM,MAAM,WACT,YAAY,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBA3elB,MAAM,SAAS;;;;;;;;;;;;;;sBAAf,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;sBAAf,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;sBAAf,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4mB9B,CAAA"}
|