@tamagui/dialog 1.131.3 → 1.132.1-1752373919725

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/src/Dialog.tsx CHANGED
@@ -7,9 +7,8 @@ import {
7
7
  useAdaptIsActive,
8
8
  } from '@tamagui/adapt'
9
9
  import { AnimatePresence } from '@tamagui/animate-presence'
10
- import { hideOthers } from '@tamagui/aria-hidden'
11
- import { useComposedRefs } from '@tamagui/compose-refs'
12
- import { isAndroid, isIos, isWeb } from '@tamagui/constants'
10
+ import { composeRefs, useComposedRefs } from '@tamagui/compose-refs'
11
+ import { isAndroid, isIos, isWeb, useIsomorphicLayoutEffect } from '@tamagui/constants'
13
12
  import type { GetProps, TamaguiElement, ViewProps } from '@tamagui/core'
14
13
  import {
15
14
  createStyledContext,
@@ -116,8 +115,6 @@ const DialogTrigger = DialogTriggerFrame.styleable<ScopedProps<{}>>(
116
115
  * DialogPortal
117
116
  * -----------------------------------------------------------------------------------------------*/
118
117
 
119
- const PORTAL_NAME = 'DialogPortal'
120
-
121
118
  type DialogPortalProps = ScopedProps<
122
119
  YStackProps & {
123
120
  /**
@@ -130,6 +127,7 @@ type DialogPortalProps = ScopedProps<
130
127
 
131
128
  export const DialogPortalFrame = styled(YStack, {
132
129
  pointerEvents: 'none',
130
+ tag: 'dialog',
133
131
 
134
132
  variants: {
135
133
  unstyled: {
@@ -137,10 +135,20 @@ export const DialogPortalFrame = styled(YStack, {
137
135
  alignItems: 'center',
138
136
  justifyContent: 'center',
139
137
  fullscreen: true,
140
- ...(isWeb && {
138
+
139
+ '$platform-web': {
140
+ // undo dialog styles
141
+ borderWidth: 0,
142
+ backgroundColor: 'transparent',
143
+ color: 'inherit',
144
+ maxInlineSize: 'none',
145
+ margin: 0,
146
+ width: 'auto',
147
+ height: 'auto',
148
+ // ensure always in frame and right height
141
149
  maxHeight: '100vh',
142
150
  position: 'fixed' as any,
143
- }),
151
+ },
144
152
  },
145
153
  },
146
154
  } as const,
@@ -185,66 +193,91 @@ const DialogPortalItem = ({
185
193
  )
186
194
  }
187
195
 
188
- const DialogPortal: React.FC<DialogPortalProps> = (props) => {
189
- const { scope, forceMount, children, ...frameProps } = props
190
-
191
- const context = useDialogContext(scope)
192
- const isShowing = forceMount || context.open
193
- const [isFullyHidden, setIsFullyHidden] = React.useState(!isShowing)
194
- const isAdapted = useAdaptIsActive(context.adaptScope)
196
+ const DialogPortal = React.forwardRef<TamaguiElement, DialogPortalProps>(
197
+ (props, forwardRef) => {
198
+ const { scope, forceMount, children, ...frameProps } = props
199
+ const dialogRef = React.useRef<TamaguiElement>(null)
200
+ const ref = composeRefs(dialogRef, forwardRef)
195
201
 
196
- if (isShowing && isFullyHidden) {
197
- setIsFullyHidden(false)
198
- }
202
+ const context = useDialogContext(scope)
203
+ const isMountedOrOpen = forceMount || context.open
204
+ const [isFullyHidden, setIsFullyHidden] = React.useState(!isMountedOrOpen)
205
+ const isAdapted = useAdaptIsActive(context.adaptScope)
206
+ const isVisible = !isFullyHidden
207
+
208
+ if (isWeb) {
209
+ useIsomorphicLayoutEffect(() => {
210
+ const node = dialogRef.current
211
+ if (!(node instanceof HTMLDialogElement)) return
212
+ if (isVisible) {
213
+ // not showModal because then we need to handle Select and Popover inside dialog
214
+ // we can do that later in v2
215
+ node.show()
216
+ } else {
217
+ node.close()
218
+ }
219
+ }, [isVisible])
220
+ }
199
221
 
200
- const handleExitComplete = React.useCallback(() => {
201
- setIsFullyHidden(true)
202
- }, [])
222
+ if (isMountedOrOpen && isFullyHidden) {
223
+ setIsFullyHidden(false)
224
+ }
203
225
 
204
- const zIndex = getExpandedShorthand('zIndex', props)
226
+ const handleExitComplete = React.useCallback(() => {
227
+ setIsFullyHidden(true)
228
+ }, [])
205
229
 
206
- const contents = (
207
- <StackZIndexContext zIndex={resolveViewZIndex(zIndex)}>
208
- <AnimatePresence passThrough={isAdapted} onExitComplete={handleExitComplete}>
209
- {isShowing || isAdapted ? children : null}
210
- </AnimatePresence>
211
- </StackZIndexContext>
212
- )
230
+ const zIndex = getExpandedShorthand('zIndex', props)
213
231
 
214
- if (isFullyHidden && !isAdapted) {
215
- return null
216
- }
232
+ const contents = (
233
+ <StackZIndexContext zIndex={resolveViewZIndex(zIndex)}>
234
+ <AnimatePresence passThrough={isAdapted} onExitComplete={handleExitComplete}>
235
+ {isMountedOrOpen || isAdapted ? children : null}
236
+ </AnimatePresence>
237
+ </StackZIndexContext>
238
+ )
217
239
 
218
- const framedContents = (
219
- <DialogPortalFrame
220
- // passThrough={isAdapted}
221
- pointerEvents={isShowing ? 'auto' : 'none'}
222
- {...frameProps}
223
- >
224
- {contents}
225
- </DialogPortalFrame>
226
- )
240
+ if (isFullyHidden && !isAdapted) {
241
+ return null
242
+ }
227
243
 
228
- if (isWeb) {
229
- return (
230
- <Portal
231
- zIndex={zIndex}
232
- // set to 1000 which "boosts" it 1000 above baseline for current context
233
- // this makes sure its above (this first 1k) popovers on the same layer
234
- stackZIndex={1000}
235
- passThrough={isAdapted}
244
+ const framedContents = (
245
+ <DialogPortalFrame
246
+ ref={ref}
247
+ {...(isWeb &&
248
+ isMountedOrOpen && {
249
+ 'aria-modal': true,
250
+ })}
251
+ // passThrough={isAdapted}
252
+ pointerEvents={isMountedOrOpen ? 'auto' : 'none'}
253
+ {...frameProps}
254
+ className={`_no_backdrop ` + (frameProps.className || '')}
236
255
  >
237
- <PassthroughTheme passThrough={isAdapted}>{framedContents}</PassthroughTheme>
238
- </Portal>
256
+ {contents}
257
+ </DialogPortalFrame>
239
258
  )
240
- }
241
259
 
242
- return isAdapted ? (
243
- framedContents
244
- ) : (
245
- <DialogPortalItem context={context}>{framedContents}</DialogPortalItem>
246
- )
247
- }
260
+ if (isWeb) {
261
+ return (
262
+ <Portal
263
+ zIndex={zIndex}
264
+ // set to 1000 which "boosts" it 1000 above baseline for current context
265
+ // this makes sure its above (this first 1k) popovers on the same layer
266
+ stackZIndex={1000}
267
+ passThrough={isAdapted}
268
+ >
269
+ <PassthroughTheme passThrough={isAdapted}>{framedContents}</PassthroughTheme>
270
+ </Portal>
271
+ )
272
+ }
273
+
274
+ return isAdapted ? (
275
+ framedContents
276
+ ) : (
277
+ <DialogPortalItem context={context}>{framedContents}</DialogPortalItem>
278
+ )
279
+ }
280
+ )
248
281
 
249
282
  const PassthroughTheme = ({
250
283
  children,
@@ -405,14 +438,6 @@ const DialogContentModal = React.forwardRef<TamaguiElement, DialogContentTypePro
405
438
  const contentRef = React.useRef<HTMLDivElement>(null)
406
439
  const composedRefs = useComposedRefs(forwardedRef, context.contentRef, contentRef)
407
440
 
408
- // aria-hide everything except the content (better supported equivalent to setting aria-modal)
409
- React.useEffect(() => {
410
- if (!isWeb) return
411
- if (!context.open) return
412
- const content = contentRef.current
413
- if (content) return hideOthers(content)
414
- }, [context.open])
415
-
416
441
  return (
417
442
  <DialogContentImpl
418
443
  {...props}
package/types/Dialog.d.ts CHANGED
@@ -63,7 +63,42 @@ export declare const DialogPortalFrame: import("@tamagui/core").TamaguiComponent
63
63
  fullscreen?: boolean | undefined;
64
64
  unstyled?: boolean | undefined;
65
65
  }, import("@tamagui/core").StaticConfigPublic>;
66
- declare const DialogPortal: React.FC<DialogPortalProps>;
66
+ 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
+ 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
+ fullscreen?: boolean | undefined;
75
+ } & 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
+ 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
+ fullscreen?: boolean | undefined;
84
+ } & 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
+ 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
+ fullscreen?: boolean | undefined;
93
+ }>> & {
94
+ /**
95
+ * Used to force mounting when more control is needed. Useful when
96
+ * controlling animation with React animation libraries.
97
+ */
98
+ forceMount?: true;
99
+ } & {
100
+ scope?: DialogScopes;
101
+ } & React.RefAttributes<TamaguiElement>>;
67
102
  /**
68
103
  * exported for internal use with extractable()
69
104
  */
@@ -168,10 +203,10 @@ declare const DialogContentFrame: import("@tamagui/core").TamaguiComponent<impor
168
203
  right?: number;
169
204
  } | null | undefined;
170
205
  fullscreen?: boolean | undefined;
206
+ transparent?: boolean | undefined;
171
207
  size?: import("@tamagui/core").SizeTokens | undefined;
172
208
  unstyled?: boolean | undefined;
173
209
  circular?: boolean | undefined;
174
- transparent?: boolean | undefined;
175
210
  hoverTheme?: boolean | undefined;
176
211
  pressTheme?: boolean | undefined;
177
212
  focusTheme?: boolean | undefined;
@@ -200,10 +235,10 @@ declare const DialogContent: import("@tamagui/core").TamaguiComponent<Omit<impor
200
235
  right?: number;
201
236
  } | null | undefined;
