@tamagui/select 1.0.1-beta.115 → 1.0.1-beta.116
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 +12 -12
- package/types/Select.d.ts +12 -12
- package/types/SelectViewport.d.ts +3 -3
- package/types/SelectViewport.native.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/select",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.116",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
"@floating-ui/react-dom-interactions": "^0.5.0",
|
|
26
26
|
"@floating-ui/react-native": "^0.7.0",
|
|
27
27
|
"@radix-ui/react-use-previous": "^0.1.1",
|
|
28
|
-
"@tamagui/compose-refs": "^1.0.1-beta.
|
|
29
|
-
"@tamagui/core": "^1.0.1-beta.
|
|
30
|
-
"@tamagui/create-context": "^1.0.1-beta.
|
|
31
|
-
"@tamagui/list-item": "^1.0.1-beta.
|
|
32
|
-
"@tamagui/portal": "^1.0.1-beta.
|
|
33
|
-
"@tamagui/separator": "^1.0.1-beta.
|
|
34
|
-
"@tamagui/stacks": "^1.0.1-beta.
|
|
35
|
-
"@tamagui/text": "^1.0.1-beta.
|
|
36
|
-
"@tamagui/use-controllable-state": "^1.0.1-beta.
|
|
37
|
-
"@tamagui/use-event": "^1.0.1-beta.
|
|
28
|
+
"@tamagui/compose-refs": "^1.0.1-beta.116",
|
|
29
|
+
"@tamagui/core": "^1.0.1-beta.116",
|
|
30
|
+
"@tamagui/create-context": "^1.0.1-beta.116",
|
|
31
|
+
"@tamagui/list-item": "^1.0.1-beta.116",
|
|
32
|
+
"@tamagui/portal": "^1.0.1-beta.116",
|
|
33
|
+
"@tamagui/separator": "^1.0.1-beta.116",
|
|
34
|
+
"@tamagui/stacks": "^1.0.1-beta.116",
|
|
35
|
+
"@tamagui/text": "^1.0.1-beta.116",
|
|
36
|
+
"@tamagui/use-controllable-state": "^1.0.1-beta.116",
|
|
37
|
+
"@tamagui/use-event": "^1.0.1-beta.116"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"react": "*",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"react-native": "*"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@tamagui/build": "^1.0.1-beta.
|
|
45
|
+
"@tamagui/build": "^1.0.1-beta.116",
|
|
46
46
|
"@types/react-native": "^0.69.2",
|
|
47
47
|
"react": "*",
|
|
48
48
|
"react-dom": "*",
|
package/types/Select.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<import(
|
|
|
22
22
|
bordered?: number | boolean | undefined;
|
|
23
23
|
transparent?: boolean | undefined;
|
|
24
24
|
chromeless?: boolean | undefined;
|
|
25
|
-
}, "
|
|
25
|
+
}, "size" | "disabled" | "active"> & {
|
|
26
26
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
27
27
|
active?: boolean | undefined;
|
|
28
28
|
disabled?: boolean | undefined;
|
|
@@ -42,7 +42,7 @@ export declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<import(
|
|
|
42
42
|
bordered?: number | boolean | undefined;
|
|
43
43
|
transparent?: boolean | undefined;
|
|
44
44
|
chromeless?: boolean | undefined;
|
|
45
|
-
}, "
|
|
45
|
+
}, "size" | "disabled" | "active"> & {
|
|
46
46
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
47
47
|
active?: boolean | undefined;
|
|
48
48
|
disabled?: boolean | undefined;
|
|
@@ -62,7 +62,7 @@ export declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<import(
|
|
|
62
62
|
bordered?: number | boolean | undefined;
|
|
63
63
|
transparent?: boolean | undefined;
|
|
64
64
|
chromeless?: boolean | undefined;
|
|
65
|
-
}, "
|
|
65
|
+
}, "size" | "disabled" | "active"> & {
|
|
66
66
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
67
67
|
active?: boolean | undefined;
|
|
68
68
|
disabled?: boolean | undefined;
|
|
@@ -395,7 +395,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
395
395
|
bordered?: number | boolean | undefined;
|
|
396
396
|
transparent?: boolean | undefined;
|
|
397
397
|
chromeless?: boolean | undefined;
|
|
398
|
-
}, "
|
|
398
|
+
}, "size" | "disabled" | "active"> & {
|
|
399
399
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
400
400
|
active?: boolean | undefined;
|
|
401
401
|
disabled?: boolean | undefined;
|
|
@@ -415,7 +415,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
415
415
|
bordered?: number | boolean | undefined;
|
|
416
416
|
transparent?: boolean | undefined;
|
|
417
417
|
chromeless?: boolean | undefined;
|
|
418
|
-
}, "
|
|
418
|
+
}, "size" | "disabled" | "active"> & {
|
|
419
419
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
420
420
|
active?: boolean | undefined;
|
|
421
421
|
disabled?: boolean | undefined;
|
|
@@ -435,7 +435,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
435
435
|
bordered?: number | boolean | undefined;
|
|
436
436
|
transparent?: boolean | undefined;
|
|
437
437
|
chromeless?: boolean | undefined;
|
|
438
|
-
}, "
|
|
438
|
+
}, "size" | "disabled" | "active"> & {
|
|
439
439
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
440
440
|
active?: boolean | undefined;
|
|
441
441
|
disabled?: boolean | undefined;
|
|
@@ -472,7 +472,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
472
472
|
bordered?: number | boolean | undefined;
|
|
473
473
|
transparent?: boolean | undefined;
|
|
474
474
|
chromeless?: boolean | undefined;
|
|
475
|
-
}, "
|
|
475
|
+
}, "size" | "disabled" | "active"> & {
|
|
476
476
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
477
477
|
active?: boolean | undefined;
|
|
478
478
|
disabled?: boolean | undefined;
|
|
@@ -492,7 +492,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
492
492
|
bordered?: number | boolean | undefined;
|
|
493
493
|
transparent?: boolean | undefined;
|
|
494
494
|
chromeless?: boolean | undefined;
|
|
495
|
-
}, "
|
|
495
|
+
}, "size" | "disabled" | "active"> & {
|
|
496
496
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
497
497
|
active?: boolean | undefined;
|
|
498
498
|
disabled?: boolean | undefined;
|
|
@@ -512,7 +512,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
512
512
|
bordered?: number | boolean | undefined;
|
|
513
513
|
transparent?: boolean | undefined;
|
|
514
514
|
chromeless?: boolean | undefined;
|
|
515
|
-
}, "
|
|
515
|
+
}, "size" | "disabled" | "active"> & {
|
|
516
516
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
517
517
|
active?: boolean | undefined;
|
|
518
518
|
disabled?: boolean | undefined;
|
|
@@ -597,7 +597,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
597
597
|
Viewport: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
598
598
|
readonly fullscreen?: boolean | undefined;
|
|
599
599
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
600
|
-
}, "fontFamily" | "
|
|
600
|
+
}, "fontFamily" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered" | "transparent" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
601
601
|
fontFamily?: unknown;
|
|
602
602
|
backgrounded?: boolean | undefined;
|
|
603
603
|
radiused?: boolean | undefined;
|
|
@@ -613,7 +613,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
613
613
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
614
614
|
readonly fullscreen?: boolean | undefined;
|
|
615
615
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
616
|
-
}, "fontFamily" | "
|
|
616
|
+
}, "fontFamily" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered" | "transparent" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
617
617
|
fontFamily?: unknown;
|
|
618
618
|
backgrounded?: boolean | undefined;
|
|
619
619
|
radiused?: boolean | undefined;
|
|
@@ -629,7 +629,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
629
629
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
630
630
|
readonly fullscreen?: boolean | undefined;
|
|
631
631
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
632
|
-
}, "fontFamily" | "
|
|
632
|
+
}, "fontFamily" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered" | "transparent" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
633
633
|
fontFamily?: unknown;
|
|
634
634
|
backgrounded?: boolean | undefined;
|
|
635
635
|
radiused?: boolean | undefined;
|
|
@@ -76,7 +76,7 @@ export declare const SelectViewportFrame: import("@tamagui/core").TamaguiCompone
|
|
|
76
76
|
export declare const SelectViewport: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
77
77
|
readonly fullscreen?: boolean | undefined;
|
|
78
78
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
79
|
-
}, "fontFamily" | "
|
|
79
|
+
}, "fontFamily" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered" | "transparent" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
80
80
|
fontFamily?: unknown;
|
|
81
81
|
backgrounded?: boolean | undefined;
|
|
82
82
|
radiused?: boolean | undefined;
|
|
@@ -92,7 +92,7 @@ export declare const SelectViewport: React.ForwardRefExoticComponent<Omit<import
|
|
|
92
92
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
93
93
|
readonly fullscreen?: boolean | undefined;
|
|
94
94
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
95
|
-
}, "fontFamily" | "
|
|
95
|
+
}, "fontFamily" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered" | "transparent" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
96
96
|
fontFamily?: unknown;
|
|
97
97
|
backgrounded?: boolean | undefined;
|
|
98
98
|
radiused?: boolean | undefined;
|
|
@@ -108,7 +108,7 @@ export declare const SelectViewport: React.ForwardRefExoticComponent<Omit<import
|
|
|
108
108
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
109
109
|
readonly fullscreen?: boolean | undefined;
|
|
110
110
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
111
|
-
}, "fontFamily" | "
|
|
111
|
+
}, "fontFamily" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered" | "transparent" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
112
112
|
fontFamily?: unknown;
|
|
113
113
|
backgrounded?: boolean | undefined;
|
|
114
114
|
radiused?: boolean | undefined;
|
|
@@ -3,7 +3,7 @@ import * as React from 'react';
|
|
|
3
3
|
export declare const SelectViewport: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
4
4
|
readonly fullscreen?: boolean | undefined;
|
|
5
5
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
6
|
-
}, "fontFamily" | "
|
|
6
|
+
}, "fontFamily" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered" | "transparent" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
7
7
|
fontFamily?: unknown;
|
|
8
8
|
backgrounded?: boolean | undefined;
|
|
9
9
|
radiused?: boolean | undefined;
|
|
@@ -19,7 +19,7 @@ export declare const SelectViewport: React.ForwardRefExoticComponent<Omit<import
|
|
|
19
19
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
20
20
|
readonly fullscreen?: boolean | undefined;
|
|
21
21
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
22
|
-
}, "fontFamily" | "
|
|
22
|
+
}, "fontFamily" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered" | "transparent" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
23
23
|
fontFamily?: unknown;
|
|
24
24
|
backgrounded?: boolean | undefined;
|
|
25
25
|
radiused?: boolean | undefined;
|
|
@@ -35,7 +35,7 @@ export declare const SelectViewport: React.ForwardRefExoticComponent<Omit<import
|
|
|
35
35
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "display" | "children"> & import("@tamagui/core").RNWViewProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStylePropsBase>> & Omit<{
|
|
36
36
|
readonly fullscreen?: boolean | undefined;
|
|
37
37
|
readonly elevation?: import("@tamagui/core").SizeTokens | undefined;
|
|
38
|
-
}, "fontFamily" | "
|
|
38
|
+
}, "fontFamily" | "hoverTheme" | "pressTheme" | "focusTheme" | "circular" | "elevate" | "bordered" | "transparent" | "backgrounded" | "radiused" | "padded" | "chromeless"> & {
|
|
39
39
|
fontFamily?: unknown;
|
|
40
40
|
backgrounded?: boolean | undefined;
|
|
41
41
|
radiused?: boolean | undefined;
|