{"version":3,"file":"PopoverContent-MMb4zPN0.js","sources":["../../node_modules/reka-ui/dist/Popover/PopoverRoot.js","../../node_modules/reka-ui/dist/Popover/PopoverTrigger.js","../../node_modules/reka-ui/dist/Popover/PopoverPortal.js","../../node_modules/reka-ui/dist/Popover/PopoverContentImpl.js","../../node_modules/reka-ui/dist/Popover/PopoverContentModal.js","../../node_modules/reka-ui/dist/Popover/PopoverContentNonModal.js","../../node_modules/reka-ui/dist/Popover/PopoverContent.js"],"sourcesContent":["import { defineComponent, toRefs, ref, openBlock, createBlock, unref, withCtx, renderSlot } from 'vue';\nimport { useVModel } from '@vueuse/core';\nimport { _ as _sfc_main$1 } from '../Popper/PopperRoot.js';\nimport { c as createContext } from '../shared/createContext.js';\n\nconst [injectPopoverRootContext, providePopoverRootContext] = createContext(\"PopoverRoot\");\nconst _sfc_main = /* @__PURE__ */ defineComponent({\n __name: \"PopoverRoot\",\n props: {\n defaultOpen: { type: Boolean, default: false },\n open: { type: Boolean, default: undefined },\n modal: { type: Boolean, default: false }\n },\n emits: [\"update:open\"],\n setup(__props, { emit: __emit }) {\n const props = __props;\n const emit = __emit;\n const { modal } = toRefs(props);\n const open = useVModel(props, \"open\", emit, {\n defaultValue: props.defaultOpen,\n passive: props.open === undefined\n });\n const triggerElement = ref();\n const hasCustomAnchor = ref(false);\n providePopoverRootContext({\n contentId: \"\",\n triggerId: \"\",\n modal,\n open,\n onOpenChange: (value) => {\n open.value = value;\n },\n onOpenToggle: () => {\n open.value = !open.value;\n },\n triggerElement,\n hasCustomAnchor\n });\n return (_ctx, _cache) => {\n return openBlock(), createBlock(unref(_sfc_main$1), null, {\n default: withCtx(() => [\n renderSlot(_ctx.$slots, \"default\", { open: unref(open) })\n ]),\n _: 3\n });\n };\n }\n});\n\nexport { _sfc_main as _, injectPopoverRootContext as i };\n//# sourceMappingURL=PopoverRoot.js.map\n","import { defineComponent, onMounted, openBlock, createBlock, resolveDynamicComponent, unref, withCtx, createVNode, renderSlot } from 'vue';\nimport { _ as _sfc_main$1 } from '../Popper/PopperAnchor.js';\nimport { i as injectPopoverRootContext } from './PopoverRoot.js';\nimport { u as useForwardExpose } from '../shared/useForwardExpose.js';\nimport { u as useId } from '../shared/useId.js';\nimport { P as Primitive } from '../Primitive/Primitive.js';\n\nconst _sfc_main = /* @__PURE__ */ defineComponent({\n __name: \"PopoverTrigger\",\n props: {\n asChild: { type: Boolean },\n as: { default: \"button\" }\n },\n setup(__props) {\n const props = __props;\n const rootContext = injectPopoverRootContext();\n const { forwardRef, currentElement: triggerElement } = useForwardExpose();\n rootContext.triggerId ||= useId(undefined, \"reka-popover-trigger\");\n onMounted(() => {\n rootContext.triggerElement.value = triggerElement.value;\n });\n return (_ctx, _cache) => {\n return openBlock(), createBlock(resolveDynamicComponent(unref(rootContext).hasCustomAnchor.value ? unref(Primitive) : unref(_sfc_main$1)), { \"as-child\": \"\" }, {\n default: withCtx(() => [\n createVNode(unref(Primitive), {\n id: unref(rootContext).triggerId,\n ref: unref(forwardRef),\n type: _ctx.as === \"button\" ? \"button\" : undefined,\n \"aria-haspopup\": \"dialog\",\n \"aria-expanded\": unref(rootContext).open.value,\n \"aria-controls\": unref(rootContext).contentId,\n \"data-state\": unref(rootContext).open.value ? \"open\" : \"closed\",\n as: _ctx.as,\n \"as-child\": props.asChild,\n onClick: unref(rootContext).onOpenToggle\n }, {\n default: withCtx(() => [\n renderSlot(_ctx.$slots, \"default\")\n ]),\n _: 3\n }, 8, [\"id\", \"type\", \"aria-expanded\", \"aria-controls\", \"data-state\", \"as\", \"as-child\", \"onClick\"])\n ]),\n _: 3\n });\n };\n }\n});\n\nexport { _sfc_main as _ };\n//# sourceMappingURL=PopoverTrigger.js.map\n","import { defineComponent, openBlock, createBlock, unref, normalizeProps, guardReactiveProps, withCtx, renderSlot } from 'vue';\nimport { _ as _sfc_main$1 } from '../Teleport/Teleport.js';\n\nconst _sfc_main = /* @__PURE__ */ defineComponent({\n __name: \"PopoverPortal\",\n props: {\n to: {},\n disabled: { type: Boolean },\n defer: { type: Boolean },\n forceMount: { type: Boolean }\n },\n setup(__props) {\n const props = __props;\n return (_ctx, _cache) => {\n return openBlock(), createBlock(unref(_sfc_main$1), normalizeProps(guardReactiveProps(props)), {\n default: withCtx(() => [\n renderSlot(_ctx.$slots, \"default\")\n ]),\n _: 3\n }, 16);\n };\n }\n});\n\nexport { _sfc_main as _ };\n//# sourceMappingURL=PopoverPortal.js.map\n","import { defineComponent, openBlock, createBlock, unref, withCtx, createVNode, mergeProps, renderSlot } from 'vue';\nimport { _ as _sfc_main$3 } from '../Popper/PopperContent.js';\nimport { _ as _sfc_main$2 } from '../DismissableLayer/DismissableLayer.js';\nimport { reactiveOmit } from '@vueuse/shared';\nimport { u as useForwardProps } from '../shared/useForwardProps.js';\nimport { u as useForwardExpose } from '../shared/useForwardExpose.js';\nimport { u as useFocusGuards } from '../shared/useFocusGuards.js';\nimport { _ as _sfc_main$1 } from '../FocusScope/FocusScope.js';\nimport { i as injectPopoverRootContext } from './PopoverRoot.js';\n\nconst _sfc_main = /* @__PURE__ */ defineComponent({\n __name: \"PopoverContentImpl\",\n props: {\n trapFocus: { type: Boolean },\n side: {},\n sideOffset: {},\n align: {},\n alignOffset: {},\n avoidCollisions: { type: Boolean },\n collisionBoundary: {},\n collisionPadding: {},\n arrowPadding: {},\n sticky: {},\n hideWhenDetached: { type: Boolean },\n positionStrategy: {},\n updatePositionStrategy: {},\n disableUpdateOnLayoutShift: { type: Boolean },\n prioritizePosition: { type: Boolean },\n reference: {},\n asChild: { type: Boolean },\n as: {},\n disableOutsidePointerEvents: { type: Boolean }\n },\n emits: [\"escapeKeyDown\", \"pointerDownOutside\", \"focusOutside\", \"interactOutside\", \"openAutoFocus\", \"closeAutoFocus\"],\n setup(__props, { emit: __emit }) {\n const props = __props;\n const emits = __emit;\n const forwarded = useForwardProps(reactiveOmit(props, \"trapFocus\", \"disableOutsidePointerEvents\"));\n const { forwardRef } = useForwardExpose();\n const rootContext = injectPopoverRootContext();\n useFocusGuards();\n return (_ctx, _cache) => {\n return openBlock(), createBlock(unref(_sfc_main$1), {\n \"as-child\": \"\",\n loop: \"\",\n trapped: _ctx.trapFocus,\n onMountAutoFocus: _cache[5] || (_cache[5] = ($event) => emits(\"openAutoFocus\", $event)),\n onUnmountAutoFocus: _cache[6] || (_cache[6] = ($event) => emits(\"closeAutoFocus\", $event))\n }, {\n default: withCtx(() => [\n createVNode(unref(_sfc_main$2), {\n \"as-child\": \"\",\n \"disable-outside-pointer-events\": _ctx.disableOutsidePointerEvents,\n onPointerDownOutside: _cache[0] || (_cache[0] = ($event) => emits(\"pointerDownOutside\", $event)),\n onInteractOutside: _cache[1] || (_cache[1] = ($event) => emits(\"interactOutside\", $event)),\n onEscapeKeyDown: _cache[2] || (_cache[2] = ($event) => emits(\"escapeKeyDown\", $event)),\n onFocusOutside: _cache[3] || (_cache[3] = ($event) => emits(\"focusOutside\", $event)),\n onDismiss: _cache[4] || (_cache[4] = ($event) => unref(rootContext).onOpenChange(false))\n }, {\n default: withCtx(() => [\n createVNode(unref(_sfc_main$3), mergeProps(unref(forwarded), {\n id: unref(rootContext).contentId,\n ref: unref(forwardRef),\n \"data-state\": unref(rootContext).open.value ? \"open\" : \"closed\",\n \"aria-labelledby\": unref(rootContext).triggerId,\n style: {\n \"--reka-popover-content-transform-origin\": \"var(--reka-popper-transform-origin)\",\n \"--reka-popover-content-available-width\": \"var(--reka-popper-available-width)\",\n \"--reka-popover-content-available-height\": \"var(--reka-popper-available-height)\",\n \"--reka-popover-trigger-width\": \"var(--reka-popper-anchor-width)\",\n \"--reka-popover-trigger-height\": \"var(--reka-popper-anchor-height)\"\n },\n role: \"dialog\"\n }), {\n default: withCtx(() => [\n renderSlot(_ctx.$slots, \"default\")\n ]),\n _: 3\n }, 16, [\"id\", \"data-state\", \"aria-labelledby\"])\n ]),\n _: 3\n }, 8, [\"disable-outside-pointer-events\"])\n ]),\n _: 3\n }, 8, [\"trapped\"]);\n };\n }\n});\n\nexport { _sfc_main as _ };\n//# sourceMappingURL=PopoverContentImpl.js.map\n","import { defineComponent, ref, openBlock, createBlock, mergeProps, unref, withModifiers, withCtx, renderSlot } from 'vue';\nimport { _ as _sfc_main$1 } from './PopoverContentImpl.js';\nimport { u as useBodyScrollLock } from '../shared/useBodyScrollLock.js';\nimport { u as useForwardPropsEmits } from '../shared/useForwardPropsEmits.js';\nimport { u as useForwardExpose } from '../shared/useForwardExpose.js';\nimport { u as useHideOthers } from '../shared/useHideOthers.js';\nimport { i as injectPopoverRootContext } from './PopoverRoot.js';\n\nconst _sfc_main = /* @__PURE__ */ defineComponent({\n __name: \"PopoverContentModal\",\n props: {\n side: {},\n sideOffset: {},\n align: {},\n alignOffset: {},\n avoidCollisions: { type: Boolean },\n collisionBoundary: {},\n collisionPadding: {},\n arrowPadding: {},\n sticky: {},\n hideWhenDetached: { type: Boolean },\n positionStrategy: {},\n updatePositionStrategy: {},\n disableUpdateOnLayoutShift: { type: Boolean },\n prioritizePosition: { type: Boolean },\n reference: {},\n asChild: { type: Boolean },\n as: {},\n disableOutsidePointerEvents: { type: Boolean }\n },\n emits: [\"escapeKeyDown\", \"pointerDownOutside\", \"focusOutside\", \"interactOutside\", \"openAutoFocus\", \"closeAutoFocus\"],\n setup(__props, { emit: __emit }) {\n const props = __props;\n const emits = __emit;\n const rootContext = injectPopoverRootContext();\n const isRightClickOutsideRef = ref(false);\n useBodyScrollLock(true);\n const forwarded = useForwardPropsEmits(props, emits);\n const { forwardRef, currentElement } = useForwardExpose();\n useHideOthers(currentElement);\n return (_ctx, _cache) => {\n return openBlock(), createBlock(_sfc_main$1, mergeProps(unref(forwarded), {\n ref: unref(forwardRef),\n \"trap-focus\": unref(rootContext).open.value,\n \"disable-outside-pointer-events\": \"\",\n onCloseAutoFocus: _cache[0] || (_cache[0] = withModifiers(\n (event) => {\n emits(\"closeAutoFocus\", event);\n if (!isRightClickOutsideRef.value) unref(rootContext).triggerElement.value?.focus();\n },\n [\"prevent\"]\n )),\n onPointerDownOutside: _cache[1] || (_cache[1] = (event) => {\n emits(\"pointerDownOutside\", event);\n const originalEvent = event.detail.originalEvent;\n const ctrlLeftClick = originalEvent.button === 0 && originalEvent.ctrlKey === true;\n const isRightClick = originalEvent.button === 2 || ctrlLeftClick;\n isRightClickOutsideRef.value = isRightClick;\n }),\n onFocusOutside: _cache[2] || (_cache[2] = withModifiers(() => {\n }, [\"prevent\"]))\n }), {\n default: withCtx(() => [\n renderSlot(_ctx.$slots, \"default\")\n ]),\n _: 3\n }, 16, [\"trap-focus\"]);\n };\n }\n});\n\nexport { _sfc_main as _ };\n//# sourceMappingURL=PopoverContentModal.js.map\n","import { defineComponent, ref, openBlock, createBlock, mergeProps, unref, withCtx, renderSlot } from 'vue';\nimport { _ as _sfc_main$1 } from './PopoverContentImpl.js';\nimport { u as useForwardPropsEmits } from '../shared/useForwardPropsEmits.js';\nimport { i as injectPopoverRootContext } from './PopoverRoot.js';\n\nconst _sfc_main = /* @__PURE__ */ defineComponent({\n __name: \"PopoverContentNonModal\",\n props: {\n side: {},\n sideOffset: {},\n align: {},\n alignOffset: {},\n avoidCollisions: { type: Boolean },\n collisionBoundary: {},\n collisionPadding: {},\n arrowPadding: {},\n sticky: {},\n hideWhenDetached: { type: Boolean },\n positionStrategy: {},\n updatePositionStrategy: {},\n disableUpdateOnLayoutShift: { type: Boolean },\n prioritizePosition: { type: Boolean },\n reference: {},\n asChild: { type: Boolean },\n as: {},\n disableOutsidePointerEvents: { type: Boolean }\n },\n emits: [\"escapeKeyDown\", \"pointerDownOutside\", \"focusOutside\", \"interactOutside\", \"openAutoFocus\", \"closeAutoFocus\"],\n setup(__props, { emit: __emit }) {\n const props = __props;\n const emits = __emit;\n const rootContext = injectPopoverRootContext();\n const hasInteractedOutsideRef = ref(false);\n const hasPointerDownOutsideRef = ref(false);\n const forwarded = useForwardPropsEmits(props, emits);\n return (_ctx, _cache) => {\n return openBlock(), createBlock(_sfc_main$1, mergeProps(unref(forwarded), {\n \"trap-focus\": false,\n \"disable-outside-pointer-events\": false,\n onCloseAutoFocus: _cache[0] || (_cache[0] = (event) => {\n emits(\"closeAutoFocus\", event);\n if (!event.defaultPrevented) {\n if (!hasInteractedOutsideRef.value) unref(rootContext).triggerElement.value?.focus();\n event.preventDefault();\n }\n hasInteractedOutsideRef.value = false;\n hasPointerDownOutsideRef.value = false;\n }),\n onInteractOutside: _cache[1] || (_cache[1] = async (event) => {\n emits(\"interactOutside\", event);\n if (!event.defaultPrevented) {\n hasInteractedOutsideRef.value = true;\n if (event.detail.originalEvent.type === \"pointerdown\") {\n hasPointerDownOutsideRef.value = true;\n }\n }\n const target = event.target;\n const targetIsTrigger = unref(rootContext).triggerElement.value?.contains(target);\n if (targetIsTrigger) event.preventDefault();\n if (event.detail.originalEvent.type === \"focusin\" && hasPointerDownOutsideRef.value) {\n event.preventDefault();\n }\n })\n }), {\n default: withCtx(() => [\n renderSlot(_ctx.$slots, \"default\")\n ]),\n _: 3\n }, 16);\n };\n }\n});\n\nexport { _sfc_main as _ };\n//# sourceMappingURL=PopoverContentNonModal.js.map\n","import { defineComponent, openBlock, createBlock, unref, withCtx, mergeProps, renderSlot } from 'vue';\nimport { _ as _sfc_main$1 } from './PopoverContentModal.js';\nimport { _ as _sfc_main$2 } from './PopoverContentNonModal.js';\nimport { u as useForwardPropsEmits } from '../shared/useForwardPropsEmits.js';\nimport { u as useForwardExpose } from '../shared/useForwardExpose.js';\nimport { u as useId } from '../shared/useId.js';\nimport { P as Presence } from '../Presence/Presence.js';\nimport { i as injectPopoverRootContext } from './PopoverRoot.js';\n\nconst _sfc_main = /* @__PURE__ */ defineComponent({\n __name: \"PopoverContent\",\n props: {\n forceMount: { type: Boolean },\n side: {},\n sideOffset: {},\n align: {},\n alignOffset: {},\n avoidCollisions: { type: Boolean },\n collisionBoundary: {},\n collisionPadding: {},\n arrowPadding: {},\n sticky: {},\n hideWhenDetached: { type: Boolean },\n positionStrategy: {},\n updatePositionStrategy: {},\n disableUpdateOnLayoutShift: { type: Boolean },\n prioritizePosition: { type: Boolean },\n reference: {},\n asChild: { type: Boolean },\n as: {},\n disableOutsidePointerEvents: { type: Boolean }\n },\n emits: [\"escapeKeyDown\", \"pointerDownOutside\", \"focusOutside\", \"interactOutside\", \"openAutoFocus\", \"closeAutoFocus\"],\n setup(__props, { emit: __emit }) {\n const props = __props;\n const emits = __emit;\n const rootContext = injectPopoverRootContext();\n const forwarded = useForwardPropsEmits(props, emits);\n const { forwardRef } = useForwardExpose();\n rootContext.contentId ||= useId(undefined, \"reka-popover-content\");\n return (_ctx, _cache) => {\n return openBlock(), createBlock(unref(Presence), {\n present: _ctx.forceMount || unref(rootContext).open.value\n }, {\n default: withCtx(() => [\n unref(rootContext).modal.value ? (openBlock(), createBlock(_sfc_main$1, mergeProps({ key: 0 }, unref(forwarded), { ref: unref(forwardRef) }), {\n default: withCtx(() => [\n renderSlot(_ctx.$slots, \"default\")\n ]),\n _: 3\n }, 16)) : (openBlock(), createBlock(_sfc_main$2, mergeProps({ key: 1 }, unref(forwarded), { ref: unref(forwardRef) }), {\n default: withCtx(() => [\n renderSlot(_ctx.$slots, \"default\")\n ]),\n _: 3\n }, 16))\n ]),\n _: 3\n }, 8, [\"present\"]);\n };\n }\n});\n\nexport { _sfc_main as _ };\n//# sourceMappingURL=PopoverContent.js.map\n"],"names":["injectPopoverRootContext","providePopoverRootContext","createContext","_sfc_main","defineComponent","__props","__emit","props","emit","modal","toRefs","open","useVModel","triggerElement","ref","hasCustomAnchor","value","_ctx","_cache","openBlock","createBlock","unref","_sfc_main$1","withCtx","renderSlot","rootContext","forwardRef","useForwardExpose","useId","onMounted","resolveDynamicComponent","Primitive","createVNode","normalizeProps","guardReactiveProps","emits","forwarded","useForwardProps","reactiveOmit","useFocusGuards","$event","_sfc_main$2","_sfc_main$3","mergeProps","isRightClickOutsideRef","useBodyScrollLock","useForwardPropsEmits","currentElement","useHideOthers","withModifiers","event","_a","originalEvent","ctrlLeftClick","isRightClick","hasInteractedOutsideRef","hasPointerDownOutsideRef","target","Presence"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6]}