All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.components.dialog.dialog-backdrop.cjs Maven / Gradle / Ivy

'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 composeRefs = require('../../utils/compose-refs.cjs');
const renderStrategy = require('../../utils/render-strategy.cjs');
const factory = require('../factory.cjs');
const usePresence = require('../presence/use-presence.cjs');
const useDialogContext = require('./use-dialog-context.cjs');

const DialogBackdrop = react.forwardRef((props, ref) => {
  const dialog = useDialogContext.useDialogContext();
  const renderStrategyProps = renderStrategy.useRenderStrategyPropsContext();
  const presence = usePresence.usePresence({ ...renderStrategyProps, present: dialog.open });
  const mergedProps = react$1.mergeProps(dialog.getBackdropProps(), presence.getPresenceProps(), props);
  if (presence.unmounted) {
    return null;
  }
  return /* @__PURE__ */ jsxRuntime.jsx(factory.ark.div, { ...mergedProps, ref: composeRefs.composeRefs(presence.ref, ref) });
});
DialogBackdrop.displayName = "DialogBackdrop";

exports.DialogBackdrop = DialogBackdrop;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy