UNPKG

@freezesoul/nz-formly

Version:

基于ng-zorro-antd UI 扩展的ngx-formly组件库

31 lines (30 loc) 583 B
import { NzSizeLDSType } from 'ng-zorro-antd/core/types'; /** * 开始结束公共配置 */ export interface BaseBetweenOptions { /** * 控件大小 */ nzxSize?: NzSizeLDSType; /** * 开始字段Placeholder */ nzxStartPlaceholder?: string; /** * 结束字段Placeholder */ nzxEndPlaceholder?: string; /** * 开始和结束是否禁用 */ nzxDisabled?: boolean; /** * 开始字段禁用 */ nzxStartDisabled?: boolean; /** * 结束字段禁用 */ nzxEndDisabled?: boolean; }