react-table-edit 1.2.65 → 1.2.67
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 +4 -1
- package/dist/index.d.ts +5 -6
- package/dist/index.js +10990 -21717
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11011 -21738
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { Dispatch, ReactNode, SetStateAction } from "react";
|
|
2
2
|
import { IFColumnSelectTable } from "../select-table";
|
|
3
|
-
import { IFToolbarOptions } from "./type";
|
|
4
3
|
type ITextAlign = 'center' | 'left' | 'right';
|
|
5
4
|
type IEditType = 'text' | 'numeric' | 'datetime' | 'selectTree' | 'date' | 'select' | 'checkbox' | 'form' | 'color';
|
|
6
5
|
export type ICommandItem = {
|
|
@@ -10,6 +9,10 @@ export type ICommandItem = {
|
|
|
10
9
|
icon?: string;
|
|
11
10
|
commandTemplate?: ReactNode;
|
|
12
11
|
};
|
|
12
|
+
export type IFToolbarOptions = {
|
|
13
|
+
align: 'left' | 'right' | 'center';
|
|
14
|
+
template: any;
|
|
15
|
+
};
|
|
13
16
|
export type ISettingFormElement = {
|
|
14
17
|
schema: any;
|
|
15
18
|
labelSize?: 'label-small' | 'label-medium' | 'label-large';
|
package/dist/index.d.ts
CHANGED
|
@@ -59,11 +59,6 @@ type Props$1 = {
|
|
|
59
59
|
};
|
|
60
60
|
declare const SelectTable: react__default.ForwardRefExoticComponent<Props$1 & react__default.RefAttributes<unknown>>;
|
|
61
61
|
|
|
62
|
-
type IFToolbarOptions = {
|
|
63
|
-
align: 'left' | 'right' | 'center';
|
|
64
|
-
template: any;
|
|
65
|
-
};
|
|
66
|
-
|
|
67
62
|
type ITextAlign = 'center' | 'left' | 'right';
|
|
68
63
|
type IEditType = 'text' | 'numeric' | 'datetime' | 'selectTree' | 'date' | 'select' | 'checkbox' | 'form' | 'color';
|
|
69
64
|
type ICommandItem = {
|
|
@@ -73,6 +68,10 @@ type ICommandItem = {
|
|
|
73
68
|
icon?: string;
|
|
74
69
|
commandTemplate?: ReactNode;
|
|
75
70
|
};
|
|
71
|
+
type IFToolbarOptions = {
|
|
72
|
+
align: 'left' | 'right' | 'center';
|
|
73
|
+
template: any;
|
|
74
|
+
};
|
|
76
75
|
type ISettingFormElement = {
|
|
77
76
|
schema: any;
|
|
78
77
|
labelSize?: 'label-small' | 'label-medium' | 'label-large';
|
|
@@ -366,4 +365,4 @@ interface IFDataInputStyle {
|
|
|
366
365
|
}
|
|
367
366
|
declare const InputStyleComponent: (props: IFDataInputStyle) => react_jsx_runtime.JSX.Element;
|
|
368
367
|
|
|
369
|
-
export { type FromItemsField, type IColumnTable, type ICommandItem, type IFColumnSelectTable, type IFColumnSelectTableTree, type IFCurrentPage, type IFCurrentPageConfig, type IFPageSize, type IFTableEditButton, type IFTableEditFormat, type IFTableEditPaging, type IFTableEditProps, type IFTableEditSearchSetting, type IFTableEditToolbar, type IFTableSelectFormat, type IFTableTreeSelectFormat, type IHeaderColumnTable, type ISettingFormElement, type ISettingNumericElement, type ISettingSelectElement, InputStyleComponent, SelectTable, SelectTableTree, TabsMenuComponent, checkDecimalSeparator, checkThousandSeparator, TableEdit as default, formartNumberic, formatDateTime, generateUUID, isNullOrUndefined, messageBoxConfirm, messageBoxConfirm2, messageBoxConfirmDelete, messageBoxError, messageHtmlBoxConfirm, messageHtmlBoxError, notificationError, notificationSuccess, roundNumber, useOnClickOutside };
|
|
368
|
+
export { type FromItemsField, type IColumnTable, type ICommandItem, type IFColumnSelectTable, type IFColumnSelectTableTree, type IFCurrentPage, type IFCurrentPageConfig, type IFPageSize, type IFTableEditButton, type IFTableEditFormat, type IFTableEditPaging, type IFTableEditProps, type IFTableEditSearchSetting, type IFTableEditToolbar, type IFTableSelectFormat, type IFTableTreeSelectFormat, type IFToolbarOptions, type IHeaderColumnTable, type ISettingFormElement, type ISettingNumericElement, type ISettingSelectElement, InputStyleComponent, SelectTable, SelectTableTree, TabsMenuComponent, checkDecimalSeparator, checkThousandSeparator, TableEdit as default, formartNumberic, formatDateTime, generateUUID, isNullOrUndefined, messageBoxConfirm, messageBoxConfirm2, messageBoxConfirmDelete, messageBoxError, messageHtmlBoxConfirm, messageHtmlBoxError, notificationError, notificationSuccess, roundNumber, useOnClickOutside };
|