202
237
  fullscreen?: boolean | undefined;
238
+ transparent?: boolean | undefined;
203
239
  size?: import("@tamagui/core").SizeTokens | undefined;
204
240
  unstyled?: boolean | undefined;
205
241
  circular?: boolean | undefined;
206
- transparent?: boolean | undefined;
207
242
  hoverTheme?: boolean | undefined;
208
243
  pressTheme?: boolean | undefined;
209
244
  focusTheme?: boolean | undefined;
@@ -213,7 +248,7 @@ declare const DialogContent: import("@tamagui/core").TamaguiComponent<Omit<impor
213
248
  radiused?: boolean | undefined;
214
249
  padded?: boolean | undefined;
215
250
  chromeless?: boolean | "all" | undefined;
216
- }>, "theme" | "debug" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "themeInverse" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "href" | "hrefAttrs" | "elevationAndroid" | "rel" | "download" | "focusable" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerUp" | "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" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onHoverIn" | "onHoverOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onFocus" | "onBlur" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "scope" | "fullscreen" | "size" | "unstyled" | "circular" | "transparent" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "forceMount" | "disableOutsidePointerEvents" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "forceUnmount" | "onBlurCapture" | "onFocusCapture" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
251
+ }>, "theme" | "debug" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "themeInverse" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "href" | "hrefAttrs" | "elevationAndroid" | "rel" | "download" | "focusable" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerUp" | "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" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onHoverIn" | "onHoverOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onFocus" | "onBlur" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "scope" | "fullscreen" | "transparent" | "size" | "unstyled" | "forceMount" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "disableOutsidePointerEvents" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "forceUnmount" | "onBlurCapture" | "onFocusCapture" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
217
252
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
218
253
  inset?: number | import("@tamagui/core").SizeTokens | {
219
254
  top?: number;
@@ -222,10 +257,10 @@ declare const DialogContent: import("@tamagui/core").TamaguiComponent<Omit<impor
222
257
  right?: number;
223
258
  } | null | undefined;
