package.dist.components.hover-card.hover-card-root-provider.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 = 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;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy