@esvndev/es-react-table-interface 1.5.81 → 1.5.82
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/ExternalInterface.d.ts +10 -0
- package/dist/index.js +168 -168
- package/dist/interface.d.ts +11 -2
- package/package.json +2 -2
package/dist/interface.d.ts
CHANGED
|
@@ -186,14 +186,16 @@ export interface IExternalInterface {
|
|
|
186
186
|
approverId?: any;
|
|
187
187
|
};
|
|
188
188
|
printApi?: {
|
|
189
|
-
defaultPrintSetting: any;
|
|
189
|
+
defaultPrintSetting: any[];
|
|
190
190
|
getListGeneralSettingApi: any;
|
|
191
191
|
deleteGeneralSettingApi: any;
|
|
192
192
|
updateGeneralSettingApi: any;
|
|
193
193
|
printDocumentApi: any;
|
|
194
194
|
uploadFileApi: any;
|
|
195
|
+
getListBoxApi: any;
|
|
195
196
|
data?: any;
|
|
196
|
-
apiGetData?: () => void;
|
|
197
|
+
apiGetData?: (type: string) => void;
|
|
198
|
+
RENDER?: any;
|
|
197
199
|
};
|
|
198
200
|
format?: {
|
|
199
201
|
thousandSeparator?: string;
|
|
@@ -209,12 +211,19 @@ export interface IExternalInterface {
|
|
|
209
211
|
weekFormat?: string;
|
|
210
212
|
monthFormat?: string;
|
|
211
213
|
yearFormat?: string;
|
|
214
|
+
colorNegative?: string;
|
|
212
215
|
};
|
|
213
216
|
showUltilities?: boolean;
|
|
214
217
|
ultilities?: {
|
|
215
218
|
showExport?: boolean;
|
|
216
219
|
showPrint?: boolean;
|
|
217
220
|
showSetting?: boolean;
|
|
221
|
+
template?: {
|
|
222
|
+
align: string;
|
|
223
|
+
template: any;
|
|
224
|
+
position: string;
|
|
225
|
+
visible?: boolean;
|
|
226
|
+
}[];
|
|
218
227
|
};
|
|
219
228
|
selectionSetting?: {
|
|
220
229
|
hideSelectAll?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esvndev/es-react-table-interface",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.82",
|
|
4
4
|
"description": "This product is designed by ESVN and is only for use in products distributed by ESVN. Any product, whether for non-commercial research or commercial purposes, must have written legal approval and a digital signature from ESVN.",
|
|
5
5
|
"license": "ESVN Limited Use License",
|
|
6
6
|
"author": "dev@esvn.com.vn",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"becoxy-icons": "1.9.9",
|
|
56
56
|
"classnames": "^2.5.1",
|
|
57
57
|
"es-grid-template": "1.7.23",
|
|
58
|
-
"es-print-template": "0.0.
|
|
58
|
+
"es-print-template": "0.0.12",
|
|
59
59
|
"es-workflow-template": "0.4.6",
|
|
60
60
|
"eslint": "^8.25.0",
|
|
61
61
|
"eslint-config-prettier": "^8.5.0",
|