Checkpoint before refactor again

This commit is contained in:
Joseph Garrone
2024-04-30 12:07:35 +02:00
parent 8f627aa382
commit f42e6764b7
4 changed files with 219 additions and 4 deletions

View File

@ -538,7 +538,17 @@ export type Attribute = {
html5DataAnnotations: Record<string, string>;
readOnly: boolean;
validators: Validators;
annotations: Record<string, string>;
annotations: {
inputType?: string;
inputTypeSize?: `${number}`;
inputOptionsFromValidation?: string;
inputOptionLabels?: Record<string, string | undefined>;
inputOptionLabelsI18nPrefix?: string;
inputTypeCols?: `${number}`;
inputTypeRows?: `${number}`;
inputTypeMaxlength?: `${number}`;
inputHelperTextBefore?: string;
};
multivalued?: boolean;
autocomplete?:
| "on"