@sotoa-ui/dynamic-form 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sotoa-ui/dynamic-form",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0"
@@ -358,8 +358,8 @@ interface AcFieldFileConfig extends AbstractControlConfig {
358
358
  multiple?: boolean;
359
359
  maxNbRow?: number;
360
360
  accept?: string;
361
- onAddFile?: (file: any) => void;
362
- onDeleteFile?: (file: any) => void;
361
+ onAddFile?: (file: File | null) => void;
362
+ onDeleteFile?: (file: File) => void;
363
363
  }
364
364
 
365
365
  interface AcFieldEditorConfig extends AbstractControlConfig {