package.dist.components.steps.steps-item.js 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';
import { jsx } from 'react/jsx-runtime';
import { mergeProps } from '@zag-js/react';
import { forwardRef } from 'react';
import { createSplitProps } from '../../utils/create-split-props.js';
import { ark } from '../factory.js';
import { useStepsContext } from './use-steps-context.js';
import { StepsItemProvider } from './use-steps-item-context.js';
import { StepsItemPropsProvider } from './use-steps-item-props-context.js';
const StepsItem = forwardRef((props, ref) => {
const [itemProps, localProps] = createSplitProps()(props, ["index"]);
const steps = useStepsContext();
const mergedProps = mergeProps(steps.getItemProps(itemProps), localProps);
const itemState = steps.getItemState(itemProps);
return /* @__PURE__ */ jsx(StepsItemPropsProvider, { value: itemProps, children: /* @__PURE__ */ jsx(StepsItemProvider, { value: itemState, children: /* @__PURE__ */ jsx(ark.li, { ...mergedProps, ref }) }) });
});
StepsItem.displayName = "StepsItem";
export { StepsItem };
© 2015 - 2025 Weber Informatics LLC | Privacy Policy