react-table-edit 1.5.37 → 1.5.39
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/component/modal-import-excel/index.d.ts +3 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +141 -206
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +141 -206
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
1
2
|
import { IColumnTable } from '../type';
|
|
2
3
|
import { IFDataMapExcel, IFNumberFormat } from './type';
|
|
3
4
|
type IFProps = {
|
|
5
|
+
/** custom style */
|
|
6
|
+
style?: CSSProperties | undefined;
|
|
4
7
|
/** Kích thước cửa sổ hiện tại (width, height) */
|
|
5
8
|
windowSize: any;
|
|
6
9
|
/** Trạng thái mở/đóng modal import */
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import React__default, { ReactNode, JSX, Dispatch, SetStateAction } from 'react';
|
|
2
|
+
import React__default, { ReactNode, JSX, Dispatch, SetStateAction, CSSProperties } from 'react';
|
|
3
3
|
import { UseFormSetValue, UseFormGetValues, UseFormReset } from 'react-hook-form';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import { TFunction } from 'react-i18next';
|
|
@@ -539,6 +539,8 @@ type IFNumberFormat = {
|
|
|
539
539
|
};
|
|
540
540
|
|
|
541
541
|
type IFProps$1 = {
|
|
542
|
+
/** custom style */
|
|
543
|
+
style?: CSSProperties | undefined;
|
|
542
544
|
/** Kích thước cửa sổ hiện tại (width, height) */
|
|
543
545
|
windowSize: any;
|
|
544
546
|
/** Trạng thái mở/đóng modal import */
|