@opencloud-eu/design-system
Version:
OpenCloud Design System is used to design OpenCloud UI components
38 lines (37 loc) • 1.17 kB
TypeScript
export interface Props {
/**
* @docs The ID attribute of the textarea.
*/
id?: string;
/**
* @docs The label of the textarea.
*/
label: string;
/**
* @docs The error message to be displayed below the textarea.
*/
errorMessage?: string;
/**
* @docs The description message to be displayed below the textarea.
*/
descriptionMessage?: string;
/**
* @docs Determines if the message line should be fixed.
* @default false
*/
fixMessageLine?: boolean;
}
type __VLS_Props = Props;
type __VLS_PublicProps = {
modelValue?: string;
} & __VLS_Props;
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
focus: () => void;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (value: string) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:modelValue"?: (value: string) => any;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
textareaRef: HTMLTextAreaElement;
}, HTMLDivElement>;
export default _default;