quasar-factory-lib 0.0.63 → 0.0.64
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/ConfirmedTask/ConfirmedTask.vue.d.ts +1 -0
- package/dist/components/Table/Table.vue.d.ts +207 -3
- package/dist/components/Table/components/CustomizedBadge.vue.d.ts +60 -0
- package/dist/components/Table/components/CustomizedButtonWithToolTip.vue.d.ts +38 -0
- package/dist/components/Table/components/TableSlotBody.vue.d.ts +100 -1
- package/dist/components/Table/components/TableSlotGrid.vue.d.ts +100 -1
- package/dist/layouts/PdaLayout.vue.d.ts +207 -3
- package/dist/pages/ConfirmedTaskPage.vue.d.ts +1 -0
- package/dist/pages/TablePage.vue.d.ts +376 -3
- package/dist/quasar-factory-lib.js +5618 -5253
- package/dist/quasar-factory-lib.umd.cjs +11 -11
- package/package.json +1 -1
- package/src/components/ConfirmedTask/ConfirmedTask.vue +6 -1
- package/src/components/Table/Table.vue +12 -1
- package/src/components/Table/components/CustomizedBadge.vue +48 -0
- package/src/components/Table/components/CustomizedButtonWithToolTip.vue +43 -0
- package/src/components/Table/components/TableSlotBody.vue +34 -4
- package/src/components/Table/components/TableSlotGrid.vue +33 -4
- package/src/layouts/MenuLayout.vue +0 -1
- package/src/layouts/PdaLayout.vue +1 -1
- package/src/pages/TablePage.vue +38 -4
|
@@ -21,6 +21,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
21
21
|
field: string;
|
|
22
22
|
showBasicCheckbox?: undefined;
|
|
23
23
|
showCustomizedIcon?: undefined;
|
|
24
|
+
customizedIconNameCaseTrue?: undefined;
|
|
25
|
+
customizedIconNameCaseFalse?: undefined;
|
|
26
|
+
customizedIconColorCaseTrue?: undefined;
|
|
27
|
+
customizedIconColorCaseFalse?: undefined;
|
|
24
28
|
editable?: undefined;
|
|
25
29
|
showEditIcon?: undefined;
|
|
26
30
|
popupEditEmit?: undefined;
|
|
@@ -33,6 +37,13 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
33
37
|
dataCy?: undefined;
|
|
34
38
|
btnColor?: undefined;
|
|
35
39
|
format?: undefined;
|
|
40
|
+
showBadge?: undefined;
|
|
41
|
+
badgeDataCy?: undefined;
|
|
42
|
+
badgeEmit?: undefined;
|
|
43
|
+
badgeText?: undefined;
|
|
44
|
+
badgeColor?: undefined;
|
|
45
|
+
badgeTextColor?: undefined;
|
|
46
|
+
badgeOutline?: undefined;
|
|
36
47
|
showCustomizedCheckBox?: undefined;
|
|
37
48
|
checkedIcon?: undefined;
|
|
38
49
|
uncheckedIcon?: undefined;
|
|
@@ -40,6 +51,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
40
51
|
checkBoxColorCaseFalse?: undefined;
|
|
41
52
|
checkBoxDataCy?: undefined;
|
|
42
53
|
showInputPopupEdit?: undefined;
|
|
54
|
+
showCustomizedButtonWithToolTip?: undefined;
|
|
55
|
+
toolTipText?: undefined;
|
|
43
56
|
} | {
|
|
44
57
|
name: string;
|
|
45
58
|
required: boolean;
|
|
@@ -49,6 +62,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
49
62
|
showBasicCheckbox: boolean;
|
|
50
63
|
field: string;
|
|
51
64
|
showCustomizedIcon?: undefined;
|
|
65
|
+
customizedIconNameCaseTrue?: undefined;
|
|
66
|
+
customizedIconNameCaseFalse?: undefined;
|
|
67
|
+
customizedIconColorCaseTrue?: undefined;
|
|
68
|
+
customizedIconColorCaseFalse?: undefined;
|
|
52
69
|
editable?: undefined;
|
|
53
70
|
showEditIcon?: undefined;
|
|
54
71
|
popupEditEmit?: undefined;
|
|
@@ -61,6 +78,13 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
61
78
|
dataCy?: undefined;
|
|
62
79
|
btnColor?: undefined;
|
|
63
80
|
format?: undefined;
|
|
81
|
+
showBadge?: undefined;
|
|
82
|
+
badgeDataCy?: undefined;
|
|
83
|
+
badgeEmit?: undefined;
|
|
84
|
+
badgeText?: undefined;
|
|
85
|
+
badgeColor?: undefined;
|
|
86
|
+
badgeTextColor?: undefined;
|
|
87
|
+
badgeOutline?: undefined;
|
|
64
88
|
showCustomizedCheckBox?: undefined;
|
|
65
89
|
checkedIcon?: undefined;
|
|
66
90
|
uncheckedIcon?: undefined;
|
|
@@ -68,6 +92,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
68
92
|
checkBoxColorCaseFalse?: undefined;
|
|
69
93
|
checkBoxDataCy?: undefined;
|
|
70
94
|
showInputPopupEdit?: undefined;
|
|
95
|
+
showCustomizedButtonWithToolTip?: undefined;
|
|
96
|
+
toolTipText?: undefined;
|
|
71
97
|
} | {
|
|
72
98
|
name: string;
|
|
73
99
|
required: boolean;
|
|
@@ -75,6 +101,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
75
101
|
align: string;
|
|
76
102
|
sortable: boolean;
|
|
77
103
|
showCustomizedIcon: boolean;
|
|
104
|
+
customizedIconNameCaseTrue: string;
|
|
105
|
+
customizedIconNameCaseFalse: string;
|
|
106
|
+
customizedIconColorCaseTrue: string;
|
|
107
|
+
customizedIconColorCaseFalse: string;
|
|
78
108
|
field?: undefined;
|
|
79
109
|
showBasicCheckbox?: undefined;
|
|
80
110
|
editable?: undefined;
|
|
@@ -89,6 +119,13 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
89
119
|
dataCy?: undefined;
|
|
90
120
|
btnColor?: undefined;
|
|
91
121
|
format?: undefined;
|
|
122
|
+
showBadge?: undefined;
|
|
123
|
+
badgeDataCy?: undefined;
|
|
124
|
+
badgeEmit?: undefined;
|
|
125
|
+
badgeText?: undefined;
|
|
126
|
+
badgeColor?: undefined;
|
|
127
|
+
badgeTextColor?: undefined;
|
|
128
|
+
badgeOutline?: undefined;
|
|
92
129
|
showCustomizedCheckBox?: undefined;
|
|
93
130
|
checkedIcon?: undefined;
|
|
94
131
|
uncheckedIcon?: undefined;
|
|
@@ -96,6 +133,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
96
133
|
checkBoxColorCaseFalse?: undefined;
|
|
97
134
|
checkBoxDataCy?: undefined;
|
|
98
135
|
showInputPopupEdit?: undefined;
|
|
136
|
+
showCustomizedButtonWithToolTip?: undefined;
|
|
137
|
+
toolTipText?: undefined;
|
|
99
138
|
} | {
|
|
100
139
|
name: string;
|
|
101
140
|
label: string;
|
|
@@ -111,12 +150,23 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
111
150
|
required?: undefined;
|
|
112
151
|
showBasicCheckbox?: undefined;
|
|
113
152
|
showCustomizedIcon?: undefined;
|
|
153
|
+
customizedIconNameCaseTrue?: undefined;
|
|
154
|
+
customizedIconNameCaseFalse?: undefined;
|
|
155
|
+
customizedIconColorCaseTrue?: undefined;
|
|
156
|
+
customizedIconColorCaseFalse?: undefined;
|
|
114
157
|
showCustomizedButton?: undefined;
|
|
115
158
|
btnIcon?: undefined;
|
|
116
159
|
btnEmit?: undefined;
|
|
117
160
|
dataCy?: undefined;
|
|
118
161
|
btnColor?: undefined;
|
|
119
162
|
format?: undefined;
|
|
163
|
+
showBadge?: undefined;
|
|
164
|
+
badgeDataCy?: undefined;
|
|
165
|
+
badgeEmit?: undefined;
|
|
166
|
+
badgeText?: undefined;
|
|
167
|
+
badgeColor?: undefined;
|
|
168
|
+
badgeTextColor?: undefined;
|
|
169
|
+
badgeOutline?: undefined;
|
|
120
170
|
showCustomizedCheckBox?: undefined;
|
|
121
171
|
checkedIcon?: undefined;
|
|
122
172
|
uncheckedIcon?: undefined;
|
|
@@ -124,6 +174,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
124
174
|
checkBoxColorCaseFalse?: undefined;
|
|
125
175
|
checkBoxDataCy?: undefined;
|
|
126
176
|
showInputPopupEdit?: undefined;
|
|
177
|
+
showCustomizedButtonWithToolTip?: undefined;
|
|
178
|
+
toolTipText?: undefined;
|
|
127
179
|
} | {
|
|
128
180
|
name: string;
|
|
129
181
|
label: string;
|
|
@@ -138,6 +190,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
138
190
|
required?: undefined;
|
|
139
191
|
showBasicCheckbox?: undefined;
|
|
140
192
|
showCustomizedIcon?: undefined;
|
|
193
|
+
customizedIconNameCaseTrue?: undefined;
|
|
194
|
+
customizedIconNameCaseFalse?: undefined;
|
|
195
|
+
customizedIconColorCaseTrue?: undefined;
|
|
196
|
+
customizedIconColorCaseFalse?: undefined;
|
|
141
197
|
editable?: undefined;
|
|
142
198
|
showEditIcon?: undefined;
|
|
143
199
|
popupEditEmit?: undefined;
|
|
@@ -145,6 +201,13 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
145
201
|
popupEditDataCy?: undefined;
|
|
146
202
|
popupEditMask?: undefined;
|
|
147
203
|
format?: undefined;
|
|
204
|
+
showBadge?: undefined;
|
|
205
|
+
badgeDataCy?: undefined;
|
|
206
|
+
badgeEmit?: undefined;
|
|
207
|
+
badgeText?: undefined;
|
|
208
|
+
badgeColor?: undefined;
|
|
209
|
+
badgeTextColor?: undefined;
|
|
210
|
+
badgeOutline?: undefined;
|
|
148
211
|
showCustomizedCheckBox?: undefined;
|
|
149
212
|
checkedIcon?: undefined;
|
|
150
213
|
uncheckedIcon?: undefined;
|
|
@@ -152,6 +215,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
152
215
|
checkBoxColorCaseFalse?: undefined;
|
|
153
216
|
checkBoxDataCy?: undefined;
|
|
154
217
|
showInputPopupEdit?: undefined;
|
|
218
|
+
showCustomizedButtonWithToolTip?: undefined;
|
|
219
|
+
toolTipText?: undefined;
|
|
155
220
|
} | {
|
|
156
221
|
name: string;
|
|
157
222
|
label: string;
|
|
@@ -159,9 +224,24 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
159
224
|
align: string;
|
|
160
225
|
sortable: boolean;
|
|
161
226
|
format: (val: number) => string;
|
|
227
|
+
showBadge: boolean;
|
|
228
|
+
badgeDataCy: string;
|
|
229
|
+
badgeEmit: string;
|
|
230
|
+
badgeText: (row: {
|
|
231
|
+
badgeText: string;
|
|
232
|
+
}) => string;
|
|
233
|
+
badgeColor: (row: {
|
|
234
|
+
badgeColor: string;
|
|
235
|
+
}) => string;
|
|
236
|
+
badgeTextColor: string;
|
|
237
|
+
badgeOutline: boolean;
|
|
162
238
|
required?: undefined;
|
|
163
239
|
showBasicCheckbox?: undefined;
|
|
164
240
|
showCustomizedIcon?: undefined;
|
|
241
|
+
customizedIconNameCaseTrue?: undefined;
|
|
242
|
+
customizedIconNameCaseFalse?: undefined;
|
|
243
|
+
customizedIconColorCaseTrue?: undefined;
|
|
244
|
+
customizedIconColorCaseFalse?: undefined;
|
|
165
245
|
editable?: undefined;
|
|
166
246
|
showEditIcon?: undefined;
|
|
167
247
|
popupEditEmit?: undefined;
|
|
@@ -180,6 +260,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
180
260
|
checkBoxColorCaseFalse?: undefined;
|
|
181
261
|
checkBoxDataCy?: undefined;
|
|
182
262
|
showInputPopupEdit?: undefined;
|
|
263
|
+
showCustomizedButtonWithToolTip?: undefined;
|
|
264
|
+
toolTipText?: undefined;
|
|
183
265
|
} | {
|
|
184
266
|
name: string;
|
|
185
267
|
label: string;
|
|
@@ -195,6 +277,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
195
277
|
checkBoxDataCy: string;
|
|
196
278
|
showBasicCheckbox?: undefined;
|
|
197
279
|
showCustomizedIcon?: undefined;
|
|
280
|
+
customizedIconNameCaseTrue?: undefined;
|
|
281
|
+
customizedIconNameCaseFalse?: undefined;
|
|
282
|
+
customizedIconColorCaseTrue?: undefined;
|
|
283
|
+
customizedIconColorCaseFalse?: undefined;
|
|
198
284
|
editable?: undefined;
|
|
199
285
|
showEditIcon?: undefined;
|
|
200
286
|
popupEditEmit?: undefined;
|
|
@@ -207,7 +293,16 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
207
293
|
dataCy?: undefined;
|
|
208
294
|
btnColor?: undefined;
|
|
209
295
|
format?: undefined;
|
|
296
|
+
showBadge?: undefined;
|
|
297
|
+
badgeDataCy?: undefined;
|
|
298
|
+
badgeEmit?: undefined;
|
|
299
|
+
badgeText?: undefined;
|
|
300
|
+
badgeColor?: undefined;
|
|
301
|
+
badgeTextColor?: undefined;
|
|
302
|
+
badgeOutline?: undefined;
|
|
210
303
|
showInputPopupEdit?: undefined;
|
|
304
|
+
showCustomizedButtonWithToolTip?: undefined;
|
|
305
|
+
toolTipText?: undefined;
|
|
211
306
|
} | {
|
|
212
307
|
name: string;
|
|
213
308
|
label: string;
|
|
@@ -223,6 +318,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
223
318
|
showInputPopupEdit: boolean;
|
|
224
319
|
showBasicCheckbox?: undefined;
|
|
225
320
|
showCustomizedIcon?: undefined;
|
|
321
|
+
customizedIconNameCaseTrue?: undefined;
|
|
322
|
+
customizedIconNameCaseFalse?: undefined;
|
|
323
|
+
customizedIconColorCaseTrue?: undefined;
|
|
324
|
+
customizedIconColorCaseFalse?: undefined;
|
|
226
325
|
popupEditMask?: undefined;
|
|
227
326
|
showCustomizedButton?: undefined;
|
|
228
327
|
btnIcon?: undefined;
|
|
@@ -230,21 +329,79 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
230
329
|
dataCy?: undefined;
|
|
231
330
|
btnColor?: undefined;
|
|
232
331
|
format?: undefined;
|
|
332
|
+
showBadge?: undefined;
|
|
333
|
+
badgeDataCy?: undefined;
|
|
334
|
+
badgeEmit?: undefined;
|
|
335
|
+
badgeText?: undefined;
|
|
336
|
+
badgeColor?: undefined;
|
|
337
|
+
badgeTextColor?: undefined;
|
|
338
|
+
badgeOutline?: undefined;
|
|
233
339
|
showCustomizedCheckBox?: undefined;
|
|
234
340
|
checkedIcon?: undefined;
|
|
235
341
|
uncheckedIcon?: undefined;
|
|
236
342
|
checkBoxColorCaseTrue?: undefined;
|
|
237
343
|
checkBoxColorCaseFalse?: undefined;
|
|
238
344
|
checkBoxDataCy?: undefined;
|
|
345
|
+
showCustomizedButtonWithToolTip?: undefined;
|
|
346
|
+
toolTipText?: undefined;
|
|
239
347
|
} | {
|
|
240
348
|
name: string;
|
|
241
349
|
label: string;
|
|
242
350
|
align: string;
|
|
243
351
|
field: string;
|
|
352
|
+
required: boolean;
|
|
353
|
+
sortable: boolean;
|
|
354
|
+
showCustomizedButtonWithToolTip: boolean;
|
|
355
|
+
btnIcon: string;
|
|
356
|
+
btnEmit: string;
|
|
357
|
+
dataCy: string;
|
|
358
|
+
btnColor: (row: {
|
|
359
|
+
btnColor: string;
|
|
360
|
+
}) => string;
|
|
361
|
+
toolTipText: (row: {
|
|
362
|
+
toolTipText: string;
|
|
363
|
+
}) => string;
|
|
364
|
+
showBasicCheckbox?: undefined;
|
|
365
|
+
showCustomizedIcon?: undefined;
|
|
366
|
+
customizedIconNameCaseTrue?: undefined;
|
|
367
|
+
customizedIconNameCaseFalse?: undefined;
|
|
368
|
+
customizedIconColorCaseTrue?: undefined;
|
|
369
|
+
customizedIconColorCaseFalse?: undefined;
|
|
370
|
+
editable?: undefined;
|
|
371
|
+
showEditIcon?: undefined;
|
|
372
|
+
popupEditEmit?: undefined;
|
|
373
|
+
popupEditInputtype?: undefined;
|
|
374
|
+
popupEditDataCy?: undefined;
|
|
375
|
+
popupEditMask?: undefined;
|
|
376
|
+
showCustomizedButton?: undefined;
|
|
377
|
+
format?: undefined;
|
|
378
|
+
showBadge?: undefined;
|
|
379
|
+
badgeDataCy?: undefined;
|
|
380
|
+
badgeEmit?: undefined;
|
|
381
|
+
badgeText?: undefined;
|
|
382
|
+
badgeColor?: undefined;
|
|
383
|
+
badgeTextColor?: undefined;
|
|
384
|
+
badgeOutline?: undefined;
|
|
385
|
+
showCustomizedCheckBox?: undefined;
|
|
386
|
+
checkedIcon?: undefined;
|
|
387
|
+
uncheckedIcon?: undefined;
|
|
388
|
+
checkBoxColorCaseTrue?: undefined;
|
|
389
|
+
checkBoxColorCaseFalse?: undefined;
|
|
390
|
+
checkBoxDataCy?: undefined;
|
|
391
|
+
showInputPopupEdit?: undefined;
|
|
392
|
+
} | {
|
|
393
|
+
name: string;
|
|
394
|
+
label: string;
|
|
395
|
+
field: string;
|
|
396
|
+
align: string;
|
|
244
397
|
sortable: boolean;
|
|
245
398
|
required?: undefined;
|
|
246
399
|
showBasicCheckbox?: undefined;
|
|
247
400
|
showCustomizedIcon?: undefined;
|
|
401
|
+
customizedIconNameCaseTrue?: undefined;
|
|
402
|
+
customizedIconNameCaseFalse?: undefined;
|
|
403
|
+
customizedIconColorCaseTrue?: undefined;
|
|
404
|
+
customizedIconColorCaseFalse?: undefined;
|
|
248
405
|
editable?: undefined;
|
|
249
406
|
showEditIcon?: undefined;
|
|
250
407
|
popupEditEmit?: undefined;
|
|
@@ -257,6 +414,13 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
257
414
|
dataCy?: undefined;
|
|
258
415
|
btnColor?: undefined;
|
|
259
416
|
format?: undefined;
|
|
417
|
+
showBadge?: undefined;
|
|
418
|
+
badgeDataCy?: undefined;
|
|
419
|
+
badgeEmit?: undefined;
|
|
420
|
+
badgeText?: undefined;
|
|
421
|
+
badgeColor?: undefined;
|
|
422
|
+
badgeTextColor?: undefined;
|
|
423
|
+
badgeOutline?: undefined;
|
|
260
424
|
showCustomizedCheckBox?: undefined;
|
|
261
425
|
checkedIcon?: undefined;
|
|
262
426
|
uncheckedIcon?: undefined;
|
|
@@ -264,6 +428,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
264
428
|
checkBoxColorCaseFalse?: undefined;
|
|
265
429
|
checkBoxDataCy?: undefined;
|
|
266
430
|
showInputPopupEdit?: undefined;
|
|
431
|
+
showCustomizedButtonWithToolTip?: undefined;
|
|
432
|
+
toolTipText?: undefined;
|
|
267
433
|
})[];
|
|
268
434
|
rows: never[];
|
|
269
435
|
rowsData: {
|
|
@@ -283,6 +449,9 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
283
449
|
}[];
|
|
284
450
|
}, {}, {
|
|
285
451
|
getRows(): void;
|
|
452
|
+
getBadgeColor(carbs: number): "secondary" | "negative";
|
|
453
|
+
getBadgeText(carbs: number): "header.hello" | "global.total";
|
|
454
|
+
onClickBadge(rows: object[]): void;
|
|
286
455
|
onUpdateBasicCheckboxValue(rows: object[]): void;
|
|
287
456
|
onUpdateCustomizedCheckboxValue(rows: object[]): void;
|
|
288
457
|
setItemNotFound(rows: object[]): void;
|
|
@@ -385,6 +554,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
385
554
|
onSaveValuePopupEdit(row: object): void;
|
|
386
555
|
onUpdateBasicCheckboxValue(row: object): void;
|
|
387
556
|
onClickButton(emit: "onClickButton", row: object): void;
|
|
557
|
+
onClickButtonWithToolTip(row: object): void;
|
|
388
558
|
onRowClick(row: object): void;
|
|
389
559
|
deleteItem(row: object): void;
|
|
390
560
|
onUpdateCustomizedCheckboxValue(row: object): void;
|
|
@@ -403,7 +573,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
403
573
|
search: string;
|
|
404
574
|
prepared: boolean;
|
|
405
575
|
}): any;
|
|
406
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onRowClick")[], "onSelectVisibleColumns" | "onClickButton" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onRowClick", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
576
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickButtonWithToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick")[], "onSelectVisibleColumns" | "onClickButton" | "onClickButtonWithToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
407
577
|
columns: {
|
|
408
578
|
type: () => object[];
|
|
409
579
|
required: true;
|
|
@@ -474,6 +644,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
474
644
|
}>> & Readonly<{
|
|
475
645
|
onOnSelectVisibleColumns?: ((...args: any[]) => any) | undefined;
|
|
476
646
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
647
|
+
onOnClickButtonWithToolTip?: ((...args: any[]) => any) | undefined;
|
|
477
648
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
478
649
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
479
650
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
@@ -481,6 +652,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
481
652
|
onDeleteItem?: ((...args: any[]) => any) | undefined;
|
|
482
653
|
onOpenModalWithTable?: ((...args: any[]) => any) | undefined;
|
|
483
654
|
onSetItemNotFound?: ((...args: any[]) => any) | undefined;
|
|
655
|
+
onOnClickSeeTaskDetails?: ((...args: any[]) => any) | undefined;
|
|
656
|
+
onStartMaintenanceTicket?: ((...args: any[]) => any) | undefined;
|
|
657
|
+
onPauseMaintenanceTicket?: ((...args: any[]) => any) | undefined;
|
|
658
|
+
onFinishMaintenanceTicket?: ((...args: any[]) => any) | undefined;
|
|
484
659
|
onOnRowClick?: ((...args: any[]) => any) | undefined;
|
|
485
660
|
}>, {
|
|
486
661
|
selectionType: "none" | "multiple" | "single";
|
|
@@ -573,8 +748,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
573
748
|
showCustomizedCheckBox: boolean;
|
|
574
749
|
showCustomizedIcon: boolean;
|
|
575
750
|
showColumButton: boolean;
|
|
751
|
+
showBadge: boolean;
|
|
752
|
+
showCustomizedButtonWithToolTip: boolean;
|
|
576
753
|
}): boolean;
|
|
577
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue")[], "onClickButton" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
754
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickButtonWithToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue")[], "onClickButton" | "onClickButtonWithToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
578
755
|
tableProps: {
|
|
579
756
|
type: ObjectConstructor;
|
|
580
757
|
required: true;
|
|
@@ -589,6 +766,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
589
766
|
};
|
|
590
767
|
}>> & Readonly<{
|
|
591
768
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
769
|
+
onOnClickButtonWithToolTip?: ((...args: any[]) => any) | undefined;
|
|
592
770
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
593
771
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
594
772
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
@@ -861,6 +1039,102 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
861
1039
|
}>> & Readonly<{
|
|
862
1040
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
863
1041
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1042
|
+
CustomizedBadge: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1043
|
+
dataCy: {
|
|
1044
|
+
type: StringConstructor;
|
|
1045
|
+
required: true;
|
|
1046
|
+
};
|
|
1047
|
+
badgeText: {
|
|
1048
|
+
type: StringConstructor;
|
|
1049
|
+
required: true;
|
|
1050
|
+
};
|
|
1051
|
+
badgeColor: {
|
|
1052
|
+
type: StringConstructor;
|
|
1053
|
+
required: true;
|
|
1054
|
+
};
|
|
1055
|
+
badgeTextColor: {
|
|
1056
|
+
type: StringConstructor;
|
|
1057
|
+
required: true;
|
|
1058
|
+
};
|
|
1059
|
+
badgeOutline: {
|
|
1060
|
+
type: BooleanConstructor;
|
|
1061
|
+
required: true;
|
|
1062
|
+
};
|
|
1063
|
+
badgeRounded: {
|
|
1064
|
+
type: BooleanConstructor;
|
|
1065
|
+
required: true;
|
|
1066
|
+
};
|
|
1067
|
+
badgeTransparent: {
|
|
1068
|
+
type: BooleanConstructor;
|
|
1069
|
+
required: true;
|
|
1070
|
+
};
|
|
1071
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1072
|
+
dataCy: {
|
|
1073
|
+
type: StringConstructor;
|
|
1074
|
+
required: true;
|
|
1075
|
+
};
|
|
1076
|
+
badgeText: {
|
|
1077
|
+
type: StringConstructor;
|
|
1078
|
+
required: true;
|
|
1079
|
+
};
|
|
1080
|
+
badgeColor: {
|
|
1081
|
+
type: StringConstructor;
|
|
1082
|
+
required: true;
|
|
1083
|
+
};
|
|
1084
|
+
badgeTextColor: {
|
|
1085
|
+
type: StringConstructor;
|
|
1086
|
+
required: true;
|
|
1087
|
+
};
|
|
1088
|
+
badgeOutline: {
|
|
1089
|
+
type: BooleanConstructor;
|
|
1090
|
+
required: true;
|
|
1091
|
+
};
|
|
1092
|
+
badgeRounded: {
|
|
1093
|
+
type: BooleanConstructor;
|
|
1094
|
+
required: true;
|
|
1095
|
+
};
|
|
1096
|
+
badgeTransparent: {
|
|
1097
|
+
type: BooleanConstructor;
|
|
1098
|
+
required: true;
|
|
1099
|
+
};
|
|
1100
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1101
|
+
CustomizedButtonWithToolTip: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1102
|
+
dataCy: {
|
|
1103
|
+
type: StringConstructor;
|
|
1104
|
+
required: true;
|
|
1105
|
+
};
|
|
1106
|
+
btnColor: {
|
|
1107
|
+
type: StringConstructor;
|
|
1108
|
+
required: true;
|
|
1109
|
+
};
|
|
1110
|
+
btnIcon: {
|
|
1111
|
+
type: StringConstructor;
|
|
1112
|
+
required: true;
|
|
1113
|
+
};
|
|
1114
|
+
toolTipText: {
|
|
1115
|
+
type: StringConstructor;
|
|
1116
|
+
required: true;
|
|
1117
|
+
};
|
|
1118
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClickButtonWithToolTip"[], "onClickButtonWithToolTip", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1119
|
+
dataCy: {
|
|
1120
|
+
type: StringConstructor;
|
|
1121
|
+
required: true;
|
|
1122
|
+
};
|
|
1123
|
+
btnColor: {
|
|
1124
|
+
type: StringConstructor;
|
|
1125
|
+
required: true;
|
|
1126
|
+
};
|
|
1127
|
+
btnIcon: {
|
|
1128
|
+
type: StringConstructor;
|
|
1129
|
+
required: true;
|
|
1130
|
+
};
|
|
1131
|
+
toolTipText: {
|
|
1132
|
+
type: StringConstructor;
|
|
1133
|
+
required: true;
|
|
1134
|
+
};
|
|
1135
|
+
}>> & Readonly<{
|
|
1136
|
+
onOnClickButtonWithToolTip?: ((...args: any[]) => any) | undefined;
|
|
1137
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
864
1138
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
865
1139
|
TableSlotGrid: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
866
1140
|
tableProps: {
|
|
@@ -887,8 +1161,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
887
1161
|
showCustomizedCheckBox: boolean;
|
|
888
1162
|
showCustomizedIcon: boolean;
|
|
889
1163
|
showColumButton: boolean;
|
|
1164
|
+
showBadge: boolean;
|
|
1165
|
+
showCustomizedButtonWithToolTip: boolean;
|
|
890
1166
|
}): boolean;
|
|
891
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue")[], "onClickButton" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1167
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickButtonWithToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue")[], "onClickButton" | "onClickButtonWithToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
892
1168
|
tableProps: {
|
|
893
1169
|
type: ObjectConstructor;
|
|
894
1170
|
required: true;
|
|
@@ -906,6 +1182,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
906
1182
|
};
|
|
907
1183
|
}>> & Readonly<{
|
|
908
1184
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
1185
|
+
onOnClickButtonWithToolTip?: ((...args: any[]) => any) | undefined;
|
|
909
1186
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
910
1187
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
911
1188
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
@@ -1178,6 +1455,102 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1178
1455
|
}>> & Readonly<{
|
|
1179
1456
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
1180
1457
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1458
|
+
CustomizedBadge: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1459
|
+
dataCy: {
|
|
1460
|
+
type: StringConstructor;
|
|
1461
|
+
required: true;
|
|
1462
|
+
};
|
|
1463
|
+
badgeText: {
|
|
1464
|
+
type: StringConstructor;
|
|
1465
|
+
required: true;
|
|
1466
|
+
};
|
|
1467
|
+
badgeColor: {
|
|
1468
|
+
type: StringConstructor;
|
|
1469
|
+
required: true;
|
|
1470
|
+
};
|
|
1471
|
+
badgeTextColor: {
|
|
1472
|
+
type: StringConstructor;
|
|
1473
|
+
required: true;
|
|
1474
|
+
};
|
|
1475
|
+
badgeOutline: {
|
|
1476
|
+
type: BooleanConstructor;
|
|
1477
|
+
required: true;
|
|
1478
|
+
};
|
|
1479
|
+
badgeRounded: {
|
|
1480
|
+
type: BooleanConstructor;
|
|
1481
|
+
required: true;
|
|
1482
|
+
};
|
|
1483
|
+
badgeTransparent: {
|
|
1484
|
+
type: BooleanConstructor;
|
|
1485
|
+
required: true;
|
|
1486
|
+
};
|
|
1487
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1488
|
+
dataCy: {
|
|
1489
|
+
type: StringConstructor;
|
|
1490
|
+
required: true;
|
|
1491
|
+
};
|
|
1492
|
+
badgeText: {
|
|
1493
|
+
type: StringConstructor;
|
|
1494
|
+
required: true;
|
|
1495
|
+
};
|
|
1496
|
+
badgeColor: {
|
|
1497
|
+
type: StringConstructor;
|
|
1498
|
+
required: true;
|
|
1499
|
+
};
|
|
1500
|
+
badgeTextColor: {
|
|
1501
|
+
type: StringConstructor;
|
|
1502
|
+
required: true;
|
|
1503
|
+
};
|
|
1504
|
+
badgeOutline: {
|
|
1505
|
+
type: BooleanConstructor;
|
|
1506
|
+
required: true;
|
|
1507
|
+
};
|
|
1508
|
+
badgeRounded: {
|
|
1509
|
+
type: BooleanConstructor;
|
|
1510
|
+
required: true;
|
|
1511
|
+
};
|
|
1512
|
+
badgeTransparent: {
|
|
1513
|
+
type: BooleanConstructor;
|
|
1514
|
+
required: true;
|
|
1515
|
+
};
|
|
1516
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1517
|
+
CustomizedButtonWithToolTip: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1518
|
+
dataCy: {
|
|
1519
|
+
type: StringConstructor;
|
|
1520
|
+
required: true;
|
|
1521
|
+
};
|
|
1522
|
+
btnColor: {
|
|
1523
|
+
type: StringConstructor;
|
|
1524
|
+
required: true;
|
|
1525
|
+
};
|
|
1526
|
+
btnIcon: {
|
|
1527
|
+
type: StringConstructor;
|
|
1528
|
+
required: true;
|
|
1529
|
+
};
|
|
1530
|
+
toolTipText: {
|
|
1531
|
+
type: StringConstructor;
|
|
1532
|
+
required: true;
|
|
1533
|
+
};
|
|
1534
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClickButtonWithToolTip"[], "onClickButtonWithToolTip", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1535
|
+
dataCy: {
|
|
1536
|
+
type: StringConstructor;
|
|
1537
|
+
required: true;
|
|
1538
|
+
};
|
|
1539
|
+
btnColor: {
|
|
1540
|
+
type: StringConstructor;
|
|
1541
|
+
required: true;
|
|
1542
|
+
};
|
|
1543
|
+
btnIcon: {
|
|
1544
|
+
type: StringConstructor;
|
|
1545
|
+
required: true;
|
|
1546
|
+
};
|
|
1547
|
+
toolTipText: {
|
|
1548
|
+
type: StringConstructor;
|
|
1549
|
+
required: true;
|
|
1550
|
+
};
|
|
1551
|
+
}>> & Readonly<{
|
|
1552
|
+
onOnClickButtonWithToolTip?: ((...args: any[]) => any) | undefined;
|
|
1553
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1181
1554
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1182
1555
|
TableFilter: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1183
1556
|
store: {
|