med-table
Version:
Wrapper over table of primeng library for Ministry of Health
17 lines (16 loc) • 570 B
TypeScript
import { FIELD_TYPES, MedFormFieldConfig, PATTERN_TYPES } from 'med-dynamic-form';
import { CellDataConfigLocal } from '../../types/CellDataConfigLocal';
export interface EditorBuilderOptions extends CellDataConfigLocal {
onLeave: () => void;
}
export declare class EditorBuilder implements MedFormFieldConfig {
key: string;
editorType: FIELD_TYPES;
onLeave: () => void;
autoFocus: boolean;
wrappers: string[];
inputMask: string;
fieldWrapperSelector: string;
pattern: PATTERN_TYPES;
constructor(options: EditorBuilderOptions);
}