@tamagui/dialog 2.0.0-rc.8 → 2.0.0

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.
@@ -17,152 +17,185 @@ import { useControllableState } from "@tamagui/use-controllable-state";
17
17
  import { StackZIndexContext } from "@tamagui/z-index-stack";
18
18
  import * as React from "react";
19
19
  function _instanceof(left, right) {
20
- return right != null && typeof Symbol < "u" && right[Symbol.hasInstance] ? !!right[Symbol.hasInstance](left) : left instanceof right;
20
+ if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
21
+ return !!right[Symbol.hasInstance](left);
22
+ } else {
23
+ return left instanceof right;
24
+ }
21
25
  }
22
26
  var DialogContext = createStyledContext(
23
- // since we always provide this we can avoid setting here
24
- {}, "Dialog__"),
25
- {
26
- useStyledContext: useDialogContext,
27
- Provider: DialogProvider
28
- } = DialogContext,
29
- DialogTriggerFrame = styled(View, {
30
- name: "DialogTrigger"
31
- }),
32
- DialogTrigger = DialogTriggerFrame.styleable(function (props, forwardedRef) {
33
- var {
34
- scope,
35
- ...triggerProps
36
- } = props,
37
- isInsideButton = React.useContext(ButtonNestingContext),
38
- context = useDialogContext(scope),
39
- composedTriggerRef = useComposedRefs(forwardedRef, context.triggerRef);
40
- return /* @__PURE__ */_jsx(ButtonNestingContext.Provider, {
41
- value: !0,
42
- children: /* @__PURE__ */_jsx(DialogTriggerFrame, {
43
- render: isInsideButton ? "span" : "button",
44
- "aria-haspopup": "dialog",
45
- "aria-expanded": context.open,
46
- "aria-controls": context.contentId,
47
- "data-state": getState(context.open),
48
- ...triggerProps,
49
- ref: composedTriggerRef,
50
- onPress: composeEventHandlers(props.onPress, context.onOpenToggle)
51
- })
52
- });
53
- }),
54
- DialogPortalFrame = styled(YStack, {
55
- pointerEvents: "none",
56
- render: "dialog",
57
- variants: {
58
- unstyled: {
59
- false: {
60
- alignItems: "center",
61
- justifyContent: "center",
62
- fullscreen: !0,
63
- "$platform-web": {
64
- // undo dialog styles
65
- borderWidth: 0,
66
- backgroundColor: "transparent",
67
- color: "inherit",
68
- maxInlineSize: "none",
69
- margin: 0,
70
- width: "auto",
71
- height: "auto",
72
- // ensure always in frame and right height
73
- maxHeight: "100vh",
74
- position: "fixed",
75
- // ensure dialog inherits stacking context from portal wrapper
76
- zIndex: 1
77
- }
27
+ // since we always provide this we can avoid setting here
28
+ {}, "Dialog__");
29
+ var {
30
+ useStyledContext: useDialogContext,
31
+ Provider: DialogProvider
32
+ } = DialogContext;
33
+ var DialogAdaptHiddenContext = /* @__PURE__ */React.createContext(true);
34
+ var DialogTriggerFrame = styled(View, {
35
+ name: "DialogTrigger"
36
+ });
37
+ var DialogTrigger = DialogTriggerFrame.styleable(function DialogTrigger2(props, forwardedRef) {
38
+ var {
39
+ scope,
40
+ ...triggerProps
41
+ } = props;
42
+ var isInsideButton = React.useContext(ButtonNestingContext);
43
+ var context = useDialogContext(scope);
44
+ var composedTriggerRef = useComposedRefs(forwardedRef, context.triggerRef);
45
+ return /* @__PURE__ */_jsx(ButtonNestingContext.Provider, {
46
+ value: true,
47
+ children: /* @__PURE__ */_jsx(DialogTriggerFrame, {
48
+ render: isInsideButton ? "span" : "button",
49
+ "aria-haspopup": "dialog",
50
+ "aria-expanded": context.open,
51
+ "aria-controls": context.contentId,
52
+ "data-state": getState(context.open),
53
+ ...triggerProps,
54
+ ref: composedTriggerRef,
55
+ onPress: composeEventHandlers(props.onPress, context.onOpenToggle)
56
+ })
57
+ });
58
+ });
59
+ var DialogPortalFrame = styled(YStack, {
60
+ pointerEvents: "none",
61
+ render: "dialog",
62
+ variants: {
63
+ unstyled: {
64
+ false: {
65
+ alignItems: "center",
66
+ justifyContent: "center",
67
+ fullscreen: true,
68
+ "$platform-web": {
69
+ // undo dialog styles
70
+ borderWidth: 0,
71
+ backgroundColor: "transparent",
72
+ color: "inherit",
73
+ maxInlineSize: "none",
74
+ margin: 0,
75
+ width: "auto",
76
+ height: "auto",
77
+ // ensure always in frame and right height
78
+ maxHeight: "100vh",
79
+ position: "fixed",
80
+ // ensure dialog inherits stacking context from portal wrapper
81
+ zIndex: 1
78
82
  }
79
83
  }
80
- },
81
- defaultVariants: {
82
- unstyled: process.env.TAMAGUI_HEADLESS === "1"
83
84
  }
84
- }),
85
- needsRepropagation = needsPortalRepropagation(),
86
- DialogPortalItem = function (param) {
87
- var {
88
- context,
89
- children
90
- } = param,
91
- themeName = useThemeName(),
92
- isAdapted = useAdaptIsActive(context.adaptScope),
93
- adaptContext = useAdaptContext(context.adaptScope),
94
- content = /* @__PURE__ */_jsx(Theme, {
95
- name: themeName,
96
- children
97
- });
98
- return needsRepropagation && (content = /* @__PURE__ */_jsx(ProvideAdaptContext, {
85
+ },
86
+ defaultVariants: {
87
+ unstyled: process.env.TAMAGUI_HEADLESS === "1"
88
+ }
89
+ });
90
+ var needsRepropagation = needsPortalRepropagation();
91
+ var DialogPortalItem = function (param) {
92
+ var {
93
+ context,
94
+ children
95
+ } = param;
96
+ var themeName = useThemeName();
97
+ var isAdapted = useAdaptIsActive(context.adaptScope);
98
+ var adaptContext = useAdaptContext(context.adaptScope);
99
+ var content = /* @__PURE__ */_jsx(Theme, {
100
+ name: themeName,
101
+ children
102
+ });
103
+ if (needsRepropagation) {
104
+ content = /* @__PURE__ */_jsx(ProvideAdaptContext, {
99
105
  ...adaptContext,
100
106
  children: /* @__PURE__ */_jsx(DialogProvider, {
101
107
  ...context,
102
108
  children: content
103
109
  })
104
- })), isAdapted ? /* @__PURE__ */_jsx(AdaptPortalContents, {
105
- scope: context.adaptScope,
106
- children: content
107
- }) : context.modal ? /* @__PURE__ */_jsx(PortalItem, {
108
- hostName: context.modal ? "root" : context.adaptScope,
109
- children: content
110
- }) : content;
111
- },
112
- DialogPortal = /* @__PURE__ */React.forwardRef(function (props, forwardRef) {
113
- var {
114
- scope,
115
- forceMount,
116
- children,
117
- ...frameProps
118
- } = props,
119
- dialogRef = React.useRef(null),
120
- ref = composeRefs(dialogRef, forwardRef),
121
- context = useDialogContext(scope),
122
- keepMounted = forceMount || context.keepChildrenMounted,
123
- isAdapted = useAdaptIsActive(context.adaptScope),
124
- [isFullyHidden, setIsFullyHidden] = React.useState(!context.open);
125
- context.open && isFullyHidden && setIsFullyHidden(!1);
126
- var isVisible = context.open ? !0 : !isFullyHidden;
127
- isWeb && useIsomorphicLayoutEffect(function () {
110
+ });
111
+ }
112
+ return isAdapted ? /* @__PURE__ */_jsx(AdaptPortalContents, {
113
+ scope: context.adaptScope,
114
+ children: content
115
+ }) : context.modal ? /* @__PURE__ */_jsx(PortalItem, {
116
+ hostName: context.modal ? "root" : context.adaptScope,
117
+ children: content
118
+ }) : content;
119
+ };
120
+ var DialogPortal = /* @__PURE__ */React.forwardRef(function (props, forwardRef) {
121
+ var {
122
+ scope,
123
+ forceMount,
124
+ children,
125
+ ...frameProps
126
+ } = props;
127
+ var dialogRef = React.useRef(null);
128
+ var ref = composeRefs(dialogRef, forwardRef);
129
+ var context = useDialogContext(scope);
130
+ var keepMounted = forceMount || context.keepChildrenMounted;
131
+ var isAdapted = useAdaptIsActive(context.adaptScope);
132
+ var [isFullyHidden, setIsFullyHidden] = React.useState(!context.open);
133
+ if (context.open && isFullyHidden) {
134
+ setIsFullyHidden(false);
135
+ }
136
+ var isVisible = context.open ? true : !isFullyHidden;
137
+ if (isWeb) {
138
+ useIsomorphicLayoutEffect(function () {
128
139
  var node = dialogRef.current;
129
- if (_instanceof(node, HTMLDialogElement)) if (isVisible) {
140
+ if (!_instanceof(node, HTMLDialogElement)) return;
141
+ if (isVisible) {
130
142
  var _node_show;
131
- (_node_show = node.show) === null || _node_show === void 0 || _node_show.call(node);
143
+ (_node_show = node.show) === null || _node_show === void 0 ? void 0 : _node_show.call(node);
132
144
  } else {
133
145
  var _node_close;
134
- (_node_close = node.close) === null || _node_close === void 0 || _node_close.call(node);
146
+ (_node_close = node.close) === null || _node_close === void 0 ? void 0 : _node_close.call(node);
135
147
  }
136
148
  }, [isVisible]);
137
- var handleExitComplete = React.useCallback(function () {
138
- setIsFullyHidden(!0);
139
- }, []),
140
- zIndex = getExpandedShorthand("zIndex", props),
141
- contents = /* @__PURE__ */_jsx(StackZIndexContext, {
142
- zIndex: resolveViewZIndex(zIndex),
143
- children: /* @__PURE__ */_jsx(Animate, {
144
- type: "presence",
145
- present: !!context.open,
146
- keepChildrenMounted: !!keepMounted,
147
- onExitComplete: handleExitComplete,
148
- passThrough: isAdapted,
149
- children
150
- })
149
+ }
150
+ var onAnimationCompleteRef = React.useRef(context.onAnimationComplete);
151
+ onAnimationCompleteRef.current = context.onAnimationComplete;
152
+ var handleExitComplete = React.useCallback(function () {
153
+ var _onAnimationCompleteRef_current;
154
+ setIsFullyHidden(true);
155
+ (_onAnimationCompleteRef_current = onAnimationCompleteRef.current) === null || _onAnimationCompleteRef_current === void 0 ? void 0 : _onAnimationCompleteRef_current.call(onAnimationCompleteRef, {
156
+ open: false
157
+ });
158
+ }, []);
159
+ React.useEffect(function () {
160
+ if (context.open && !isAdapted && onAnimationCompleteRef.current) {
161
+ var tm = setTimeout(function () {
162
+ var _onAnimationCompleteRef_current;
163
+ (_onAnimationCompleteRef_current = onAnimationCompleteRef.current) === null || _onAnimationCompleteRef_current === void 0 ? void 0 : _onAnimationCompleteRef_current.call(onAnimationCompleteRef, {
164
+ open: true
165
+ });
166
+ }, 350);
167
+ return function () {
168
+ return clearTimeout(tm);
169
+ };
170
+ }
171
+ }, [context.open, isAdapted]);
172
+ var zIndex = getExpandedShorthand("zIndex", props);
173
+ var contents = /* @__PURE__ */_jsx(StackZIndexContext, {
174
+ zIndex: resolveViewZIndex(zIndex),
175
+ children: /* @__PURE__ */_jsx(Animate, {
176
+ type: "presence",
177
+ present: Boolean(context.open),
178
+ keepChildrenMounted: Boolean(keepMounted),
179
+ onExitComplete: handleExitComplete,
180
+ passThrough: isAdapted,
181
+ children
182
+ })
183
+ });
184
+ var framedContents = isFullyHidden && !keepMounted && !isAdapted ? null : /* @__PURE__ */_jsx(LayoutMeasurementController, {
185
+ disable: !context.open,
186
+ children: /* @__PURE__ */_jsx(DialogPortalFrame, {
187
+ ref,
188
+ ...(isWeb && context.open && {
189
+ "aria-modal": true
151
190
  }),
152
- framedContents = isFullyHidden && !keepMounted && !isAdapted ? null : /* @__PURE__ */_jsx(LayoutMeasurementController, {
153
- disable: !context.open,
154
- children: /* @__PURE__ */_jsx(DialogPortalFrame, {
155
- ref,
156
- ...(isWeb && context.open && {
157
- "aria-modal": !0
158
- }),
159
- pointerEvents: context.open ? "auto" : "none",
160
- ...frameProps,
161
- className: "_no_backdrop " + (frameProps.className || ""),
162
- children: contents
163
- })
164
- });
165
- return isWeb ? /* @__PURE__ */_jsx(Portal, {
191
+ pointerEvents: context.open ? "auto" : "none",
192
+ ...frameProps,
193
+ className: `_no_backdrop ` + (frameProps.className || ""),
194
+ children: contents
195
+ })
196
+ });
197
+ if (isWeb) {
198
+ return /* @__PURE__ */_jsx(Portal, {
166
199
  zIndex,
167
200
  // set to 100000 which ensures dialogs are above most fixed UI (headers, navs)
168
201
  // this makes sure its above typical stacking contexts
@@ -172,449 +205,497 @@ var DialogContext = createStyledContext(
172
205
  passThrough: isAdapted,
173
206
  children: framedContents
174
207
  })
175
- }) : isAdapted ? framedContents : /* @__PURE__ */_jsx(DialogPortalItem, {
176
- context,
177
- children: framedContents
178
- });
179
- }),
180
- PassthroughTheme = function (param) {
181
- var {
182
- children,
183
- passThrough
184
- } = param,
185
- themeName = useThemeName();
186
- return /* @__PURE__ */_jsx(Theme, {
187
- passThrough,
188
- name: themeName,
189
- forceClassName: !0,
190
- children
191
208
  });
192
- },
193
- OVERLAY_NAME = "DialogOverlay",
194
- DialogOverlayFrame = styled(YStack, {
195
- name: OVERLAY_NAME,
196
- variants: {
197
- open: {
198
- true: {
199
- pointerEvents: "auto"
200
- },
201
- false: {
202
- pointerEvents: "none"
203
- }
209
+ }
210
+ return isAdapted ? framedContents : /* @__PURE__ */_jsx(DialogPortalItem, {
211
+ context,
212
+ children: framedContents
213
+ });
214
+ });
215
+ var PassthroughTheme = function (param) {
216
+ var {
217
+ children,
218
+ passThrough
219
+ } = param;
220
+ var themeName = useThemeName();
221
+ return /* @__PURE__ */_jsx(Theme, {
222
+ passThrough,
223
+ name: themeName,
224
+ forceClassName: true,
225
+ children
226
+ });
227
+ };
228
+ var OVERLAY_NAME = "DialogOverlay";
229
+ var DialogOverlayFrame = styled(YStack, {
230
+ name: OVERLAY_NAME,
231
+ zIndex: 1,
232
+ variants: {
233
+ open: {
234
+ true: {
235
+ pointerEvents: "auto"
204
236
  },
205
- unstyled: {
206
- false: {
207
- fullscreen: !0,
208
- position: "absolute",
209
- backgroundColor: "$background",
210
- zIndex: 99999,
211
- pointerEvents: "auto"
212
- }
237
+ false: {
238
+ pointerEvents: "none"
213
239
  }
214
240
  },
215
- defaultVariants: {
216
- unstyled: process.env.TAMAGUI_HEADLESS === "1"
241
+ unstyled: {
242
+ false: {
243
+ fullscreen: true,
244
+ position: "absolute",
245
+ backgroundColor: "$background",
246
+ pointerEvents: "auto"
247
+ }
217
248
  }
218
- }),
219
- DialogOverlay = DialogOverlayFrame.styleable(function (param, forwardedRef) {
220
- var {
221
- scope,
222
- ...props
223
- } = param,
224
- context = useDialogContext(scope),
225
- {
226
- forceMount = context.forceMount,
227
- ...overlayProps
228
- } = props,
229
- isAdapted = useAdaptIsActive(context.adaptScope);
230
- return !forceMount && (!context.modal || isAdapted) ? null : /* @__PURE__ */_jsx(DialogOverlayFrame, {
231
- "data-state": getState(context.open),
232
- // TODO: this will be apply for v2
233
- // onPress={() => {
234
- // // if the overlay is pressed, close the dialog
235
- // context.onOpenChange(false)
236
- // }}
237
- // We re-enable pointer-events prevented by `Dialog.Content` to allow scrolling the overlay.
238
- pointerEvents: context.open ? "auto" : "none",
239
- ...overlayProps,
240
- ref: forwardedRef
241
- });
242
- }),
243
- CONTENT_NAME = "DialogContent",
244
- DialogContentFrame = styled(ThemeableStack, {
245
- name: CONTENT_NAME,
246
- variants: {
247
- size: {
248
- "...size": function (val, extras) {
249
- return {};
250
- }
251
- },
252
- unstyled: {
253
- false: {
254
- position: "relative",
255
- backgroundColor: "$background",
256
- borderWidth: 1,
257
- borderColor: "$borderColor",
258
- padding: "$true",
259
- borderRadius: "$true",
260
- elevate: !0,
261
- zIndex: 1e5,
262
- // Ensure content receives pointer events (fixes React 19 + display:contents inheritance)
263
- pointerEvents: "auto"
264
- }
249
+ },
250
+ defaultVariants: {
251
+ unstyled: process.env.TAMAGUI_HEADLESS === "1"
252
+ }
253
+ });
254
+ var DialogOverlay = DialogOverlayFrame.styleable(function DialogOverlay2(param, forwardedRef) {
255
+ var {
256
+ scope,
257
+ ...props
258
+ } = param;
259
+ var context = useDialogContext(scope);
260
+ var {
261
+ forceMount = context.forceMount,
262
+ ...overlayProps
263
+ } = props;
264
+ var isAdapted = useAdaptIsActive(context.adaptScope);
265
+ if (!forceMount) {
266
+ if (!context.modal || isAdapted) {
267
+ return null;
268
+ }
269
+ }
270
+ return /* @__PURE__ */_jsx(DialogOverlayFrame, {
271
+ "data-state": getState(context.open),
272
+ // TODO: this will be apply for v2
273
+ // onPress={() => {
274
+ // // if the overlay is pressed, close the dialog
275
+ // context.onOpenChange(false)
276
+ // }}
277
+ // We re-enable pointer-events prevented by `Dialog.Content` to allow scrolling the overlay.
278
+ pointerEvents: context.open ? "auto" : "none",
279
+ ...overlayProps,
280
+ ref: forwardedRef
281
+ });
282
+ });
283
+ var CONTENT_NAME = "DialogContent";
284
+ var DialogContentFrame = styled(ThemeableStack, {
285
+ name: CONTENT_NAME,
286
+ zIndex: 2,
287
+ variants: {
288
+ size: {
289
+ "...size": function (val, extras) {
290
+ return {};
265
291
  }
266
292
  },
267
- defaultVariants: {
268
- size: "$true",
269
- unstyled: process.env.TAMAGUI_HEADLESS === "1"
293
+ unstyled: {
294
+ false: {
295
+ position: "relative",
296
+ backgroundColor: "$background",
297
+ borderWidth: 1,
298
+ borderColor: "$borderColor",
299
+ padding: "$true",
300
+ borderRadius: "$true",
301
+ elevate: true,
302
+ // Ensure content receives pointer events (fixes React 19 + display:contents inheritance)
303
+ pointerEvents: "auto"
304
+ }
270
305
  }
271
- }),
272
- DialogContent = DialogContentFrame.styleable(function (param, forwardedRef) {
273
- var {
274
- scope,
275
- ...props
276
- } = param,
277
- context = useDialogContext(scope),
278
- contents = /* @__PURE__ */_jsx(_Fragment, {
279
- children: context.modal ? /* @__PURE__ */_jsx(DialogContentModal, {
280
- context,
281
- ...props,
282
- ref: forwardedRef
283
- }) : /* @__PURE__ */_jsx(DialogContentNonModal, {
284
- context,
285
- ...props,
286
- ref: forwardedRef
287
- })
288
- });
289
- return !isWeb || context.disableRemoveScroll ? contents : /* @__PURE__ */_jsx(RemoveScroll, {
290
- enabled: context.open,
291
- children: /* @__PURE__ */_jsx("div", {
292
- "data-remove-scroll-container": !0,
293
- className: "_dsp_contents",
294
- children: contents
295
- })
296
- });
297
- }),
298
- DialogContentModal = /* @__PURE__ */React.forwardRef(function (param, forwardedRef) {
299
- var {
300
- children,
301
- context,
302
- ...props
303
- } = param,
304
- contentRef = React.useRef(null),
305
- composedRefs = useComposedRefs(forwardedRef, context.contentRef, contentRef);
306
- return /* @__PURE__ */_jsx(DialogContentImpl, {
306
+ },
307
+ defaultVariants: {
308
+ size: "$true",
309
+ unstyled: process.env.TAMAGUI_HEADLESS === "1"
310
+ }
311
+ });
312
+ var DialogContent = DialogContentFrame.styleable(function DialogContent2(param, forwardedRef) {
313
+ var {
314
+ scope,
315
+ ...props
316
+ } = param;
317
+ var context = useDialogContext(scope);
318
+ var contents = /* @__PURE__ */_jsx(_Fragment, {
319
+ children: context.modal ? /* @__PURE__ */_jsx(DialogContentModal, {
320
+ context,
307
321
  ...props,
322
+ ref: forwardedRef
323
+ }) : /* @__PURE__ */_jsx(DialogContentNonModal, {
308
324
  context,
309
- ref: composedRefs,
310
- // we make sure focus isn't trapped once `DialogContent` has been closed
311
- // (closed !== unmounted when animating out)
312
- trapFocus: context.open,
313
- disableOutsidePointerEvents: !0,
314
- onCloseAutoFocus: composeEventHandlers(props.onCloseAutoFocus, function (event) {
315
- var _context_triggerRef_current;
316
- event.preventDefault(), (_context_triggerRef_current = context.triggerRef.current) === null || _context_triggerRef_current === void 0 || _context_triggerRef_current.focus();
317
- }),
318
- onPointerDownOutside: composeEventHandlers(props.onPointerDownOutside, function (event) {
319
- var originalEvent = event.detail.originalEvent,
320
- ctrlLeftClick = originalEvent.button === 0 && originalEvent.ctrlKey === !0,
321
- isRightClick = originalEvent.button === 2 || ctrlLeftClick;
322
- isRightClick && event.preventDefault();
323
- }),
324
- // When focus is trapped, a `focusout` event may still happen.
325
- // We make sure we don't trigger our `onDismiss` in such case.
326
- onFocusOutside: composeEventHandlers(props.onFocusOutside, function (event) {
327
- return event.preventDefault();
328
- }),
329
- ...(!props.unstyled && {
330
- outlineStyle: "none"
331
- }),
332
- children
333
- });
334
- }),
335
- DialogContentNonModal = /* @__PURE__ */React.forwardRef(function (props, forwardedRef) {
336
- var hasInteractedOutsideRef = React.useRef(!1);
337
- return /* @__PURE__ */_jsx(DialogContentImpl, {
338
325
  ...props,
339
- ref: forwardedRef,
340
- trapFocus: !1,
341
- disableOutsidePointerEvents: !1,
342
- onCloseAutoFocus: function (event) {
343
- var _props_onCloseAutoFocus;
344
- if ((_props_onCloseAutoFocus = props.onCloseAutoFocus) === null || _props_onCloseAutoFocus === void 0 || _props_onCloseAutoFocus.call(props, event), !event.defaultPrevented) {
345
- if (!hasInteractedOutsideRef.current) {
346
- var _props_context_triggerRef_current;
347
- (_props_context_triggerRef_current = props.context.triggerRef.current) === null || _props_context_triggerRef_current === void 0 || _props_context_triggerRef_current.focus();
348
- }
349
- event.preventDefault();
350
- }
351
- hasInteractedOutsideRef.current = !1;
352
- },
353
- onInteractOutside: function (event) {
354
- var _props_onInteractOutside;
355
- (_props_onInteractOutside = props.onInteractOutside) === null || _props_onInteractOutside === void 0 || _props_onInteractOutside.call(props, event), event.defaultPrevented || (hasInteractedOutsideRef.current = !0);
356
- var target = event.target,
357
- trigger = props.context.triggerRef.current;
358
- if (_instanceof(trigger, HTMLElement)) {
359
- var targetIsTrigger = trigger.contains(target);
360
- targetIsTrigger && event.preventDefault();
326
+ ref: forwardedRef
327
+ })
328
+ });
329
+ if (!isWeb || context.disableRemoveScroll) {
330
+ return contents;
331
+ }
332
+ return /* @__PURE__ */_jsx(RemoveScroll, {
333
+ enabled: context.open,
334
+ children: /* @__PURE__ */_jsx("div", {
335
+ "data-remove-scroll-container": true,
336
+ className: "_dsp_contents",
337
+ children: contents
338
+ })
339
+ });
340
+ });
341
+ var DialogContentModal = /* @__PURE__ */React.forwardRef(function (param, forwardedRef) {
342
+ var {
343
+ children,
344
+ context,
345
+ ...props
346
+ } = param;
347
+ var contentRef = React.useRef(null);
348
+ var composedRefs = useComposedRefs(forwardedRef, context.contentRef, contentRef);
349
+ return /* @__PURE__ */_jsx(DialogContentImpl, {
350
+ ...props,
351
+ context,
352
+ ref: composedRefs,
353
+ // we make sure focus isn't trapped once `DialogContent` has been closed
354
+ // (closed !== unmounted when animating out)
355
+ trapFocus: context.open,
356
+ disableOutsidePointerEvents: true,
357
+ onCloseAutoFocus: composeEventHandlers(props.onCloseAutoFocus, function (event) {
358
+ var _context_triggerRef_current;
359
+ event.preventDefault();
360
+ (_context_triggerRef_current = context.triggerRef.current) === null || _context_triggerRef_current === void 0 ? void 0 : _context_triggerRef_current.focus();
361
+ }),
362
+ onPointerDownOutside: composeEventHandlers(props.onPointerDownOutside, function (event) {
363
+ var originalEvent = event["detail"].originalEvent;
364
+ var ctrlLeftClick = originalEvent.button === 0 && originalEvent.ctrlKey === true;
365
+ var isRightClick = originalEvent.button === 2 || ctrlLeftClick;
366
+ if (isRightClick) event.preventDefault();
367
+ }),
368
+ // When focus is trapped, a `focusout` event may still happen.
369
+ // We make sure we don't trigger our `onDismiss` in such case.
370
+ onFocusOutside: composeEventHandlers(props.onFocusOutside, function (event) {
371
+ return event.preventDefault();
372
+ }),
373
+ ...(!props.unstyled && {
374
+ outlineStyle: "none"
375
+ }),
376
+ children
377
+ });
378
+ });
379
+ var DialogContentNonModal = /* @__PURE__ */React.forwardRef(function (props, forwardedRef) {
380
+ var hasInteractedOutsideRef = React.useRef(false);
381
+ return /* @__PURE__ */_jsx(DialogContentImpl, {
382
+ ...props,
383
+ ref: forwardedRef,
384
+ trapFocus: false,
385
+ disableOutsidePointerEvents: false,
386
+ onCloseAutoFocus: function (event) {
387
+ var _props_onCloseAutoFocus;
388
+ (_props_onCloseAutoFocus = props.onCloseAutoFocus) === null || _props_onCloseAutoFocus === void 0 ? void 0 : _props_onCloseAutoFocus.call(props, event);
389
+ if (!event.defaultPrevented) {
390
+ if (!hasInteractedOutsideRef.current) {
391
+ var _props_context_triggerRef_current;
392
+ (_props_context_triggerRef_current = props.context.triggerRef.current) === null || _props_context_triggerRef_current === void 0 ? void 0 : _props_context_triggerRef_current.focus();
361
393
  }
394
+ event.preventDefault();
362
395
  }
363
- });
364
- }),
365
- DialogContentImpl = /* @__PURE__ */React.forwardRef(function (props, forwardedRef) {
366
- var {
367
- trapFocus,
368
- onOpenAutoFocus,
369
- onCloseAutoFocus,
370
- disableOutsidePointerEvents,
371
- onEscapeKeyDown,
372
- onPointerDownOutside,
373
- onFocusOutside,
374
- onInteractOutside,
375
- context,
376
- ...contentProps
377
- } = props,
378
- contentRef = React.useRef(null),
379
- composedRefs = useComposedRefs(forwardedRef, contentRef),
380
- isAdapted = useAdaptIsActive(context.adaptScope);
381
- if (isAdapted) return !isWeb && !context.open ? null : /* @__PURE__ */_jsx(DialogPortalItem, {
396
+ hasInteractedOutsideRef.current = false;
397
+ },
398
+ onInteractOutside: function (event) {
399
+ var _props_onInteractOutside;
400
+ (_props_onInteractOutside = props.onInteractOutside) === null || _props_onInteractOutside === void 0 ? void 0 : _props_onInteractOutside.call(props, event);
401
+ if (!event.defaultPrevented) hasInteractedOutsideRef.current = true;
402
+ var target = event.target;
403
+ var trigger = props.context.triggerRef.current;
404
+ if (!_instanceof(trigger, HTMLElement)) return;
405
+ var targetIsTrigger = trigger.contains(target);
406
+ if (targetIsTrigger) event.preventDefault();
407
+ }
408
+ });
409
+ });
410
+ var DialogContentImpl = /* @__PURE__ */React.forwardRef(function (props, forwardedRef) {
411
+ var {
412
+ trapFocus,
413
+ onOpenAutoFocus,
414
+ onCloseAutoFocus,
415
+ disableOutsidePointerEvents,
416
+ onEscapeKeyDown,
417
+ onPointerDownOutside,
418
+ onFocusOutside,
419
+ onInteractOutside,
420
+ context,
421
+ ...contentProps
422
+ } = props;
423
+ var contentRef = React.useRef(null);
424
+ var composedRefs = useComposedRefs(forwardedRef, contentRef);
425
+ var isAdapted = useAdaptIsActive(context.adaptScope);
426
+ var isAdaptFullyHidden = React.useContext(DialogAdaptHiddenContext);
427
+ if (isAdapted) {
428
+ if (!context.open && !context.keepChildrenMounted && isAdaptFullyHidden) {
429
+ return null;
430
+ }
431
+ return /* @__PURE__ */_jsx(DialogPortalItem, {
382
432
  context,
383
433
  children: contentProps.children
384
434
  });
385
- var contents = /* @__PURE__ */_jsx(DialogContentFrame, {
386
- ref: composedRefs,
387
- id: context.contentId,
388
- role: "dialog",
389
- "aria-modal": context.modal,
390
- "aria-describedby": context.descriptionId,
391
- "aria-labelledby": context.titleId,
392
- "data-state": getState(context.open),
393
- // allow clicking through content during exit animation
394
- pointerEvents: context.open ? "auto" : "none",
395
- ...contentProps
396
- });
397
- return isWeb ? /* @__PURE__ */_jsxs(_Fragment, {
398
- children: [/* @__PURE__ */_jsx(Dismissable, {
399
- disableOutsidePointerEvents: context.open && disableOutsidePointerEvents,
435
+ }
436
+ var contents = /* @__PURE__ */_jsx(DialogContentFrame, {
437
+ ref: composedRefs,
438
+ id: context.contentId,
439
+ role: "dialog",
440
+ "aria-modal": context.modal,
441
+ "aria-describedby": context.descriptionId,
442
+ "aria-labelledby": context.titleId,
443
+ "data-state": getState(context.open),
444
+ // allow clicking through content during exit animation
445
+ pointerEvents: context.open ? "auto" : "none",
446
+ ...contentProps
447
+ });
448
+ if (!isWeb) {
449
+ return contents;
450
+ }
451
+ return /* @__PURE__ */_jsxs(_Fragment, {
452
+ children: [/* @__PURE__ */_jsx(Dismissable, {
453
+ disableOutsidePointerEvents: context.open && disableOutsidePointerEvents,
454
+ forceUnmount: !context.open,
455
+ onEscapeKeyDown,
456
+ onPointerDownOutside,
457
+ onFocusOutside,
458
+ onInteractOutside,
459
+ onDismiss: function () {
460
+ var _context_onOpenChange;
461
+ return context === null || context === void 0 ? void 0 : (_context_onOpenChange = context.onOpenChange) === null || _context_onOpenChange === void 0 ? void 0 : _context_onOpenChange.call(context, false);
462
+ },
463
+ children: /* @__PURE__ */_jsx(FocusScope, {
464
+ loop: true,
465
+ enabled: context.open,
466
+ trapped: trapFocus,
467
+ onMountAutoFocus: onOpenAutoFocus,
400
468
  forceUnmount: !context.open,
401
- onEscapeKeyDown,
402
- onPointerDownOutside,
403
- onFocusOutside,
404
- onInteractOutside,
405
- onDismiss: function () {
406
- var _context_onOpenChange;
407
- return context == null || (_context_onOpenChange = context.onOpenChange) === null || _context_onOpenChange === void 0 ? void 0 : _context_onOpenChange.call(context, !1);
408
- },
409
- children: /* @__PURE__ */_jsx(FocusScope, {
410
- loop: !0,
411
- enabled: context.open,
412
- trapped: trapFocus,
413
- onMountAutoFocus: onOpenAutoFocus,
414
- forceUnmount: !context.open,
415
- onUnmountAutoFocus: onCloseAutoFocus,
416
- children: contents
417
- })
418
- }), process.env.NODE_ENV === "development" && /* @__PURE__ */_jsxs(_Fragment, {
419
- children: [/* @__PURE__ */_jsx(TitleWarning, {
420
- titleId: context.titleId
421
- }), /* @__PURE__ */_jsx(DescriptionWarning, {
422
- contentRef,
423
- descriptionId: context.descriptionId
424
- })]
425
- })]
426
- }) : contents;
427
- }),
428
- DialogTitleFrame = styled(H2, {
429
- name: "DialogTitle"
430
- }),
431
- DialogTitle = DialogTitleFrame.styleable(function (props, forwardedRef) {
432
- var {
433
- scope,
434
- ...titleProps
435
- } = props,
436
- context = useDialogContext(scope);
437
- return /* @__PURE__ */_jsx(DialogTitleFrame, {
438
- id: context.titleId,
439
- ...titleProps,
440
- ref: forwardedRef
441
- });
442
- }),
443
- DialogDescriptionFrame = styled(Paragraph, {
444
- name: "DialogDescription"
445
- }),
446
- DialogDescription = DialogDescriptionFrame.styleable(function (props, forwardedRef) {
447
- var {
448
- scope,
449
- ...descriptionProps
450
- } = props,
451
- context = useDialogContext(scope);
452
- return /* @__PURE__ */_jsx(DialogDescriptionFrame, {
453
- id: context.descriptionId,
454
- ...descriptionProps,
455
- ref: forwardedRef
456
- });
457
- }),
458
- CLOSE_NAME = "DialogClose",
459
- DialogCloseFrame = styled(View, {
460
- name: CLOSE_NAME,
461
- render: "button"
462
- }),
463
- DialogClose = DialogCloseFrame.styleable(function (props, forwardedRef) {
464
- var {
465
- scope,
466
- displayWhenAdapted,
467
- ...closeProps
468
- } = props,
469
- context = useDialogContext(scope),
470
- isAdapted = useAdaptIsActive(context.adaptScope),
471
- isInsideButton = React.useContext(ButtonNestingContext);
472
- return isAdapted && !displayWhenAdapted ? null : /* @__PURE__ */_jsx(DialogCloseFrame, {
473
- "aria-label": "Dialog Close",
474
- render: isInsideButton ? "span" : "button",
475
- ...closeProps,
476
- ref: forwardedRef,
477
- onPress: composeEventHandlers(props.onPress, function () {
478
- context.onOpenChange(!1);
469
+ onUnmountAutoFocus: onCloseAutoFocus,
470
+ children: contents
479
471
  })
480
- });
472
+ }), process.env.NODE_ENV === "development" && /* @__PURE__ */_jsxs(_Fragment, {
473
+ children: [/* @__PURE__ */_jsx(TitleWarning, {
474
+ titleId: context.titleId
475
+ }), /* @__PURE__ */_jsx(DescriptionWarning, {
476
+ contentRef,
477
+ descriptionId: context.descriptionId
478
+ })]
479
+ })]
480
+ });
481
+ });
482
+ var DialogTitleFrame = styled(H2, {
483
+ name: "DialogTitle"
484
+ });
485
+ var DialogTitle = DialogTitleFrame.styleable(function DialogTitle2(props, forwardedRef) {
486
+ var {
487
+ scope,
488
+ ...titleProps
489
+ } = props;
490
+ var context = useDialogContext(scope);
491
+ return /* @__PURE__ */_jsx(DialogTitleFrame, {
492
+ id: context.titleId,
493
+ ...titleProps,
494
+ ref: forwardedRef
481
495
  });
496
+ });
497
+ var DialogDescriptionFrame = styled(Paragraph, {
498
+ name: "DialogDescription"
499
+ });
500
+ var DialogDescription = DialogDescriptionFrame.styleable(function DialogDescription2(props, forwardedRef) {
501
+ var {
502
+ scope,
503
+ ...descriptionProps
504
+ } = props;
505
+ var context = useDialogContext(scope);
506
+ return /* @__PURE__ */_jsx(DialogDescriptionFrame, {
507
+ id: context.descriptionId,
508
+ ...descriptionProps,
509
+ ref: forwardedRef
510
+ });
511
+ });
512
+ var CLOSE_NAME = "DialogClose";
513
+ var DialogCloseFrame = styled(View, {
514
+ name: CLOSE_NAME,
515
+ render: "button"
516
+ });
517
+ var DialogClose = DialogCloseFrame.styleable(function (props, forwardedRef) {
518
+ var {
519
+ scope,
520
+ displayWhenAdapted,
521
+ ...closeProps
522
+ } = props;
523
+ var context = useDialogContext(scope);
524
+ var isAdapted = useAdaptIsActive(context.adaptScope);
525
+ var isInsideButton = React.useContext(ButtonNestingContext);
526
+ if (isAdapted && !displayWhenAdapted) {
527
+ return null;
528
+ }
529
+ return /* @__PURE__ */_jsx(DialogCloseFrame, {
530
+ "aria-label": "Dialog Close",
531
+ render: isInsideButton ? "span" : "button",
532
+ ...closeProps,
533
+ ref: forwardedRef,
534
+ onPress: composeEventHandlers(props.onPress, function () {
535
+ context.onOpenChange(false);
536
+ })
537
+ });
538
+ });
482
539
  function getState(open) {
483
540
  return open ? "open" : "closed";
484
541
  }
485
- var TITLE_WARNING_NAME = "DialogTitleWarning",
486
- [DialogWarningProvider, useWarningContext] = createContext(TITLE_WARNING_NAME, {
487
- contentName: CONTENT_NAME,
488
- titleName: "DialogTitle",
489
- docsSlug: "dialog"
490
- }),
491
- TitleWarning = function (param) {
492
- var {
493
- titleId
494
- } = param;
495
- if (process.env.NODE_ENV === "development") {
496
- var titleWarningContext = useWarningContext(TITLE_WARNING_NAME),
497
- MESSAGE = `\`${titleWarningContext.contentName}\` wants a \`${titleWarningContext.titleName}\` to be accessible. If you want to hide the \`${titleWarningContext.titleName}\`, wrap it with <VisuallyHidden />.`;
498
- React.useEffect(function () {
499
- if (isWeb && titleId) {
500
- var hasTitle = document.getElementById(titleId);
501
- hasTitle || console.warn(MESSAGE);
542
+ var TITLE_WARNING_NAME = "DialogTitleWarning";
543
+ var [DialogWarningProvider, useWarningContext] = createContext(TITLE_WARNING_NAME, {
544
+ contentName: CONTENT_NAME,
545
+ titleName: "DialogTitle",
546
+ docsSlug: "dialog"
547
+ });
548
+ var TitleWarning = function (param) {
549
+ var {
550
+ titleId
551
+ } = param;
552
+ if (process.env.NODE_ENV === "development") {
553
+ var titleWarningContext = useWarningContext(TITLE_WARNING_NAME);
554
+ var MESSAGE = `\`${titleWarningContext.contentName}\` wants a \`${titleWarningContext.titleName}\` to be accessible. If you want to hide the \`${titleWarningContext.titleName}\`, wrap it with <VisuallyHidden />.`;
555
+ React.useEffect(function () {
556
+ if (!isWeb) return;
557
+ if (titleId) {
558
+ var hasTitle = document.getElementById(titleId);
559
+ if (!hasTitle) {
560
+ console.warn(MESSAGE);
502
561
  }
503
- }, [MESSAGE, titleId]);
504
- }
505
- return null;
506
- },
507
- DESCRIPTION_WARNING_NAME = "DialogDescriptionWarning",
508
- DescriptionWarning = function (param) {
509
- var {
510
- contentRef,
511
- descriptionId
512
- } = param;
513
- if (process.env.NODE_ENV === "development") {
514
- var descriptionWarningContext = useWarningContext(DESCRIPTION_WARNING_NAME),
515
- MESSAGE = `Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${descriptionWarningContext.contentName}}.`;
516
- React.useEffect(function () {
517
- if (isWeb) {
518
- var contentNode = contentRef.current;
519
- if (_instanceof(contentNode, HTMLElement)) {
520
- var describedById = contentNode.getAttribute("aria-describedby");
521
- if (descriptionId && describedById) {
522
- var hasDescription = document.getElementById(descriptionId);
523
- hasDescription || console.warn(MESSAGE);
524
- }
525
- }
562
+ }
563
+ }, [MESSAGE, titleId]);
564
+ }
565
+ return null;
566
+ };
567
+ var DESCRIPTION_WARNING_NAME = "DialogDescriptionWarning";
568
+ var DescriptionWarning = function (param) {
569
+ var {
570
+ contentRef,
571
+ descriptionId
572
+ } = param;
573
+ if (process.env.NODE_ENV === "development") {
574
+ var descriptionWarningContext = useWarningContext(DESCRIPTION_WARNING_NAME);
575
+ var MESSAGE = `Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${descriptionWarningContext.contentName}}.`;
576
+ React.useEffect(function () {
577
+ if (!isWeb) return;
578
+ var contentNode = contentRef.current;
579
+ if (!_instanceof(contentNode, HTMLElement)) {
580
+ return;
581
+ }
582
+ var describedById = contentNode.getAttribute("aria-describedby");
583
+ if (descriptionId && describedById) {
584
+ var hasDescription = document.getElementById(descriptionId);
585
+ if (!hasDescription) {
586
+ console.warn(MESSAGE);
526
587
  }
527
- }, [MESSAGE, contentRef, descriptionId]);
528
- }
529
- return null;
530
- },
531
- Dialog = withStaticProperties(/* @__PURE__ */React.forwardRef(function (props, ref) {
532
- var {
533
- scope = "",
534
- children,
535
- open: openProp,
536
- defaultOpen = !1,
537
- onOpenChange,
538
- modal = !0,
539
- keepChildrenMounted,
540
- disableRemoveScroll = !1
541
- } = props,
542
- baseId = React.useId(),
543
- dialogId = `Dialog-${scope}-${baseId}`,
544
- contentId = `${dialogId}-content`,
545
- titleId = `${dialogId}-title`,
546
- descriptionId = `${dialogId}-description`,
547
- triggerRef = React.useRef(null),
548
- contentRef = React.useRef(null),
549
- [open, setOpen] = useControllableState({
550
- prop: openProp,
551
- defaultProp: defaultOpen,
552
- onChange: onOpenChange
553
- }),
554
- onOpenToggle = React.useCallback(function () {
555
- setOpen(function (prevOpen) {
556
- return !prevOpen;
557
- });
558
- }, [setOpen]),
559
- adaptScope = `DialogAdapt${scope}`,
560
- context = {
561
- dialogScope: scope,
562
- adaptScope,
563
- triggerRef,
564
- contentRef,
565
- contentId,
566
- titleId,
567
- descriptionId,
568
- open,
588
+ }
589
+ }, [MESSAGE, contentRef, descriptionId]);
590
+ }
591
+ return null;
592
+ };
593
+ var Dialog = withStaticProperties(/* @__PURE__ */React.forwardRef(function Dialog2(props, ref) {
594
+ var {
595
+ scope = "",
596
+ children,
597
+ open: openProp,
598
+ defaultOpen = false,
599
+ onOpenChange,
600
+ modal = true,
601
+ keepChildrenMounted,
602
+ disableRemoveScroll = false,
603
+ onAnimationComplete
604
+ } = props;
605
+ var baseId = React.useId();
606
+ var dialogId = `Dialog-${scope}-${baseId}`;
607
+ var contentId = `${dialogId}-content`;
608
+ var titleId = `${dialogId}-title`;
609
+ var descriptionId = `${dialogId}-description`;
610
+ var triggerRef = React.useRef(null);
611
+ var contentRef = React.useRef(null);
612
+ var [open, setOpen] = useControllableState({
613
+ prop: openProp,
614
+ defaultProp: defaultOpen,
615
+ onChange: onOpenChange
616
+ });
617
+ var onOpenToggle = React.useCallback(function () {
618
+ setOpen(function (prevOpen) {
619
+ return !prevOpen;
620
+ });
621
+ }, [setOpen]);
622
+ var adaptScope = `DialogAdapt${scope}`;
623
+ var context = {
624
+ dialogScope: scope,
625
+ adaptScope,
626
+ triggerRef,
627
+ contentRef,
628
+ contentId,
629
+ titleId,
630
+ descriptionId,
631
+ open,
632
+ onOpenChange: setOpen,
633
+ onOpenToggle,
634
+ modal,
635
+ keepChildrenMounted,
636
+ disableRemoveScroll,
637
+ onAnimationComplete
638
+ };
639
+ React.useImperativeHandle(ref, function () {
640
+ return {
641
+ open: setOpen
642
+ };
643
+ }, [setOpen]);
644
+ return /* @__PURE__ */_jsx(AdaptParent, {
645
+ scope: adaptScope,
646
+ portal: {
647
+ forwardProps: props
648
+ },
649
+ children: /* @__PURE__ */_jsx(DialogProvider, {
650
+ scope,
651
+ ...context,
652
+ children: /* @__PURE__ */_jsx(DialogSheetController, {
569
653
  onOpenChange: setOpen,
570
- onOpenToggle,
571
- modal,
572
- keepChildrenMounted,
573
- disableRemoveScroll
574
- };
575
- return React.useImperativeHandle(ref, function () {
576
- return {
577
- open: setOpen
578
- };
579
- }, [setOpen]), /* @__PURE__ */_jsx(AdaptParent, {
580
- scope: adaptScope,
581
- portal: {
582
- forwardProps: props
583
- },
584
- children: /* @__PURE__ */_jsx(DialogProvider, {
585
654
  scope,
586
- ...context,
587
- children: /* @__PURE__ */_jsx(DialogSheetController, {
588
- onOpenChange: setOpen,
589
- scope,
590
- children
591
- })
655
+ children
592
656
  })
593
- });
594
- }), {
595
- Trigger: DialogTrigger,
596
- Portal: DialogPortal,
597
- Overlay: DialogOverlay,
598
- Content: DialogContent,
599
- Title: DialogTitle,
600
- Description: DialogDescription,
601
- Close: DialogClose,
602
- FocusScope: FocusScopeController,
603
- Adapt
657
+ })
604
658
  });
659
+ }), {
660
+ Trigger: DialogTrigger,
661
+ Portal: DialogPortal,
662
+ Overlay: DialogOverlay,
663
+ Content: DialogContent,
664
+ Title: DialogTitle,
665
+ Description: DialogDescription,
666
+ Close: DialogClose,
667
+ FocusScope: FocusScopeController,
668
+ Adapt
669
+ });
605
670
  var DialogSheetController = function (props) {
606
- var context = useDialogContext(props.scope),
607
- isAdapted = useAdaptIsActive(context.adaptScope);
671
+ var context = useDialogContext(props.scope);
672
+ var isAdapted = useAdaptIsActive(context.adaptScope);
673
+ var [isAdaptFullyHidden, setIsAdaptFullyHidden] = React.useState(!context.open);
674
+ if (context.open && isAdaptFullyHidden) {
675
+ setIsAdaptFullyHidden(false);
676
+ }
677
+ var handleSheetAnimationComplete = React.useCallback(function (param) {
678
+ var {
679
+ open
680
+ } = param;
681
+ if (!open) {
682
+ setIsAdaptFullyHidden(true);
683
+ }
684
+ }, []);
608
685
  return /* @__PURE__ */_jsx(SheetController, {
609
686
  onOpenChange: function (val) {
610
687
  if (isAdapted) {
611
688
  var _props_onOpenChange;
612
- (_props_onOpenChange = props.onOpenChange) === null || _props_onOpenChange === void 0 || _props_onOpenChange.call(props, val);
689
+ (_props_onOpenChange = props.onOpenChange) === null || _props_onOpenChange === void 0 ? void 0 : _props_onOpenChange.call(props, val);
613
690
  }
614
691
  },
692
+ onAnimationComplete: handleSheetAnimationComplete,
615
693
  open: context.open,
616
694
  hidden: !isAdapted,
617
- children: props.children
695
+ children: /* @__PURE__ */_jsx(DialogAdaptHiddenContext.Provider, {
696
+ value: isAdaptFullyHidden,
697
+ children: props.children
698
+ })
618
699
  });
619
700
  };
620
701
  export { Dialog, DialogClose, DialogContent, DialogContext, DialogDescription, DialogOverlay, DialogOverlayFrame, DialogPortal, DialogPortalFrame, DialogProvider, DialogTitle, DialogTrigger, DialogWarningProvider, useDialogContext };