react-table-edit 0.9.8 → 0.9.9
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/index.d.mts +50 -3
- package/dist/index.d.ts +50 -3
- package/dist/index.js +2 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -16,7 +16,7 @@ type IFColumnSelectTable = {
|
|
|
16
16
|
maxWidth?: number;
|
|
17
17
|
minWidth?: number;
|
|
18
18
|
};
|
|
19
|
-
type Props = {
|
|
19
|
+
type Props$1 = {
|
|
20
20
|
id?: string;
|
|
21
21
|
component?: any;
|
|
22
22
|
footerComponent?: any;
|
|
@@ -46,7 +46,7 @@ type Props = {
|
|
|
46
46
|
showFooter?: boolean;
|
|
47
47
|
onPaste?: any;
|
|
48
48
|
};
|
|
49
|
-
declare const SelectTable: react__default.ForwardRefExoticComponent<Props & react__default.RefAttributes<unknown>>;
|
|
49
|
+
declare const SelectTable: react__default.ForwardRefExoticComponent<Props$1 & react__default.RefAttributes<unknown>>;
|
|
50
50
|
|
|
51
51
|
type ITextAlign = 'center' | 'left' | 'right';
|
|
52
52
|
type IEditType = 'text' | 'numeric' | 'datetime' | 'selectTree' | 'date' | 'select' | 'checkbox' | 'form' | 'color';
|
|
@@ -263,6 +263,53 @@ type IFDataProps = {
|
|
|
263
263
|
};
|
|
264
264
|
declare const TabsMenuComponent: ({ buttonWidth, tabParent, tabChild, resourceCodeParent, resources, resourceCode, windowSize, renderModal }: IFDataProps) => react_jsx_runtime.JSX.Element;
|
|
265
265
|
|
|
266
|
+
type IFColumnSelectTableTree = {
|
|
267
|
+
field: string;
|
|
268
|
+
headerText: string;
|
|
269
|
+
visible?: boolean;
|
|
270
|
+
textAlign?: 'left' | 'right' | 'center';
|
|
271
|
+
type?: 'text' | 'numeric' | 'date' | 'datetime';
|
|
272
|
+
template?: any;
|
|
273
|
+
typeCondition?: any;
|
|
274
|
+
fraction?: number;
|
|
275
|
+
width?: number;
|
|
276
|
+
maxWidth?: number;
|
|
277
|
+
minWidth?: number;
|
|
278
|
+
};
|
|
279
|
+
type Props = {
|
|
280
|
+
id?: string;
|
|
281
|
+
component?: any;
|
|
282
|
+
footerComponent?: any;
|
|
283
|
+
fieldValue?: string;
|
|
284
|
+
fieldLabel?: string;
|
|
285
|
+
onChange: any;
|
|
286
|
+
textAlign?: 'left' | 'right' | 'center';
|
|
287
|
+
placeholder?: string;
|
|
288
|
+
invalid?: any;
|
|
289
|
+
loadOptions?: any;
|
|
290
|
+
menuWidth?: number;
|
|
291
|
+
width?: number;
|
|
292
|
+
rowData?: any;
|
|
293
|
+
value: any;
|
|
294
|
+
onKeyDown?: any;
|
|
295
|
+
formatOptionLabel?: any;
|
|
296
|
+
handleAdd?: any;
|
|
297
|
+
options: any[];
|
|
298
|
+
isMulti?: boolean;
|
|
299
|
+
noHeader?: boolean;
|
|
300
|
+
maxHeight?: number;
|
|
301
|
+
columns?: IFColumnSelectTableTree[];
|
|
302
|
+
decimalSeparator?: string;
|
|
303
|
+
fieldChildren?: string;
|
|
304
|
+
thousandSeparator?: string;
|
|
305
|
+
isClearable?: boolean;
|
|
306
|
+
isDisabled?: boolean;
|
|
307
|
+
showFooter?: boolean;
|
|
308
|
+
selectChilds?: boolean;
|
|
309
|
+
onPaste?: any;
|
|
310
|
+
};
|
|
311
|
+
declare const SelectTableTree: react__default.ForwardRefExoticComponent<Props & react__default.RefAttributes<unknown>>;
|
|
312
|
+
|
|
266
313
|
interface IFDataStyleSetting {
|
|
267
314
|
color: string;
|
|
268
315
|
backgroundColor: string;
|
|
@@ -286,4 +333,4 @@ interface IFDataInputStyle {
|
|
|
286
333
|
}
|
|
287
334
|
declare const InputStyleComponent: (props: IFDataInputStyle) => react_jsx_runtime.JSX.Element;
|
|
288
335
|
|
|
289
|
-
export { type FromItemsField, type IColumnTable, type ICommandItem, type IFColumnSelectTable, type IFCurrentPage, type IFCurrentPageConfig, type IFPageSize, type IFTableEditButton, type IFTableEditPaging, type IFTableEditProps, type IFTableEditSearchSetting, type IFTableEditToolbar, type IFToolbarOptions, type IHeaderColumnTable, type ISettingFormElement, type ISettingNumericElement, type ISettingSelectElement, InputStyleComponent, SelectTable, TabsMenuComponent, TableEdit as default, formartNumberic, generateUUID, isNullOrUndefined, messageBoxConfirm, messageBoxConfirm2, messageBoxConfirmDelete, messageBoxError, messageHtmlBoxConfirm, messageHtmlBoxError, notificationError, notificationSuccess, objSymbolDecimal, objSymbolThousand, roundNumber, useOnClickOutside };
|
|
336
|
+
export { type FromItemsField, type IColumnTable, type ICommandItem, type IFColumnSelectTable, type IFColumnSelectTableTree, type IFCurrentPage, type IFCurrentPageConfig, type IFPageSize, type IFTableEditButton, type IFTableEditPaging, type IFTableEditProps, type IFTableEditSearchSetting, type IFTableEditToolbar, type IFToolbarOptions, type IHeaderColumnTable, type ISettingFormElement, type ISettingNumericElement, type ISettingSelectElement, InputStyleComponent, SelectTable, SelectTableTree, TabsMenuComponent, TableEdit as default, formartNumberic, generateUUID, isNullOrUndefined, messageBoxConfirm, messageBoxConfirm2, messageBoxConfirmDelete, messageBoxError, messageHtmlBoxConfirm, messageHtmlBoxError, notificationError, notificationSuccess, objSymbolDecimal, objSymbolThousand, roundNumber, useOnClickOutside };
|
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ type IFColumnSelectTable = {
|
|
|
16
16
|
maxWidth?: number;
|
|
17
17
|
minWidth?: number;
|
|
18
18
|
};
|
|
19
|
-
type Props = {
|
|
19
|
+
type Props$1 = {
|
|
20
20
|
id?: string;
|
|
21
21
|
component?: any;
|
|
22
22
|
footerComponent?: any;
|
|
@@ -46,7 +46,7 @@ type Props = {
|
|
|
46
46
|
showFooter?: boolean;
|
|
47
47
|
onPaste?: any;
|
|
48
48
|
};
|
|
49
|
-
declare const SelectTable: react__default.ForwardRefExoticComponent<Props & react__default.RefAttributes<unknown>>;
|
|
49
|
+
declare const SelectTable: react__default.ForwardRefExoticComponent<Props$1 & react__default.RefAttributes<unknown>>;
|
|
50
50
|
|
|
51
51
|
type ITextAlign = 'center' | 'left' | 'right';
|
|
52
52
|
type IEditType = 'text' | 'numeric' | 'datetime' | 'selectTree' | 'date' | 'select' | 'checkbox' | 'form' | 'color';
|
|
@@ -263,6 +263,53 @@ type IFDataProps = {
|
|
|
263
263
|
};
|
|
264
264
|
declare const TabsMenuComponent: ({ buttonWidth, tabParent, tabChild, resourceCodeParent, resources, resourceCode, windowSize, renderModal }: IFDataProps) => react_jsx_runtime.JSX.Element;
|
|
265
265
|
|
|
266
|
+
type IFColumnSelectTableTree = {
|
|
267
|
+
field: string;
|
|
268
|
+
headerText: string;
|
|
269
|
+
visible?: boolean;
|
|
270
|
+
textAlign?: 'left' | 'right' | 'center';
|
|
271
|
+
type?: 'text' | 'numeric' | 'date' | 'datetime';
|
|
272
|
+
template?: any;
|
|
273
|
+
typeCondition?: any;
|
|
274
|
+
fraction?: number;
|
|
275
|
+
width?: number;
|
|
276
|
+
maxWidth?: number;
|
|
277
|
+
minWidth?: number;
|
|
278
|
+
};
|
|
279
|
+
type Props = {
|
|
280
|
+
id?: string;
|
|
281
|
+
component?: any;
|
|
282
|
+
footerComponent?: any;
|
|
283
|
+
fieldValue?: string;
|
|
284
|
+
fieldLabel?: string;
|
|
285
|
+
onChange: any;
|
|
286
|
+
textAlign?: 'left' | 'right' | 'center';
|
|
287
|
+
placeholder?: string;
|
|
288
|
+
invalid?: any;
|
|
289
|
+
loadOptions?: any;
|
|
290
|
+
menuWidth?: number;
|
|
291
|
+
width?: number;
|
|
292
|
+
rowData?: any;
|
|
293
|
+
value: any;
|
|
294
|
+
onKeyDown?: any;
|
|
295
|
+
formatOptionLabel?: any;
|
|
296
|
+
handleAdd?: any;
|
|
297
|
+
options: any[];
|
|
298
|
+
isMulti?: boolean;
|
|
299
|
+
noHeader?: boolean;
|
|
300
|
+
maxHeight?: number;
|
|
301
|
+
columns?: IFColumnSelectTableTree[];
|
|
302
|
+
decimalSeparator?: string;
|
|
303
|
+
fieldChildren?: string;
|
|
304
|
+
thousandSeparator?: string;
|
|
305
|
+
isClearable?: boolean;
|
|
306
|
+
isDisabled?: boolean;
|
|
307
|
+
showFooter?: boolean;
|
|
308
|
+
selectChilds?: boolean;
|
|
309
|
+
onPaste?: any;
|
|
310
|
+
};
|
|
311
|
+
declare const SelectTableTree: react__default.ForwardRefExoticComponent<Props & react__default.RefAttributes<unknown>>;
|
|
312
|
+
|
|
266
313
|
interface IFDataStyleSetting {
|
|
267
314
|
color: string;
|
|
268
315
|
backgroundColor: string;
|
|
@@ -286,4 +333,4 @@ interface IFDataInputStyle {
|
|
|
286
333
|
}
|
|
287
334
|
declare const InputStyleComponent: (props: IFDataInputStyle) => react_jsx_runtime.JSX.Element;
|
|
288
335
|
|
|
289
|
-
export { type FromItemsField, type IColumnTable, type ICommandItem, type IFColumnSelectTable, type IFCurrentPage, type IFCurrentPageConfig, type IFPageSize, type IFTableEditButton, type IFTableEditPaging, type IFTableEditProps, type IFTableEditSearchSetting, type IFTableEditToolbar, type IFToolbarOptions, type IHeaderColumnTable, type ISettingFormElement, type ISettingNumericElement, type ISettingSelectElement, InputStyleComponent, SelectTable, TabsMenuComponent, TableEdit as default, formartNumberic, generateUUID, isNullOrUndefined, messageBoxConfirm, messageBoxConfirm2, messageBoxConfirmDelete, messageBoxError, messageHtmlBoxConfirm, messageHtmlBoxError, notificationError, notificationSuccess, objSymbolDecimal, objSymbolThousand, roundNumber, useOnClickOutside };
|
|
336
|
+
export { type FromItemsField, type IColumnTable, type ICommandItem, type IFColumnSelectTable, type IFColumnSelectTableTree, type IFCurrentPage, type IFCurrentPageConfig, type IFPageSize, type IFTableEditButton, type IFTableEditPaging, type IFTableEditProps, type IFTableEditSearchSetting, type IFTableEditToolbar, type IFToolbarOptions, type IHeaderColumnTable, type ISettingFormElement, type ISettingNumericElement, type ISettingSelectElement, InputStyleComponent, SelectTable, SelectTableTree, TabsMenuComponent, TableEdit as default, formartNumberic, generateUUID, isNullOrUndefined, messageBoxConfirm, messageBoxConfirm2, messageBoxConfirmDelete, messageBoxError, messageHtmlBoxConfirm, messageHtmlBoxError, notificationError, notificationSuccess, objSymbolDecimal, objSymbolThousand, roundNumber, useOnClickOutside };
|
package/dist/index.js
CHANGED
|
@@ -32,6 +32,7 @@ var Table_edit_exports = {};
|
|
|
32
32
|
__export(Table_edit_exports, {
|
|
33
33
|
InputStyleComponent: () => InputStyleComponent,
|
|
34
34
|
SelectTable: () => SelectTable,
|
|
35
|
+
SelectTableTree: () => SelectTableTree,
|
|
35
36
|
TabsMenuComponent: () => TabsMenuComponent,
|
|
36
37
|
default: () => Table_edit_default,
|
|
37
38
|
formartNumberic: () => formartNumberic,
|
|
@@ -5389,6 +5390,7 @@ var Table_edit_default = table_default;
|
|
|
5389
5390
|
0 && (module.exports = {
|
|
5390
5391
|
InputStyleComponent,
|
|
5391
5392
|
SelectTable,
|
|
5393
|
+
SelectTableTree,
|
|
5392
5394
|
TabsMenuComponent,
|
|
5393
5395
|
formartNumberic,
|
|
5394
5396
|
generateUUID,
|
package/dist/index.mjs
CHANGED