quasar-factory-lib 0.0.87 → 0.0.89
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/components/Table/Table.vue.d.ts +15 -3
- package/dist/components/Table/components/TableSlotBody.vue.d.ts +2 -1
- package/dist/components/Table/components/TableSlotGrid.vue.d.ts +2 -1
- package/dist/layouts/PdaLayout.vue.d.ts +24 -12
- package/dist/pages/TablePage.vue.d.ts +15 -3
- package/dist/quasar-factory-lib.js +8652 -7019
- package/dist/quasar-factory-lib.umd.cjs +16 -11
- package/dist/style.css +1 -1
- package/package.json +2 -1
- package/src/components/Table/Table.vue +56 -7
- package/src/components/Table/components/CustomizedBadge.vue +1 -1
- package/src/components/Table/components/TableColumnsSelector.vue +2 -0
- package/src/components/Table/components/TableSlotBody.vue +4 -2
- package/src/components/Table/components/TableSlotGrid.vue +3 -2
- package/src/components/Table/components/TableSlotHeader.vue +3 -1
- package/src/components/Table/css/table.css +3 -0
- package/src/components/Table/css/tableSlotHeader.css +3 -0
- package/src/layouts/PdaLayout.vue +198 -4
|
@@ -85,6 +85,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
85
85
|
filteredRows: object[] | [];
|
|
86
86
|
showAdvancedFilter: boolean;
|
|
87
87
|
advancedFiltersData: {};
|
|
88
|
+
tableRef: null;
|
|
89
|
+
draggableInstance: null;
|
|
90
|
+
disabled: boolean;
|
|
91
|
+
enableDragAndDrop: boolean;
|
|
92
|
+
dragAndDropDelay: number;
|
|
88
93
|
}, {
|
|
89
94
|
getColumnsSelectorVisibility(): boolean;
|
|
90
95
|
getTableInputSearchVisibility(): boolean;
|
|
@@ -94,6 +99,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
94
99
|
filterComputed(): object;
|
|
95
100
|
pageLength(): number;
|
|
96
101
|
}, {
|
|
102
|
+
enableDragAndDropFunc(): void;
|
|
97
103
|
getSelectedString(val: number): string;
|
|
98
104
|
onSelectVisibleColumns(columns: string[]): void;
|
|
99
105
|
onSaveValuePopupEdit(row: object): void;
|
|
@@ -119,7 +125,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
119
125
|
prepared: boolean;
|
|
120
126
|
}): any;
|
|
121
127
|
getAdvancedFilterColumns(): void;
|
|
122
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
128
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
123
129
|
columns: {
|
|
124
130
|
type: () => object[];
|
|
125
131
|
required: true;
|
|
@@ -211,6 +217,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
211
217
|
onSetLineRemainingQty?: ((...args: any[]) => any) | undefined;
|
|
212
218
|
onSetLineNoStock?: ((...args: any[]) => any) | undefined;
|
|
213
219
|
onOnDoneLineMaintenanceTasks?: ((...args: any[]) => any) | undefined;
|
|
220
|
+
onReprintSULabel?: ((...args: any[]) => any) | undefined;
|
|
221
|
+
onOnDragStart?: ((...args: any[]) => any) | undefined;
|
|
222
|
+
onOnDragUpdate?: ((...args: any[]) => any) | undefined;
|
|
223
|
+
onOnDragEnd?: ((...args: any[]) => any) | undefined;
|
|
214
224
|
}>, {
|
|
215
225
|
selectionType: "none" | "multiple" | "single";
|
|
216
226
|
popupEditNumberOptions: unknown[];
|
|
@@ -646,7 +656,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
646
656
|
}): boolean;
|
|
647
657
|
getBtnDisabled(tablePropsData: any, col: any): any;
|
|
648
658
|
getButtonColor(tablePropsData: any, col: any): string;
|
|
649
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
659
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
650
660
|
tableProps: {
|
|
651
661
|
type: ObjectConstructor;
|
|
652
662
|
required: true;
|
|
@@ -665,6 +675,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
665
675
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
666
676
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
667
677
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
678
|
+
onModifyPriorityOrder?: ((...args: any[]) => any) | undefined;
|
|
668
679
|
}>, {
|
|
669
680
|
selectionType: string;
|
|
670
681
|
getCellClass: Function;
|
|
@@ -1070,7 +1081,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1070
1081
|
}): boolean;
|
|
1071
1082
|
getBtnDisabled(tablePropsData: any, col: any): any;
|
|
1072
1083
|
getButtonColor(tablePropsData: any, col: any): string;
|
|
1073
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "onClickIcon")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "onClickIcon", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1084
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "onClickIcon")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "onClickIcon", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1074
1085
|
tableProps: {
|
|
1075
1086
|
type: ObjectConstructor;
|
|
1076
1087
|
required: true;
|
|
@@ -1092,6 +1103,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1092
1103
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
1093
1104
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1094
1105
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1106
|
+
onModifyPriorityOrder?: ((...args: any[]) => any) | undefined;
|
|
1095
1107
|
onOnClickIcon?: ((...args: any[]) => any) | undefined;
|
|
1096
1108
|
}>, {
|
|
1097
1109
|
selectionType: string;
|
|
@@ -25,7 +25,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
25
25
|
}): boolean;
|
|
26
26
|
getBtnDisabled(tablePropsData: any, col: any): any;
|
|
27
27
|
getButtonColor(tablePropsData: any, col: any): string;
|
|
28
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
28
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
29
|
tableProps: {
|
|
30
30
|
type: ObjectConstructor;
|
|
31
31
|
required: true;
|
|
@@ -44,6 +44,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
44
44
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
45
45
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
46
46
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
47
|
+
onModifyPriorityOrder?: ((...args: any[]) => any) | undefined;
|
|
47
48
|
}>, {
|
|
48
49
|
selectionType: string;
|
|
49
50
|
getCellClass: Function;
|
|
@@ -29,7 +29,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
29
29
|
}): boolean;
|
|
30
30
|
getBtnDisabled(tablePropsData: any, col: any): any;
|
|
31
31
|
getButtonColor(tablePropsData: any, col: any): string;
|
|
32
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "onClickIcon")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "onClickIcon", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "onClickIcon")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "onClickIcon", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
33
|
tableProps: {
|
|
34
34
|
type: ObjectConstructor;
|
|
35
35
|
required: true;
|
|
@@ -51,6 +51,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
51
51
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
52
52
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
53
53
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
54
|
+
onModifyPriorityOrder?: ((...args: any[]) => any) | undefined;
|
|
54
55
|
onOnClickIcon?: ((...args: any[]) => any) | undefined;
|
|
55
56
|
}>, {
|
|
56
57
|
selectionType: string;
|
|
@@ -20,6 +20,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
20
20
|
sortable: boolean;
|
|
21
21
|
type: string;
|
|
22
22
|
showBasicCheckbox?: undefined;
|
|
23
|
+
checkBoxDataCy?: undefined;
|
|
23
24
|
showCustomizedIcon?: undefined;
|
|
24
25
|
field?: undefined;
|
|
25
26
|
editable?: undefined;
|
|
@@ -40,7 +41,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
40
41
|
uncheckedIcon?: undefined;
|
|
41
42
|
checkBoxColorCaseTrue?: undefined;
|
|
42
43
|
checkBoxColorCaseFalse?: undefined;
|
|
43
|
-
checkBoxDataCy?: undefined;
|
|
44
44
|
showInputPopupEdit?: undefined;
|
|
45
45
|
} | {
|
|
46
46
|
name: string;
|
|
@@ -50,6 +50,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
50
50
|
sortable: boolean;
|
|
51
51
|
showBasicCheckbox: boolean;
|
|
52
52
|
type: string;
|
|
53
|
+
checkBoxDataCy: string;
|
|
53
54
|
showCustomizedIcon?: undefined;
|
|
54
55
|
field?: undefined;
|
|
55
56
|
editable?: undefined;
|
|
@@ -70,7 +71,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
70
71
|
uncheckedIcon?: undefined;
|
|
71
72
|
checkBoxColorCaseTrue?: undefined;
|
|
72
73
|
checkBoxColorCaseFalse?: undefined;
|
|
73
|
-
checkBoxDataCy?: undefined;
|
|
74
74
|
showInputPopupEdit?: undefined;
|
|
75
75
|
} | {
|
|
76
76
|
name: string;
|
|
@@ -81,6 +81,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
81
81
|
showCustomizedIcon: boolean;
|
|
82
82
|
type: string;
|
|
83
83
|
showBasicCheckbox?: undefined;
|
|
84
|
+
checkBoxDataCy?: undefined;
|
|
84
85
|
field?: undefined;
|
|
85
86
|
editable?: undefined;
|
|
86
87
|
showEditIcon?: undefined;
|
|
@@ -100,7 +101,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
100
101
|
uncheckedIcon?: undefined;
|
|
101
102
|
checkBoxColorCaseTrue?: undefined;
|
|
102
103
|
checkBoxColorCaseFalse?: undefined;
|
|
103
|
-
checkBoxDataCy?: undefined;
|
|
104
104
|
showInputPopupEdit?: undefined;
|
|
105
105
|
} | {
|
|
106
106
|
name: string;
|
|
@@ -118,6 +118,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
118
118
|
type: string;
|
|
119
119
|
required?: undefined;
|
|
120
120
|
showBasicCheckbox?: undefined;
|
|
121
|
+
checkBoxDataCy?: undefined;
|
|
121
122
|
showCustomizedIcon?: undefined;
|
|
122
123
|
showCustomizedButton?: undefined;
|
|
123
124
|
btnIcon?: undefined;
|
|
@@ -130,7 +131,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
130
131
|
uncheckedIcon?: undefined;
|
|
131
132
|
checkBoxColorCaseTrue?: undefined;
|
|
132
133
|
checkBoxColorCaseFalse?: undefined;
|
|
133
|
-
checkBoxDataCy?: undefined;
|
|
134
134
|
showInputPopupEdit?: undefined;
|
|
135
135
|
} | {
|
|
136
136
|
name: string;
|
|
@@ -146,6 +146,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
146
146
|
required?: undefined;
|
|
147
147
|
align?: undefined;
|
|
148
148
|
showBasicCheckbox?: undefined;
|
|
149
|
+
checkBoxDataCy?: undefined;
|
|
149
150
|
showCustomizedIcon?: undefined;
|
|
150
151
|
editable?: undefined;
|
|
151
152
|
showEditIcon?: undefined;
|
|
@@ -160,7 +161,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
160
161
|
uncheckedIcon?: undefined;
|
|
161
162
|
checkBoxColorCaseTrue?: undefined;
|
|
162
163
|
checkBoxColorCaseFalse?: undefined;
|
|
163
|
-
checkBoxDataCy?: undefined;
|
|
164
164
|
showInputPopupEdit?: undefined;
|
|
165
165
|
} | {
|
|
166
166
|
name: string;
|
|
@@ -176,6 +176,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
176
176
|
align?: undefined;
|
|
177
177
|
sortable?: undefined;
|
|
178
178
|
showBasicCheckbox?: undefined;
|
|
179
|
+
checkBoxDataCy?: undefined;
|
|
179
180
|
showCustomizedIcon?: undefined;
|
|
180
181
|
showEditIcon?: undefined;
|
|
181
182
|
mask?: undefined;
|
|
@@ -190,7 +191,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
190
191
|
uncheckedIcon?: undefined;
|
|
191
192
|
checkBoxColorCaseTrue?: undefined;
|
|
192
193
|
checkBoxColorCaseFalse?: undefined;
|
|
193
|
-
checkBoxDataCy?: undefined;
|
|
194
194
|
showInputPopupEdit?: undefined;
|
|
195
195
|
} | {
|
|
196
196
|
name: string;
|
|
@@ -237,6 +237,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
237
237
|
type: string;
|
|
238
238
|
align?: undefined;
|
|
239
239
|
showBasicCheckbox?: undefined;
|
|
240
|
+
checkBoxDataCy?: undefined;
|
|
240
241
|
showCustomizedIcon?: undefined;
|
|
241
242
|
mask?: undefined;
|
|
242
243
|
showSelectNumberOptions?: undefined;
|
|
@@ -251,7 +252,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
251
252
|
uncheckedIcon?: undefined;
|
|
252
253
|
checkBoxColorCaseTrue?: undefined;
|
|
253
254
|
checkBoxColorCaseFalse?: undefined;
|
|
254
|
-
checkBoxDataCy?: undefined;
|
|
255
255
|
} | {
|
|
256
256
|
name: string;
|
|
257
257
|
label: string;
|
|
@@ -261,6 +261,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
261
261
|
align?: undefined;
|
|
262
262
|
sortable?: undefined;
|
|
263
263
|
showBasicCheckbox?: undefined;
|
|
264
|
+
checkBoxDataCy?: undefined;
|
|
264
265
|
showCustomizedIcon?: undefined;
|
|
265
266
|
editable?: undefined;
|
|
266
267
|
showEditIcon?: undefined;
|
|
@@ -280,7 +281,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
280
281
|
uncheckedIcon?: undefined;
|
|
281
282
|
checkBoxColorCaseTrue?: undefined;
|
|
282
283
|
checkBoxColorCaseFalse?: undefined;
|
|
283
|
-
checkBoxDataCy?: undefined;
|
|
284
284
|
showInputPopupEdit?: undefined;
|
|
285
285
|
} | {
|
|
286
286
|
name: string;
|
|
@@ -291,6 +291,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
291
291
|
required?: undefined;
|
|
292
292
|
align?: undefined;
|
|
293
293
|
showBasicCheckbox?: undefined;
|
|
294
|
+
checkBoxDataCy?: undefined;
|
|
294
295
|
showCustomizedIcon?: undefined;
|
|
295
296
|
editable?: undefined;
|
|
296
297
|
showEditIcon?: undefined;
|
|
@@ -310,7 +311,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
310
311
|
uncheckedIcon?: undefined;
|
|
311
312
|
checkBoxColorCaseTrue?: undefined;
|
|
312
313
|
checkBoxColorCaseFalse?: undefined;
|
|
313
|
-
checkBoxDataCy?: undefined;
|
|
314
314
|
showInputPopupEdit?: undefined;
|
|
315
315
|
})[];
|
|
316
316
|
rows: never[];
|
|
@@ -493,6 +493,11 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
493
493
|
filteredRows: object[] | [];
|
|
494
494
|
showAdvancedFilter: boolean;
|
|
495
495
|
advancedFiltersData: {};
|
|
496
|
+
tableRef: null;
|
|
497
|
+
draggableInstance: null;
|
|
498
|
+
disabled: boolean;
|
|
499
|
+
enableDragAndDrop: boolean;
|
|
500
|
+
dragAndDropDelay: number;
|
|
496
501
|
}, {
|
|
497
502
|
getColumnsSelectorVisibility(): boolean;
|
|
498
503
|
getTableInputSearchVisibility(): boolean;
|
|
@@ -502,6 +507,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
502
507
|
filterComputed(): object;
|
|
503
508
|
pageLength(): number;
|
|
504
509
|
}, {
|
|
510
|
+
enableDragAndDropFunc(): void;
|
|
505
511
|
getSelectedString(val: number): string;
|
|
506
512
|
onSelectVisibleColumns(columns: string[]): void;
|
|
507
513
|
onSaveValuePopupEdit(row: object): void;
|
|
@@ -527,7 +533,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
527
533
|
prepared: boolean;
|
|
528
534
|
}): any;
|
|
529
535
|
getAdvancedFilterColumns(): void;
|
|
530
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
536
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
531
537
|
columns: {
|
|
532
538
|
type: () => object[];
|
|
533
539
|
required: true;
|
|
@@ -619,6 +625,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
619
625
|
onSetLineRemainingQty?: ((...args: any[]) => any) | undefined;
|
|
620
626
|
onSetLineNoStock?: ((...args: any[]) => any) | undefined;
|
|
621
627
|
onOnDoneLineMaintenanceTasks?: ((...args: any[]) => any) | undefined;
|
|
628
|
+
onReprintSULabel?: ((...args: any[]) => any) | undefined;
|
|
629
|
+
onOnDragStart?: ((...args: any[]) => any) | undefined;
|
|
630
|
+
onOnDragUpdate?: ((...args: any[]) => any) | undefined;
|
|
631
|
+
onOnDragEnd?: ((...args: any[]) => any) | undefined;
|
|
622
632
|
}>, {
|
|
623
633
|
selectionType: "none" | "multiple" | "single";
|
|
624
634
|
popupEditNumberOptions: unknown[];
|
|
@@ -1054,7 +1064,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1054
1064
|
}): boolean;
|
|
1055
1065
|
getBtnDisabled(tablePropsData: any, col: any): any;
|
|
1056
1066
|
getButtonColor(tablePropsData: any, col: any): string;
|
|
1057
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1067
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1058
1068
|
tableProps: {
|
|
1059
1069
|
type: ObjectConstructor;
|
|
1060
1070
|
required: true;
|
|
@@ -1073,6 +1083,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1073
1083
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
1074
1084
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1075
1085
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1086
|
+
onModifyPriorityOrder?: ((...args: any[]) => any) | undefined;
|
|
1076
1087
|
}>, {
|
|
1077
1088
|
selectionType: string;
|
|
1078
1089
|
getCellClass: Function;
|
|
@@ -1478,7 +1489,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1478
1489
|
}): boolean;
|
|
1479
1490
|
getBtnDisabled(tablePropsData: any, col: any): any;
|
|
1480
1491
|
getButtonColor(tablePropsData: any, col: any): string;
|
|
1481
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "onClickIcon")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "onClickIcon", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1492
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "onClickIcon")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "onClickIcon", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1482
1493
|
tableProps: {
|
|
1483
1494
|
type: ObjectConstructor;
|
|
1484
1495
|
required: true;
|
|
@@ -1500,6 +1511,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1500
1511
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
1501
1512
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1502
1513
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1514
|
+
onModifyPriorityOrder?: ((...args: any[]) => any) | undefined;
|
|
1503
1515
|
onOnClickIcon?: ((...args: any[]) => any) | undefined;
|
|
1504
1516
|
}>, {
|
|
1505
1517
|
selectionType: string;
|
|
@@ -639,6 +639,11 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
639
639
|
filteredRows: object[] | [];
|
|
640
640
|
showAdvancedFilter: boolean;
|
|
641
641
|
advancedFiltersData: {};
|
|
642
|
+
tableRef: null;
|
|
643
|
+
draggableInstance: null;
|
|
644
|
+
disabled: boolean;
|
|
645
|
+
enableDragAndDrop: boolean;
|
|
646
|
+
dragAndDropDelay: number;
|
|
642
647
|
}, {
|
|
643
648
|
getColumnsSelectorVisibility(): boolean;
|
|
644
649
|
getTableInputSearchVisibility(): boolean;
|
|
@@ -648,6 +653,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
648
653
|
filterComputed(): object;
|
|
649
654
|
pageLength(): number;
|
|
650
655
|
}, {
|
|
656
|
+
enableDragAndDropFunc(): void;
|
|
651
657
|
getSelectedString(val: number): string;
|
|
652
658
|
onSelectVisibleColumns(columns: string[]): void;
|
|
653
659
|
onSaveValuePopupEdit(row: object): void;
|
|
@@ -673,7 +679,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
673
679
|
prepared: boolean;
|
|
674
680
|
}): any;
|
|
675
681
|
getAdvancedFilterColumns(): void;
|
|
676
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
682
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
677
683
|
columns: {
|
|
678
684
|
type: () => object[];
|
|
679
685
|
required: true;
|
|
@@ -765,6 +771,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
765
771
|
onSetLineRemainingQty?: ((...args: any[]) => any) | undefined;
|
|
766
772
|
onSetLineNoStock?: ((...args: any[]) => any) | undefined;
|
|
767
773
|
onOnDoneLineMaintenanceTasks?: ((...args: any[]) => any) | undefined;
|
|
774
|
+
onReprintSULabel?: ((...args: any[]) => any) | undefined;
|
|
775
|
+
onOnDragStart?: ((...args: any[]) => any) | undefined;
|
|
776
|
+
onOnDragUpdate?: ((...args: any[]) => any) | undefined;
|
|
777
|
+
onOnDragEnd?: ((...args: any[]) => any) | undefined;
|
|
768
778
|
}>, {
|
|
769
779
|
selectionType: "none" | "multiple" | "single";
|
|
770
780
|
popupEditNumberOptions: unknown[];
|
|
@@ -1200,7 +1210,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1200
1210
|
}): boolean;
|
|
1201
1211
|
getBtnDisabled(tablePropsData: any, col: any): any;
|
|
1202
1212
|
getButtonColor(tablePropsData: any, col: any): string;
|
|
1203
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1213
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1204
1214
|
tableProps: {
|
|
1205
1215
|
type: ObjectConstructor;
|
|
1206
1216
|
required: true;
|
|
@@ -1219,6 +1229,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1219
1229
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
1220
1230
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1221
1231
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1232
|
+
onModifyPriorityOrder?: ((...args: any[]) => any) | undefined;
|
|
1222
1233
|
}>, {
|
|
1223
1234
|
selectionType: string;
|
|
1224
1235
|
getCellClass: Function;
|
|
@@ -1624,7 +1635,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1624
1635
|
}): boolean;
|
|
1625
1636
|
getBtnDisabled(tablePropsData: any, col: any): any;
|
|
1626
1637
|
getButtonColor(tablePropsData: any, col: any): string;
|
|
1627
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "onClickIcon")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "onClickIcon", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1638
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "onClickIcon")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "onClickIcon", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1628
1639
|
tableProps: {
|
|
1629
1640
|
type: ObjectConstructor;
|
|
1630
1641
|
required: true;
|
|
@@ -1646,6 +1657,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1646
1657
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
1647
1658
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1648
1659
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1660
|
+
onModifyPriorityOrder?: ((...args: any[]) => any) | undefined;
|
|
1649
1661
|
onOnClickIcon?: ((...args: any[]) => any) | undefined;
|
|
1650
1662
|
}>, {
|
|
1651
1663
|
selectionType: string;
|