224
259
  fullscreen?: boolean | undefined;
260
+ transparent?: boolean | undefined;
225
261
  size?: import("@tamagui/core").SizeTokens | undefined;
226
262
  unstyled?: boolean | undefined;
227
263
  circular?: boolean | undefined;
228
- transparent?: boolean | undefined;
229
264
  hoverTheme?: boolean | undefined;
230
265
  pressTheme?: boolean | undefined;
231
266
  focusTheme?: boolean | undefined;
@@ -260,10 +295,10 @@ declare const DialogContent: import("@tamagui/core").TamaguiComponent<Omit<impor
260
295
  right?: number;
261
296
  } | null | undefined;
262
297
  fullscreen?: boolean | undefined;
298
+ transparent?: boolean | undefined;
263
299
  size?: import("@tamagui/core").SizeTokens | undefined;
264
300
  unstyled?: boolean | undefined;
265
301
  circular?: boolean | undefined;
266
- transparent?: boolean | undefined;
267
302
  hoverTheme?: boolean | undefined;
268
303
  pressTheme?: boolean | undefined;
269
304
  focusTheme?: boolean | undefined;
@@ -375,7 +410,42 @@ declare const Dialog: React.ForwardRefExoticComponent<{
375
410
  }, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & {
376
411
  scope?: DialogScopes;
377
412
  }, import("@tamagui/core").StackStyleBase, {}, import("@tamagui/core").StaticConfigPublic>;
