UNPKG

@delon/form

Version:

Angular form generation based on JSON-Schema.

16 lines (15 loc) 401 B
import { SFUISchemaItem } from '../../schema/ui'; export interface SFTextWidgetSchema extends SFUISchemaItem { /** * 当值不存在时所指定的文本,默认:`-` * * Default text of this item, Default: `-` */ defaultText?: string; /** * 是否支持HTML,默认:`true` * * Whether to support HTML, default: `true` */ html?: boolean; }