react-table-edit 1.4.31 → 1.4.33
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/table/index.d.ts +1 -1
- package/dist/component/tree-table/index.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +375 -307
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +375 -307
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/component/modal-import-excel/IType.d.ts +0 -24
- package/dist/component/table/paging/index.d.ts +0 -10
- package/dist/component/table/render-edit.d.ts +0 -20
- package/dist/component/table/type.d.ts +0 -158
- package/dist/component/table-old/command.d.ts +0 -12
- package/dist/component/virtualized-table/content.d.ts +0 -22
- package/dist/component/virtualized-table/group-col.d.ts +0 -6
- package/dist/component/virtualized-table/header.d.ts +0 -32
- package/dist/component/virtualized-table/index.d.ts +0 -26
- package/dist/component/virtualized-table/loading-item.d.ts +0 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Dispatch, SetStateAction } from "react";
|
|
2
|
-
import { IFTableEditButton, IFTableEditFormat, IFTableEditPaging, IFTableEditSearchSetting, IFTableEditToolbar
|
|
2
|
+
import { IColumnTable, IFTableEditButton, IFTableEditFormat, IFTableEditPaging, IFTableEditSearchSetting, IFTableEditToolbar } from "../type";
|
|
3
3
|
export type IFTableEditProps = {
|
|
4
4
|
idTable?: string;
|
|
5
5
|
dataSource: any[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Dispatch, SetStateAction } from "react";
|
|
2
|
-
import { IFTableEditButton, IFTableEditFormat, IFTableEditPaging, IFTableEditSearchSetting, IFTableEditToolbar
|
|
2
|
+
import { IColumnTable, IFTableEditButton, IFTableEditFormat, IFTableEditPaging, IFTableEditSearchSetting, IFTableEditToolbar } from "../type";
|
|
3
3
|
export type IFTableEditProps = {
|
|
4
4
|
idTable?: string;
|
|
5
5
|
dataSource: any[];
|
package/dist/index.d.ts
CHANGED
|
@@ -723,4 +723,5 @@ type TableViewProps = {
|
|
|
723
723
|
};
|
|
724
724
|
declare const TableView: React__default.FC<TableViewProps>;
|
|
725
725
|
|
|
726
|
-
export { ExportExcelComponent, FindNodeByPath,
|
|
726
|
+
export { ExportExcelComponent, FindNodeByPath, ImportExcelComponent, InputStyleComponent, SelectTable, SelectTableTree, TableView, TabsMenuComponent, Wizard, calculateTableStructure, checkDecimalSeparator, checkThousandSeparator, TableEdit as default, formartNumberic, formatDateTime, generateUUID, isNullOrUndefined, messageBoxConfirm, messageBoxConfirm2, messageBoxConfirmDelete, messageBoxError, messageHtmlBoxConfirm, messageHtmlBoxError, notificationError, notificationSuccess, roundNumber, useOnClickOutside };
|
|
727
|
+
export type { FromItemsField, IColumnTable, IColumnsAgg, ICommandItem, IFColumnSelectTable, IFColumnSelectTableTree, IFCurrentPage, IFCurrentPageConfig, IFFilterTable, IFOrderTable, IFPageSize, IFPropsDetail, IFTableEditButton, IFTableEditFormat, IFTableEditPaging, IFTableEditSearchSetting, IFTableEditToolbar, IFTableSelectFormat, IFTableTreeSelectFormat, IFToolbarOptions, IHeaderColumnTable, ISettingFormElement, ISettingNumericElement, ISettingSelectElement };
|