package.dist.components.steps.steps-root.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 { useSteps } from './use-steps.js';
import { StepsProvider } from './use-steps-context.js';
const StepsRoot = forwardRef((props, ref) => {
const [useStepsProps, localProps] = createSplitProps()(props, [
"defaultStep",
"id",
"ids",
"count",
"linear",
"onStepChange",
"onStepComplete",
"orientation",
"step"
]);
const steps = useSteps(useStepsProps);
const mergedProps = mergeProps(steps.getRootProps(), localProps);
return /* @__PURE__ */ jsx(StepsProvider, { value: steps, children: /* @__PURE__ */ jsx(ark.div, { ...mergedProps, ref }) });
});
StepsRoot.displayName = "StepsRoot";
export { StepsRoot };
© 2015 - 2025 Weber Informatics LLC | Privacy Policy