@tamagui/sheet 1.88.8 → 1.88.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +16 -16
- package/types/Sheet.d.ts +20 -212
- package/types/Sheet.d.ts.map +1 -1
- package/types/SheetScrollView.d.ts +3 -7
- package/types/SheetScrollView.d.ts.map +1 -1
- package/types/createSheet.d.ts +6 -14
- package/types/createSheet.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/sheet",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.10",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -33,27 +33,27 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@tamagui/animate-presence": "1.88.
|
|
37
|
-
"@tamagui/animations-react-native": "1.88.
|
|
38
|
-
"@tamagui/compose-refs": "1.88.
|
|
39
|
-
"@tamagui/constants": "1.88.
|
|
40
|
-
"@tamagui/core": "1.88.
|
|
41
|
-
"@tamagui/create-context": "1.88.
|
|
42
|
-
"@tamagui/helpers": "1.88.
|
|
43
|
-
"@tamagui/portal": "1.88.
|
|
44
|
-
"@tamagui/remove-scroll": "1.88.
|
|
45
|
-
"@tamagui/scroll-view": "1.88.
|
|
46
|
-
"@tamagui/stacks": "1.88.
|
|
47
|
-
"@tamagui/use-constant": "1.88.
|
|
48
|
-
"@tamagui/use-controllable-state": "1.88.
|
|
49
|
-
"@tamagui/use-keyboard-visible": "1.88.
|
|
36
|
+
"@tamagui/animate-presence": "1.88.10",
|
|
37
|
+
"@tamagui/animations-react-native": "1.88.10",
|
|
38
|
+
"@tamagui/compose-refs": "1.88.10",
|
|
39
|
+
"@tamagui/constants": "1.88.10",
|
|
40
|
+
"@tamagui/core": "1.88.10",
|
|
41
|
+
"@tamagui/create-context": "1.88.10",
|
|
42
|
+
"@tamagui/helpers": "1.88.10",
|
|
43
|
+
"@tamagui/portal": "1.88.10",
|
|
44
|
+
"@tamagui/remove-scroll": "1.88.10",
|
|
45
|
+
"@tamagui/scroll-view": "1.88.10",
|
|
46
|
+
"@tamagui/stacks": "1.88.10",
|
|
47
|
+
"@tamagui/use-constant": "1.88.10",
|
|
48
|
+
"@tamagui/use-controllable-state": "1.88.10",
|
|
49
|
+
"@tamagui/use-keyboard-visible": "1.88.10"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": "*",
|
|
53
53
|
"react-native": "*"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@tamagui/build": "1.88.
|
|
56
|
+
"@tamagui/build": "1.88.10",
|
|
57
57
|
"react": "^18.2.0",
|
|
58
58
|
"react-native": "^0.72.6"
|
|
59
59
|
},
|
package/types/Sheet.d.ts
CHANGED
|
@@ -56,23 +56,15 @@ export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
|
56
56
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
57
57
|
} & import("react").RefAttributes<import("react-native").View>> & {
|
|
58
58
|
Controlled: import("react").FunctionComponent<Omit<import("./types").SheetProps, "open" | "onOpenChange"> & import("react").RefAttributes<import("react-native").View>> & {
|
|
59
|
-
Frame: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
59
|
+
Frame: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
60
60
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
61
61
|
fullscreen?: boolean | undefined;
|
|
62
62
|
unstyled?: boolean | undefined;
|
|
63
|
-
}
|
|
63
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
64
64
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
65
65
|
fullscreen?: boolean | undefined;
|
|
66
66
|
unstyled?: boolean | undefined;
|
|
67
|
-
}
|
|
68
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
69
|
-
fullscreen?: boolean | undefined;
|
|
70
|
-
unstyled?: boolean | undefined;
|
|
71
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
72
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
73
|
-
fullscreen?: boolean | undefined;
|
|
74
|
-
unstyled?: boolean | undefined;
|
|
75
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
67
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
76
68
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
77
69
|
fullscreen?: boolean | undefined;
|
|
78
70
|
unstyled?: boolean | undefined;
|
|
@@ -82,71 +74,7 @@ export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
|
82
74
|
} & {
|
|
83
75
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
84
76
|
} & import("react").RefAttributes<unknown>>;
|
|
85
|
-
Overlay: import("react").MemoExoticComponent<(propsIn: import("./types").SheetScopedProps<
|
|
86
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
87
|
-
fullscreen?: boolean | undefined;
|
|
88
|
-
open?: boolean | undefined;
|
|
89
|
-
transparent?: boolean | undefined;
|
|
90
|
-
circular?: boolean | undefined;
|
|
91
|
-
unstyled?: boolean | undefined;
|
|
92
|
-
backgrounded?: boolean | undefined;
|
|
93
|
-
hoverTheme?: boolean | undefined;
|
|
94
|
-
pressTheme?: boolean | undefined;
|
|
95
|
-
focusTheme?: boolean | undefined;
|
|
96
|
-
elevate?: boolean | undefined;
|
|
97
|
-
bordered?: number | boolean | undefined;
|
|
98
|
-
radiused?: boolean | undefined;
|
|
99
|
-
padded?: boolean | undefined;
|
|
100
|
-
chromeless?: boolean | "all" | undefined;
|
|
101
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
102
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
103
|
-
fullscreen?: boolean | undefined;
|
|
104
|
-
open?: boolean | undefined;
|
|
105
|
-
transparent?: boolean | undefined;
|
|
106
|
-
circular?: boolean | undefined;
|
|
107
|
-
unstyled?: boolean | undefined;
|
|
108
|
-
backgrounded?: boolean | undefined;
|
|
109
|
-
hoverTheme?: boolean | undefined;
|
|
110
|
-
pressTheme?: boolean | undefined;
|
|
111
|
-
focusTheme?: boolean | undefined;
|
|
112
|
-
elevate?: boolean | undefined;
|
|
113
|
-
bordered?: number | boolean | undefined;
|
|
114
|
-
radiused?: boolean | undefined;
|
|
115
|
-
padded?: boolean | undefined;
|
|
116
|
-
chromeless?: boolean | "all" | undefined;
|
|
117
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
118
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
119
|
-
fullscreen?: boolean | undefined;
|
|
120
|
-
open?: boolean | undefined;
|
|
121
|
-
transparent?: boolean | undefined;
|
|
122
|
-
circular?: boolean | undefined;
|
|
123
|
-
unstyled?: boolean | undefined;
|
|
124
|
-
backgrounded?: boolean | undefined;
|
|
125
|
-
hoverTheme?: boolean | undefined;
|
|
126
|
-
pressTheme?: boolean | undefined;
|
|
127
|
-
focusTheme?: boolean | undefined;
|
|
128
|
-
elevate?: boolean | undefined;
|
|
129
|
-
bordered?: number | boolean | undefined;
|
|
130
|
-
radiused?: boolean | undefined;
|
|
131
|
-
padded?: boolean | undefined;
|
|
132
|
-
chromeless?: boolean | "all" | undefined;
|
|
133
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
134
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
135
|
-
fullscreen?: boolean | undefined;
|
|
136
|
-
open?: boolean | undefined;
|
|
137
|
-
transparent?: boolean | undefined;
|
|
138
|
-
circular?: boolean | undefined;
|
|
139
|
-
unstyled?: boolean | undefined;
|
|
140
|
-
backgrounded?: boolean | undefined;
|
|
141
|
-
hoverTheme?: boolean | undefined;
|
|
142
|
-
pressTheme?: boolean | undefined;
|
|
143
|
-
focusTheme?: boolean | undefined;
|
|
144
|
-
elevate?: boolean | undefined;
|
|
145
|
-
bordered?: number | boolean | undefined;
|
|
146
|
-
radiused?: boolean | undefined;
|
|
147
|
-
padded?: boolean | undefined;
|
|
148
|
-
chromeless?: boolean | "all" | undefined;
|
|
149
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
77
|
+
Overlay: import("react").MemoExoticComponent<(propsIn: import("./types").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
150
78
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
151
79
|
fullscreen?: boolean | undefined;
|
|
152
80
|
open?: boolean | undefined;
|
|
@@ -162,62 +90,30 @@ export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
|
162
90
|
radiused?: boolean | undefined;
|
|
163
91
|
padded?: boolean | undefined;
|
|
164
92
|
chromeless?: boolean | "all" | undefined;
|
|
165
|
-
}
|
|
166
|
-
Handle: ({ __scopeSheet, ...props }: import("./types").SheetScopedProps<
|
|
167
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
168
|
-
fullscreen?: boolean | undefined;
|
|
169
|
-
open?: boolean | undefined;
|
|
170
|
-
unstyled?: boolean | undefined;
|
|
171
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
172
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
173
|
-
fullscreen?: boolean | undefined;
|
|
174
|
-
open?: boolean | undefined;
|
|
175
|
-
unstyled?: boolean | undefined;
|
|
176
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
93
|
+
}>>) => null>;
|
|
94
|
+
Handle: ({ __scopeSheet, ...props }: import("./types").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
177
95
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
178
96
|
fullscreen?: boolean | undefined;
|
|
179
97
|
open?: boolean | undefined;
|
|
180
98
|
unstyled?: boolean | undefined;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
fullscreen?: boolean | undefined;
|
|
184
|
-
open?: boolean | undefined;
|
|
185
|
-
unstyled?: boolean | undefined;
|
|
186
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
187
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
188
|
-
fullscreen?: boolean | undefined;
|
|
189
|
-
open?: boolean | undefined;
|
|
190
|
-
unstyled?: boolean | undefined;
|
|
191
|
-
}>>>) => JSX.Element | null;
|
|
192
|
-
ScrollView: import("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, {
|
|
193
|
-
fullscreen?: boolean | undefined;
|
|
194
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
195
|
-
fullscreen?: boolean | undefined;
|
|
196
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
99
|
+
}>>) => JSX.Element | null;
|
|
100
|
+
ScrollView: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/web/types/interfaces/TamaguiComponentPropsBaseBase").TamaguiComponentPropsBaseBase & import("react-native").ScrollViewProps, keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
197
101
|
fullscreen?: boolean | undefined;
|
|
198
|
-
}
|
|
102
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
199
103
|
fullscreen?: boolean | undefined;
|
|
200
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
104
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
201
105
|
fullscreen?: boolean | undefined;
|
|
202
106
|
}>> & import("react").RefAttributes<import("react-native").ScrollView>>;
|
|
203
107
|
};
|
|
204
|
-
Frame: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
108
|
+
Frame: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen" | "unstyled"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
205
109
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
206
110
|
fullscreen?: boolean | undefined;
|
|
207
111
|
unstyled?: boolean | undefined;
|
|
208
|
-
}
|
|
112
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
209
113
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
210
114
|
fullscreen?: boolean | undefined;
|
|
211
115
|
unstyled?: boolean | undefined;
|
|
212
|
-
}
|
|
213
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
214
|
-
fullscreen?: boolean | undefined;
|
|
215
|
-
unstyled?: boolean | undefined;
|
|
216
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
217
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
218
|
-
fullscreen?: boolean | undefined;
|
|
219
|
-
unstyled?: boolean | undefined;
|
|
220
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
116
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
221
117
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
222
118
|
fullscreen?: boolean | undefined;
|
|
223
119
|
unstyled?: boolean | undefined;
|
|
@@ -227,71 +123,7 @@ export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
|
227
123
|
} & {
|
|
228
124
|
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
229
125
|
} & import("react").RefAttributes<unknown>>;
|
|
230
|
-
Overlay: import("react").MemoExoticComponent<(propsIn: import("./types").SheetScopedProps<
|
|
231
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
232
|
-
fullscreen?: boolean | undefined;
|
|
233
|
-
open?: boolean | undefined;
|
|
234
|
-
transparent?: boolean | undefined;
|
|
235
|
-
circular?: boolean | undefined;
|
|
236
|
-
unstyled?: boolean | undefined;
|
|
237
|
-
backgrounded?: boolean | undefined;
|
|
238
|
-
hoverTheme?: boolean | undefined;
|
|
239
|
-
pressTheme?: boolean | undefined;
|
|
240
|
-
focusTheme?: boolean | undefined;
|
|
241
|
-
elevate?: boolean | undefined;
|
|
242
|
-
bordered?: number | boolean | undefined;
|
|
243
|
-
radiused?: boolean | undefined;
|
|
244
|
-
padded?: boolean | undefined;
|
|
245
|
-
chromeless?: boolean | "all" | undefined;
|
|
246
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
247
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
248
|
-
fullscreen?: boolean | undefined;
|
|
249
|
-
open?: boolean | undefined;
|
|
250
|
-
transparent?: boolean | undefined;
|
|
251
|
-
circular?: boolean | undefined;
|
|
252
|
-
unstyled?: boolean | undefined;
|
|
253
|
-
backgrounded?: boolean | undefined;
|
|
254
|
-
hoverTheme?: boolean | undefined;
|
|
255
|
-
pressTheme?: boolean | undefined;
|
|
256
|
-
focusTheme?: boolean | undefined;
|
|
257
|
-
elevate?: boolean | undefined;
|
|
258
|
-
bordered?: number | boolean | undefined;
|
|
259
|
-
radiused?: boolean | undefined;
|
|
260
|
-
padded?: boolean | undefined;
|
|
261
|
-
chromeless?: boolean | "all" | undefined;
|
|
262
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
263
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
264
|
-
fullscreen?: boolean | undefined;
|
|
265
|
-
open?: boolean | undefined;
|
|
266
|
-
transparent?: boolean | undefined;
|
|
267
|
-
circular?: boolean | undefined;
|
|
268
|
-
unstyled?: boolean | undefined;
|
|
269
|
-
backgrounded?: boolean | undefined;
|
|
270
|
-
hoverTheme?: boolean | undefined;
|
|
271
|
-
pressTheme?: boolean | undefined;
|
|
272
|
-
focusTheme?: boolean | undefined;
|
|
273
|
-
elevate?: boolean | undefined;
|
|
274
|
-
bordered?: number | boolean | undefined;
|
|
275
|
-
radiused?: boolean | undefined;
|
|
276
|
-
padded?: boolean | undefined;
|
|
277
|
-
chromeless?: boolean | "all" | undefined;
|
|
278
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
279
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
280
|
-
fullscreen?: boolean | undefined;
|
|
281
|
-
open?: boolean | undefined;
|
|
282
|
-
transparent?: boolean | undefined;
|
|
283
|
-
circular?: boolean | undefined;
|
|
284
|
-
unstyled?: boolean | undefined;
|
|
285
|
-
backgrounded?: boolean | undefined;
|
|
286
|
-
hoverTheme?: boolean | undefined;
|
|
287
|
-
pressTheme?: boolean | undefined;
|
|
288
|
-
focusTheme?: boolean | undefined;
|
|
289
|
-
elevate?: boolean | undefined;
|
|
290
|
-
bordered?: number | boolean | undefined;
|
|
291
|
-
radiused?: boolean | undefined;
|
|
292
|
-
padded?: boolean | undefined;
|
|
293
|
-
chromeless?: boolean | "all" | undefined;
|
|
294
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
126
|
+
Overlay: import("react").MemoExoticComponent<(propsIn: import("./types").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
295
127
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
296
128
|
fullscreen?: boolean | undefined;
|
|
297
129
|
open?: boolean | undefined;
|
|
@@ -307,42 +139,18 @@ export declare const Sheet: import("react").ForwardRefExoticComponent<{
|
|
|
307
139
|
radiused?: boolean | undefined;
|
|
308
140
|
padded?: boolean | undefined;
|
|
309
141
|
chromeless?: boolean | "all" | undefined;
|
|
310
|
-
}
|
|
311
|
-
Handle: ({ __scopeSheet, ...props }: import("./types").SheetScopedProps<
|
|
312
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
313
|
-
fullscreen?: boolean | undefined;
|
|
314
|
-
open?: boolean | undefined;
|
|
315
|
-
unstyled?: boolean | undefined;
|
|
316
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
317
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
318
|
-
fullscreen?: boolean | undefined;
|
|
319
|
-
open?: boolean | undefined;
|
|
320
|
-
unstyled?: boolean | undefined;
|
|
321
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
142
|
+
}>>) => null>;
|
|
143
|
+
Handle: ({ __scopeSheet, ...props }: import("./types").SheetScopedProps<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
322
144
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
323
145
|
fullscreen?: boolean | undefined;
|
|
324
146
|
open?: boolean | undefined;
|
|
325
147
|
unstyled?: boolean | undefined;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
fullscreen?: boolean | undefined;
|
|
329
|
-
open?: boolean | undefined;
|
|
330
|
-
unstyled?: boolean | undefined;
|
|
331
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
332
|
-
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
333
|
-
fullscreen?: boolean | undefined;
|
|
334
|
-
open?: boolean | undefined;
|
|
335
|
-
unstyled?: boolean | undefined;
|
|
336
|
-
}>>>) => JSX.Element | null;
|
|
337
|
-
ScrollView: import("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, {
|
|
338
|
-
fullscreen?: boolean | undefined;
|
|
339
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
340
|
-
fullscreen?: boolean | undefined;
|
|
341
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
148
|
+
}>>) => JSX.Element | null;
|
|
149
|
+
ScrollView: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/web/types/interfaces/TamaguiComponentPropsBaseBase").TamaguiComponentPropsBaseBase & import("react-native").ScrollViewProps, keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
342
150
|
fullscreen?: boolean | undefined;
|
|
343
|
-
}
|
|
151
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
344
152
|
fullscreen?: boolean | undefined;
|
|
345
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
153
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
346
154
|
fullscreen?: boolean | undefined;
|
|
347
155
|
}>> & import("react").RefAttributes<import("react-native").ScrollView>>;
|
|
348
156
|
};
|
package/types/Sheet.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Sheet.d.ts","sourceRoot":"","sources":["../src/Sheet.tsx"],"names":[],"mappings":";AAMA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AACjD,cAAc,SAAS,CAAA;AAMvB,eAAO,MAAM,MAAM;;;;;MAkCjB,CAAA;AAMF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;MA6BlB,CAAA;AAMF,eAAO,MAAM,KAAK;;;;MAoBhB,CAAA;AAEF,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"Sheet.d.ts","sourceRoot":"","sources":["../src/Sheet.tsx"],"names":[],"mappings":";AAMA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AACjD,cAAc,SAAS,CAAA;AAMvB,eAAO,MAAM,MAAM;;;;;MAkCjB,CAAA;AAMF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;MA6BlB,CAAA;AAMF,eAAO,MAAM,KAAK;;;;MAoBhB,CAAA;AAEF,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIhB,CAAA;AAEF,uCAAuC;AACvC,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;MAAU,CAAA;AAExC,uCAAuC;AACvC,eAAO,MAAM,gBAAgB;;;;;MAAS,CAAA"}
|
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ScrollView as RNScrollView } from 'react-native';
|
|
3
|
-
export declare const SheetScrollView: import("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
|
|
3
|
+
export declare const SheetScrollView: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/web/types/interfaces/TamaguiComponentPropsBaseBase").TamaguiComponentPropsBaseBase & import("react-native").ScrollViewProps, keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
4
4
|
fullscreen?: boolean | undefined;
|
|
5
|
-
}
|
|
5
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
6
6
|
fullscreen?: boolean | undefined;
|
|
7
|
-
}
|
|
8
|
-
fullscreen?: boolean | undefined;
|
|
9
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
10
|
-
fullscreen?: boolean | undefined;
|
|
11
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
7
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
12
8
|
fullscreen?: boolean | undefined;
|
|
13
9
|
}>> & import("react").RefAttributes<RNScrollView>>;
|
|
14
10
|
//# sourceMappingURL=SheetScrollView.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SheetScrollView.d.ts","sourceRoot":"","sources":["../src/SheetScrollView.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAE,UAAU,IAAI,YAAY,EAAE,MAAM,cAAc,CAAA;AAazD,eAAO,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"SheetScrollView.d.ts","sourceRoot":"","sources":["../src/SheetScrollView.tsx"],"names":[],"mappings":";AAIA,OAAO,EAAE,UAAU,IAAI,YAAY,EAAE,MAAM,cAAc,CAAA;AAazD,eAAO,MAAM,eAAe;;;;;;kDA6H3B,CAAA"}
|
package/types/createSheet.d.ts
CHANGED
|
@@ -54,15 +54,11 @@ export declare function createSheet<H extends SheetStyledComponent | TamaguiComp
|
|
|
54
54
|
}>> & RefAttributes<unknown>>;
|
|
55
55
|
Overlay: import("react").MemoExoticComponent<(propsIn: SheetScopedProps<GetProps<typeof Overlay>>) => null>;
|
|
56
56
|
Handle: ({ __scopeSheet, ...props }: SheetScopedProps<GetProps<typeof Handle>>) => JSX.Element | null;
|
|
57
|
-
ScrollView: import("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
|
|
57
|
+
ScrollView: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/web/types/interfaces/TamaguiComponentPropsBaseBase").TamaguiComponentPropsBaseBase & import("react-native").ScrollViewProps, keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
58
58
|
fullscreen?: boolean | undefined;
|
|
59
|
-
}
|
|
59
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
60
60
|
fullscreen?: boolean | undefined;
|
|
61
|
-
}
|
|
62
|
-
fullscreen?: boolean | undefined;
|
|
63
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
64
|
-
fullscreen?: boolean | undefined;
|
|
65
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
61
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
66
62
|
fullscreen?: boolean | undefined;
|
|
67
63
|
}>> & RefAttributes<import("react-native").ScrollView>>;
|
|
68
64
|
};
|
|
@@ -82,15 +78,11 @@ export declare function createSheet<H extends SheetStyledComponent | TamaguiComp
|
|
|
82
78
|
}>> & RefAttributes<unknown>>;
|
|
83
79
|
Overlay: import("react").MemoExoticComponent<(propsIn: SheetScopedProps<GetProps<typeof Overlay>>) => null>;
|
|
84
80
|
Handle: ({ __scopeSheet, ...props }: SheetScopedProps<GetProps<typeof Handle>>) => JSX.Element | null;
|
|
85
|
-
ScrollView: import("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
|
|
86
|
-
fullscreen?: boolean | undefined;
|
|
87
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
88
|
-
fullscreen?: boolean | undefined;
|
|
89
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase, {
|
|
81
|
+
ScrollView: import("react").ForwardRefExoticComponent<Omit<import("@tamagui/web/types/interfaces/TamaguiComponentPropsBaseBase").TamaguiComponentPropsBaseBase & import("react-native").ScrollViewProps, keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
90
82
|
fullscreen?: boolean | undefined;
|
|
91
|
-
}
|
|
83
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
92
84
|
fullscreen?: boolean | undefined;
|
|
93
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
85
|
+
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
94
86
|
fullscreen?: boolean | undefined;
|
|
95
87
|
}>> & RefAttributes<import("react-native").ScrollView>>;
|
|
96
88
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createSheet.d.ts","sourceRoot":"","sources":["../src/createSheet.tsx"],"names":[],"mappings":"AAEA,OAAO,EACL,QAAQ,EAER,UAAU,EACV,gBAAgB,EAChB,iCAAiC,EAClC,MAAM,eAAe,CAAA;AAItB,OAAO,EAAE,iBAAiB,EAAE,aAAa,EAA6B,MAAM,OAAO,CAAA;AACnF,OAAO,EAAY,IAAI,EAAE,MAAM,cAAc,CAAA;AAO7C,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAItD,KAAK,gBAAgB,GAAG;IACtB,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAA;AAED,KAAK,SAAS,GAAG,UAAU,GAAG,gBAAgB,CAAA;AAE9C,KAAK,oBAAoB,GAAG,iCAAiC,CAAC,SAAS,EAAE,gBAAgB,CAAC,CAAA;AAE1F,wBAAgB,WAAW,CACzB,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE;IAAE,MAAM,EAAE,CAAC,CAAC;IAAC,KAAK,EAAE,CAAC,CAAC;IAAC,OAAO,EAAE,CAAC,CAAA;CAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAmFrD;;;;eAIG;;YAGH;;;;eAIG;;;+DA/DI,iBAAiB,SAAS,cAAc,CAAC,CAAC;6CA7B5B,iBAAiB,SAAS,aAAa,CAAC,CAAC
|
|
1
|
+
{"version":3,"file":"createSheet.d.ts","sourceRoot":"","sources":["../src/createSheet.tsx"],"names":[],"mappings":"AAEA,OAAO,EACL,QAAQ,EAER,UAAU,EACV,gBAAgB,EAChB,iCAAiC,EAClC,MAAM,eAAe,CAAA;AAItB,OAAO,EAAE,iBAAiB,EAAE,aAAa,EAA6B,MAAM,OAAO,CAAA;AACnF,OAAO,EAAY,IAAI,EAAE,MAAM,cAAc,CAAA;AAO7C,OAAO,EAAE,UAAU,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAItD,KAAK,gBAAgB,GAAG;IACtB,IAAI,CAAC,EAAE,OAAO,CAAA;CACf,CAAA;AAED,KAAK,SAAS,GAAG,UAAU,GAAG,gBAAgB,CAAA;AAE9C,KAAK,oBAAoB,GAAG,iCAAiC,CAAC,SAAS,EAAE,gBAAgB,CAAC,CAAA;AAE1F,wBAAgB,WAAW,CACzB,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,CAAC,SAAS,oBAAoB,GAAG,gBAAgB,EACjD,EAAE,MAAM,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE;IAAE,MAAM,EAAE,CAAC,CAAC;IAAC,KAAK,EAAE,CAAC,CAAC;IAAC,OAAO,EAAE,CAAC,CAAA;CAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAmFrD;;;;eAIG;;YAGH;;;;eAIG;;;+DA/DI,iBAAiB,SAAS,cAAc,CAAC,CAAC;6CA7B5B,iBAAiB,SAAS,aAAa,CAAC,CAAC;;;;;;;;;;QAiF9D;;;;WAIG;;QAGH;;;;WAIG;;;2DA/DI,iBAAiB,SAAS,cAAc,CAAC,CAAC;yCA7B5B,iBAAiB,SAAS,aAAa,CAAC,CAAC;;;;;;;;EAuMzE"}
|