UNPKG

@ark-ui/react

Version:

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

16 lines (13 loc) 758 B
'use client'; import { jsx } from 'react/jsx-runtime'; import { mergeProps } from '@zag-js/react'; import { splitPresenceProps } from '../presence/split-presence-props.js'; import { usePresence } from '../presence/use-presence.js'; import { PresenceProvider } from '../presence/use-presence-context.js'; import { PopoverProvider } from './use-popover-context.js'; const PopoverRootProvider = (props) => { const [presenceProps, { value: popover, children }] = splitPresenceProps(props); const presence = usePresence(mergeProps({ present: popover.open }, presenceProps)); return /* @__PURE__ */ jsx(PopoverProvider, { value: popover, children: /* @__PURE__ */ jsx(PresenceProvider, { value: presence, children }) }); }; export { PopoverRootProvider };