This commit is contained in:
pradeepkumar
2026-01-24 21:06:13 +05:30
parent 0f84e3d4d7
commit eba83e2961
9 changed files with 585 additions and 26 deletions

View File

@@ -12,7 +12,9 @@ export type FieldType =
| 'RANGE'
| 'NUMBER'
| 'DATE'
| 'TAG_INPUT';
| 'TAG_INPUT'
| 'FILE'
| 'FILE_UPLOAD';
// Types
export interface FieldOption {
@@ -33,6 +35,8 @@ export interface FieldValidation {
minLength?: number;
maxLength?: number;
pattern?: string;
allowedFormats?: string[];
maxFileSize?: number;
}
export interface FieldUiConfig {