@tamagui/select 1.0.1-beta.42 → 1.0.1-beta.43
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 +10 -10
- package/types/Select.d.ts +137 -137
- 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.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.43",
|
|
4
4
|
"sideEffects": true,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"@floating-ui/react-native": "^0.7.0",
|
|
24
24
|
"@radix-ui/react-use-callback-ref": "^0.1.0",
|
|
25
25
|
"@radix-ui/react-use-previous": "^0.1.1",
|
|
26
|
-
"@tamagui/button": "^1.0.1-beta.
|
|
27
|
-
"@tamagui/compose-refs": "^1.0.1-beta.
|
|
28
|
-
"@tamagui/core": "^1.0.1-beta.
|
|
29
|
-
"@tamagui/create-context": "^1.0.1-beta.
|
|
30
|
-
"@tamagui/separator": "^1.0.1-beta.
|
|
31
|
-
"@tamagui/stacks": "^1.0.1-beta.
|
|
32
|
-
"@tamagui/text": "^1.0.1-beta.
|
|
33
|
-
"@tamagui/use-controllable-state": "^1.0.1-beta.
|
|
26
|
+
"@tamagui/button": "^1.0.1-beta.43",
|
|
27
|
+
"@tamagui/compose-refs": "^1.0.1-beta.43",
|
|
28
|
+
"@tamagui/core": "^1.0.1-beta.43",
|
|
29
|
+
"@tamagui/create-context": "^1.0.1-beta.43",
|
|
30
|
+
"@tamagui/separator": "^1.0.1-beta.43",
|
|
31
|
+
"@tamagui/stacks": "^1.0.1-beta.43",
|
|
32
|
+
"@tamagui/text": "^1.0.1-beta.43",
|
|
33
|
+
"@tamagui/use-controllable-state": "^1.0.1-beta.43"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"react": "*",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"react-native": "*"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@tamagui/build": "^1.0.1-beta.
|
|
41
|
+
"@tamagui/build": "^1.0.1-beta.43",
|
|
42
42
|
"@types/react-native": "^0.67.3",
|
|
43
43
|
"react": "*",
|
|
44
44
|
"react-dom": "*",
|
package/types/Select.d.ts
CHANGED
|
@@ -12,60 +12,66 @@ declare const createSelectScope: import("@tamagui/create-context").CreateScope;
|
|
|
12
12
|
declare type GenericElement = HTMLElement | View;
|
|
13
13
|
declare type Direction = 'ltr' | 'rtl';
|
|
14
14
|
export declare type SelectTriggerProps = ButtonProps;
|
|
15
|
-
export declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
16
|
-
fullscreen?: boolean | undefined;
|
|
17
|
-
elevation?: SizeTokens | undefined;
|
|
15
|
+
export declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<import("@tamagui/helpers-tamagui").TextParentStyles, "TextComponent"> & Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
16
|
+
readonly fullscreen?: boolean | undefined;
|
|
17
|
+
readonly elevation?: SizeTokens | undefined;
|
|
18
18
|
} & {
|
|
19
19
|
fontFamily?: unknown;
|
|
20
|
+
backgrounded?: boolean | undefined;
|
|
21
|
+
radiused?: boolean | undefined;
|
|
20
22
|
hoverable?: boolean | undefined;
|
|
21
23
|
pressable?: boolean | undefined;
|
|
22
24
|
focusable?: boolean | undefined;
|
|
23
25
|
circular?: boolean | undefined;
|
|
24
|
-
|
|
26
|
+
padded?: boolean | undefined;
|
|
25
27
|
elevate?: boolean | undefined;
|
|
26
28
|
bordered?: number | boolean | undefined;
|
|
27
29
|
transparent?: boolean | undefined;
|
|
28
30
|
chromeless?: boolean | undefined;
|
|
29
31
|
}, "disabled" | "size" | "active"> & {
|
|
30
|
-
size?: SizeTokens | undefined;
|
|
31
|
-
active?: boolean | undefined;
|
|
32
|
-
disabled?: boolean | undefined;
|
|
32
|
+
readonly size?: SizeTokens | undefined;
|
|
33
|
+
readonly active?: boolean | undefined;
|
|
34
|
+
readonly disabled?: boolean | undefined;
|
|
33
35
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
34
|
-
fullscreen?: boolean | undefined;
|
|
35
|
-
elevation?: SizeTokens | undefined;
|
|
36
|
+
readonly fullscreen?: boolean | undefined;
|
|
37
|
+
readonly elevation?: SizeTokens | undefined;
|
|
36
38
|
} & {
|
|
37
39
|
fontFamily?: unknown;
|
|
40
|
+
backgrounded?: boolean | undefined;
|
|
41
|
+
radiused?: boolean | undefined;
|
|
38
42
|
hoverable?: boolean | undefined;
|
|
39
43
|
pressable?: boolean | undefined;
|
|
40
44
|
focusable?: boolean | undefined;
|
|
41
45
|
circular?: boolean | undefined;
|
|
42
|
-
|
|
46
|
+
padded?: boolean | undefined;
|
|
43
47
|
elevate?: boolean | undefined;
|
|
44
48
|
bordered?: number | boolean | undefined;
|
|
45
49
|
transparent?: boolean | undefined;
|
|
46
50
|
chromeless?: boolean | undefined;
|
|
47
51
|
}, "disabled" | "size" | "active"> & {
|
|
48
|
-
size?: SizeTokens | undefined;
|
|
49
|
-
active?: boolean | undefined;
|
|
50
|
-
disabled?: boolean | undefined;
|
|
52
|
+
readonly size?: SizeTokens | undefined;
|
|
53
|
+
readonly active?: boolean | undefined;
|
|
54
|
+
readonly disabled?: boolean | undefined;
|
|
51
55
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
52
|
-
fullscreen?: boolean | undefined;
|
|
53
|
-
elevation?: SizeTokens | undefined;
|
|
56
|
+
readonly fullscreen?: boolean | undefined;
|
|
57
|
+
readonly elevation?: SizeTokens | undefined;
|
|
54
58
|
} & {
|
|
55
59
|
fontFamily?: unknown;
|
|
60
|
+
backgrounded?: boolean | undefined;
|
|
61
|
+
radiused?: boolean | undefined;
|
|
56
62
|
hoverable?: boolean | undefined;
|
|
57
63
|
pressable?: boolean | undefined;
|
|
58
64
|
focusable?: boolean | undefined;
|
|
59
65
|
circular?: boolean | undefined;
|
|
60
|
-
|
|
66
|
+
padded?: boolean | undefined;
|
|
61
67
|
elevate?: boolean | undefined;
|
|
62
68
|
bordered?: number | boolean | undefined;
|
|
63
69
|
transparent?: boolean | undefined;
|
|
64
70
|
chromeless?: boolean | undefined;
|
|
65
71
|
}, "disabled" | "size" | "active"> & {
|
|
66
|
-
size?: SizeTokens | undefined;
|
|
67
|
-
active?: boolean | undefined;
|
|
68
|
-
disabled?: boolean | undefined;
|
|
72
|
+
readonly size?: SizeTokens | undefined;
|
|
73
|
+
readonly active?: boolean | undefined;
|
|
74
|
+
readonly disabled?: boolean | undefined;
|
|
69
75
|
}>> & import("@tamagui/core").ThemeableProps & {
|
|
70
76
|
icon?: (JSX.Element | React.FunctionComponent<{
|
|
71
77
|
color?: string | undefined;
|
|
@@ -79,60 +85,49 @@ export declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<import(
|
|
|
79
85
|
noTextWrap?: boolean | undefined;
|
|
80
86
|
spaceFlex?: number | boolean | undefined;
|
|
81
87
|
scaleSpace?: number | undefined;
|
|
82
|
-
color?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").ColorTokens | import("react-native").OpaqueColorValue | undefined;
|
|
83
|
-
fontWeight?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").FontWeightTokens | undefined;
|
|
84
|
-
fontSize?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").FontSizeTokens | undefined;
|
|
85
|
-
fontFamily?: import("@tamagui/core").FontTokens | import("@tamagui/core").ThemeValueFallback | undefined;
|
|
86
|
-
letterSpacing?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").FontLetterSpacingTokens | undefined;
|
|
87
|
-
textAlign?: "left" | "right" | "auto" | "center" | "justify" | undefined;
|
|
88
|
-
textProps?: Partial<Omit<import("react-native").TextProps, "children"> & import("@tamagui/core").RNWTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{}, "size"> & {
|
|
89
|
-
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
90
|
-
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children"> & import("@tamagui/core").RNWTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{}, "size"> & {
|
|
91
|
-
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
92
|
-
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children"> & import("@tamagui/core").RNWTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{}, "size"> & {
|
|
93
|
-
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
94
|
-
}>>> | undefined;
|
|
95
88
|
} & React.RefAttributes<GenericElement>>;
|
|
96
89
|
export declare const SelectIcon: import("@tamagui/core").TamaguiComponent<(Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
97
|
-
fullscreen?: boolean | undefined;
|
|
98
|
-
elevation?: SizeTokens | undefined;
|
|
90
|
+
readonly fullscreen?: boolean | undefined;
|
|
91
|
+
readonly elevation?: SizeTokens | undefined;
|
|
99
92
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
100
|
-
fullscreen?: boolean | undefined;
|
|
101
|
-
elevation?: SizeTokens | undefined;
|
|
93
|
+
readonly fullscreen?: boolean | undefined;
|
|
94
|
+
readonly elevation?: SizeTokens | undefined;
|
|
102
95
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
103
|
-
fullscreen?: boolean | undefined;
|
|
104
|
-
elevation?: SizeTokens | undefined;
|
|
96
|
+
readonly fullscreen?: boolean | undefined;
|
|
97
|
+
readonly elevation?: SizeTokens | undefined;
|
|
105
98
|
}>>) | (Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
106
|
-
fullscreen?: boolean | undefined;
|
|
107
|
-
elevation?: SizeTokens | undefined;
|
|
99
|
+
readonly fullscreen?: boolean | undefined;
|
|
100
|
+
readonly elevation?: SizeTokens | undefined;
|
|
108
101
|
}, string | number> & {
|
|
109
102
|
[x: string]: undefined;
|
|
110
103
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
111
|
-
fullscreen?: boolean | undefined;
|
|
112
|
-
elevation?: SizeTokens | undefined;
|
|
104
|
+
readonly fullscreen?: boolean | undefined;
|
|
105
|
+
readonly elevation?: SizeTokens | undefined;
|
|
113
106
|
}, string | number> & {
|
|
114
107
|
[x: string]: undefined;
|
|
115
108
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
116
|
-
fullscreen?: boolean | undefined;
|
|
117
|
-
elevation?: SizeTokens | undefined;
|
|
109
|
+
readonly fullscreen?: boolean | undefined;
|
|
110
|
+
readonly elevation?: SizeTokens | undefined;
|
|
118
111
|
}, string | number> & {
|
|
119
112
|
[x: string]: undefined;
|
|
120
113
|
}>>), any, import("@tamagui/core").StackPropsBase, {
|
|
121
|
-
fullscreen?: boolean | undefined;
|
|
122
|
-
elevation?: SizeTokens | undefined;
|
|
114
|
+
readonly fullscreen?: boolean | undefined;
|
|
115
|
+
readonly elevation?: SizeTokens | undefined;
|
|
123
116
|
} & ({} | {
|
|
124
117
|
[x: string]: undefined;
|
|
125
118
|
})>;
|
|
126
119
|
export declare const SelectViewportFrame: import("@tamagui/core").TamaguiComponent<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
127
|
-
fullscreen?: boolean | undefined;
|
|
128
|
-
elevation?: SizeTokens | undefined;
|
|
120
|
+
readonly fullscreen?: boolean | undefined;
|
|
121
|
+
readonly elevation?: SizeTokens | undefined;
|
|
129
122
|
} & {
|
|
130
123
|
fontFamily?: unknown;
|
|
124
|
+
backgrounded?: boolean | undefined;
|
|
125
|
+
radiused?: boolean | undefined;
|
|
131
126
|
hoverable?: boolean | undefined;
|
|
132
127
|
pressable?: boolean | undefined;
|
|
133
128
|
focusable?: boolean | undefined;
|
|
134
129
|
circular?: boolean | undefined;
|
|
135
|
-
|
|
130
|
+
padded?: boolean | undefined;
|
|
136
131
|
elevate?: boolean | undefined;
|
|
137
132
|
bordered?: number | boolean | undefined;
|
|
138
133
|
transparent?: boolean | undefined;
|
|
@@ -140,15 +135,17 @@ export declare const SelectViewportFrame: import("@tamagui/core").TamaguiCompone
|
|
|
140
135
|
}, "size"> & {
|
|
141
136
|
size?: SizeTokens | undefined;
|
|
142
137
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
143
|
-
fullscreen?: boolean | undefined;
|
|
144
|
-
elevation?: SizeTokens | undefined;
|
|
138
|
+
readonly fullscreen?: boolean | undefined;
|
|
139
|
+
readonly elevation?: SizeTokens | undefined;
|
|
145
140
|
} & {
|
|
146
141
|
fontFamily?: unknown;
|
|
142
|
+
backgrounded?: boolean | undefined;
|
|
143
|
+
radiused?: boolean | undefined;
|
|
147
144
|
hoverable?: boolean | undefined;
|
|
148
145
|
pressable?: boolean | undefined;
|
|
149
146
|
focusable?: boolean | undefined;
|
|
150
147
|
circular?: boolean | undefined;
|
|
151
|
-
|
|
148
|
+
padded?: boolean | undefined;
|
|
152
149
|
elevate?: boolean | undefined;
|
|
153
150
|
bordered?: number | boolean | undefined;
|
|
154
151
|
transparent?: boolean | undefined;
|
|
@@ -156,15 +153,17 @@ export declare const SelectViewportFrame: import("@tamagui/core").TamaguiCompone
|
|
|
156
153
|
}, "size"> & {
|
|
157
154
|
size?: SizeTokens | undefined;
|
|
158
155
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
159
|
-
fullscreen?: boolean | undefined;
|
|
160
|
-
elevation?: SizeTokens | undefined;
|
|
156
|
+
readonly fullscreen?: boolean | undefined;
|
|
157
|
+
readonly elevation?: SizeTokens | undefined;
|
|
161
158
|
} & {
|
|
162
159
|
fontFamily?: unknown;
|
|
160
|
+
backgrounded?: boolean | undefined;
|
|
161
|
+
radiused?: boolean | undefined;
|
|
163
162
|
hoverable?: boolean | undefined;
|
|
164
163
|
pressable?: boolean | undefined;
|
|
165
164
|
focusable?: boolean | undefined;
|
|
166
165
|
circular?: boolean | undefined;
|
|
167
|
-
|
|
166
|
+
padded?: boolean | undefined;
|
|
168
167
|
elevate?: boolean | undefined;
|
|
169
168
|
bordered?: number | boolean | undefined;
|
|
170
169
|
transparent?: boolean | undefined;
|
|
@@ -172,15 +171,17 @@ export declare const SelectViewportFrame: import("@tamagui/core").TamaguiCompone
|
|
|
172
171
|
}, "size"> & {
|
|
173
172
|
size?: SizeTokens | undefined;
|
|
174
173
|
}>>, any, import("@tamagui/core").StackPropsBase, {
|
|
175
|
-
fullscreen?: boolean | undefined;
|
|
176
|
-
elevation?: SizeTokens | undefined;
|
|
174
|
+
readonly fullscreen?: boolean | undefined;
|
|
175
|
+
readonly elevation?: SizeTokens | undefined;
|
|
177
176
|
} & {
|
|
178
177
|
fontFamily?: unknown;
|
|
178
|
+
backgrounded?: boolean | undefined;
|
|
179
|
+
radiused?: boolean | undefined;
|
|
179
180
|
hoverable?: boolean | undefined;
|
|
180
181
|
pressable?: boolean | undefined;
|
|
181
182
|
focusable?: boolean | undefined;
|
|
182
183
|
circular?: boolean | undefined;
|
|
183
|
-
|
|
184
|
+
padded?: boolean | undefined;
|
|
184
185
|
elevate?: boolean | undefined;
|
|
185
186
|
bordered?: number | boolean | undefined;
|
|
186
187
|
transparent?: boolean | undefined;
|
|
@@ -281,83 +282,83 @@ export interface SelectProps {
|
|
|
281
282
|
export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element) & {
|
|
282
283
|
Content: React.ForwardRefExoticComponent<Pick<any, string | number | symbol> & React.RefAttributes<any>>;
|
|
283
284
|
Group: React.ForwardRefExoticComponent<((Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
284
|
-
fullscreen?: boolean | undefined;
|
|
285
|
-
elevation?: SizeTokens | undefined;
|
|
285
|
+
readonly fullscreen?: boolean | undefined;
|
|
286
|
+
readonly elevation?: SizeTokens | undefined;
|
|
286
287
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
287
|
-
fullscreen?: boolean | undefined;
|
|
288
|
-
elevation?: SizeTokens | undefined;
|
|
288
|
+
readonly fullscreen?: boolean | undefined;
|
|
289
|
+
readonly elevation?: SizeTokens | undefined;
|
|
289
290
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
290
|
-
fullscreen?: boolean | undefined;
|
|
291
|
-
elevation?: SizeTokens | undefined;
|
|
291
|
+
readonly fullscreen?: boolean | undefined;
|
|
292
|
+
readonly elevation?: SizeTokens | undefined;
|
|
292
293
|
}>>) | Pick<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
293
|
-
fullscreen?: boolean | undefined;
|
|
294
|
-
elevation?: SizeTokens | undefined;
|
|
294
|
+
readonly fullscreen?: boolean | undefined;
|
|
295
|
+
readonly elevation?: SizeTokens | undefined;
|
|
295
296
|
}, string | number> & {
|
|
296
297
|
[x: string]: undefined;
|
|
297
298
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
298
|
-
fullscreen?: boolean | undefined;
|
|
299
|
-
elevation?: SizeTokens | undefined;
|
|
299
|
+
readonly fullscreen?: boolean | undefined;
|
|
300
|
+
readonly elevation?: SizeTokens | undefined;
|
|
300
301
|
}, string | number> & {
|
|
301
302
|
[x: string]: undefined;
|
|
302
303
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
303
|
-
fullscreen?: boolean | undefined;
|
|
304
|
-
elevation?: SizeTokens | undefined;
|
|
304
|
+
readonly fullscreen?: boolean | undefined;
|
|
305
|
+
readonly elevation?: SizeTokens | undefined;
|
|
305
306
|
}, string | number> & {
|
|
306
307
|
[x: string]: undefined;
|
|
307
308
|
}>>, string | number>) & React.RefAttributes<TamaguiElement>>;
|
|
308
309
|
Icon: import("@tamagui/core").TamaguiComponent<(Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
309
|
-
fullscreen?: boolean | undefined;
|
|
310
|
-
elevation?: SizeTokens | undefined;
|
|
310
|
+
readonly fullscreen?: boolean | undefined;
|
|
311
|
+
readonly elevation?: SizeTokens | undefined;
|
|
311
312
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
312
|
-
fullscreen?: boolean | undefined;
|
|
313
|
-
elevation?: SizeTokens | undefined;
|
|
313
|
+
readonly fullscreen?: boolean | undefined;
|
|
314
|
+
readonly elevation?: SizeTokens | undefined;
|
|
314
315
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
315
|
-
fullscreen?: boolean | undefined;
|
|
316
|
-
elevation?: SizeTokens | undefined;
|
|
316
|
+
readonly fullscreen?: boolean | undefined;
|
|
317
|
+
readonly elevation?: SizeTokens | undefined;
|
|
317
318
|
}>>) | (Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
318
|
-
fullscreen?: boolean | undefined;
|
|
319
|
-
elevation?: SizeTokens | undefined;
|
|
319
|
+
readonly fullscreen?: boolean | undefined;
|
|
320
|
+
readonly elevation?: SizeTokens | undefined;
|
|
320
321
|
}, string | number> & {
|
|
321
322
|
[x: string]: undefined;
|
|
322
323
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
323
|
-
fullscreen?: boolean | undefined;
|
|
324
|
-
elevation?: SizeTokens | undefined;
|
|
324
|
+
readonly fullscreen?: boolean | undefined;
|
|
325
|
+
readonly elevation?: SizeTokens | undefined;
|
|
325
326
|
}, string | number> & {
|
|
326
327
|
[x: string]: undefined;
|
|
327
328
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
328
|
-
fullscreen?: boolean | undefined;
|
|
329
|
-
elevation?: SizeTokens | undefined;
|
|
329
|
+
readonly fullscreen?: boolean | undefined;
|
|
330
|
+
readonly elevation?: SizeTokens | undefined;
|
|
330
331
|
}, string | number> & {
|
|
331
332
|
[x: string]: undefined;
|
|
332
333
|
}>>), any, import("@tamagui/core").StackPropsBase, {
|
|
333
|
-
fullscreen?: boolean | undefined;
|
|
334
|
-
elevation?: SizeTokens | undefined;
|
|
334
|
+
readonly fullscreen?: boolean | undefined;
|
|
335
|
+
readonly elevation?: SizeTokens | undefined;
|
|
335
336
|
} & ({} | {
|
|
336
337
|
[x: string]: undefined;
|
|
337
338
|
})>;
|
|
338
339
|
Item: React.ForwardRefExoticComponent<SelectItemProps & React.RefAttributes<TamaguiElement>>;
|
|
339
340
|
ItemIndicator: React.ForwardRefExoticComponent<((Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
340
|
-
fullscreen?: boolean | undefined;
|
|
341
|
-
elevation?: SizeTokens | undefined;
|
|
341
|
+
readonly fullscreen?: boolean | undefined;
|
|
342
|
+
readonly elevation?: SizeTokens | undefined;
|
|
342
343
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
343
|
-
fullscreen?: boolean | undefined;
|
|
344
|
-
elevation?: SizeTokens | undefined;
|
|
344
|
+
readonly fullscreen?: boolean | undefined;
|
|
345
|
+
readonly elevation?: SizeTokens | undefined;
|
|
345
346
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{}, "elevation" | "fullscreen"> & {
|
|
346
|
-
fullscreen?: boolean | undefined;
|
|
347
|
-
elevation?: SizeTokens | undefined;
|
|
347
|
+
readonly fullscreen?: boolean | undefined;
|
|
348
|
+
readonly elevation?: SizeTokens | undefined;
|
|
348
349
|
}>>) | Pick<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
349
|
-
fullscreen?: boolean | undefined;
|
|
350
|
-
elevation?: SizeTokens | undefined;
|
|
350
|
+
readonly fullscreen?: boolean | undefined;
|
|
351
|
+
readonly elevation?: SizeTokens | undefined;
|
|
351
352
|
}, string | number> & {
|
|
352
353
|
[x: string]: undefined;
|
|
353
354
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
354
|
-
fullscreen?: boolean | undefined;
|
|
355
|
-
elevation?: SizeTokens | undefined;
|
|
355
|
+
readonly fullscreen?: boolean | undefined;
|
|
356
|
+
readonly elevation?: SizeTokens | undefined;
|
|
356
357
|
}, string | number> & {
|
|
357
358
|
[x: string]: undefined;
|
|
358
359
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
359
|
-
fullscreen?: boolean | undefined;
|
|
360
|
-
elevation?: SizeTokens | undefined;
|
|
360
|
+
readonly fullscreen?: boolean | undefined;
|
|
361
|
+
readonly elevation?: SizeTokens | undefined;
|
|
361
362
|
}, string | number> & {
|
|
362
363
|
[x: string]: undefined;
|
|
363
364
|
}>>, string | number>) & React.RefAttributes<TamaguiElement>>;
|
|
@@ -449,60 +450,66 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
449
450
|
}>> & React.RefAttributes<TamaguiElement>>;
|
|
450
451
|
ScrollDownButton: React.ForwardRefExoticComponent<SelectScrollButtonProps & React.RefAttributes<TamaguiElement>>;
|
|
451
452
|
ScrollUpButton: React.ForwardRefExoticComponent<SelectScrollButtonProps & React.RefAttributes<TamaguiElement>>;
|
|
452
|
-
Trigger: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
453
|
-
fullscreen?: boolean | undefined;
|
|
454
|
-
elevation?: SizeTokens | undefined;
|
|
453
|
+
Trigger: React.ForwardRefExoticComponent<Omit<import("@tamagui/helpers-tamagui").TextParentStyles, "TextComponent"> & Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
454
|
+
readonly fullscreen?: boolean | undefined;
|
|
455
|
+
readonly elevation?: SizeTokens | undefined;
|
|
455
456
|
} & {
|
|
456
457
|
fontFamily?: unknown;
|
|
458
|
+
backgrounded?: boolean | undefined;
|
|
459
|
+
radiused?: boolean | undefined;
|
|
457
460
|
hoverable?: boolean | undefined;
|
|
458
461
|
pressable?: boolean | undefined;
|
|
459
462
|
focusable?: boolean | undefined;
|
|
460
463
|
circular?: boolean | undefined;
|
|
461
|
-
|
|
464
|
+
padded?: boolean | undefined;
|
|
462
465
|
elevate?: boolean | undefined;
|
|
463
466
|
bordered?: number | boolean | undefined;
|
|
464
467
|
transparent?: boolean | undefined;
|
|
465
468
|
chromeless?: boolean | undefined;
|
|
466
469
|
}, "disabled" | "size" | "active"> & {
|
|
467
|
-
size?: SizeTokens | undefined;
|
|
468
|
-
active?: boolean | undefined;
|
|
469
|
-
disabled?: boolean | undefined;
|
|
470
|
+
readonly size?: SizeTokens | undefined;
|
|
471
|
+
readonly active?: boolean | undefined;
|
|
472
|
+
readonly disabled?: boolean | undefined;
|
|
470
473
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
471
|
-
fullscreen?: boolean | undefined;
|
|
472
|
-
elevation?: SizeTokens | undefined;
|
|
474
|
+
readonly fullscreen?: boolean | undefined;
|
|
475
|
+
readonly elevation?: SizeTokens | undefined;
|
|
473
476
|
} & {
|
|
474
477
|
fontFamily?: unknown;
|
|
478
|
+
backgrounded?: boolean | undefined;
|
|
479
|
+
radiused?: boolean | undefined;
|
|
475
480
|
hoverable?: boolean | undefined;
|
|
476
481
|
pressable?: boolean | undefined;
|
|
477
482
|
focusable?: boolean | undefined;
|
|
478
483
|
circular?: boolean | undefined;
|
|
479
|
-
|
|
484
|
+
padded?: boolean | undefined;
|
|
480
485
|
elevate?: boolean | undefined;
|
|
481
486
|
bordered?: number | boolean | undefined;
|
|
482
487
|
transparent?: boolean | undefined;
|
|
483
488
|
chromeless?: boolean | undefined;
|
|
484
489
|
}, "disabled" | "size" | "active"> & {
|
|
485
|
-
size?: SizeTokens | undefined;
|
|
486
|
-
active?: boolean | undefined;
|
|
487
|
-
disabled?: boolean | undefined;
|
|
490
|
+
readonly size?: SizeTokens | undefined;
|
|
491
|
+
readonly active?: boolean | undefined;
|
|
492
|
+
readonly disabled?: boolean | undefined;
|
|
488
493
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
489
|
-
fullscreen?: boolean | undefined;
|
|
490
|
-
elevation?: SizeTokens | undefined;
|
|
494
|
+
readonly fullscreen?: boolean | undefined;
|
|
495
|
+
readonly elevation?: SizeTokens | undefined;
|
|
491
496
|
} & {
|
|
492
497
|
fontFamily?: unknown;
|
|
498
|
+
backgrounded?: boolean | undefined;
|
|
499
|
+
radiused?: boolean | undefined;
|
|
493
500
|
hoverable?: boolean | undefined;
|
|
494
501
|
pressable?: boolean | undefined;
|
|
495
502
|
focusable?: boolean | undefined;
|
|
496
503
|
circular?: boolean | undefined;
|
|
497
|
-
|
|
504
|
+
padded?: boolean | undefined;
|
|
498
505
|
elevate?: boolean | undefined;
|
|
499
506
|
bordered?: number | boolean | undefined;
|
|
500
507
|
transparent?: boolean | undefined;
|
|
501
508
|
chromeless?: boolean | undefined;
|
|
502
509
|
}, "disabled" | "size" | "active"> & {
|
|
503
|
-
size?: SizeTokens | undefined;
|
|
504
|
-
active?: boolean | undefined;
|
|
505
|
-
disabled?: boolean | undefined;
|
|
510
|
+
readonly size?: SizeTokens | undefined;
|
|
511
|
+
readonly active?: boolean | undefined;
|
|
512
|
+
readonly disabled?: boolean | undefined;
|
|
506
513
|
}>> & import("@tamagui/core").ThemeableProps & {
|
|
507
514
|
icon?: (JSX.Element | React.FunctionComponent<{
|
|
508
515
|
color?: string | undefined;
|
|
@@ -516,19 +523,6 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
516
523
|
noTextWrap?: boolean | undefined;
|
|
517
524
|
spaceFlex?: number | boolean | undefined;
|
|
518
525
|
scaleSpace?: number | undefined;
|
|
519
|
-
color?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").ColorTokens | import("react-native").OpaqueColorValue | undefined;
|
|
520
|
-
fontWeight?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").FontWeightTokens | undefined;
|
|
521
|
-
fontSize?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").FontSizeTokens | undefined;
|
|
522
|
-
fontFamily?: import("@tamagui/core").FontTokens | import("@tamagui/core").ThemeValueFallback | undefined;
|
|
523
|
-
letterSpacing?: import("@tamagui/core").ThemeValueFallback | import("@tamagui/core").FontLetterSpacingTokens | undefined;
|
|
524
|
-
textAlign?: "left" | "right" | "auto" | "center" | "justify" | undefined;
|
|
525
|
-
textProps?: Partial<Omit<import("react-native").TextProps, "children"> & import("@tamagui/core").RNWTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{}, "size"> & {
|
|
526
|
-
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
527
|
-
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").TextProps, "children"> & import("@tamagui/core").RNWTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{}, "size"> & {
|
|
528
|
-
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
529
|
-
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").TextProps, "children"> & import("@tamagui/core").RNWTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{}, "size"> & {
|
|
530
|
-
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
531
|
-
}>>> | undefined;
|
|
532
526
|
} & React.RefAttributes<GenericElement>>;
|
|
533
527
|
Value: React.ForwardRefExoticComponent<((Omit<import("react-native").TextProps, "children"> & import("@tamagui/core").RNWTextProps & import("@tamagui/core").TamaguiComponentPropsBase & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase>> & Omit<{}, "size"> & {
|
|
534
528
|
size?: import("@tamagui/core").FontSizeTokens | undefined;
|
|
@@ -594,15 +588,17 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
594
588
|
placeholder?: React.ReactNode;
|
|
595
589
|
}, string | number>) & React.RefAttributes<TamaguiElement>>;
|
|
596
590
|
Viewport: React.ForwardRefExoticComponent<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
597
|
-
fullscreen?: boolean | undefined;
|
|
598
|
-
elevation?: SizeTokens | undefined;
|
|
591
|
+
readonly fullscreen?: boolean | undefined;
|
|
592
|
+
readonly elevation?: SizeTokens | undefined;
|
|
599
593
|
} & {
|
|
600
594
|
fontFamily?: unknown;
|
|
595
|
+
backgrounded?: boolean | undefined;
|
|
596
|
+
radiused?: boolean | undefined;
|
|
601
597
|
hoverable?: boolean | undefined;
|
|
602
598
|
pressable?: boolean | undefined;
|
|
603
599
|
focusable?: boolean | undefined;
|
|
604
600
|
circular?: boolean | undefined;
|
|
605
|
-
|
|
601
|
+
padded?: boolean | undefined;
|
|
606
602
|
elevate?: boolean | undefined;
|
|
607
603
|
bordered?: number | boolean | undefined;
|
|
608
604
|
transparent?: boolean | undefined;
|
|
@@ -610,15 +606,17 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
610
606
|
}, "size"> & {
|
|
611
607
|
size?: SizeTokens | undefined;
|
|
612
608
|
} & import("@tamagui/core").MediaProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
613
|
-
fullscreen?: boolean | undefined;
|
|
614
|
-
elevation?: SizeTokens | undefined;
|
|
609
|
+
readonly fullscreen?: boolean | undefined;
|
|
610
|
+
readonly elevation?: SizeTokens | undefined;
|
|
615
611
|
} & {
|
|
616
612
|
fontFamily?: unknown;
|
|
613
|
+
backgrounded?: boolean | undefined;
|
|
614
|
+
radiused?: boolean | undefined;
|
|
617
615
|
hoverable?: boolean | undefined;
|
|
618
616
|
pressable?: boolean | undefined;
|
|
619
617
|
focusable?: boolean | undefined;
|
|
620
618
|
circular?: boolean | undefined;
|
|
621
|
-
|
|
619
|
+
padded?: boolean | undefined;
|
|
622
620
|
elevate?: boolean | undefined;
|
|
623
621
|
bordered?: number | boolean | undefined;
|
|
624
622
|
transparent?: boolean | undefined;
|
|
@@ -626,15 +624,17 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
626
624
|
}, "size"> & {
|
|
627
625
|
size?: SizeTokens | undefined;
|
|
628
626
|
}>> & import("@tamagui/core").PseudoProps<Partial<Omit<import("react-native").ViewProps, "children" | "display"> & 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<{
|
|
629
|
-
fullscreen?: boolean | undefined;
|
|
630
|
-
elevation?: SizeTokens | undefined;
|
|
627
|
+
readonly fullscreen?: boolean | undefined;
|
|
628
|
+
readonly elevation?: SizeTokens | undefined;
|
|
631
629
|
} & {
|
|
632
630
|
fontFamily?: unknown;
|
|
631
|
+
backgrounded?: boolean | undefined;
|
|
632
|
+
radiused?: boolean | undefined;
|
|
633
633
|
hoverable?: boolean | undefined;
|
|
634
634
|
pressable?: boolean | undefined;
|
|
635
635
|
focusable?: boolean | undefined;
|
|
636
636
|
circular?: boolean | undefined;
|
|
637
|
-
|
|
637
|
+
padded?: boolean | undefined;
|
|
638
638
|
elevate?: boolean | undefined;
|
|
639
639
|
bordered?: number | boolean | undefined;
|
|
640
640
|
transparent?: 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":"AAsBA,OAAO,EAAU,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAErD,OAAO,EACL,QAAQ,EACR,UAAU,EASX,MAAM,eAAe,CAAA;AAMtB,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,yBAAyB,CAAA;AAKpD,OAAO,EAAkC,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAS7E,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,OAAO,EAAE,IAAI,EAAE,MAAM,cAAc,CAAA;AAInC,aAAK,cAAc,GAAG,WAAW,GAAG,IAAI,CAAA;AA4DxC,aAAK,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,aAAa,CAAC,EAAE,KAAK,CAAA;CAAE,CAAA;AAEnD,QAAA,MAA4B,iBAAiB,+CAAmC,CAAA;AAMhF,aAAK,cAAc,GAAG,WAAW,GAAG,IAAI,CAAA;AAExC,aAAK,SAAS,GAAG,KAAK,GAAG,KAAK,CAAA;AAW9B,oBAAY,kBAAkB,GAAG,WAAW,CAAA;AAE5C,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../src/Select.tsx"],"names":[],"mappings":"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"}
|