react-table-edit 1.5.43 → 1.5.44

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.
@@ -4,8 +4,6 @@ export interface IFPropsDetail {
4
4
  setColumn: any;
5
5
  openSidebar: boolean;
6
6
  handleSidebar: any;
7
- resetDefaultColumns?: () => void;
8
- formatSetting?: any;
9
7
  }
10
8
  declare const SidebarSetColumn: (props: IFPropsDetail) => import("react/jsx-runtime").JSX.Element;
11
9
  export default SidebarSetColumn;
@@ -18,5 +18,5 @@ interface ToolbarBottomProps {
18
18
  toolbarSetting?: IFTableEditToolbar;
19
19
  headerColumns: any[][];
20
20
  }
21
- declare const ToolbarBottom: ({ handleAdd, handleDuplicate, handleInsertBefore, handleInsertAfter, handleDeleteAll, setOpenPopupSetupColumn, focusRow, editDisable, addDisable, buttonSetting, toolbarSetting }: ToolbarBottomProps) => import("react/jsx-runtime").JSX.Element;
21
+ declare const ToolbarBottom: ({ handleAdd, handleDuplicate, handleInsertBefore, handleInsertAfter, handleDeleteAll, setOpenPopupSetupColumn, focusRow, editDisable, addDisable, buttonSetting, toolbarSetting, }: ToolbarBottomProps) => import("react/jsx-runtime").JSX.Element;
22
22
  export default ToolbarBottom;
@@ -1,6 +1,6 @@
1
1
  import { Dispatch, SetStateAction } from 'react';
2
- import 'react-resizable/css/styles.css';
3
2
  import { IColumnTable, IFFilterTable, IFOrderTable, IFTableEditFormat } from "../type";
3
+ import 'react-resizable/css/styles.css';
4
4
  type IFDataProps = {
5
5
  idTable: string;
6
6
  selectEnable: boolean;
@@ -20,8 +20,8 @@ type IFDataProps = {
20
20
  fisrtObjWidthFixRight: number;
21
21
  selectedRows: any[];
22
22
  isMulti: boolean;
23
- allowFiltering?: boolean;
24
- allowSorting?: boolean;
23
+ allowFilter?: boolean;
24
+ allowOrder?: boolean;
25
25
  filterBy: IFFilterTable[];
26
26
  orderBy: IFOrderTable[];
27
27
  container: any;