@lxlib/form
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.
12 lines (11 loc) • 438 B
TypeScript
import { SFUISchemaItem } from '../../schema/ui';
export interface SFArrayWidgetSchema extends SFUISchemaItem {
/** 指定添加按钮文本,默认:添加 */
addTitle?: string;
/** 指定添加按钮风格,等同按钮 `nzType`,默认:dashed */
addType?: string;
/** 指定是否显示移除按钮 */
removable?: boolean;
/** 指定移除按钮文本,默认:移除 */
removeTitle?: string;
}