@datametria/vue-components
Version:
DATAMETRIA Vue.js 3 Component Library with Multi-Brand Theming - 51 components + 10 composables with theming support, WCAG 2.2 AA, dark mode, responsive system
30 lines (29 loc) • 1.11 kB
TypeScript
interface Props {
modelValue?: string;
label?: string;
placeholder?: string;
errorMessage?: string;
helpText?: string;
disabled?: boolean;
required?: boolean;
minLength?: number;
showStrength?: boolean;
showRequirements?: boolean;
autocomplete?: 'current-password' | 'new-password';
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (value: string) => any;
"strength-change": (strength: number) => any;
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
"onStrength-change"?: ((strength: number) => any) | undefined;
}>, {
disabled: boolean;
modelValue: string;
required: boolean;
minLength: number;
showStrength: boolean;
showRequirements: boolean;
autocomplete: "current-password" | "new-password";
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
export default _default;