@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
20 lines (15 loc) • 999 B
JavaScript
'use client';
;
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const jsxRuntime = require('react/jsx-runtime');
const react = require('@zag-js/react');
const splitPresenceProps = require('../presence/split-presence-props.cjs');
const usePresence = require('../presence/use-presence.cjs');
const usePresenceContext = require('../presence/use-presence-context.cjs');
const useHoverCardContext = require('./use-hover-card-context.cjs');
const HoverCardRootProvider = (props) => {
const [presenceProps, { value: hoverCard, children }] = splitPresenceProps.splitPresenceProps(props);
const presence = usePresence.usePresence(react.mergeProps({ present: hoverCard.open }, presenceProps));
return /* @__PURE__ */ jsxRuntime.jsx(useHoverCardContext.HoverCardProvider, { value: hoverCard, children: /* @__PURE__ */ jsxRuntime.jsx(usePresenceContext.PresenceProvider, { value: presence, children }) });
};
exports.HoverCardRootProvider = HoverCardRootProvider;