import { defineComponent, createBlock, openBlock, unref, withCtx, createVNode, mergeProps, renderSlot } from 'vue'; import { _ as _sfc_main$1 } from './ComboboxContentImpl.js'; import { u as useForwardPropsEmits } from '../shared/useForwardPropsEmits.js'; import { u as useForwardExpose } from '../shared/useForwardExpose.js'; import { u as useId } from '../shared/useId.js'; import { P as Presence } from '../Presence/Presence.js'; import { i as injectComboboxRootContext } from './ComboboxRoot.js'; const _sfc_main = /* @__PURE__ */ defineComponent({ __name: "ComboboxContent", props: { forceMount: { type: Boolean }, position: {}, bodyLock: { type: Boolean }, side: {}, sideOffset: {}, align: {}, alignOffset: {}, avoidCollisions: { type: Boolean }, collisionBoundary: {}, collisionPadding: {}, arrowPadding: {}, sticky: {}, hideWhenDetached: { type: Boolean }, positionStrategy: {}, updatePositionStrategy: {}, disableUpdateOnLayoutShift: { type: Boolean }, prioritizePosition: { type: Boolean }, reference: {}, asChild: { type: Boolean }, as: {}, disableOutsidePointerEvents: { type: Boolean } }, emits: ["escapeKeyDown", "pointerDownOutside", "focusOutside", "interactOutside"], setup(__props, { emit: __emit }) { const props = __props; const emits = __emit; const forwarded = useForwardPropsEmits(props, emits); const { forwardRef } = useForwardExpose(); const rootContext = injectComboboxRootContext(); rootContext.contentId ||= useId(void 0, "reka-combobox-content"); return (_ctx, _cache) => { return openBlock(), createBlock(unref(Presence), { present: _ctx.forceMount || unref(rootContext).open.value }, { default: withCtx(() => [ createVNode(_sfc_main$1, mergeProps({ ...unref(forwarded), ..._ctx.$attrs }, { ref: unref(forwardRef) }), { default: withCtx(() => [ renderSlot(_ctx.$slots, "default") ]), _: 3 }, 16) ]), _: 3 }, 8, ["present"]); }; } }); export { _sfc_main as _ }; //# sourceMappingURL=ComboboxContent.js.map