import { defineComponent, ref, createBlock, openBlock, mergeProps, unref, withCtx, renderSlot } from 'vue'; import { _ as _sfc_main$1 } from './DialogContentImpl.js'; import { u as useEmitAsProps } from '../shared/useEmitAsProps.js'; import { u as useForwardExpose } from '../shared/useForwardExpose.js'; import { i as injectDialogRootContext } from './DialogRoot.js'; const _sfc_main = /* @__PURE__ */ defineComponent({ __name: "DialogContentNonModal", props: { forceMount: { type: Boolean }, trapFocus: { type: Boolean }, disableOutsidePointerEvents: { type: Boolean }, asChild: { type: Boolean }, as: {} }, emits: ["escapeKeyDown", "pointerDownOutside", "focusOutside", "interactOutside", "openAutoFocus", "closeAutoFocus"], setup(__props, { emit: __emit }) { const props = __props; const emits = __emit; const emitsAsProps = useEmitAsProps(emits); useForwardExpose(); const rootContext = injectDialogRootContext(); const hasInteractedOutsideRef = ref(false); const hasPointerDownOutsideRef = ref(false); return (_ctx, _cache) => { return openBlock(), createBlock(_sfc_main$1, mergeProps({ ...props, ...unref(emitsAsProps) }, { "trap-focus": false, "disable-outside-pointer-events": false, onCloseAutoFocus: _cache[0] || (_cache[0] = (event) => { if (!event.defaultPrevented) { if (!hasInteractedOutsideRef.value) unref(rootContext).triggerElement.value?.focus(); event.preventDefault(); } hasInteractedOutsideRef.value = false; hasPointerDownOutsideRef.value = false; }), onInteractOutside: _cache[1] || (_cache[1] = (event) => { if (!event.defaultPrevented) { hasInteractedOutsideRef.value = true; if (event.detail.originalEvent.type === "pointerdown") { hasPointerDownOutsideRef.value = true; } } const target = event.target; const targetIsTrigger = unref(rootContext).triggerElement.value?.contains(target); if (targetIsTrigger) event.preventDefault(); if (event.detail.originalEvent.type === "focusin" && hasPointerDownOutsideRef.value) { event.preventDefault(); } }) }), { default: withCtx(() => [ renderSlot(_ctx.$slots, "default") ]), _: 3 }, 16); }; } }); export { _sfc_main as _ }; //# sourceMappingURL=DialogContentNonModal.js.map