@velis/dynamicforms
Version:
Data entry boilerplate components and a RESTful API consumer
19 lines • 531 B
TypeScript
import { DfForm } from '../namespace';
export default class RenderParams {
inputType: string;
fieldCSSClass?: string;
pattern?: string;
min?: number;
max?: number;
minLength: number;
maxLength: number;
step?: number;
size?: number;
formDateFormat?: string;
formTimeFormat?: string;
multiple?: boolean;
allowTags?: boolean;
formComponentDef?: DfForm.FormComponentDefinition;
constructor(params: DfForm.RenderParamsJSON);
}
//# sourceMappingURL=field-render-params.d.ts.map