@ahmadmubarak98/namozaj 1.16.7 → 1.16.8

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
@@ -586,8 +586,8 @@ export declare type RepeaterFieldConfig = BaseFieldConfig & {
586
586
  emptyMessage?: string;
587
587
  defaultValues?: Record<string, FieldValueType>[];
588
588
  onBeforeAdd?: (data: any, formMethods: any) => void | Promise<void>;
589
- onBeforeEdit?: (data: any, formMethods: any) => void | Promise<void>;
590
- onBeforeRemove?: (data: any, formMethods: any) => void | Promise<void>;
589
+ onBeforeEdit?: (data: any, formMethods: any, index: number) => void | Promise<void>;
590
+ onBeforeRemove?: (data: any, formMethods: any, index: number) => void | Promise<void>;
591
591
  };
592
592
  };
593
593