@tamagui/select 1.88.6 → 1.88.7
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/dist/cjs/Select.js +25 -23
- package/dist/cjs/Select.js.map +1 -1
- package/dist/cjs/Select.native.js +25 -23
- package/dist/cjs/Select.native.js.map +1 -1
- package/dist/cjs/SelectImpl.js +2 -2
- package/dist/cjs/SelectImpl.js.map +1 -1
- package/dist/cjs/SelectItem.js.map +1 -1
- package/dist/cjs/SelectItem.native.js.map +1 -1
- package/dist/esm/Select.js +25 -23
- package/dist/esm/Select.js.map +1 -1
- package/dist/esm/Select.native.js +25 -23
- package/dist/esm/Select.native.js.map +1 -1
- package/dist/esm/SelectImpl.js +2 -2
- package/dist/esm/SelectImpl.js.map +1 -1
- package/dist/esm/SelectItem.js.map +1 -1
- package/dist/esm/SelectItem.native.js.map +1 -1
- package/dist/jsx/Select.js +25 -23
- package/dist/jsx/Select.js.map +1 -1
- package/dist/jsx/Select.native.js +25 -23
- package/dist/jsx/Select.native.js.map +1 -1
- package/dist/jsx/SelectImpl.js +2 -2
- package/dist/jsx/SelectImpl.js.map +1 -1
- package/dist/jsx/SelectItem.js.map +1 -1
- package/dist/jsx/SelectItem.native.js.map +1 -1
- package/package.json +22 -22
- package/src/Select.tsx +37 -33
- package/src/SelectImpl.tsx +2 -1
- package/src/SelectItem.tsx +4 -2
- package/src/SelectViewport.tsx +2 -2
- package/src/types.tsx +3 -1
- package/types/Select.d.ts +138 -306
- package/types/Select.d.ts.map +1 -1
- package/types/SelectImpl.d.ts.map +1 -1
- package/types/SelectItem.d.ts +4 -20
- package/types/SelectItem.d.ts.map +1 -1
- package/types/SelectItemText.d.ts +1 -4
- package/types/SelectItemText.d.ts.map +1 -1
- package/types/SelectTrigger.d.ts +11 -11
- package/types/SelectViewport.d.ts +2 -193
- package/types/SelectViewport.d.ts.map +1 -1
- package/types/types.d.ts +3 -2
- package/types/types.d.ts.map +1 -1
package/types/Select.d.ts
CHANGED
|
@@ -2,6 +2,9 @@ import { FontSizeTokens, TamaguiElement } from '@tamagui/core';
|
|
|
2
2
|
import { ListItemProps } from '@tamagui/list-item';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
import { ScopedProps, SelectProps } from './types';
|
|
5
|
+
interface SelectValueExtraProps {
|
|
6
|
+
placeholder?: React.ReactNode;
|
|
7
|
+
}
|
|
5
8
|
export declare const SelectIcon: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
6
9
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
7
10
|
fullscreen?: boolean | undefined;
|
|
@@ -27,19 +30,19 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
27
30
|
} & {
|
|
28
31
|
__scopeSelect?: import("@tamagui/create-context").Scope;
|
|
29
32
|
} & import("@tamagui/focus-scope").FocusScopeProps) => JSX.Element | null;
|
|
30
|
-
Group: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps,
|
|
33
|
+
Group: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
31
34
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
32
35
|
fullscreen?: boolean | undefined;
|
|
33
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
36
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
34
37
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
35
38
|
fullscreen?: boolean | undefined;
|
|
36
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
39
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
37
40
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
38
41
|
fullscreen?: boolean | undefined;
|
|
39
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
42
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
40
43
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
41
44
|
fullscreen?: boolean | undefined;
|
|
42
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
45
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
43
46
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
44
47
|
fullscreen?: boolean | undefined;
|
|
45
48
|
}>> & React.RefAttributes<TamaguiElement>>;
|
|
@@ -47,29 +50,11 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
47
50
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
48
51
|
fullscreen?: boolean | undefined;
|
|
49
52
|
}, {}>;
|
|
50
|
-
Item: import("@tamagui/core").TamaguiComponent<
|
|
53
|
+
Item: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & import("./SelectItem").SelectItemExtraProps, Omit<import("@tamagui/core").StackStyleBase, keyof import("./SelectItem").SelectItemExtraProps>, {
|
|
51
54
|
unstyled?: boolean | undefined;
|
|
52
55
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
53
|
-
disabled?: boolean | undefined;
|
|
54
56
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
55
|
-
transparent?: boolean | undefined;
|
|
56
|
-
fullscreen?: boolean | undefined;
|
|
57
|
-
circular?: boolean | undefined;
|
|
58
|
-
hoverTheme?: boolean | undefined;
|
|
59
|
-
pressTheme?: boolean | undefined;
|
|
60
|
-
focusTheme?: boolean | undefined;
|
|
61
|
-
elevate?: boolean | undefined;
|
|
62
|
-
bordered?: number | boolean | undefined;
|
|
63
|
-
backgrounded?: boolean | undefined;
|
|
64
|
-
radiused?: boolean | undefined;
|
|
65
|
-
padded?: boolean | undefined;
|
|
66
|
-
chromeless?: boolean | "all" | undefined;
|
|
67
|
-
active?: boolean | undefined;
|
|
68
|
-
}>, keyof import("./SelectItem").SelectItemProps> & import("./SelectItem").SelectItemProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & import("./SelectItem").SelectItemProps, import("@tamagui/core").StackStyleBase, {
|
|
69
|
-
unstyled?: boolean | undefined;
|
|
70
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
71
57
|
disabled?: boolean | undefined;
|
|
72
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
73
58
|
transparent?: boolean | undefined;
|
|
74
59
|
fullscreen?: boolean | undefined;
|
|
75
60
|
circular?: boolean | undefined;
|
|
@@ -84,34 +69,31 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
84
69
|
chromeless?: boolean | "all" | undefined;
|
|
85
70
|
active?: boolean | undefined;
|
|
86
71
|
}, {}>;
|
|
87
|
-
ItemIndicator: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps,
|
|
72
|
+
ItemIndicator: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
88
73
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
89
74
|
fullscreen?: boolean | undefined;
|
|
90
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
75
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
91
76
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
92
77
|
fullscreen?: boolean | undefined;
|
|
93
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
78
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
94
79
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
95
80
|
fullscreen?: boolean | undefined;
|
|
96
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
81
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
97
82
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
98
83
|
fullscreen?: boolean | undefined;
|
|
99
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
84
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
100
85
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
101
86
|
fullscreen?: boolean | undefined;
|
|
102
87
|
}>> & React.RefAttributes<TamaguiElement>>;
|
|
103
|
-
ItemText: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").
|
|
104
|
-
size?: FontSizeTokens | undefined;
|
|
105
|
-
unstyled?: boolean | undefined;
|
|
106
|
-
}>, import("@tamagui/core").TamaguiTextElement, import("@tamagui/core").TextNonStyleProps & void, import("@tamagui/core").TextStylePropsBase, {
|
|
88
|
+
ItemText: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiTextElement, import("@tamagui/core").TextNonStyleProps & void, Omit<import("@tamagui/core").TextStylePropsBase, never>, {
|
|
107
89
|
size?: FontSizeTokens | undefined;
|
|
108
90
|
unstyled?: boolean | undefined;
|
|
109
91
|
}, {}>;
|
|
110
|
-
Label: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
92
|
+
Label: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
111
93
|
unstyled?: boolean | undefined;
|
|
112
94
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
113
|
-
disabled?: boolean | undefined;
|
|
114
95
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
96
|
+
disabled?: boolean | undefined;
|
|
115
97
|
transparent?: boolean | undefined;
|
|
116
98
|
fullscreen?: boolean | undefined;
|
|
117
99
|
circular?: boolean | undefined;
|
|
@@ -125,11 +107,11 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
125
107
|
padded?: boolean | undefined;
|
|
126
108
|
chromeless?: boolean | "all" | undefined;
|
|
127
109
|
active?: boolean | undefined;
|
|
128
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
110
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
129
111
|
unstyled?: boolean | undefined;
|
|
130
112
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
131
|
-
disabled?: boolean | undefined;
|
|
132
113
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
114
|
+
disabled?: boolean | undefined;
|
|
133
115
|
transparent?: boolean | undefined;
|
|
134
116
|
fullscreen?: boolean | undefined;
|
|
135
117
|
circular?: boolean | undefined;
|
|
@@ -143,11 +125,11 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
143
125
|
padded?: boolean | undefined;
|
|
144
126
|
chromeless?: boolean | "all" | undefined;
|
|
145
127
|
active?: boolean | undefined;
|
|
146
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
128
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
147
129
|
unstyled?: boolean | undefined;
|
|
148
130
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
149
|
-
disabled?: boolean | undefined;
|
|
150
131
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
132
|
+
disabled?: boolean | undefined;
|
|
151
133
|
transparent?: boolean | undefined;
|
|
152
134
|
fullscreen?: boolean | undefined;
|
|
153
135
|
circular?: boolean | undefined;
|
|
@@ -161,11 +143,11 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
161
143
|
padded?: boolean | undefined;
|
|
162
144
|
chromeless?: boolean | "all" | undefined;
|
|
163
145
|
active?: boolean | undefined;
|
|
164
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
146
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
165
147
|
unstyled?: boolean | undefined;
|
|
166
148
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
167
|
-
disabled?: boolean | undefined;
|
|
168
149
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
150
|
+
disabled?: boolean | undefined;
|
|
169
151
|
transparent?: boolean | undefined;
|
|
170
152
|
fullscreen?: boolean | undefined;
|
|
171
153
|
circular?: boolean | undefined;
|
|
@@ -179,11 +161,11 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
179
161
|
padded?: boolean | undefined;
|
|
180
162
|
chromeless?: boolean | "all" | undefined;
|
|
181
163
|
active?: boolean | undefined;
|
|
182
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
164
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
183
165
|
unstyled?: boolean | undefined;
|
|
184
166
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
185
|
-
disabled?: boolean | undefined;
|
|
186
167
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
168
|
+
disabled?: boolean | undefined;
|
|
187
169
|
transparent?: boolean | undefined;
|
|
188
170
|
fullscreen?: boolean | undefined;
|
|
189
171
|
circular?: boolean | undefined;
|
|
@@ -197,7 +179,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
197
179
|
padded?: boolean | undefined;
|
|
198
180
|
chromeless?: boolean | "all" | undefined;
|
|
199
181
|
active?: boolean | undefined;
|
|
200
|
-
}>> & import("@tamagui/core").ThemeableProps & {
|
|
182
|
+
}>> & Omit<import("@tamagui/text").TextParentStyles, "TextComponent" | "noTextWrap"> & import("@tamagui/core").ThemeableProps & {
|
|
201
183
|
icon?: (JSX.Element | React.FunctionComponent<{
|
|
202
184
|
color?: string | undefined;
|
|
203
185
|
size?: number | undefined;
|
|
@@ -215,11 +197,11 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
215
197
|
} & React.RefAttributes<TamaguiElement>>;
|
|
216
198
|
ScrollDownButton: React.ForwardRefExoticComponent<import("./types").SelectScrollButtonProps & React.RefAttributes<TamaguiElement>>;
|
|
217
199
|
ScrollUpButton: React.ForwardRefExoticComponent<import("./types").SelectScrollButtonProps & React.RefAttributes<TamaguiElement>>;
|
|
218
|
-
Trigger: React.ForwardRefExoticComponent<Omit<import("@tamagui/
|
|
200
|
+
Trigger: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
219
201
|
unstyled?: boolean | undefined;
|
|
220
202
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
221
|
-
disabled?: boolean | undefined;
|
|
222
203
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
204
|
+
disabled?: boolean | undefined;
|
|
223
205
|
transparent?: boolean | undefined;
|
|
224
206
|
fullscreen?: boolean | undefined;
|
|
225
207
|
circular?: boolean | undefined;
|
|
@@ -233,11 +215,11 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
233
215
|
padded?: boolean | undefined;
|
|
234
216
|
chromeless?: boolean | "all" | undefined;
|
|
235
217
|
active?: boolean | undefined;
|
|
236
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
218
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
237
219
|
unstyled?: boolean | undefined;
|
|
238
220
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
239
|
-
disabled?: boolean | undefined;
|
|
240
221
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
222
|
+
disabled?: boolean | undefined;
|
|
241
223
|
transparent?: boolean | undefined;
|
|
242
224
|
fullscreen?: boolean | undefined;
|
|
243
225
|
circular?: boolean | undefined;
|
|
@@ -251,11 +233,11 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
251
233
|
padded?: boolean | undefined;
|
|
252
234
|
chromeless?: boolean | "all" | undefined;
|
|
253
235
|
active?: boolean | undefined;
|
|
254
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
236
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
255
237
|
unstyled?: boolean | undefined;
|
|
256
238
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
257
|
-
disabled?: boolean | undefined;
|
|
258
239
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
240
|
+
disabled?: boolean | undefined;
|
|
259
241
|
transparent?: boolean | undefined;
|
|
260
242
|
fullscreen?: boolean | undefined;
|
|
261
243
|
circular?: boolean | undefined;
|
|
@@ -269,11 +251,11 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
269
251
|
padded?: boolean | undefined;
|
|
270
252
|
chromeless?: boolean | "all" | undefined;
|
|
271
253
|
active?: boolean | undefined;
|
|
272
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
254
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
273
255
|
unstyled?: boolean | undefined;
|
|
274
256
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
275
|
-
disabled?: boolean | undefined;
|
|
276
257
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
258
|
+
disabled?: boolean | undefined;
|
|
277
259
|
transparent?: boolean | undefined;
|
|
278
260
|
fullscreen?: boolean | undefined;
|
|
279
261
|
circular?: boolean | undefined;
|
|
@@ -287,11 +269,11 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
287
269
|
padded?: boolean | undefined;
|
|
288
270
|
chromeless?: boolean | "all" | undefined;
|
|
289
271
|
active?: boolean | undefined;
|
|
290
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
272
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
291
273
|
unstyled?: boolean | undefined;
|
|
292
274
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
293
|
-
disabled?: boolean | undefined;
|
|
294
275
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
276
|
+
disabled?: boolean | undefined;
|
|
295
277
|
transparent?: boolean | undefined;
|
|
296
278
|
fullscreen?: boolean | undefined;
|
|
297
279
|
circular?: boolean | undefined;
|
|
@@ -305,7 +287,7 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
305
287
|
padded?: boolean | undefined;
|
|
306
288
|
chromeless?: boolean | "all" | undefined;
|
|
307
289
|
active?: boolean | undefined;
|
|
308
|
-
}>> & import("@tamagui/core").ThemeableProps & {
|
|
290
|
+
}>> & Omit<import("@tamagui/text").TextParentStyles, "TextComponent" | "noTextWrap"> & import("@tamagui/core").ThemeableProps & {
|
|
309
291
|
icon?: (JSX.Element | React.FunctionComponent<{
|
|
310
292
|
color?: string | undefined;
|
|
311
293
|
size?: number | undefined;
|
|
@@ -321,246 +303,11 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
321
303
|
subTitle?: React.ReactNode;
|
|
322
304
|
noTextWrap?: boolean | "all" | undefined;
|
|
323
305
|
} & React.RefAttributes<TamaguiElement>>;
|
|
324
|
-
Value: import("@tamagui/core").TamaguiComponent<
|
|
325
|
-
size?: FontSizeTokens | undefined;
|
|
326
|
-
unstyled?: boolean | undefined;
|
|
327
|
-
}>, "style" | "disabled" | "size" | "className" | "id" | "placeholder" | "tabIndex" | "role" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-hidden" | "aria-label" | "aria-labelledby" | "aria-live" | "aria-modal" | "aria-selected" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onFocus" | "onBlur" | "onMouseDown" | "onMouseEnter" | "onMouseLeave" | "onMouseUp" | `$${string}` | `$${number}` | "nativeID" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "accessibilityRole" | "accessibilityState" | "accessibilityHint" | "accessibilityValue" | "onAccessibilityAction" | "importantForAccessibility" | "accessibilityLiveRegion" | "accessibilityLabelledBy" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "target" | "asChild" | "debug" | "themeShallow" | "themeInverse" | "tag" | "theme" | "group" | "untilMeasured" | "componentName" | "disableOptimization" | "forceStyle" | "disableClassName" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onHoverIn" | "onHoverOut" | `$theme-${string}` | `$theme-${number}` | "maxFontSizeMultiplier" | "unstyled" | "allowFontScaling" | "ellipsizeMode" | "lineBreakMode" | "numberOfLines" | "onTextLayout" | "adjustsFontSizeToFit" | "dynamicTypeRamp" | "minimumFontScale" | "suppressHighlighting" | "lineBreakStrategyIOS" | "selectable" | "selectionColor" | "textBreakStrategy" | "dataDetectorType" | "android_hyphenationFrequency" | keyof import("@tamagui/core").TextStylePropsBase | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
328
|
-
size?: FontSizeTokens | undefined;
|
|
329
|
-
unstyled?: boolean | undefined;
|
|
330
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
331
|
-
size?: FontSizeTokens | undefined;
|
|
332
|
-
unstyled?: boolean | undefined;
|
|
333
|
-
}>>>> & Omit<import("@tamagui/core").TextNonStyleProps, "size" | "unstyled" | keyof import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
334
|
-
size?: FontSizeTokens | undefined;
|
|
335
|
-
unstyled?: boolean | undefined;
|
|
336
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
337
|
-
size?: FontSizeTokens | undefined;
|
|
338
|
-
unstyled?: boolean | undefined;
|
|
339
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
340
|
-
size?: FontSizeTokens | undefined;
|
|
341
|
-
unstyled?: boolean | undefined;
|
|
342
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
343
|
-
size?: FontSizeTokens | undefined;
|
|
344
|
-
unstyled?: boolean | undefined;
|
|
345
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").TextStylePropsBase & {
|
|
346
|
-
size?: FontSizeTokens | undefined;
|
|
347
|
-
unstyled?: boolean | undefined;
|
|
348
|
-
}>> & {
|
|
349
|
-
placeholder?: React.ReactNode;
|
|
350
|
-
}, import("@tamagui/core").TamaguiTextElement, import("@tamagui/core").TextNonStyleProps & Omit<import("@tamagui/core").TextNonStyleProps, "size" | "unstyled" | keyof import("@tamagui/core").TextStylePropsBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
351
|
-
size?: FontSizeTokens | undefined;
|
|
352
|
-
unstyled?: boolean | undefined;
|
|
353
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
354
|
-
size?: FontSizeTokens | undefined;
|
|
355
|
-
unstyled?: boolean | undefined;
|
|
356
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
357
|
-
size?: FontSizeTokens | undefined;
|
|
358
|
-
unstyled?: boolean | undefined;
|
|
359
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").TextStylePropsBase & {
|
|
360
|
-
size?: FontSizeTokens | undefined;
|
|
361
|
-
unstyled?: boolean | undefined;
|
|
362
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").TextStylePropsBase & {
|
|
363
|
-
size?: FontSizeTokens | undefined;
|
|
364
|
-
unstyled?: boolean | undefined;
|
|
365
|
-
}>> & {
|
|
366
|
-
placeholder?: React.ReactNode;
|
|
367
|
-
}, import("@tamagui/core").TextStylePropsBase, {
|
|
306
|
+
Value: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, import("@tamagui/core").TamaguiTextElement, import("@tamagui/core").TextNonStyleProps & SelectValueExtraProps, Omit<import("@tamagui/core").TextStylePropsBase, "placeholder">, {
|
|
368
307
|
size?: FontSizeTokens | undefined;
|
|
369
308
|
unstyled?: boolean | undefined;
|
|
370
309
|
}, {}>;
|
|
371
|
-
Viewport: import("@tamagui/core").TamaguiComponent<
|
|
372
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
373
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
374
|
-
transparent?: boolean | undefined;
|
|
375
|
-
fullscreen?: boolean | undefined;
|
|
376
|
-
circular?: boolean | undefined;
|
|
377
|
-
hoverTheme?: boolean | undefined;
|
|
378
|
-
pressTheme?: boolean | undefined;
|
|
379
|
-
focusTheme?: boolean | undefined;
|
|
380
|
-
elevate?: boolean | undefined;
|
|
381
|
-
bordered?: number | boolean | undefined;
|
|
382
|
-
backgrounded?: boolean | undefined;
|
|
383
|
-
radiused?: boolean | undefined;
|
|
384
|
-
padded?: boolean | undefined;
|
|
385
|
-
chromeless?: boolean | "all" | undefined;
|
|
386
|
-
unstyled?: boolean | undefined;
|
|
387
|
-
}>, "size" | `$${string}` | `$${number}` | keyof import("@tamagui/core").RNTamaguiViewNonStyleProps | "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | `$theme-${string}` | `$theme-${number}` | "unstyled" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
388
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
389
|
-
transparent?: boolean | undefined;
|
|
390
|
-
fullscreen?: boolean | undefined;
|
|
391
|
-
circular?: boolean | undefined;
|
|
392
|
-
hoverTheme?: boolean | undefined;
|
|
393
|
-
pressTheme?: boolean | undefined;
|
|
394
|
-
focusTheme?: boolean | undefined;
|
|
395
|
-
elevate?: boolean | undefined;
|
|
396
|
-
bordered?: number | boolean | undefined;
|
|
397
|
-
backgrounded?: boolean | undefined;
|
|
398
|
-
radiused?: boolean | undefined;
|
|
399
|
-
padded?: boolean | undefined;
|
|
400
|
-
chromeless?: boolean | "all" | undefined;
|
|
401
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
402
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
403
|
-
transparent?: boolean | undefined;
|
|
404
|
-
fullscreen?: boolean | undefined;
|
|
405
|
-
circular?: boolean | undefined;
|
|
406
|
-
hoverTheme?: boolean | undefined;
|
|
407
|
-
pressTheme?: boolean | undefined;
|
|
408
|
-
focusTheme?: boolean | undefined;
|
|
409
|
-
elevate?: boolean | undefined;
|
|
410
|
-
bordered?: number | boolean | undefined;
|
|
411
|
-
backgrounded?: boolean | undefined;
|
|
412
|
-
radiused?: boolean | undefined;
|
|
413
|
-
padded?: boolean | undefined;
|
|
414
|
-
chromeless?: boolean | "all" | undefined;
|
|
415
|
-
}>>> | "disableScroll"> & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
416
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
417
|
-
transparent?: boolean | undefined;
|
|
418
|
-
fullscreen?: boolean | undefined;
|
|
419
|
-
circular?: boolean | undefined;
|
|
420
|
-
hoverTheme?: boolean | undefined;
|
|
421
|
-
pressTheme?: boolean | undefined;
|
|
422
|
-
focusTheme?: boolean | undefined;
|
|
423
|
-
elevate?: boolean | undefined;
|
|
424
|
-
bordered?: number | boolean | undefined;
|
|
425
|
-
backgrounded?: boolean | undefined;
|
|
426
|
-
radiused?: boolean | undefined;
|
|
427
|
-
padded?: boolean | undefined;
|
|
428
|
-
chromeless?: boolean | "all" | undefined;
|
|
429
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
430
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
431
|
-
transparent?: boolean | undefined;
|
|
432
|
-
fullscreen?: boolean | undefined;
|
|
433
|
-
circular?: boolean | undefined;
|
|
434
|
-
hoverTheme?: boolean | undefined;
|
|
435
|
-
pressTheme?: boolean | undefined;
|
|
436
|
-
focusTheme?: boolean | undefined;
|
|
437
|
-
elevate?: boolean | undefined;
|
|
438
|
-
bordered?: number | boolean | undefined;
|
|
439
|
-
backgrounded?: boolean | undefined;
|
|
440
|
-
radiused?: boolean | undefined;
|
|
441
|
-
padded?: boolean | undefined;
|
|
442
|
-
chromeless?: boolean | "all" | undefined;
|
|
443
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
444
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
445
|
-
transparent?: boolean | undefined;
|
|
446
|
-
fullscreen?: boolean | undefined;
|
|
447
|
-
circular?: boolean | undefined;
|
|
448
|
-
hoverTheme?: boolean | undefined;
|
|
449
|
-
pressTheme?: boolean | undefined;
|
|
450
|
-
focusTheme?: boolean | undefined;
|
|
451
|
-
elevate?: boolean | undefined;
|
|
452
|
-
bordered?: number | boolean | undefined;
|
|
453
|
-
backgrounded?: boolean | undefined;
|
|
454
|
-
radiused?: boolean | undefined;
|
|
455
|
-
padded?: boolean | undefined;
|
|
456
|
-
chromeless?: boolean | "all" | undefined;
|
|
457
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
458
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
459
|
-
transparent?: boolean | undefined;
|
|
460
|
-
fullscreen?: boolean | undefined;
|
|
461
|
-
circular?: boolean | undefined;
|
|
462
|
-
hoverTheme?: boolean | undefined;
|
|
463
|
-
pressTheme?: boolean | undefined;
|
|
464
|
-
focusTheme?: boolean | undefined;
|
|
465
|
-
elevate?: boolean | undefined;
|
|
466
|
-
bordered?: number | boolean | undefined;
|
|
467
|
-
backgrounded?: boolean | undefined;
|
|
468
|
-
radiused?: boolean | undefined;
|
|
469
|
-
padded?: boolean | undefined;
|
|
470
|
-
chromeless?: boolean | "all" | undefined;
|
|
471
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
472
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
473
|
-
transparent?: boolean | undefined;
|
|
474
|
-
fullscreen?: boolean | undefined;
|
|
475
|
-
circular?: boolean | undefined;
|
|
476
|
-
hoverTheme?: boolean | undefined;
|
|
477
|
-
pressTheme?: boolean | undefined;
|
|
478
|
-
focusTheme?: boolean | undefined;
|
|
479
|
-
elevate?: boolean | undefined;
|
|
480
|
-
bordered?: number | boolean | undefined;
|
|
481
|
-
backgrounded?: boolean | undefined;
|
|
482
|
-
radiused?: boolean | undefined;
|
|
483
|
-
padded?: boolean | undefined;
|
|
484
|
-
chromeless?: boolean | "all" | undefined;
|
|
485
|
-
}>> & {
|
|
486
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
487
|
-
disableScroll?: boolean | undefined;
|
|
488
|
-
unstyled?: boolean | undefined;
|
|
489
|
-
}, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
490
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
491
|
-
transparent?: boolean | undefined;
|
|
492
|
-
fullscreen?: boolean | undefined;
|
|
493
|
-
circular?: boolean | undefined;
|
|
494
|
-
hoverTheme?: boolean | undefined;
|
|
495
|
-
pressTheme?: boolean | undefined;
|
|
496
|
-
focusTheme?: boolean | undefined;
|
|
497
|
-
elevate?: boolean | undefined;
|
|
498
|
-
bordered?: number | boolean | undefined;
|
|
499
|
-
backgrounded?: boolean | undefined;
|
|
500
|
-
radiused?: boolean | undefined;
|
|
501
|
-
padded?: boolean | undefined;
|
|
502
|
-
chromeless?: boolean | "all" | undefined;
|
|
503
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
504
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
505
|
-
transparent?: boolean | undefined;
|
|
506
|
-
fullscreen?: boolean | undefined;
|
|
507
|
-
circular?: boolean | undefined;
|
|
508
|
-
hoverTheme?: boolean | undefined;
|
|
509
|
-
pressTheme?: boolean | undefined;
|
|
510
|
-
focusTheme?: boolean | undefined;
|
|
511
|
-
elevate?: boolean | undefined;
|
|
512
|
-
bordered?: number | boolean | undefined;
|
|
513
|
-
backgrounded?: boolean | undefined;
|
|
514
|
-
radiused?: boolean | undefined;
|
|
515
|
-
padded?: boolean | undefined;
|
|
516
|
-
chromeless?: boolean | "all" | undefined;
|
|
517
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
518
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
519
|
-
transparent?: boolean | undefined;
|
|
520
|
-
fullscreen?: boolean | undefined;
|
|
521
|
-
circular?: boolean | undefined;
|
|
522
|
-
hoverTheme?: boolean | undefined;
|
|
523
|
-
pressTheme?: boolean | undefined;
|
|
524
|
-
focusTheme?: boolean | undefined;
|
|
525
|
-
elevate?: boolean | undefined;
|
|
526
|
-
bordered?: number | boolean | undefined;
|
|
527
|
-
backgrounded?: boolean | undefined;
|
|
528
|
-
radiused?: boolean | undefined;
|
|
529
|
-
padded?: boolean | undefined;
|
|
530
|
-
chromeless?: boolean | "all" | undefined;
|
|
531
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
532
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
533
|
-
transparent?: boolean | undefined;
|
|
534
|
-
fullscreen?: boolean | undefined;
|
|
535
|
-
circular?: boolean | undefined;
|
|
536
|
-
hoverTheme?: boolean | undefined;
|
|
537
|
-
pressTheme?: boolean | undefined;
|
|
538
|
-
focusTheme?: boolean | undefined;
|
|
539
|
-
elevate?: boolean | undefined;
|
|
540
|
-
bordered?: number | boolean | undefined;
|
|
541
|
-
backgrounded?: boolean | undefined;
|
|
542
|
-
radiused?: boolean | undefined;
|
|
543
|
-
padded?: boolean | undefined;
|
|
544
|
-
chromeless?: boolean | "all" | undefined;
|
|
545
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
546
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
547
|
-
transparent?: boolean | undefined;
|
|
548
|
-
fullscreen?: boolean | undefined;
|
|
549
|
-
circular?: boolean | undefined;
|
|
550
|
-
hoverTheme?: boolean | undefined;
|
|
551
|
-
pressTheme?: boolean | undefined;
|
|
552
|
-
focusTheme?: boolean | undefined;
|
|
553
|
-
elevate?: boolean | undefined;
|
|
554
|
-
bordered?: number | boolean | undefined;
|
|
555
|
-
backgrounded?: boolean | undefined;
|
|
556
|
-
radiused?: boolean | undefined;
|
|
557
|
-
padded?: boolean | undefined;
|
|
558
|
-
chromeless?: boolean | "all" | undefined;
|
|
559
|
-
}>> & {
|
|
560
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
561
|
-
disableScroll?: boolean | undefined;
|
|
562
|
-
unstyled?: boolean | undefined;
|
|
563
|
-
}, import("@tamagui/core").StackStyleBase, {
|
|
310
|
+
Viewport: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & import("./types").SelectViewportExtraProps, Omit<import("@tamagui/core").StackStyleBase, keyof import("./types").SelectViewportExtraProps>, {
|
|
564
311
|
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
565
312
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
566
313
|
transparent?: boolean | undefined;
|
|
@@ -578,23 +325,23 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
578
325
|
unstyled?: boolean | undefined;
|
|
579
326
|
}, {}>;
|
|
580
327
|
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<import("react-native").View>> & {
|
|
581
|
-
Frame: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps,
|
|
328
|
+
Frame: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
582
329
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
583
330
|
fullscreen?: boolean | undefined;
|
|
584
331
|
unstyled?: boolean | undefined;
|
|
585
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
332
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
586
333
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
587
334
|
fullscreen?: boolean | undefined;
|
|
588
335
|
unstyled?: boolean | undefined;
|
|
589
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
336
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
590
337
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
591
338
|
fullscreen?: boolean | undefined;
|
|
592
339
|
unstyled?: boolean | undefined;
|
|
593
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
340
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
594
341
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
595
342
|
fullscreen?: boolean | undefined;
|
|
596
343
|
unstyled?: boolean | undefined;
|
|
597
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
344
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
598
345
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
599
346
|
fullscreen?: boolean | undefined;
|
|
600
347
|
unstyled?: boolean | undefined;
|
|
@@ -604,7 +351,39 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
604
351
|
} & {
|
|
605
352
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
606
353
|
} & React.RefAttributes<unknown>>;
|
|
607
|
-
Overlay: React.MemoExoticComponent<(propsIn: import("@tamagui/sheet").SheetScopedProps<import("@tamagui/core").
|
|
354
|
+
Overlay: React.MemoExoticComponent<(propsIn: import("@tamagui/sheet").SheetScopedProps<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
355
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
356
|
+
fullscreen?: boolean | undefined;
|
|
357
|
+
open?: boolean | undefined;
|
|
358
|
+
transparent?: boolean | undefined;
|
|
359
|
+
circular?: boolean | undefined;
|
|
360
|
+
unstyled?: boolean | undefined;
|
|
361
|
+
backgrounded?: boolean | undefined;
|
|
362
|
+
hoverTheme?: boolean | undefined;
|
|
363
|
+
pressTheme?: boolean | undefined;
|
|
364
|
+
focusTheme?: boolean | undefined;
|
|
365
|
+
elevate?: boolean | undefined;
|
|
366
|
+
bordered?: number | boolean | undefined;
|
|
367
|
+
radiused?: boolean | undefined;
|
|
368
|
+
padded?: boolean | undefined;
|
|
369
|
+
chromeless?: boolean | "all" | undefined;
|
|
370
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
371
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
372
|
+
fullscreen?: boolean | undefined;
|
|
373
|
+
open?: boolean | undefined;
|
|
374
|
+
transparent?: boolean | undefined;
|
|
375
|
+
circular?: boolean | undefined;
|
|
376
|
+
unstyled?: boolean | undefined;
|
|
377
|
+
backgrounded?: boolean | undefined;
|
|
378
|
+
hoverTheme?: boolean | undefined;
|
|
379
|
+
pressTheme?: boolean | undefined;
|
|
380
|
+
focusTheme?: boolean | undefined;
|
|
381
|
+
elevate?: boolean | undefined;
|
|
382
|
+
bordered?: number | boolean | undefined;
|
|
383
|
+
radiused?: boolean | undefined;
|
|
384
|
+
padded?: boolean | undefined;
|
|
385
|
+
chromeless?: boolean | "all" | undefined;
|
|
386
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
608
387
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
609
388
|
fullscreen?: boolean | undefined;
|
|
610
389
|
open?: boolean | undefined;
|
|
@@ -620,24 +399,77 @@ export declare const Select: ((props: ScopedProps<SelectProps>) => JSX.Element)
|
|
|
620
399
|
radiused?: boolean | undefined;
|
|
621
400
|
padded?: boolean | undefined;
|
|
622
401
|
chromeless?: boolean | "all" | undefined;
|
|
623
|
-
}
|
|
624
|
-
|
|
402
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
403
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
404
|
+
fullscreen?: boolean | undefined;
|
|
405
|
+
open?: boolean | undefined;
|
|
406
|
+
transparent?: boolean | undefined;
|
|
407
|
+
circular?: boolean | undefined;
|
|
408
|
+
unstyled?: boolean | undefined;
|
|
409
|
+
backgrounded?: boolean | undefined;
|
|
410
|
+
hoverTheme?: boolean | undefined;
|
|
411
|
+
pressTheme?: boolean | undefined;
|
|
412
|
+
focusTheme?: boolean | undefined;
|
|
413
|
+
elevate?: boolean | undefined;
|
|
414
|
+
bordered?: number | boolean | undefined;
|
|
415
|
+
radiused?: boolean | undefined;
|
|
416
|
+
padded?: boolean | undefined;
|
|
417
|
+
chromeless?: boolean | "all" | undefined;
|
|
418
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
419
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
420
|
+
fullscreen?: boolean | undefined;
|
|
421
|
+
open?: boolean | undefined;
|
|
422
|
+
transparent?: boolean | undefined;
|
|
423
|
+
circular?: boolean | undefined;
|
|
424
|
+
unstyled?: boolean | undefined;
|
|
425
|
+
backgrounded?: boolean | undefined;
|
|
426
|
+
hoverTheme?: boolean | undefined;
|
|
427
|
+
pressTheme?: boolean | undefined;
|
|
428
|
+
focusTheme?: boolean | undefined;
|
|
429
|
+
elevate?: boolean | undefined;
|
|
430
|
+
bordered?: number | boolean | undefined;
|
|
431
|
+
radiused?: boolean | undefined;
|
|
432
|
+
padded?: boolean | undefined;
|
|
433
|
+
chromeless?: boolean | "all" | undefined;
|
|
434
|
+
}>>>) => null>;
|
|
435
|
+
Handle: ({ __scopeSheet, ...props }: import("@tamagui/sheet").SheetScopedProps<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
436
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
437
|
+
fullscreen?: boolean | undefined;
|
|
438
|
+
open?: boolean | undefined;
|
|
439
|
+
unstyled?: boolean | undefined;
|
|
440
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
441
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
442
|
+
fullscreen?: boolean | undefined;
|
|
443
|
+
open?: boolean | undefined;
|
|
444
|
+
unstyled?: boolean | undefined;
|
|
445
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
446
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
447
|
+
fullscreen?: boolean | undefined;
|
|
448
|
+
open?: boolean | undefined;
|
|
449
|
+
unstyled?: boolean | undefined;
|
|
450
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
451
|
+
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
452
|
+
fullscreen?: boolean | undefined;
|
|
453
|
+
open?: boolean | undefined;
|
|
454
|
+
unstyled?: boolean | undefined;
|
|
455
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
625
456
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
626
457
|
fullscreen?: boolean | undefined;
|
|
627
458
|
open?: boolean | undefined;
|
|
628
459
|
unstyled?: boolean | undefined;
|
|
629
|
-
}
|
|
630
|
-
ScrollView: React.ForwardRefExoticComponent<Omit<import("@tamagui/web/types/interfaces/TamaguiComponentPropsBaseBase").TamaguiComponentPropsBaseBase & import("react-native").ScrollViewProps, keyof import("@tamagui/core").StackStyleBase
|
|
460
|
+
}>>>) => JSX.Element | null;
|
|
461
|
+
ScrollView: React.ForwardRefExoticComponent<Omit<import("@tamagui/web/types/interfaces/TamaguiComponentPropsBaseBase").TamaguiComponentPropsBaseBase & import("react-native").ScrollViewProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
631
462
|
fullscreen?: boolean | undefined;
|
|
632
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
463
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
633
464
|
fullscreen?: boolean | undefined;
|
|
634
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
465
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
635
466
|
fullscreen?: boolean | undefined;
|
|
636
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
467
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
637
468
|
fullscreen?: boolean | undefined;
|
|
638
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
469
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
639
470
|
fullscreen?: boolean | undefined;
|
|
640
471
|
}>> & React.RefAttributes<import("react-native").ScrollView>>;
|
|
641
472
|
};
|
|
642
473
|
};
|
|
474
|
+
export {};
|
|
643
475
|
//# sourceMappingURL=Select.d.ts.map
|