@tamagui/dialog 1.143.0 → 2.0.0-1
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/Dialog.cjs +1 -1
- package/dist/cjs/Dialog.js +1 -1
- package/dist/cjs/Dialog.js.map +1 -1
- package/dist/cjs/Dialog.native.js +1 -1
- package/dist/cjs/Dialog.native.js.map +1 -1
- package/dist/esm/Dialog.js +1 -1
- package/dist/esm/Dialog.js.map +1 -1
- package/dist/esm/Dialog.mjs +1 -1
- package/dist/esm/Dialog.mjs.map +1 -1
- package/dist/esm/Dialog.native.js +1 -1
- package/dist/esm/Dialog.native.js.map +1 -1
- package/dist/jsx/Dialog.js +1 -1
- package/dist/jsx/Dialog.js.map +1 -1
- package/dist/jsx/Dialog.mjs +1 -1
- package/dist/jsx/Dialog.mjs.map +1 -1
- package/dist/jsx/Dialog.native.js +1 -1
- package/dist/jsx/Dialog.native.js.map +1 -1
- package/package.json +20 -20
- package/src/Dialog.tsx +1 -1
- package/types/Dialog.d.ts +43 -228
- package/types/Dialog.d.ts.map +1 -1
package/types/Dialog.d.ts
CHANGED
|
@@ -54,41 +54,17 @@ type DialogPortalProps = ScopedProps<YStackProps & {
|
|
|
54
54
|
}>;
|
|
55
55
|
export declare const DialogPortalFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
56
56
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
57
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
58
|
-
top?: number;
|
|
59
|
-
bottom?: number;
|
|
60
|
-
left?: number;
|
|
61
|
-
right?: number;
|
|
62
|
-
} | null | undefined;
|
|
63
57
|
fullscreen?: boolean | undefined;
|
|
64
58
|
unstyled?: boolean | undefined;
|
|
65
59
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
66
60
|
declare const DialogPortal: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
67
61
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
68
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
69
|
-
top?: number;
|
|
70
|
-
bottom?: number;
|
|
71
|
-
left?: number;
|
|
72
|
-
right?: number;
|
|
73
|
-
} | null | undefined;
|
|
74
62
|
fullscreen?: boolean | undefined;
|
|
75
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> & {
|
|
76
64
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
77
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
78
|
-
top?: number;
|
|
79
|
-
bottom?: number;
|
|
80
|
-
left?: number;
|
|
81
|
-
right?: number;
|
|
82
|
-
} | null | undefined;
|
|
83
65
|
fullscreen?: boolean | undefined;
|
|
84
66
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
85
67
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
86
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
87
|
-
top?: number;
|
|
88
|
-
bottom?: number;
|
|
89
|
-
left?: number;
|
|
90
|
-
right?: number;
|
|
91
|
-
} | null | undefined;
|
|
92
68
|
fullscreen?: boolean | undefined;
|
|
93
69
|
}>> & {
|
|
94
70
|
/**
|
|
@@ -105,25 +81,8 @@ declare const DialogPortal: React.ForwardRefExoticComponent<Omit<import("@tamagu
|
|
|
105
81
|
export declare const DialogOverlayFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
106
82
|
open?: boolean | undefined;
|
|
107
83
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
108
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
109
|
-
top?: number;
|
|
110
|
-
bottom?: number;
|
|
111
|
-
left?: number;
|
|
112
|
-
right?: number;
|
|
113
|
-
} | null | undefined;
|
|
114
84
|
fullscreen?: boolean | undefined;
|
|
115
|
-
circular?: boolean | undefined;
|
|
116
|
-
transparent?: boolean | undefined;
|
|
117
85
|
unstyled?: boolean | undefined;
|
|
118
|
-
hoverTheme?: boolean | undefined;
|
|
119
|
-
pressTheme?: boolean | undefined;
|
|
120
|
-
focusTheme?: boolean | undefined;
|
|
121
|
-
elevate?: boolean | undefined;
|
|
122
|
-
bordered?: number | boolean | undefined;
|
|
123
|
-
backgrounded?: boolean | undefined;
|
|
124
|
-
radiused?: boolean | undefined;
|
|
125
|
-
padded?: boolean | undefined;
|
|
126
|
-
chromeless?: boolean | "all" | undefined;
|
|
127
86
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
128
87
|
export type DialogOverlayExtraProps = ScopedProps<{
|
|
129
88
|
/**
|
|
@@ -136,25 +95,8 @@ type DialogOverlayProps = YStackProps & DialogOverlayExtraProps;
|
|
|
136
95
|
declare const DialogOverlay: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
137
96
|
open?: boolean | undefined;
|
|
138
97
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
139
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
140
|
-
top?: number;
|
|
141
|
-
bottom?: number;
|
|
142
|
-
left?: number;
|
|
143
|
-
right?: number;
|
|
144
|
-
} | null | undefined;
|
|
145
98
|
fullscreen?: boolean | undefined;
|
|
146
|
-
circular?: boolean | undefined;
|
|
147
|
-
transparent?: boolean | undefined;
|
|
148
99
|
unstyled?: boolean | undefined;
|
|
149
|
-
hoverTheme?: boolean | undefined;
|
|
150
|
-
pressTheme?: boolean | undefined;
|
|
151
|
-
focusTheme?: boolean | undefined;
|
|
152
|
-
elevate?: boolean | undefined;
|
|
153
|
-
bordered?: number | boolean | undefined;
|
|
154
|
-
backgrounded?: boolean | undefined;
|
|
155
|
-
radiused?: boolean | undefined;
|
|
156
|
-
padded?: boolean | undefined;
|
|
157
|
-
chromeless?: boolean | "all" | undefined;
|
|
158
100
|
}>, "scope" | "forceMount"> & {
|
|
159
101
|
/**
|
|
160
102
|
* Used to force mounting when more control is needed. Useful when
|
|
@@ -174,47 +116,24 @@ declare const DialogOverlay: import("@tamagui/core").TamaguiComponent<Omit<impor
|
|
|
174
116
|
}, import("@tamagui/core").StackStyleBase, {
|
|
175
117
|
open?: boolean | undefined;
|
|
176
118
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
177
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
178
|
-
top?: number;
|
|
179
|
-
bottom?: number;
|
|
180
|
-
left?: number;
|
|
181
|
-
right?: number;
|
|
182
|
-
} | null | undefined;
|
|
183
119
|
fullscreen?: boolean | undefined;
|
|
184
|
-
circular?: boolean | undefined;
|
|
185
|
-
transparent?: boolean | undefined;
|
|
186
120
|
unstyled?: boolean | undefined;
|
|
187
|
-
hoverTheme?: boolean | undefined;
|
|
188
|
-
pressTheme?: boolean | undefined;
|
|
189
|
-
focusTheme?: boolean | undefined;
|
|
190
|
-
elevate?: boolean | undefined;
|
|
191
|
-
bordered?: number | boolean | undefined;
|
|
192
|
-
backgrounded?: boolean | undefined;
|
|
193
|
-
radiused?: boolean | undefined;
|
|
194
|
-
padded?: boolean | undefined;
|
|
195
|
-
chromeless?: boolean | "all" | undefined;
|
|
196
121
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
197
122
|
declare const DialogContentFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
198
123
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
199
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
200
|
-
top?: number;
|
|
201
|
-
bottom?: number;
|
|
202
|
-
left?: number;
|
|
203
|
-
right?: number;
|
|
204
|
-
} | null | undefined;
|
|
205
124
|
fullscreen?: boolean | undefined;
|
|
206
125
|
transparent?: boolean | undefined;
|
|
207
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
208
126
|
unstyled?: boolean | undefined;
|
|
127
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
209
128
|
circular?: boolean | undefined;
|
|
129
|
+
backgrounded?: boolean | undefined;
|
|
130
|
+
radiused?: boolean | undefined;
|
|
210
131
|
hoverTheme?: boolean | undefined;
|
|
211
132
|
pressTheme?: boolean | undefined;
|
|
212
133
|
focusTheme?: boolean | undefined;
|
|
134
|
+
padded?: boolean | undefined;
|
|
213
135
|
elevate?: boolean | undefined;
|
|
214
136
|
bordered?: number | boolean | undefined;
|
|
215
|
-
backgrounded?: boolean | undefined;
|
|
216
|
-
radiused?: boolean | undefined;
|
|
217
|
-
padded?: boolean | undefined;
|
|
218
137
|
chromeless?: boolean | "all" | undefined;
|
|
219
138
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
220
139
|
type DialogContentFrameProps = GetProps<typeof DialogContentFrame>;
|
|
@@ -228,47 +147,35 @@ type DialogContentExtraProps = ScopedProps<Omit<DialogContentTypeProps, 'context
|
|
|
228
147
|
type DialogContentProps = DialogContentFrameProps & DialogContentExtraProps;
|
|
229
148
|
declare const DialogContent: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
230
149
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
231
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
232
|
-
top?: number;
|
|
233
|
-
bottom?: number;
|
|
234
|
-
left?: number;
|
|
235
|
-
right?: number;
|
|
236
|
-
} | null | undefined;
|
|
237
150
|
fullscreen?: boolean | undefined;
|
|
238
151
|
transparent?: boolean | undefined;
|
|
239
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
240
152
|
unstyled?: boolean | undefined;
|
|
153
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
241
154
|
circular?: boolean | undefined;
|
|
155
|
+
backgrounded?: boolean | undefined;
|
|
156
|
+
radiused?: boolean | undefined;
|
|
242
157
|
hoverTheme?: boolean | undefined;
|
|
243
158
|
pressTheme?: boolean | undefined;
|
|
244
159
|
focusTheme?: boolean | undefined;
|
|
160
|
+
padded?: boolean | undefined;
|
|
245
161
|
elevate?: boolean | undefined;
|
|
246
162
|
bordered?: number | boolean | undefined;
|
|
247
|
-
backgrounded?: boolean | undefined;
|
|
248
|
-
radiused?: boolean | undefined;
|
|
249
|
-
padded?: boolean | undefined;
|
|
250
163
|
chromeless?: boolean | "all" | undefined;
|
|
251
|
-
}>, "theme" | "debug" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "
|
|
164
|
+
}>, "theme" | "debug" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "elevationAndroid" | "rel" | "download" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "onFocus" | "onBlur" | "onPointerCancel" | "onPointerDown" | "onPointerMove" | "onPointerUp" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancelCapture" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onMouseMove" | "onMouseOver" | "onMouseOut" | "onClick" | "onDoubleClick" | "onContextMenu" | "onWheel" | "onKeyDown" | "onKeyUp" | "onChange" | "onInput" | "onBeforeInput" | "onScroll" | "onCopy" | "onCut" | "onPaste" | "onDrag" | "onDragStart" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDrop" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "scope" | "fullscreen" | "transparent" | "unstyled" | "size" | "forceMount" | "circular" | "backgrounded" | "radiused" | "hoverTheme" | "pressTheme" | "focusTheme" | "padded" | "elevate" | "bordered" | "chromeless" | "disableOutsidePointerEvents" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "forceUnmount" | "onBlurCapture" | "onFocusCapture" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
252
165
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
253
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
254
|
-
top?: number;
|
|
255
|
-
bottom?: number;
|
|
256
|
-
left?: number;
|
|
257
|
-
right?: number;
|
|
258
|
-
} | null | undefined;
|
|
259
166
|
fullscreen?: boolean | undefined;
|
|
260
167
|
transparent?: boolean | undefined;
|
|
261
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
262
168
|
unstyled?: boolean | undefined;
|
|
169
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
263
170
|
circular?: boolean | undefined;
|
|
171
|
+
backgrounded?: boolean | undefined;
|
|
172
|
+
radiused?: boolean | undefined;
|
|
264
173
|
hoverTheme?: boolean | undefined;
|
|
265
174
|
pressTheme?: boolean | undefined;
|
|
266
175
|
focusTheme?: boolean | undefined;
|
|
176
|
+
padded?: boolean | undefined;
|
|
267
177
|
elevate?: boolean | undefined;
|
|
268
178
|
bordered?: number | boolean | undefined;
|
|
269
|
-
backgrounded?: boolean | undefined;
|
|
270
|
-
radiused?: boolean | undefined;
|
|
271
|
-
padded?: boolean | undefined;
|
|
272
179
|
chromeless?: boolean | "all" | undefined;
|
|
273
180
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> | "trapFocus" | "onOpenAutoFocus" | "onCloseAutoFocus"> & Omit<DialogContentTypeProps, "onPointerDownCapture" | "context"> & {
|
|
274
181
|
/**
|
|
@@ -288,25 +195,19 @@ declare const DialogContent: import("@tamagui/core").TamaguiComponent<Omit<impor
|
|
|
288
195
|
scope?: DialogScopes;
|
|
289
196
|
}, import("@tamagui/core").StackStyleBase, {
|
|
290
197
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
291
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
292
|
-
top?: number;
|
|
293
|
-
bottom?: number;
|
|
294
|
-
left?: number;
|
|
295
|
-
right?: number;
|
|
296
|
-
} | null | undefined;
|
|
297
198
|
fullscreen?: boolean | undefined;
|
|
298
199
|
transparent?: boolean | undefined;
|
|
299
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
300
200
|
unstyled?: boolean | undefined;
|
|
201
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
301
202
|
circular?: boolean | undefined;
|
|
203
|
+
backgrounded?: boolean | undefined;
|
|
204
|
+
radiused?: boolean | undefined;
|
|
302
205
|
hoverTheme?: boolean | undefined;
|
|
303
206
|
pressTheme?: boolean | undefined;
|
|
304
207
|
focusTheme?: boolean | undefined;
|
|
208
|
+
padded?: boolean | undefined;
|
|
305
209
|
elevate?: boolean | undefined;
|
|
306
210
|
bordered?: number | boolean | undefined;
|
|
307
|
-
backgrounded?: boolean | undefined;
|
|
308
|
-
radiused?: boolean | undefined;
|
|
309
|
-
padded?: boolean | undefined;
|
|
310
211
|
chromeless?: boolean | "all" | undefined;
|
|
311
212
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
312
213
|
type DialogContentTypeProps = DialogContentImplProps & {
|
|
@@ -412,30 +313,12 @@ declare const Dialog: React.ForwardRefExoticComponent<{
|
|
|
412
313
|
}, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic>;
|
|
413
314
|
Portal: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
414
315
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
415
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
416
|
-
top?: number;
|
|
417
|
-
bottom?: number;
|
|
418
|
-
left?: number;
|
|
419
|
-
right?: number;
|
|
420
|
-
} | null | undefined;
|
|
421
316
|
fullscreen?: boolean | undefined;
|
|
422
317
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
423
318
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
424
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
425
|
-
top?: number;
|
|
426
|
-
bottom?: number;
|
|
427
|
-
left?: number;
|
|
428
|
-
right?: number;
|
|
429
|
-
} | null | undefined;
|
|
430
319
|
fullscreen?: boolean | undefined;
|
|
431
320
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {
|
|
432
321
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
433
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
434
|
-
top?: number;
|
|
435
|
-
bottom?: number;
|
|
436
|
-
left?: number;
|
|
437
|
-
right?: number;
|
|
438
|
-
} | null | undefined;
|
|
439
322
|
fullscreen?: boolean | undefined;
|
|
440
323
|
}>> & {
|
|
441
324
|
/**
|
|
@@ -449,25 +332,8 @@ declare const Dialog: React.ForwardRefExoticComponent<{
|
|
|
449
332
|
Overlay: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
450
333
|
open?: boolean | undefined;
|
|
451
334
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
452
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
453
|
-
top?: number;
|
|
454
|
-
bottom?: number;
|
|
455
|
-
left?: number;
|
|
456
|
-
right?: number;
|
|
457
|
-
} | null | undefined;
|
|
458
335
|
fullscreen?: boolean | undefined;
|
|
459
|
-
circular?: boolean | undefined;
|
|
460
|
-
transparent?: boolean | undefined;
|
|
461
336
|
unstyled?: 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
337
|
}>, "scope" | "forceMount"> & {
|
|
472
338
|
/**
|
|
473
339
|
* Used to force mounting when more control is needed. Useful when
|
|
@@ -487,69 +353,40 @@ declare const Dialog: React.ForwardRefExoticComponent<{
|
|
|
487
353
|
}, import("@tamagui/core").StackStyleBase, {
|
|
488
354
|
open?: boolean | undefined;
|
|
489
355
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
490
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
491
|
-
top?: number;
|
|
492
|
-
bottom?: number;
|
|
493
|
-
left?: number;
|
|
494
|
-
right?: number;
|
|
495
|
-
} | null | undefined;
|
|
496
356
|
fullscreen?: boolean | undefined;
|
|
497
|
-
circular?: boolean | undefined;
|
|
498
|
-
transparent?: boolean | undefined;
|
|
499
357
|
unstyled?: boolean | undefined;
|
|
500
|
-
hoverTheme?: boolean | undefined;
|
|
501
|
-
pressTheme?: boolean | undefined;
|
|
502
|
-
focusTheme?: boolean | undefined;
|
|
503
|
-
elevate?: boolean | undefined;
|
|
504
|
-
bordered?: number | boolean | undefined;
|
|
505
|
-
backgrounded?: boolean | undefined;
|
|
506
|
-
radiused?: boolean | undefined;
|
|
507
|
-
padded?: boolean | undefined;
|
|
508
|
-
chromeless?: boolean | "all" | undefined;
|
|
509
358
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
510
359
|
Content: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
511
360
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
512
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
513
|
-
top?: number;
|
|
514
|
-
bottom?: number;
|
|
515
|
-
left?: number;
|
|
516
|
-
right?: number;
|
|
517
|
-
} | null | undefined;
|
|
518
361
|
fullscreen?: boolean | undefined;
|
|
519
362
|
transparent?: boolean | undefined;
|
|
520
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
521
363
|
unstyled?: boolean | undefined;
|
|
364
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
522
365
|
circular?: boolean | undefined;
|
|
366
|
+
backgrounded?: boolean | undefined;
|
|
367
|
+
radiused?: boolean | undefined;
|
|
523
368
|
hoverTheme?: boolean | undefined;
|
|
524
369
|
pressTheme?: boolean | undefined;
|
|
525
370
|
focusTheme?: boolean | undefined;
|
|
371
|
+
padded?: boolean | undefined;
|
|
526
372
|
elevate?: boolean | undefined;
|
|
527
373
|
bordered?: number | boolean | undefined;
|
|
528
|
-
backgrounded?: boolean | undefined;
|
|
529
|
-
radiused?: boolean | undefined;
|
|
530
|
-
padded?: boolean | undefined;
|
|
531
374
|
chromeless?: boolean | "all" | undefined;
|
|
532
|
-
}>, "theme" | "debug" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "
|
|
375
|
+
}>, "theme" | "debug" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "elevationAndroid" | "rel" | "download" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "onFocus" | "onBlur" | "onPointerCancel" | "onPointerDown" | "onPointerMove" | "onPointerUp" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "focusable" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMoveCapture" | "onPointerCancelCapture" | "onPointerUpCapture" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "aria-label" | "accessibilityRole" | "accessibilityState" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "accessibilityHint" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "onAccessibilityAction" | "importantForAccessibility" | "aria-hidden" | "aria-modal" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "screenReaderFocusable" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "accessibilityRespondsToUserInteraction" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onMouseMove" | "onMouseOver" | "onMouseOut" | "onClick" | "onDoubleClick" | "onContextMenu" | "onWheel" | "onKeyDown" | "onKeyUp" | "onChange" | "onInput" | "onBeforeInput" | "onScroll" | "onCopy" | "onCut" | "onPaste" | "onDrag" | "onDragStart" | "onDragEnd" | "onDragEnter" | "onDragLeave" | "onDragOver" | "onDrop" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "scope" | "fullscreen" | "transparent" | "unstyled" | "size" | "forceMount" | "circular" | "backgrounded" | "radiused" | "hoverTheme" | "pressTheme" | "focusTheme" | "padded" | "elevate" | "bordered" | "chromeless" | "disableOutsidePointerEvents" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "forceUnmount" | "onBlurCapture" | "onFocusCapture" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
|
|
533
376
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
534
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
535
|
-
top?: number;
|
|
536
|
-
bottom?: number;
|
|
537
|
-
left?: number;
|
|
538
|
-
right?: number;
|
|
539
|
-
} | null | undefined;
|
|
540
377
|
fullscreen?: boolean | undefined;
|
|
541
378
|
transparent?: boolean | undefined;
|
|
542
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
543
379
|
unstyled?: boolean | undefined;
|
|
380
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
544
381
|
circular?: boolean | undefined;
|
|
382
|
+
backgrounded?: boolean | undefined;
|
|
383
|
+
radiused?: boolean | undefined;
|
|
545
384
|
hoverTheme?: boolean | undefined;
|
|
546
385
|
pressTheme?: boolean | undefined;
|
|
547
386
|
focusTheme?: boolean | undefined;
|
|
387
|
+
padded?: boolean | undefined;
|
|
548
388
|
elevate?: boolean | undefined;
|
|
549
389
|
bordered?: number | boolean | undefined;
|
|
550
|
-
backgrounded?: boolean | undefined;
|
|
551
|
-
radiused?: boolean | undefined;
|
|
552
|
-
padded?: boolean | undefined;
|
|
553
390
|
chromeless?: boolean | "all" | undefined;
|
|
554
391
|
} & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> | "trapFocus" | "onOpenAutoFocus" | "onCloseAutoFocus"> & Omit<DialogContentTypeProps, "onPointerDownCapture" | "context"> & {
|
|
555
392
|
/**
|
|
@@ -569,25 +406,19 @@ declare const Dialog: React.ForwardRefExoticComponent<{
|
|
|
569
406
|
scope?: DialogScopes;
|
|
570
407
|
}, import("@tamagui/core").StackStyleBase, {
|
|
571
408
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
572
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
573
|
-
top?: number;
|
|
574
|
-
bottom?: number;
|
|
575
|
-
left?: number;
|
|
576
|
-
right?: number;
|
|
577
|
-
} | null | undefined;
|
|
578
409
|
fullscreen?: boolean | undefined;
|
|
579
410
|
transparent?: boolean | undefined;
|
|
580
|
-
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
581
411
|
unstyled?: boolean | undefined;
|
|
412
|
+
size?: import("@tamagui/core").SizeTokens | undefined;
|
|
582
413
|
circular?: boolean | undefined;
|
|
414
|
+
backgrounded?: boolean | undefined;
|
|
415
|
+
radiused?: boolean | undefined;
|
|
583
416
|
hoverTheme?: boolean | undefined;
|
|
584
417
|
pressTheme?: boolean | undefined;
|
|
585
418
|
focusTheme?: boolean | undefined;
|
|
419
|
+
padded?: boolean | undefined;
|
|
586
420
|
elevate?: boolean | undefined;
|
|
587
421
|
bordered?: number | boolean | undefined;
|
|
588
|
-
backgrounded?: boolean | undefined;
|
|
589
|
-
radiused?: boolean | undefined;
|
|
590
|
-
padded?: boolean | undefined;
|
|
591
422
|
chromeless?: boolean | "all" | undefined;
|
|
592
423
|
}, import("@tamagui/core").StaticConfigPublic>;
|
|
593
424
|
Title: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").TextNonStyleProps, import("@tamagui/core").TextStylePropsBase, {
|
|
@@ -624,12 +455,6 @@ declare const Dialog: React.ForwardRefExoticComponent<{
|
|
|
624
455
|
Sheet: React.FunctionComponent<Omit<import("@tamagui/sheet").SheetProps, "open" | "onOpenChange"> & React.RefAttributes<import("react-native").View>> & {
|
|
625
456
|
Frame: import("react").ForwardRefExoticComponent<import("@tamagui/sheet").SheetScopedProps<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
626
457
|
elevation?: number | import("@tamagui/core").SizeTokens | undefined;
|
|
627
|
-
inset?: number | import("@tamagui/core").SizeTokens | {
|
|
628
|
-
top?: number;
|
|
629
|
-
bottom?: number;
|
|
630
|
-
left?: number;
|
|
631
|
-
right?: number;
|
|
632
|
-
} | null | undefined;
|
|
633
458
|
fullscreen?: boolean | undefined;
|
|
634
459
|
unstyled?: boolean | undefined;
|
|
635
460
|
}>, keyof {
|
|
@@ -639,29 +464,19 @@ declare const Dialog: React.ForwardRefExoticComponent<{
|
|
|
639
464
|
disableHideBottomOverflow?: boolean;
|
|
640
465
|
adjustPaddingForOffscreenContent?: boolean;
|
|
641
466
|
}>>;
|
|
642
|
-
Overlay: import("
|
|
643
|
-
open?: boolean
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
hoverTheme?: boolean | undefined;
|
|
656
|
-
pressTheme?: boolean | undefined;
|
|
657
|
-
focusTheme?: boolean | undefined;
|
|
658
|
-
elevate?: boolean | undefined;
|
|
659
|
-
bordered?: number | boolean | undefined;
|
|
660
|
-
backgrounded?: boolean | undefined;
|
|
661
|
-
radiused?: boolean | undefined;
|
|
662
|
-
padded?: boolean | undefined;
|
|
663
|
-
chromeless?: boolean | "all" | undefined;
|
|
664
|
-
}>>) => null>;
|
|
467
|
+
Overlay: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").StackNonStyleProps & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {}>> & {
|
|
468
|
+
open?: boolean;
|
|
469
|
+
}, "__scopeSheet"> & {
|
|
470
|
+
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
471
|
+
}, any, any, any, {
|
|
472
|
+
open?: boolean;
|
|
473
|
+
}, {}> | import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").StackNonStyleProps & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase, {}>> & {
|
|
474
|
+
open?: boolean;
|
|
475
|
+
}, "__scopeSheet"> & {
|
|
476
|
+
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
477
|
+
}, any, {
|
|
478
|
+
__scopeSheet?: import("@tamagui/create-context").Scope<any>;
|
|
479
|
+
}, {}, {}, {}>;
|
|
665
480
|
Handle: import("@tamagui/core").TamaguiComponent<any, any, any, any, {
|
|
666
481
|
open?: boolean;
|
|
667
482
|
}, {}> | import("@tamagui/core").TamaguiComponent<any, any, any, {}, {}, {}>;
|
package/types/Dialog.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["../src/Dialog.tsx"],"names":[],"mappings":"AAWA,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAWxE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AAE5D,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAA;AAM3D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAA;AAKlD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,MAAM,MAAM,YAAY,GAAG,MAAM,CAAA;AAEjC,KAAK,WAAW,CAAC,CAAC,IAAI,CAAC,GAAG;IAAE,KAAK,CAAC,EAAE,YAAY,CAAA;CAAE,CAAA;AAElD,KAAK,WAAW,GAAG,WAAW,CAAC;IAC7B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,YAAY,CAAC,CAAC,IAAI,EAAE,OAAO,GAAG,IAAI,CAAA;IAClC,KAAK,CAAC,EAAE,OAAO,CAAA;IAEf;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAC9B,CAAC,CAAA;AAEF,KAAK,OAAO,CAAC,CAAC,IAAI,OAAO,CAAC,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC,CAAA;AAEzC,KAAK,kBAAkB,GAAG;IACxB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,mBAAmB,CAAC,EAAE,OAAO,CAAA;IAC7B,UAAU,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAC,CAAA;IAClD,UAAU,EAAE,KAAK,CAAC,SAAS,CAAC,cAAc,GAAG,IAAI,CAAC,CAAA;IAClD,SAAS,EAAE,MAAM,CAAA;IACjB,OAAO,EAAE,MAAM,CAAA;IACf,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,IAAI,IAAI,CAAA;IACpB,IAAI,EAAE,OAAO,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAA;IAClC,YAAY,EAAE,OAAO,CAAC,WAAW,CAAC,cAAc,CAAC,CAAC,CAAA;IAClD,KAAK,EAAE,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAA;IACpC,WAAW,EAAE,YAAY,CAAA;IACzB,UAAU,EAAE,MAAM,CAAA;CACnB,CAAA;AAED,eAAO,MAAM,aAAa,2DAIzB,CAAA;AAED,eAAO,MAA0B,gBAAgB,0CAAY,cAAc;;;EAC5D,CAAA;AAUf,KAAK,kBAAkB,GAAG,WAAW,CAAC,SAAS,CAAC,CAAA;AAEhD,QAAA,MAAM,aAAa;YApDiB,YAAY;;YAAZ,YAAY;0FAyE/C,CAAA;AAMD,KAAK,iBAAiB,GAAG,WAAW,CAClC,WAAW,GAAG;IACZ;;;OAGG;IACH,UAAU,CAAC,EAAE,IAAI,CAAA;CAClB,CACF,CAAA;AAED,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["../src/Dialog.tsx"],"names":[],"mappings":"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"}
|