378
- Portal: React.FC<DialogPortalProps>;
413
+ Portal: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "fullscreen"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
414
+ 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
+ fullscreen?: boolean | undefined;
422
+ } & 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
+ 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
+ fullscreen?: boolean | undefined;
431
+ } & 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
+ 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
+ fullscreen?: boolean | undefined;
440
+ }>> & {
441
+ /**
442
+ * Used to force mounting when more control is needed. Useful when
443
+ * controlling animation with React animation libraries.
444
+ */
445
+ forceMount?: true;
446
+ } & {
447
+ scope?: DialogScopes;
448
+ } & React.RefAttributes<TamaguiElement>>;
379
449
  Overlay: import("@tamagui/core").TamaguiComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
380
450
  open?: boolean | undefined;
381
451
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
@@ -446,10 +516,10 @@ declare const Dialog: React.ForwardRefExoticComponent<{
446
516
  right?: number;
447
517
  } | null | undefined;
448
518
  fullscreen?: boolean | undefined;
519
+ transparent?: boolean | undefined;
449
520
  size?: import("@tamagui/core").SizeTokens | undefined;
450
521
  unstyled?: boolean | undefined;
451
522
  circular?: boolean | undefined;
452
- transparent?: boolean | undefined;
453
523
  hoverTheme?: boolean | undefined;
454
524
  pressTheme?: boolean | undefined;
455
525
  focusTheme?: boolean | undefined;
