package.dist.components.combobox.combobox-root.cjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react Show documentation
Show all versions of react Show documentation
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
The newest version!
'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",
"composite",
"collection",
"defaultOpen",
"defaultValue",
"disabled",
"disableLayer",
"form",
"highlightedValue",
"id",
"ids",
"inputBehavior",
"inputValue",
"invalid",
"loopFocus",
"multiple",
"name",
"onFocusOutside",
"onHighlightChange",
"onInputValueChange",
"onInteractOutside",
"onOpenChange",
"onOpenChange",
"onPointerDownOutside",
"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;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy