@esvndev/es-react-table-interface 1.1.8 → 1.1.10
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/ExternalInterface/ExternalInterfaceChild.d.ts +3 -0
- package/dist/component/ExternalInterface/modalSetView.d.ts +44 -0
- package/dist/func.d.ts +5 -0
- package/dist/index.js +59 -41
- package/dist/interface.d.ts +21 -3
- package/dist/libs/input-checkbox/index.d.ts +16 -0
- package/dist/libs/notifications/index.d.ts +20 -0
- package/dist/libs/select-table/index.d.ts +41 -0
- package/dist/ultility/request/index.d.ts +1 -0
- package/package.json +3 -1
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ColumnTable } from "es-grid-template";
|
|
3
|
+
declare const ModalComponentSetView: (props: {
|
|
4
|
+
typeModal: "Edit" | "Del";
|
|
5
|
+
openModalOrder: any;
|
|
6
|
+
handleModalOrder: any;
|
|
7
|
+
windowSize: any;
|
|
8
|
+
viewId: string;
|
|
9
|
+
setLoadView: any;
|
|
10
|
+
}) => React.JSX.Element;
|
|
11
|
+
export declare const renderColumns: () => ColumnTable<RowI>[];
|
|
12
|
+
interface RowI {
|
|
13
|
+
id?: any;
|
|
14
|
+
viewId?: any;
|
|
15
|
+
colVirtual?: any;
|
|
16
|
+
colOriginal?: any;
|
|
17
|
+
dataTypeOriginnal?: any;
|
|
18
|
+
tblFrom?: any;
|
|
19
|
+
tblAlias?: any;
|
|
20
|
+
leftJoin?: any;
|
|
21
|
+
type?: any;
|
|
22
|
+
title?: any;
|
|
23
|
+
description?: any;
|
|
24
|
+
isSearchKeyword?: any;
|
|
25
|
+
isFilterOr?: any;
|
|
26
|
+
sortOrder?: any;
|
|
27
|
+
minWidth?: any;
|
|
28
|
+
maxWidth?: any;
|
|
29
|
+
width?: any;
|
|
30
|
+
isHidden?: any;
|
|
31
|
+
textAlign?: any;
|
|
32
|
+
colMerge?: any;
|
|
33
|
+
rowMerge?: any;
|
|
34
|
+
isActive?: any;
|
|
35
|
+
colTemplate?: any;
|
|
36
|
+
optionTemplate?: any;
|
|
37
|
+
typeDecimal?: any;
|
|
38
|
+
freeze?: any;
|
|
39
|
+
isOrderBy?: any;
|
|
40
|
+
isOrderByDesc?: any;
|
|
41
|
+
tree?: any;
|
|
42
|
+
isSumary?: any;
|
|
43
|
+
}
|
|
44
|
+
export default ModalComponentSetView;
|
package/dist/func.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { INumericFormatted, ITypeNumericFormatted } from "./interface";
|
|
2
|
+
export declare const loginId: string | null;
|
|
3
|
+
export declare const screenView: any;
|
|
4
|
+
export declare const getCurrentOrganizationId: any;
|
|
2
5
|
export declare const configNumber: any;
|
|
3
6
|
export declare const useDebounce: (value: string, milliSeconds: any) => string;
|
|
4
7
|
export declare const renderResponse: (rs: any) => any;
|
|
@@ -27,3 +30,5 @@ export declare const numberSo_CongTemplate: (props: any) => string;
|
|
|
27
30
|
export declare const columnsSelectTable_Key_Label: any[];
|
|
28
31
|
export declare const flattenArray: (arr: any) => any;
|
|
29
32
|
export declare const renderLink: (userSubject: any) => any;
|
|
33
|
+
export declare const lowercaseFirstLetter: (str: any) => any;
|
|
34
|
+
export declare const connectString: (t: any, props: string[]) => any;
|