@ahmadmubarak98/namozaj 1.16.20 → 1.16.21

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/dist/main.d.ts CHANGED
@@ -202,6 +202,7 @@ export declare type FieldArrayFieldConfig = BaseFieldConfig & {
202
202
  uniqueSelectionFields?: string[];
203
203
  onBeforeAdd?: (data: any, formMethods: any) => void | Promise<void>;
204
204
  onBeforeRemove?: (data: any, formMethods: any) => void | Promise<void>;
205
+ reOrderable?: boolean;
205
206
  };
206
207
  };
207
208
 
@@ -608,6 +609,7 @@ export declare type RepeaterFieldConfig = BaseFieldConfig & {
608
609
  onBeforeRemove?: (data: any, formMethods: any, index: number) => void | Promise<void>;
609
610
  onBeforeBulkAdd?: (data: any[], formMethods: any) => void | Promise<void>;
610
611
  onBeforeBulkDelete?: (indexes: number[], rows: any[], formMethods: any) => void | Promise<void>;
612
+ reOrderable?: boolean;
611
613
  };
612
614
  };
613
615