UNPKG

@lxlib/form

Version:

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.

14 lines (13 loc) 438 B
import { AutoSizeType } from 'ng-zorro-antd/input'; import { SFDLSSize, SFUISchemaItem } from '../../schema/ui'; export interface SFTextareaWidgetSchema extends SFUISchemaItem { size?: SFDLSSize; /** * 在文字框中显示提示讯息 */ placeholder?: string; /** * 自适应内容高度,可设置为 `true|false` 或对象:`{ minRows: 2, maxRows: 6 }` */ autosize?: boolean | AutoSizeType; }