@@ -459,7 +529,7 @@ declare const Dialog: React.ForwardRefExoticComponent<{
459
529
  radiused?: boolean | undefined;
460
530
  padded?: boolean | undefined;
461
531
  chromeless?: boolean | "all" | undefined;
462
- }>, "theme" | "debug" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "themeInverse" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "href" | "hrefAttrs" | "elevationAndroid" | "rel" | "download" | "focusable" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerUp" | "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" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onHoverIn" | "onHoverOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onFocus" | "onBlur" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "scope" | "fullscreen" | "size" | "unstyled" | "circular" | "transparent" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "forceMount" | "disableOutsidePointerEvents" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "forceUnmount" | "onBlurCapture" | "onFocusCapture" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
532
+ }>, "theme" | "debug" | `$${string}` | `$${number}` | import("@tamagui/core").GroupMediaKeys | `$theme-${string}` | `$theme-${number}` | "hitSlop" | "children" | "target" | "htmlFor" | "asChild" | "dangerouslySetInnerHTML" | "disabled" | "className" | "themeShallow" | "themeInverse" | "id" | "tag" | "group" | "untilMeasured" | "componentName" | "tabIndex" | "role" | "disableOptimization" | "forceStyle" | "disableClassName" | "onStartShouldSetResponder" | "dataSet" | "onScrollShouldSetResponder" | "onScrollShouldSetResponderCapture" | "onSelectionChangeShouldSetResponder" | "onSelectionChangeShouldSetResponderCapture" | "onLayout" | "href" | "hrefAttrs" | "elevationAndroid" | "rel" | "download" | "focusable" | "onMoveShouldSetResponder" | "onResponderEnd" | "onResponderGrant" | "onResponderReject" | "onResponderMove" | "onResponderRelease" | "onResponderStart" | "onResponderTerminationRequest" | "onResponderTerminate" | "onStartShouldSetResponderCapture" | "onMoveShouldSetResponderCapture" | "style" | "needsOffscreenAlphaCompositing" | "removeClippedSubviews" | "testID" | "nativeID" | "collapsable" | "collapsableChildren" | "renderToHardwareTextureAndroid" | "shouldRasterizeIOS" | "isTVSelectable" | "hasTVPreferredFocus" | "tvParallaxShiftDistanceX" | "tvParallaxShiftDistanceY" | "tvParallaxTiltAngle" | "tvParallaxMagnification" | "onTouchStart" | "onTouchMove" | "onTouchEnd" | "onTouchCancel" | "onTouchEndCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerDown" | "onPointerUp" | "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" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "accessibilityLanguage" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "onPress" | "onLongPress" | "onPressIn" | "onPressOut" | "onHoverIn" | "onHoverOut" | "onMouseEnter" | "onMouseLeave" | "onMouseDown" | "onMouseUp" | "onFocus" | "onBlur" | "elevation" | keyof import("@tamagui/core").StackStyleBase | "scope" | "fullscreen" | "transparent" | "size" | "unstyled" | "forceMount" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless" | "disableOutsidePointerEvents" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "forceUnmount" | "onBlurCapture" | "onFocusCapture" | keyof import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase> & {
463
533
  elevation?: number | import("@tamagui/core").SizeTokens | undefined;
