import { ThemeSize } from "../../theme/types.js"; import { PasswordCompactEmits, PasswordCompactProps, PasswordCompactSlots, PasswordUi } from "@soybeanjs/headless/password"; import { ClassValue } from "@soybeanjs/headless/types"; //#region src/components/password/types.d.ts /** * Properties for the Password component. */ interface PasswordProps extends PasswordCompactProps { /** * Additional class names applied to the root element. */ class?: ClassValue; /** * Visual size of the component. */ size?: ThemeSize; /** * Per-slot class overrides for the component. */ ui?: Partial; } /** * Events for the Password component. */ type PasswordEmits = PasswordCompactEmits; /** * Slots for the Password component. */ type PasswordSlots = PasswordCompactSlots; //#endregion export { PasswordEmits, PasswordProps, PasswordSlots };