@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
29 lines (28 loc) • 986 B
TypeScript
interface Props {
modelValue?: string | null;
format?: string;
step?: number;
placeholder?: string;
disabled?: boolean;
readonly?: boolean;
range?: boolean;
}
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (value: string | null) => any;
change: (value: string | null) => any;
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
"onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
onChange?: ((value: string | null) => any) | undefined;
}>, {
disabled: boolean;
modelValue: string | null;
placeholder: string;
readonly: boolean;
range: boolean;
format: string;
step: number;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
inputRef: HTMLInputElement;
dropdownRef: HTMLDivElement;
}, HTMLDivElement>;
export default _default;