quasar-factory-lib 0.0.65 → 0.0.67
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 +25 -23
- package/dist/components/Table/components/{CustomizedButtonWithToolTip.vue.d.ts → IConWithToolTip.vue.d.ts} +6 -6
- package/dist/components/Table/components/TableSlotBody.vue.d.ts +10 -10
- package/dist/components/Table/components/TableSlotGrid.vue.d.ts +12 -10
- package/dist/layouts/PdaLayout.vue.d.ts +25 -23
- package/dist/pages/TablePage.vue.d.ts +86 -48
- package/dist/quasar-factory-lib.js +1662 -1663
- package/dist/quasar-factory-lib.umd.cjs +6 -6
- package/package.json +1 -1
- package/src/components/Table/Table.vue +5 -5
- package/src/components/Table/components/{CustomizedButtonWithToolTip.vue → IConWithToolTip.vue} +11 -13
- package/src/components/Table/components/TableSlotBody.vue +14 -14
- package/src/components/Table/components/TableSlotGrid.vue +17 -16
- package/src/pages/TablePage.vue +20 -13
|
@@ -93,7 +93,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
93
93
|
onSaveValuePopupEdit(row: object): void;
|
|
94
94
|
onUpdateBasicCheckboxValue(row: object): void;
|
|
95
95
|
onClickButton(emit: "onClickButton", row: object): void;
|
|
96
|
-
|
|
96
|
+
onClickIconToolTip(emit: "onClickIconToolTip", row: object): void;
|
|
97
97
|
onRowClick(row: object): void;
|
|
98
98
|
deleteItem(row: object): void;
|
|
99
99
|
onUpdateCustomizedCheckboxValue(row: object): void;
|
|
@@ -112,7 +112,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
112
112
|
search: string;
|
|
113
113
|
prepared: boolean;
|
|
114
114
|
}): any;
|
|
115
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "
|
|
115
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
116
116
|
columns: {
|
|
117
117
|
type: () => object[];
|
|
118
118
|
required: true;
|
|
@@ -183,7 +183,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
183
183
|
}>> & Readonly<{
|
|
184
184
|
onOnSelectVisibleColumns?: ((...args: any[]) => any) | undefined;
|
|
185
185
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
186
|
-
|
|
186
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
187
187
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
188
188
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
189
189
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
@@ -288,9 +288,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
288
288
|
showCustomizedIcon: boolean;
|
|
289
289
|
showColumButton: boolean;
|
|
290
290
|
showBadge: boolean;
|
|
291
|
-
|
|
291
|
+
showIconWithToolTip: boolean;
|
|
292
292
|
}): boolean;
|
|
293
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "
|
|
293
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
294
294
|
tableProps: {
|
|
295
295
|
type: ObjectConstructor;
|
|
296
296
|
required: true;
|
|
@@ -305,7 +305,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
305
305
|
};
|
|
306
306
|
}>> & Readonly<{
|
|
307
307
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
308
|
-
|
|
308
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
309
309
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
310
310
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
311
311
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
@@ -645,16 +645,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
645
645
|
required: true;
|
|
646
646
|
};
|
|
647
647
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
648
|
-
|
|
648
|
+
IconWithToolTip: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
649
649
|
dataCy: {
|
|
650
650
|
type: StringConstructor;
|
|
651
651
|
required: true;
|
|
652
652
|
};
|
|
653
|
-
|
|
653
|
+
iconColor: {
|
|
654
654
|
type: StringConstructor;
|
|
655
655
|
required: true;
|
|
656
656
|
};
|
|
657
|
-
|
|
657
|
+
iconName: {
|
|
658
658
|
type: StringConstructor;
|
|
659
659
|
required: true;
|
|
660
660
|
};
|
|
@@ -662,16 +662,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
662
662
|
type: StringConstructor;
|
|
663
663
|
required: true;
|
|
664
664
|
};
|
|
665
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "
|
|
665
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClickIconToolTip"[], "onClickIconToolTip", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
666
666
|
dataCy: {
|
|
667
667
|
type: StringConstructor;
|
|
668
668
|
required: true;
|
|
669
669
|
};
|
|
670
|
-
|
|
670
|
+
iconColor: {
|
|
671
671
|
type: StringConstructor;
|
|
672
672
|
required: true;
|
|
673
673
|
};
|
|
674
|
-
|
|
674
|
+
iconName: {
|
|
675
675
|
type: StringConstructor;
|
|
676
676
|
required: true;
|
|
677
677
|
};
|
|
@@ -680,7 +680,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
680
680
|
required: true;
|
|
681
681
|
};
|
|
682
682
|
}>> & Readonly<{
|
|
683
|
-
|
|
683
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
684
684
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
685
685
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
686
686
|
TableSlotGrid: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -709,9 +709,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
709
709
|
showCustomizedIcon: boolean;
|
|
710
710
|
showColumButton: boolean;
|
|
711
711
|
showBadge: boolean;
|
|
712
|
-
|
|
712
|
+
showIconWithToolTip: boolean;
|
|
713
|
+
showCustomizedButton: boolean;
|
|
713
714
|
}): boolean;
|
|
714
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "
|
|
715
|
+
}, 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<{
|
|
715
716
|
tableProps: {
|
|
716
717
|
type: ObjectConstructor;
|
|
717
718
|
required: true;
|
|
@@ -729,10 +730,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
729
730
|
};
|
|
730
731
|
}>> & Readonly<{
|
|
731
732
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
732
|
-
|
|
733
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
733
734
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
734
735
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
735
736
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
737
|
+
onOnClickIcon?: ((...args: any[]) => any) | undefined;
|
|
736
738
|
}>, {
|
|
737
739
|
selectionType: string;
|
|
738
740
|
getCellClass: Function;
|
|
@@ -1069,16 +1071,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1069
1071
|
required: true;
|
|
1070
1072
|
};
|
|
1071
1073
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1072
|
-
|
|
1074
|
+
IconWithToolTip: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1073
1075
|
dataCy: {
|
|
1074
1076
|
type: StringConstructor;
|
|
1075
1077
|
required: true;
|
|
1076
1078
|
};
|
|
1077
|
-
|
|
1079
|
+
iconColor: {
|
|
1078
1080
|
type: StringConstructor;
|
|
1079
1081
|
required: true;
|
|
1080
1082
|
};
|
|
1081
|
-
|
|
1083
|
+
iconName: {
|
|
1082
1084
|
type: StringConstructor;
|
|
1083
1085
|
required: true;
|
|
1084
1086
|
};
|
|
@@ -1086,16 +1088,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1086
1088
|
type: StringConstructor;
|
|
1087
1089
|
required: true;
|
|
1088
1090
|
};
|
|
1089
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "
|
|
1091
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClickIconToolTip"[], "onClickIconToolTip", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1090
1092
|
dataCy: {
|
|
1091
1093
|
type: StringConstructor;
|
|
1092
1094
|
required: true;
|
|
1093
1095
|
};
|
|
1094
|
-
|
|
1096
|
+
iconColor: {
|
|
1095
1097
|
type: StringConstructor;
|
|
1096
1098
|
required: true;
|
|
1097
1099
|
};
|
|
1098
|
-
|
|
1100
|
+
iconName: {
|
|
1099
1101
|
type: StringConstructor;
|
|
1100
1102
|
required: true;
|
|
1101
1103
|
};
|
|
@@ -1104,7 +1106,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1104
1106
|
required: true;
|
|
1105
1107
|
};
|
|
1106
1108
|
}>> & Readonly<{
|
|
1107
|
-
|
|
1109
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
1108
1110
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1109
1111
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1110
1112
|
TableFilter: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -3,11 +3,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
|
|
6
|
+
iconColor: {
|
|
7
7
|
type: StringConstructor;
|
|
8
8
|
required: true;
|
|
9
9
|
};
|
|
10
|
-
|
|
10
|
+
iconName: {
|
|
11
11
|
type: StringConstructor;
|
|
12
12
|
required: true;
|
|
13
13
|
};
|
|
@@ -15,16 +15,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
15
15
|
type: StringConstructor;
|
|
16
16
|
required: true;
|
|
17
17
|
};
|
|
18
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "
|
|
18
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClickIconToolTip"[], "onClickIconToolTip", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
19
|
dataCy: {
|
|
20
20
|
type: StringConstructor;
|
|
21
21
|
required: true;
|
|
22
22
|
};
|
|
23
|
-
|
|
23
|
+
iconColor: {
|
|
24
24
|
type: StringConstructor;
|
|
25
25
|
required: true;
|
|
26
26
|
};
|
|
27
|
-
|
|
27
|
+
iconName: {
|
|
28
28
|
type: StringConstructor;
|
|
29
29
|
required: true;
|
|
30
30
|
};
|
|
@@ -33,6 +33,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
33
33
|
required: true;
|
|
34
34
|
};
|
|
35
35
|
}>> & Readonly<{
|
|
36
|
-
|
|
36
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
37
37
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
38
38
|
export default _default;
|
|
@@ -20,9 +20,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
20
20
|
showCustomizedIcon: boolean;
|
|
21
21
|
showColumButton: boolean;
|
|
22
22
|
showBadge: boolean;
|
|
23
|
-
|
|
23
|
+
showIconWithToolTip: boolean;
|
|
24
24
|
}): boolean;
|
|
25
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "
|
|
25
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
26
|
tableProps: {
|
|
27
27
|
type: ObjectConstructor;
|
|
28
28
|
required: true;
|
|
@@ -37,7 +37,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
37
37
|
};
|
|
38
38
|
}>> & Readonly<{
|
|
39
39
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
40
|
-
|
|
40
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
41
41
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
42
42
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
43
43
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
@@ -377,16 +377,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
377
377
|
required: true;
|
|
378
378
|
};
|
|
379
379
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
380
|
-
|
|
380
|
+
IconWithToolTip: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
381
381
|
dataCy: {
|
|
382
382
|
type: StringConstructor;
|
|
383
383
|
required: true;
|
|
384
384
|
};
|
|
385
|
-
|
|
385
|
+
iconColor: {
|
|
386
386
|
type: StringConstructor;
|
|
387
387
|
required: true;
|
|
388
388
|
};
|
|
389
|
-
|
|
389
|
+
iconName: {
|
|
390
390
|
type: StringConstructor;
|
|
391
391
|
required: true;
|
|
392
392
|
};
|
|
@@ -394,16 +394,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
394
394
|
type: StringConstructor;
|
|
395
395
|
required: true;
|
|
396
396
|
};
|
|
397
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "
|
|
397
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClickIconToolTip"[], "onClickIconToolTip", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
398
398
|
dataCy: {
|
|
399
399
|
type: StringConstructor;
|
|
400
400
|
required: true;
|
|
401
401
|
};
|
|
402
|
-
|
|
402
|
+
iconColor: {
|
|
403
403
|
type: StringConstructor;
|
|
404
404
|
required: true;
|
|
405
405
|
};
|
|
406
|
-
|
|
406
|
+
iconName: {
|
|
407
407
|
type: StringConstructor;
|
|
408
408
|
required: true;
|
|
409
409
|
};
|
|
@@ -412,7 +412,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
412
412
|
required: true;
|
|
413
413
|
};
|
|
414
414
|
}>> & Readonly<{
|
|
415
|
-
|
|
415
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
416
416
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
417
417
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
418
418
|
export default _default;
|
|
@@ -24,9 +24,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
24
24
|
showCustomizedIcon: boolean;
|
|
25
25
|
showColumButton: boolean;
|
|
26
26
|
showBadge: boolean;
|
|
27
|
-
|
|
27
|
+
showIconWithToolTip: boolean;
|
|
28
|
+
showCustomizedButton: boolean;
|
|
28
29
|
}): boolean;
|
|
29
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "
|
|
30
|
+
}, 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<{
|
|
30
31
|
tableProps: {
|
|
31
32
|
type: ObjectConstructor;
|
|
32
33
|
required: true;
|
|
@@ -44,10 +45,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
44
45
|
};
|
|
45
46
|
}>> & Readonly<{
|
|
46
47
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
47
|
-
|
|
48
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
48
49
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
49
50
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
50
51
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
52
|
+
onOnClickIcon?: ((...args: any[]) => any) | undefined;
|
|
51
53
|
}>, {
|
|
52
54
|
selectionType: string;
|
|
53
55
|
getCellClass: Function;
|
|
@@ -384,16 +386,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
384
386
|
required: true;
|
|
385
387
|
};
|
|
386
388
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
387
|
-
|
|
389
|
+
IconWithToolTip: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
388
390
|
dataCy: {
|
|
389
391
|
type: StringConstructor;
|
|
390
392
|
required: true;
|
|
391
393
|
};
|
|
392
|
-
|
|
394
|
+
iconColor: {
|
|
393
395
|
type: StringConstructor;
|
|
394
396
|
required: true;
|
|
395
397
|
};
|
|
396
|
-
|
|
398
|
+
iconName: {
|
|
397
399
|
type: StringConstructor;
|
|
398
400
|
required: true;
|
|
399
401
|
};
|
|
@@ -401,16 +403,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
401
403
|
type: StringConstructor;
|
|
402
404
|
required: true;
|
|
403
405
|
};
|
|
404
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "
|
|
406
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClickIconToolTip"[], "onClickIconToolTip", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
405
407
|
dataCy: {
|
|
406
408
|
type: StringConstructor;
|
|
407
409
|
required: true;
|
|
408
410
|
};
|
|
409
|
-
|
|
411
|
+
iconColor: {
|
|
410
412
|
type: StringConstructor;
|
|
411
413
|
required: true;
|
|
412
414
|
};
|
|
413
|
-
|
|
415
|
+
iconName: {
|
|
414
416
|
type: StringConstructor;
|
|
415
417
|
required: true;
|
|
416
418
|
};
|
|
@@ -419,7 +421,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
419
421
|
required: true;
|
|
420
422
|
};
|
|
421
423
|
}>> & Readonly<{
|
|
422
|
-
|
|
424
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
423
425
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
424
426
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
425
427
|
export default _default;
|
|
@@ -491,7 +491,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
491
491
|
onSaveValuePopupEdit(row: object): void;
|
|
492
492
|
onUpdateBasicCheckboxValue(row: object): void;
|
|
493
493
|
onClickButton(emit: "onClickButton", row: object): void;
|
|
494
|
-
|
|
494
|
+
onClickIconToolTip(emit: "onClickIconToolTip", row: object): void;
|
|
495
495
|
onRowClick(row: object): void;
|
|
496
496
|
deleteItem(row: object): void;
|
|
497
497
|
onUpdateCustomizedCheckboxValue(row: object): void;
|
|
@@ -510,7 +510,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
510
510
|
search: string;
|
|
511
511
|
prepared: boolean;
|
|
512
512
|
}): any;
|
|
513
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "
|
|
513
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
514
514
|
columns: {
|
|
515
515
|
type: () => object[];
|
|
516
516
|
required: true;
|
|
@@ -581,7 +581,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
581
581
|
}>> & Readonly<{
|
|
582
582
|
onOnSelectVisibleColumns?: ((...args: any[]) => any) | undefined;
|
|
583
583
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
584
|
-
|
|
584
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
585
585
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
586
586
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
587
587
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
@@ -686,9 +686,9 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
686
686
|
showCustomizedIcon: boolean;
|
|
687
687
|
showColumButton: boolean;
|
|
688
688
|
showBadge: boolean;
|
|
689
|
-
|
|
689
|
+
showIconWithToolTip: boolean;
|
|
690
690
|
}): boolean;
|
|
691
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "
|
|
691
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue")[], "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
692
692
|
tableProps: {
|
|
693
693
|
type: ObjectConstructor;
|
|
694
694
|
required: true;
|
|
@@ -703,7 +703,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
703
703
|
};
|
|
704
704
|
}>> & Readonly<{
|
|
705
705
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
706
|
-
|
|
706
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
707
707
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
708
708
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
709
709
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
@@ -1043,16 +1043,16 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1043
1043
|
required: true;
|
|
1044
1044
|
};
|
|
1045
1045
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1046
|
-
|
|
1046
|
+
IconWithToolTip: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1047
1047
|
dataCy: {
|
|
1048
1048
|
type: StringConstructor;
|
|
1049
1049
|
required: true;
|
|
1050
1050
|
};
|
|
1051
|
-
|
|
1051
|
+
iconColor: {
|
|
1052
1052
|
type: StringConstructor;
|
|
1053
1053
|
required: true;
|
|
1054
1054
|
};
|
|
1055
|
-
|
|
1055
|
+
iconName: {
|
|
1056
1056
|
type: StringConstructor;
|
|
1057
1057
|
required: true;
|
|
1058
1058
|
};
|
|
@@ -1060,16 +1060,16 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1060
1060
|
type: StringConstructor;
|
|
1061
1061
|
required: true;
|
|
1062
1062
|
};
|
|
1063
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "
|
|
1063
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClickIconToolTip"[], "onClickIconToolTip", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1064
1064
|
dataCy: {
|
|
1065
1065
|
type: StringConstructor;
|
|
1066
1066
|
required: true;
|
|
1067
1067
|
};
|
|
1068
|
-
|
|
1068
|
+
iconColor: {
|
|
1069
1069
|
type: StringConstructor;
|
|
1070
1070
|
required: true;
|
|
1071
1071
|
};
|
|
1072
|
-
|
|
1072
|
+
iconName: {
|
|
1073
1073
|
type: StringConstructor;
|
|
1074
1074
|
required: true;
|
|
1075
1075
|
};
|
|
@@ -1078,7 +1078,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1078
1078
|
required: true;
|
|
1079
1079
|
};
|
|
1080
1080
|
}>> & Readonly<{
|
|
1081
|
-
|
|
1081
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
1082
1082
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1083
1083
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1084
1084
|
TableSlotGrid: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -1107,9 +1107,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1107
1107
|
showCustomizedIcon: boolean;
|
|
1108
1108
|
showColumButton: boolean;
|
|
1109
1109
|
showBadge: boolean;
|
|
1110
|
-
|
|
1110
|
+
showIconWithToolTip: boolean;
|
|
1111
|
+
showCustomizedButton: boolean;
|
|
1111
1112
|
}): boolean;
|
|
1112
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickButton" | "
|
|
1113
|
+
}, 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<{
|
|
1113
1114
|
tableProps: {
|
|
1114
1115
|
type: ObjectConstructor;
|
|
1115
1116
|
required: true;
|
|
@@ -1127,10 +1128,11 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1127
1128
|
};
|
|
1128
1129
|
}>> & Readonly<{
|
|
1129
1130
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
1130
|
-
|
|
1131
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
1131
1132
|
onOnSaveValuePopupEdit?: ((...args: any[]) => any) | undefined;
|
|
1132
1133
|
onOnUpdateBasicCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1133
1134
|
onOnUpdateCustomizedCheckboxValue?: ((...args: any[]) => any) | undefined;
|
|
1135
|
+
onOnClickIcon?: ((...args: any[]) => any) | undefined;
|
|
1134
1136
|
}>, {
|
|
1135
1137
|
selectionType: string;
|
|
1136
1138
|
getCellClass: Function;
|
|
@@ -1467,16 +1469,16 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1467
1469
|
required: true;
|
|
1468
1470
|
};
|
|
1469
1471
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1470
|
-
|
|
1472
|
+
IconWithToolTip: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1471
1473
|
dataCy: {
|
|
1472
1474
|
type: StringConstructor;
|
|
1473
1475
|
required: true;
|
|
1474
1476
|
};
|
|
1475
|
-
|
|
1477
|
+
iconColor: {
|
|
1476
1478
|
type: StringConstructor;
|
|
1477
1479
|
required: true;
|
|
1478
1480
|
};
|
|
1479
|
-
|
|
1481
|
+
iconName: {
|
|
1480
1482
|
type: StringConstructor;
|
|
1481
1483
|
required: true;
|
|
1482
1484
|
};
|
|
@@ -1484,16 +1486,16 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1484
1486
|
type: StringConstructor;
|
|
1485
1487
|
required: true;
|
|
1486
1488
|
};
|
|
1487
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "
|
|
1489
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClickIconToolTip"[], "onClickIconToolTip", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1488
1490
|
dataCy: {
|
|
1489
1491
|
type: StringConstructor;
|
|
1490
1492
|
required: true;
|
|
1491
1493
|
};
|
|
1492
|
-
|
|
1494
|
+
iconColor: {
|
|
1493
1495
|
type: StringConstructor;
|
|
1494
1496
|
required: true;
|
|
1495
1497
|
};
|
|
1496
|
-
|
|
1498
|
+
iconName: {
|
|
1497
1499
|
type: StringConstructor;
|
|
1498
1500
|
required: true;
|
|
1499
1501
|
};
|
|
@@ -1502,7 +1504,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1502
1504
|
required: true;
|
|
1503
1505
|
};
|
|
1504
1506
|
}>> & Readonly<{
|
|
1505
|
-
|
|
1507
|
+
onOnClickIconToolTip?: ((...args: any[]) => any) | undefined;
|
|
1506
1508
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1507
1509
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1508
1510
|
TableFilter: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|