@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
33 lines (30 loc) • 1.11 kB
JavaScript
'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 { usePasswordInput } from './use-password-input.js';
import { PasswordInputProvider } from './use-password-input-context.js';
const PasswordInputRoot = forwardRef((props, ref) => {
const [usePasswordInputProps, localProps] = createSplitProps()(props, [
"autoComplete",
"defaultVisible",
"disabled",
"id",
"ids",
"ignorePasswordManagers",
"invalid",
"name",
"onVisibilityChange",
"readOnly",
"required",
"translations",
"visible"
]);
const passwordInput = usePasswordInput(usePasswordInputProps);
const mergedProps = mergeProps(passwordInput.getRootProps(), localProps);
return /* @__PURE__ */ jsx(PasswordInputProvider, { value: passwordInput, children: /* @__PURE__ */ jsx(ark.div, { ...mergedProps, ref }) });
});
PasswordInputRoot.displayName = "PasswordInputRoot";
export { PasswordInputRoot };