quasar-factory-lib 0.1.19 → 0.1.20
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 +1 -0
- package/dist/layouts/PdaLayout.vue.d.ts +21 -269
- package/dist/pages/TablePage.vue.d.ts +1 -0
- package/dist/quasar-factory-lib.js +372 -367
- package/dist/quasar-factory-lib.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/components/Table/Table.vue +9 -2
- package/src/layouts/PdaLayout.vue +123 -752
|
@@ -133,6 +133,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
133
133
|
}): any;
|
|
134
134
|
getAdvancedFilterColumns(): void;
|
|
135
135
|
handleInfiniteScrollTableCompositionAPi(): void;
|
|
136
|
+
onVirtualScroll(args: any): void;
|
|
136
137
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
137
138
|
columns: {
|
|
138
139
|
type: () => object[];
|
|
@@ -14,322 +14,72 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
14
14
|
tableStyle: string;
|
|
15
15
|
columns: ({
|
|
16
16
|
name: string;
|
|
17
|
-
required: boolean;
|
|
18
17
|
label: string;
|
|
19
|
-
|
|
20
|
-
sortable: boolean;
|
|
21
|
-
type: string;
|
|
22
|
-
showBasicCheckbox?: undefined;
|
|
23
|
-
checkBoxDataCy?: undefined;
|
|
24
|
-
showCustomizedIcon?: undefined;
|
|
25
|
-
field?: undefined;
|
|
26
|
-
editable?: undefined;
|
|
27
|
-
showEditIcon?: undefined;
|
|
28
|
-
popupEditEmit?: undefined;
|
|
29
|
-
popupEditDataCy?: undefined;
|
|
30
|
-
mask?: undefined;
|
|
31
|
-
showSelectNumberOptions?: undefined;
|
|
32
|
-
popupEditInputtype?: undefined;
|
|
33
|
-
showCustomizedButton?: undefined;
|
|
34
|
-
btnIcon?: undefined;
|
|
35
|
-
btnEmit?: undefined;
|
|
36
|
-
dataCy?: undefined;
|
|
37
|
-
btnColor?: undefined;
|
|
38
|
-
inputMaxLength?: undefined;
|
|
39
|
-
showCustomizedCheckBox?: undefined;
|
|
40
|
-
checkedIcon?: undefined;
|
|
41
|
-
uncheckedIcon?: undefined;
|
|
42
|
-
checkBoxColorCaseTrue?: undefined;
|
|
43
|
-
checkBoxColorCaseFalse?: undefined;
|
|
44
|
-
showInputPopupEdit?: undefined;
|
|
45
|
-
} | {
|
|
46
|
-
name: string;
|
|
18
|
+
field: string;
|
|
47
19
|
required: boolean;
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
sortable
|
|
51
|
-
|
|
52
|
-
type: string;
|
|
53
|
-
checkBoxDataCy: string;
|
|
54
|
-
showCustomizedIcon?: undefined;
|
|
55
|
-
field?: undefined;
|
|
56
|
-
editable?: undefined;
|
|
57
|
-
showEditIcon?: undefined;
|
|
58
|
-
popupEditEmit?: undefined;
|
|
59
|
-
popupEditDataCy?: undefined;
|
|
60
|
-
mask?: undefined;
|
|
61
|
-
showSelectNumberOptions?: undefined;
|
|
62
|
-
popupEditInputtype?: undefined;
|
|
63
|
-
showCustomizedButton?: undefined;
|
|
64
|
-
btnIcon?: undefined;
|
|
65
|
-
btnEmit?: undefined;
|
|
66
|
-
dataCy?: undefined;
|
|
67
|
-
btnColor?: undefined;
|
|
68
|
-
inputMaxLength?: undefined;
|
|
69
|
-
showCustomizedCheckBox?: undefined;
|
|
70
|
-
checkedIcon?: undefined;
|
|
71
|
-
uncheckedIcon?: undefined;
|
|
72
|
-
checkBoxColorCaseTrue?: undefined;
|
|
73
|
-
checkBoxColorCaseFalse?: undefined;
|
|
74
|
-
showInputPopupEdit?: undefined;
|
|
20
|
+
align?: undefined;
|
|
21
|
+
format?: undefined;
|
|
22
|
+
sortable?: undefined;
|
|
23
|
+
sort?: undefined;
|
|
75
24
|
} | {
|
|
76
25
|
name: string;
|
|
77
26
|
required: boolean;
|
|
78
27
|
label: string;
|
|
79
28
|
align: string;
|
|
29
|
+
field: (row: any) => any;
|
|
30
|
+
format: (val: any) => string;
|
|
80
31
|
sortable: boolean;
|
|
81
|
-
|
|
82
|
-
type: string;
|
|
83
|
-
showBasicCheckbox?: undefined;
|
|
84
|
-
checkBoxDataCy?: undefined;
|
|
85
|
-
field?: undefined;
|
|
86
|
-
editable?: undefined;
|
|
87
|
-
showEditIcon?: undefined;
|
|
88
|
-
popupEditEmit?: undefined;
|
|
89
|
-
popupEditDataCy?: undefined;
|
|
90
|
-
mask?: undefined;
|
|
91
|
-
showSelectNumberOptions?: undefined;
|
|
92
|
-
popupEditInputtype?: undefined;
|
|
93
|
-
showCustomizedButton?: undefined;
|
|
94
|
-
btnIcon?: undefined;
|
|
95
|
-
btnEmit?: undefined;
|
|
96
|
-
dataCy?: undefined;
|
|
97
|
-
btnColor?: undefined;
|
|
98
|
-
inputMaxLength?: undefined;
|
|
99
|
-
showCustomizedCheckBox?: undefined;
|
|
100
|
-
checkedIcon?: undefined;
|
|
101
|
-
uncheckedIcon?: undefined;
|
|
102
|
-
checkBoxColorCaseTrue?: undefined;
|
|
103
|
-
checkBoxColorCaseFalse?: undefined;
|
|
104
|
-
showInputPopupEdit?: undefined;
|
|
32
|
+
sort?: undefined;
|
|
105
33
|
} | {
|
|
106
34
|
name: string;
|
|
107
35
|
align: string;
|
|
108
36
|
label: string;
|
|
109
37
|
field: string;
|
|
110
38
|
sortable: boolean;
|
|
111
|
-
editable: boolean;
|
|
112
|
-
showEditIcon: boolean;
|
|
113
|
-
popupEditEmit: string;
|
|
114
|
-
popupEditDataCy: string;
|
|
115
|
-
mask: string;
|
|
116
|
-
showSelectNumberOptions: boolean;
|
|
117
|
-
popupEditInputtype: string;
|
|
118
|
-
type: string;
|
|
119
39
|
required?: undefined;
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
showCustomizedIcon?: undefined;
|
|
123
|
-
showCustomizedButton?: undefined;
|
|
124
|
-
btnIcon?: undefined;
|
|
125
|
-
btnEmit?: undefined;
|
|
126
|
-
dataCy?: undefined;
|
|
127
|
-
btnColor?: undefined;
|
|
128
|
-
inputMaxLength?: undefined;
|
|
129
|
-
showCustomizedCheckBox?: undefined;
|
|
130
|
-
checkedIcon?: undefined;
|
|
131
|
-
uncheckedIcon?: undefined;
|
|
132
|
-
checkBoxColorCaseTrue?: undefined;
|
|
133
|
-
checkBoxColorCaseFalse?: undefined;
|
|
134
|
-
showInputPopupEdit?: undefined;
|
|
40
|
+
format?: undefined;
|
|
41
|
+
sort?: undefined;
|
|
135
42
|
} | {
|
|
136
43
|
name: string;
|
|
137
44
|
label: string;
|
|
138
45
|
field: string;
|
|
139
46
|
sortable: boolean;
|
|
140
|
-
showCustomizedButton: boolean;
|
|
141
|
-
btnIcon: string;
|
|
142
|
-
btnEmit: string;
|
|
143
|
-
dataCy: string;
|
|
144
|
-
btnColor: string;
|
|
145
|
-
type: string;
|
|
146
47
|
required?: undefined;
|
|
147
48
|
align?: undefined;
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
showCustomizedIcon?: undefined;
|
|
151
|
-
editable?: undefined;
|
|
152
|
-
showEditIcon?: undefined;
|
|
153
|
-
popupEditEmit?: undefined;
|
|
154
|
-
popupEditDataCy?: undefined;
|
|
155
|
-
mask?: undefined;
|
|
156
|
-
showSelectNumberOptions?: undefined;
|
|
157
|
-
popupEditInputtype?: undefined;
|
|
158
|
-
inputMaxLength?: undefined;
|
|
159
|
-
showCustomizedCheckBox?: undefined;
|
|
160
|
-
checkedIcon?: undefined;
|
|
161
|
-
uncheckedIcon?: undefined;
|
|
162
|
-
checkBoxColorCaseTrue?: undefined;
|
|
163
|
-
checkBoxColorCaseFalse?: undefined;
|
|
164
|
-
showInputPopupEdit?: undefined;
|
|
165
|
-
} | {
|
|
166
|
-
name: string;
|
|
167
|
-
label: string;
|
|
168
|
-
field: string;
|
|
169
|
-
editable: boolean;
|
|
170
|
-
popupEditEmit: string;
|
|
171
|
-
popupEditDataCy: string;
|
|
172
|
-
inputMaxLength: number;
|
|
173
|
-
popupEditInputtype: string;
|
|
174
|
-
type: string;
|
|
175
|
-
required?: undefined;
|
|
176
|
-
align?: undefined;
|
|
177
|
-
sortable?: undefined;
|
|
178
|
-
showBasicCheckbox?: undefined;
|
|
179
|
-
checkBoxDataCy?: undefined;
|
|
180
|
-
showCustomizedIcon?: undefined;
|
|
181
|
-
showEditIcon?: undefined;
|
|
182
|
-
mask?: undefined;
|
|
183
|
-
showSelectNumberOptions?: undefined;
|
|
184
|
-
showCustomizedButton?: undefined;
|
|
185
|
-
btnIcon?: undefined;
|
|
186
|
-
btnEmit?: undefined;
|
|
187
|
-
dataCy?: undefined;
|
|
188
|
-
btnColor?: undefined;
|
|
189
|
-
showCustomizedCheckBox?: undefined;
|
|
190
|
-
checkedIcon?: undefined;
|
|
191
|
-
uncheckedIcon?: undefined;
|
|
192
|
-
checkBoxColorCaseTrue?: undefined;
|
|
193
|
-
checkBoxColorCaseFalse?: undefined;
|
|
194
|
-
showInputPopupEdit?: undefined;
|
|
195
|
-
} | {
|
|
196
|
-
name: string;
|
|
197
|
-
label: string;
|
|
198
|
-
field: string;
|
|
199
|
-
sortable: boolean;
|
|
200
|
-
required: boolean;
|
|
201
|
-
showCustomizedCheckBox: boolean;
|
|
202
|
-
checkedIcon: string;
|
|
203
|
-
uncheckedIcon: string;
|
|
204
|
-
checkBoxColorCaseTrue: string;
|
|
205
|
-
checkBoxColorCaseFalse: string;
|
|
206
|
-
checkBoxDataCy: string;
|
|
207
|
-
type: string;
|
|
208
|
-
align?: undefined;
|
|
209
|
-
showBasicCheckbox?: undefined;
|
|
210
|
-
showCustomizedIcon?: undefined;
|
|
211
|
-
editable?: undefined;
|
|
212
|
-
showEditIcon?: undefined;
|
|
213
|
-
popupEditEmit?: undefined;
|
|
214
|
-
popupEditDataCy?: undefined;
|
|
215
|
-
mask?: undefined;
|
|
216
|
-
showSelectNumberOptions?: undefined;
|
|
217
|
-
popupEditInputtype?: undefined;
|
|
218
|
-
showCustomizedButton?: undefined;
|
|
219
|
-
btnIcon?: undefined;
|
|
220
|
-
btnEmit?: undefined;
|
|
221
|
-
dataCy?: undefined;
|
|
222
|
-
btnColor?: undefined;
|
|
223
|
-
inputMaxLength?: undefined;
|
|
224
|
-
showInputPopupEdit?: undefined;
|
|
225
|
-
} | {
|
|
226
|
-
name: string;
|
|
227
|
-
label: string;
|
|
228
|
-
field: string;
|
|
229
|
-
sortable: boolean;
|
|
230
|
-
required: boolean;
|
|
231
|
-
editable: boolean;
|
|
232
|
-
showEditIcon: boolean;
|
|
233
|
-
popupEditEmit: string;
|
|
234
|
-
popupEditInputtype: string;
|
|
235
|
-
popupEditDataCy: string;
|
|
236
|
-
showInputPopupEdit: boolean;
|
|
237
|
-
type: string;
|
|
238
|
-
align?: undefined;
|
|
239
|
-
showBasicCheckbox?: undefined;
|
|
240
|
-
checkBoxDataCy?: undefined;
|
|
241
|
-
showCustomizedIcon?: undefined;
|
|
242
|
-
mask?: undefined;
|
|
243
|
-
showSelectNumberOptions?: undefined;
|
|
244
|
-
showCustomizedButton?: undefined;
|
|
245
|
-
btnIcon?: undefined;
|
|
246
|
-
btnEmit?: undefined;
|
|
247
|
-
dataCy?: undefined;
|
|
248
|
-
btnColor?: undefined;
|
|
249
|
-
inputMaxLength?: undefined;
|
|
250
|
-
showCustomizedCheckBox?: undefined;
|
|
251
|
-
checkedIcon?: undefined;
|
|
252
|
-
uncheckedIcon?: undefined;
|
|
253
|
-
checkBoxColorCaseTrue?: undefined;
|
|
254
|
-
checkBoxColorCaseFalse?: undefined;
|
|
49
|
+
format?: undefined;
|
|
50
|
+
sort?: undefined;
|
|
255
51
|
} | {
|
|
256
52
|
name: string;
|
|
257
53
|
label: string;
|
|
258
54
|
field: string;
|
|
259
|
-
type: string;
|
|
260
55
|
required?: undefined;
|
|
261
56
|
align?: undefined;
|
|
57
|
+
format?: undefined;
|
|
262
58
|
sortable?: undefined;
|
|
263
|
-
|
|
264
|
-
checkBoxDataCy?: undefined;
|
|
265
|
-
showCustomizedIcon?: undefined;
|
|
266
|
-
editable?: undefined;
|
|
267
|
-
showEditIcon?: undefined;
|
|
268
|
-
popupEditEmit?: undefined;
|
|
269
|
-
popupEditDataCy?: undefined;
|
|
270
|
-
mask?: undefined;
|
|
271
|
-
showSelectNumberOptions?: undefined;
|
|
272
|
-
popupEditInputtype?: undefined;
|
|
273
|
-
showCustomizedButton?: undefined;
|
|
274
|
-
btnIcon?: undefined;
|
|
275
|
-
btnEmit?: undefined;
|
|
276
|
-
dataCy?: undefined;
|
|
277
|
-
btnColor?: undefined;
|
|
278
|
-
inputMaxLength?: undefined;
|
|
279
|
-
showCustomizedCheckBox?: undefined;
|
|
280
|
-
checkedIcon?: undefined;
|
|
281
|
-
uncheckedIcon?: undefined;
|
|
282
|
-
checkBoxColorCaseTrue?: undefined;
|
|
283
|
-
checkBoxColorCaseFalse?: undefined;
|
|
284
|
-
showInputPopupEdit?: undefined;
|
|
59
|
+
sort?: undefined;
|
|
285
60
|
} | {
|
|
286
61
|
name: string;
|
|
287
62
|
label: string;
|
|
288
63
|
field: string;
|
|
289
64
|
sortable: boolean;
|
|
290
|
-
|
|
65
|
+
sort: (a: any, b: any) => number;
|
|
291
66
|
required?: undefined;
|
|
292
67
|
align?: undefined;
|
|
293
|
-
|
|
294
|
-
checkBoxDataCy?: undefined;
|
|
295
|
-
showCustomizedIcon?: undefined;
|
|
296
|
-
editable?: undefined;
|
|
297
|
-
showEditIcon?: undefined;
|
|
298
|
-
popupEditEmit?: undefined;
|
|
299
|
-
popupEditDataCy?: undefined;
|
|
300
|
-
mask?: undefined;
|
|
301
|
-
showSelectNumberOptions?: undefined;
|
|
302
|
-
popupEditInputtype?: undefined;
|
|
303
|
-
showCustomizedButton?: undefined;
|
|
304
|
-
btnIcon?: undefined;
|
|
305
|
-
btnEmit?: undefined;
|
|
306
|
-
dataCy?: undefined;
|
|
307
|
-
btnColor?: undefined;
|
|
308
|
-
inputMaxLength?: undefined;
|
|
309
|
-
showCustomizedCheckBox?: undefined;
|
|
310
|
-
checkedIcon?: undefined;
|
|
311
|
-
uncheckedIcon?: undefined;
|
|
312
|
-
checkBoxColorCaseTrue?: undefined;
|
|
313
|
-
checkBoxColorCaseFalse?: undefined;
|
|
314
|
-
showInputPopupEdit?: undefined;
|
|
68
|
+
format?: undefined;
|
|
315
69
|
})[];
|
|
316
70
|
rows: never[];
|
|
317
|
-
|
|
318
|
-
|
|
71
|
+
showSkeleton: boolean;
|
|
72
|
+
buttonsList: never[];
|
|
73
|
+
seed: {
|
|
319
74
|
name: string;
|
|
320
|
-
booleanIcon: boolean;
|
|
321
|
-
available: boolean;
|
|
322
75
|
calories: number;
|
|
323
76
|
fat: number;
|
|
324
77
|
carbs: number;
|
|
325
|
-
checked: boolean;
|
|
326
78
|
protein: number;
|
|
327
79
|
sodium: number;
|
|
328
80
|
calcium: string;
|
|
329
81
|
iron: string;
|
|
330
82
|
}[];
|
|
331
|
-
showSkeleton: boolean;
|
|
332
|
-
buttonsList: never[];
|
|
333
83
|
}, {
|
|
334
84
|
smallDevice(): boolean;
|
|
335
85
|
}, {
|
|
@@ -344,6 +94,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
344
94
|
retryReadLabel(): void;
|
|
345
95
|
onCloseDialogLabelsError(): void;
|
|
346
96
|
getAlertLabelsWithError(): void;
|
|
97
|
+
generateRows(): object[];
|
|
347
98
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
348
99
|
TaskNavBar: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
349
100
|
logo: {
|
|
@@ -541,6 +292,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
541
292
|
}): any;
|
|
542
293
|
getAdvancedFilterColumns(): void;
|
|
543
294
|
handleInfiniteScrollTableCompositionAPi(): void;
|
|
295
|
+
onVirtualScroll(args: any): void;
|
|
544
296
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
545
297
|
columns: {
|
|
546
298
|
type: () => object[];
|
|
@@ -687,6 +687,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
687
687
|
}): any;
|
|
688
688
|
getAdvancedFilterColumns(): void;
|
|
689
689
|
handleInfiniteScrollTableCompositionAPi(): void;
|
|
690
|
+
onVirtualScroll(args: any): void;
|
|
690
691
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP" | "getPOFromWorkCenter" | "getProductionTimesMachineCenter" | "operatorMachineAssignmentAssignMachine" | "operatorMachineAssignmentSetDate" | "operatorMachineAssignmentSetPartialMachineCenter" | "operatorMachineAssignmentSeeDetail" | "onClickOpenDialogOperators", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
691
692
|
columns: {
|
|
692
693
|
type: () => object[];
|