react-table-edit 1.4.3 → 1.4.4
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.
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Control, FieldErrors, UseFormGetValues, UseFormSetValue, UseFormWatch } from 'react-hook-form';
|
|
2
|
-
import { Dispatch } from 'react';
|
|
3
2
|
import { IFDataExcel } from './utils';
|
|
4
3
|
import { IFNumberFormat } from './IType';
|
|
5
4
|
export interface IFPropsDetail {
|
|
@@ -20,7 +19,6 @@ export interface IFPropsDetail {
|
|
|
20
19
|
dataError: any[];
|
|
21
20
|
headerValidateExcelColumns: any[];
|
|
22
21
|
headerHandleErrorExcelColumns: any[];
|
|
23
|
-
setStepper: Dispatch<any>;
|
|
24
22
|
}
|
|
25
23
|
declare const ImportExcelComponent: (props: IFPropsDetail) => import("react/jsx-runtime").JSX.Element;
|
|
26
24
|
export { ImportExcelComponent };
|
package/dist/index.d.ts
CHANGED
|
@@ -434,7 +434,6 @@ interface IFPropsDetail {
|
|
|
434
434
|
dataError: any[];
|
|
435
435
|
headerValidateExcelColumns: any[];
|
|
436
436
|
headerHandleErrorExcelColumns: any[];
|
|
437
|
-
setStepper: Dispatch<any>;
|
|
438
437
|
}
|
|
439
438
|
declare const ImportExcelComponent: (props: IFPropsDetail) => react_jsx_runtime.JSX.Element;
|
|
440
439
|
|