{"version":3,"file":"textarea-input.d.ts","sources":["textarea-input.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["/**\r\n * Use textarea fields in forms to provide descriptions. Textarea fields are normally\r\n * found within a form but can also be part of a modal.\r\n */\r\nexport declare class CloInputTextarea {\r\n    id: string;\r\n    label: string;\r\n    name: string;\r\n    rows: number;\r\n    cols: number;\r\n    /**\r\n      * Boolean value for whether the field is disabled\r\n     */\r\n    disabled: boolean;\r\n    /**\r\n     * String value for the placeholder text\r\n     */\r\n    placeholder: string;\r\n    /**\r\n     * String value for the error message\r\n     */\r\n    errorMessage: string;\r\n    /**\r\n     * Boolean value for whether the field is required\r\n     *\r\n     */\r\n    required: boolean;\r\n    /**\r\n     * Boolean for whether the field is readOnly\r\n     *\r\n     */\r\n    readOnly: boolean;\r\n    /**\r\n     * String for the value entered into the textarea\r\n     *\r\n     */\r\n    value: string;\r\n}\r\n"]}