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