464
534
  inset?: number | import("@tamagui/core").SizeTokens | {
465
535
  top?: number;
@@ -468,10 +538,10 @@ declare const Dialog: React.ForwardRefExoticComponent<{
468
538
  right?: number;
469
539
  } | null | undefined;
470
540
  fullscreen?: boolean | undefined;
541
+ transparent?: boolean | undefined;
471
542
  size?: import("@tamagui/core").SizeTokens | undefined;
472
543
  unstyled?: boolean | undefined;
473
544
  circular?: boolean | undefined;
474
- transparent?: boolean | undefined;
475
545
  hoverTheme?: boolean | undefined;
476
546
  pressTheme?: boolean | undefined;
477
547
  focusTheme?: boolean | undefined;
@@ -506,10 +576,10 @@ declare const Dialog: React.ForwardRefExoticComponent<{
506
576
  right?: number;
507
577
  } | null | undefined;
508
578
  fullscreen?: boolean | undefined;
579
+ transparent?: boolean | undefined;
509
580
  size?: import("@tamagui/core").SizeTokens | undefined;
510
581
  unstyled?: boolean | undefined;
511
582
  circular?: boolean | undefined;
512
- transparent?: boolean | undefined;
513
583
  hoverTheme?: boolean | undefined;
514
584
  pressTheme?: boolean | undefined;
515
585
  focusTheme?: boolean | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"Dialog.d.ts","sourceRoot":"","sources":["../src/Dialog.tsx"],"names":[],"mappings":"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"}
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;AAUxE,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;;;;;;;;;;8CA+B5B,CAAA;AAqCF,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA5Ed;;;OAGG;iBACU,IAAI;;YArFe,YAAY;wCAiP/C,CAAA;AAwBD;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;WAtR8B,CAAC;cACzC,CAAC;YAAsB,CAAC;aAC5B,CAAC;;;;;;;;;;;;;;;8CAsRhB,CAAA;AAEF,MAAM,MAAM,uBAAuB,GAAG,WAAW,CAAC;IAChD;;;OAGG;IACH,UAAU,CAAC,EAAE,IAAI,CAAA;CAClB,CAAC,CAAA;AAEF,KAAK,kBAAkB,GAAG,WAAW,GAAG,uBAAuB,CAAA;AAE/D,QAAA,MAAM,aAAa;;;;WApS0C,CAAC;cACzC,CAAC;YAAsB,CAAC;aAC5B,CAAC;;;;;;;;;;;;;;;;IAyRhB;;;OAGG;iBACU,IAAI;;YArRiB,YAAY;;IAiR9C;;;OAGG;iBACU,IAAI;;YArRiB,YAAY;;;;;WAVa,CAAC;cACzC,CAAC;YAAsB,CAAC;aAC5B,CAAC;;;;;;;;;;;;;;;8CA+TjB,CAAA;AAQD,QAAA,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;8CA2BtB,CAAA;AAEF,KAAK,uBAAuB,GAAG,QAAQ,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAElE,KAAK,uBAAuB,GAAG,WAAW,CACxC,IAAI,CAAC,sBAAsB,EAAE,SAAS,GAAG,sBAAsB,CAAC,GAAG;IACjE;;;OAGG;IACH,UAAU,CAAC,EAAE,IAAI,CAAA;CAClB,CACF,CAAA;AAED,KAAK,kBAAkB,GAAG,uBAAuB,GAAG,uBAAuB,CAAA;AAE3E,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAVf;;;OAGG;iBACU,IAAI;;YApWe,YAAY;;IAgW5C;;;OAGG;iBACU,IAAI;;YApWe,YAAY;;;;;;;;;;;;;;;;;;;;;;;8CAqY/C,CAAA;AAID,KAAK,sBAAsB,GAAG,sBAAsB,GAAG;IACrD,OAAO,EAAE,kBAAkB,CAAA;CAC5B,CAAA;AAgGD,KAAK,2BAA2B,GAAG,IAAI,CAAC,gBAAgB,EAAE,WAAW,CAAC,GAAG;IACvE;;;;OAIG;IACH,SAAS,CAAC,EAAE,eAAe,CAAC,SAAS,CAAC,CAAA;IAEtC;;;OAGG;IACH,eAAe,CAAC,EAAE,eAAe,CAAC,kBAAkB,CAAC,CAAA;IAErD;;;OAGG;IACH,gBAAgB,CAAC,EAAE,eAAe,CAAC,oBAAoB,CAAC,CAAA;IAExD,OAAO,EAAE,kBAAkB,CAAA;CAC5B,CAAA;AAED,KAAK,sBAAsB,GAAG,uBAAuB,GAAG,2BAA2B,CAAA;AA6FnF,QAAA,MAAM,gBAAgB;;;8CAEpB,CAAA;AAEF,KAAK,qBAAqB,GAAG,WAAW,CAAC,EAAE,CAAC,CAAA;AAC5C,KAAK,gBAAgB,GAAG,qBAAqB,GAAG,QAAQ,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAEjF,QAAA,MAAM,WAAW;;;;YAtmBmB,YAAY;;YAAZ,YAAY;;;;8CA4mB/C,CAAA;AAMD,QAAA,MAAM,sBAAsB;;;8CAE1B,CAAA;AAEF,KAAK,2BAA2B,GAAG,WAAW,CAAC,EAAE,CAAC,CAAA;AAClD,KAAK,sBAAsB,GAAG,2BAA2B,GACvD,QAAQ,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAEzC,QAAA,MAAM,iBAAiB;;;;YA1nBa,YAAY;;YAAZ,YAAY;;;;8CAsoB/C,CAAA;AAQD,QAAA,MAAM,gBAAgB,yOAGpB,CAAA;AAEF,MAAM,MAAM,qBAAqB,GAAG,WAAW,CAAC;IAC9C,kBAAkB,CAAC,EAAE,OAAO,CAAA;CAC7B,CAAC,CAAA;AAEF,KAAK,gBAAgB,GAAG,QAAQ,CAAC,OAAO,gBAAgB,CAAC,GAAG,qBAAqB,CAAA;AAEjF,QAAA,MAAM,WAAW;yBALM,OAAO;;YAppBM,YAAY;;yBAopBzB,OAAO;;YAppBM,YAAY;0FAgrB/C,CAAA;AAUD,QAAA,MAAO,qBAAqB;;;;;;uBAI1B,CAAA;AA+DF,MAAM,MAAM,YAAY,GAAG;IACzB,IAAI,EAAE,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI,CAAA;CAC7B,CAAA;AAED,QAAA,MAAM,MAAM;eA9vBC,KAAK,CAAC,SAAS;WACnB,OAAO;kBACA,OAAO;wBACD,OAAO,GAAG,IAAI;YAC1B,OAAO;IAEf;;OAEG;0BACmB,OAAO;;YAZK,YAAY;;UAkwBrB,CAAC,GAAG,EAAE,OAAO,KAAK,IAAI;;;gBAlwBb,YAAY;;gBAAZ,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAiF5C;;;WAGG;qBACU,IAAI;;gBArFe,YAAY;;;;;;eAVa,CAAC;kBACzC,CAAC;gBAAsB,CAAC;iBAC5B,CAAC;;;;;;;;;;;;;;;;QAyRhB;;;WAGG;qBACU,IAAI;;gBArRiB,YAAY;;QAiR9C;;;WAGG;qBACU,IAAI;;gBArRiB,YAAY;;;;;eAVa,CAAC;kBACzC,CAAC;gBAAsB,CAAC;iBAC5B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAwWd;;;WAGG;qBACU,IAAI;;gBApWe,YAAY;;QAgW5C;;;WAGG;qBACU,IAAI;;gBApWe,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAAZ,YAAY;;gBAAZ,YAAY;;;;;;;;;gBAAZ,YAAY;;gBAAZ,YAAY;;;;;;6BAopBzB,OAAO;;gBAppBM,YAAY;;6BAopBzB,OAAO;;gBAppBM,YAAY;;;;qBA+EzB,CAAC;iBAGY,CAAC;mBACF,CAAC;sBAEhC,CAAJ;oBAIC,CAAC;qBAA+B,CAAC;;sBAI3B,CAAC;oBAGA,CAAD;;qCAEgB,CAAC;4CAGC,CAAC;;qCAEK,CAAC;4CAEf,CAAC;;;gBAad,CAAF;qBAA6C,CAAA;iBAIe,CAAC;mBAKrD,CAAC;sBAAiC,CAAA;oBACtC,CAAC;qBACJ,CAAC;;sBACS,CAAC;oBAA2C,CAAC;uBAEd,CAAC;oBAEhB,CAAA;sBACnB,CAAC;sBAEC,CAAC;sBACD,CAAC;mBAA0C,CAAC;oBAGtD,CAAD;wBAKC,CAFD;oBAEC,CADC;kBAAyC,CAAC;sBACxC,CAAC;;;gBAGkB,CAAC;;;0CAesB,CAAC;;sBAK5C,CAAH;;0CAKqB,CAAC;;0CAaY,CAAC;;sBAOI,CAAC;;0CAInC,CAAC;;0CAekC,CAAC;;sBAQ7B,CAAC;;;;;;sBA9MF,GAAI;qBAEhB,CAAC;;;;;CAq0BA,CAAA;AA4BD,OAAO,EAEL,MAAM,EACN,WAAW,EACX,aAAa,EACb,iBAAiB,EACjB,aAAa,EACb,YAAY,EACZ,WAAW,EACX,aAAa,EAEb,qBAAqB,GACtB,CAAA;AACD,YAAY,EACV,gBAAgB,EAChB,kBAAkB,EAClB,sBAAsB,EACtB,kBAAkB,EAClB,iBAAiB,EACjB,WAAW,EACX,gBAAgB,EAChB,kBAAkB,GACnB,CAAA"}