UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

72 lines (67 loc) 2.35 kB
'use client'; 'use strict'; Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); const jsxRuntime = require('react/jsx-runtime'); const react$1 = require('@zag-js/react'); const react = require('react'); const createSplitProps = require('../../utils/create-split-props.cjs'); const factory = require('../factory.cjs'); const splitPresenceProps = require('../presence/split-presence-props.cjs'); const usePresence = require('../presence/use-presence.cjs'); const usePresenceContext = require('../presence/use-presence-context.cjs'); const useCombobox = require('./use-combobox.cjs'); const useComboboxContext = require('./use-combobox-context.cjs'); const ComboboxImpl = (props, ref) => { const [presenceProps, comboboxProps] = splitPresenceProps.splitPresenceProps(props); const [useComboboxProps, localProps] = createSplitProps.createSplitProps()(comboboxProps, [ "allowCustomValue", "autoFocus", "closeOnSelect", "collection", "composite", "defaultHighlightedValue", "defaultInputValue", "defaultOpen", "defaultValue", "disabled", "disableLayer", "form", "highlightedValue", "id", "ids", "inputBehavior", "inputValue", "invalid", "loopFocus", "multiple", "name", "navigate", "onFocusOutside", "onHighlightChange", "onInputValueChange", "onInteractOutside", "onOpenChange", "onOpenChange", "onPointerDownOutside", "onSelect", "onValueChange", "open", "openOnChange", "openOnClick", "openOnKeyPress", "placeholder", "positioning", "readOnly", "required", "scrollToIndexFn", "selectionBehavior", "translations", "value" ]); const combobox = useCombobox.useCombobox(useComboboxProps); const presence = usePresence.usePresence(react$1.mergeProps({ present: combobox.open }, presenceProps)); const mergedProps = react$1.mergeProps(combobox.getRootProps(), localProps); return /* @__PURE__ */ jsxRuntime.jsx(useComboboxContext.ComboboxProvider, { value: combobox, children: /* @__PURE__ */ jsxRuntime.jsx(usePresenceContext.PresenceProvider, { value: presence, children: /* @__PURE__ */ jsxRuntime.jsx(factory.ark.div, { ...mergedProps, ref }) }) }); }; const ComboboxRoot = react.forwardRef(ComboboxImpl); exports.ComboboxRoot = ComboboxRoot;