quasar-factory-lib 0.0.13 → 0.0.15
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/Alert/Alert.vue.d.ts +74 -0
- package/dist/components/Alert/index.d.ts +8 -0
- package/dist/components/Confirm/Confirm.vue.d.ts +120 -0
- package/dist/components/Confirm/index.d.ts +8 -0
- package/dist/components/Table/utils/infiniteScroll.d.ts +2 -2
- package/dist/pages/AlertPage.vue.d.ts +76 -0
- package/dist/pages/ConfirmPage.vue.d.ts +125 -0
- package/dist/quasar-factory-lib.js +671 -670
- package/dist/quasar-factory-lib.umd.cjs +8 -8
- package/dist/style.css +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/infiniteScroll.d.ts +2 -2
- package/package.json +1 -1
- package/src/components/Alert/Alert.vue +80 -0
- package/src/components/Alert/index.ts +18 -0
- package/src/components/Confirm/Confirm.vue +123 -0
- package/src/components/Confirm/index.ts +18 -0
- package/src/components/Table/components/TableSlotGrid.vue +1 -0
- package/src/components/Table/css/table.css +1 -0
- package/src/components/Table/utils/filterMethod.ts +3 -3
- package/src/components/Table/utils/infiniteScroll.ts +3 -3
- package/src/css/app.css +3 -0
- package/src/layouts/MenuLayout.vue +13 -1
- package/src/pages/AlertPage.vue +34 -0
- package/src/pages/ConfirmPage.vue +52 -0
- package/src/pages/TablePage.vue +1 -1
- package/src/router/routes.ts +8 -0
- package/src/utils/filterMethod.ts +3 -3
- package/src/utils/index.ts +1 -7
- package/src/utils/infiniteScroll.ts +2 -2
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
dataCy: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
persistent: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
icon: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
iconSize: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
iconColor: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
btnColor: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
btnLabel: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
}>, {}, {
|
|
31
|
+
showPopUp: boolean;
|
|
32
|
+
message: string;
|
|
33
|
+
}, {}, {
|
|
34
|
+
showPopupMessage(message: string): void;
|
|
35
|
+
closePopup(): void;
|
|
36
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
37
|
+
dataCy: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
persistent: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
icon: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
iconSize: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
iconColor: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
btnColor: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
default: string;
|
|
60
|
+
};
|
|
61
|
+
btnLabel: {
|
|
62
|
+
type: StringConstructor;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
}>> & Readonly<{}>, {
|
|
66
|
+
icon: string;
|
|
67
|
+
dataCy: string;
|
|
68
|
+
persistent: boolean;
|
|
69
|
+
iconColor: string;
|
|
70
|
+
iconSize: string;
|
|
71
|
+
btnColor: string;
|
|
72
|
+
btnLabel: string;
|
|
73
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
74
|
+
export default _default;
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
persistent: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
dataCy: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
cancelBtnColor: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
labelBtnCancel: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
confirmBtnColor: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
labelBtnConfirm: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
avatarIcon: {
|
|
31
|
+
type: StringConstructor;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
34
|
+
avatarSize: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
avatarColor: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
avatarTextColor: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
avatarFontSize: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
}>, {}, {
|
|
51
|
+
alert: boolean;
|
|
52
|
+
message: string;
|
|
53
|
+
}, {}, {
|
|
54
|
+
showPopupAndSetMessage(msg: string): void;
|
|
55
|
+
closeAlert(): void;
|
|
56
|
+
onClickBtnCancel(): void;
|
|
57
|
+
onClickBtnConfirm(): void;
|
|
58
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
59
|
+
persistent: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
63
|
+
dataCy: {
|
|
64
|
+
type: StringConstructor;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
cancelBtnColor: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
required: true;
|
|
71
|
+
};
|
|
72
|
+
labelBtnCancel: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
default: string;
|
|
75
|
+
required: true;
|
|
76
|
+
};
|
|
77
|
+
confirmBtnColor: {
|
|
78
|
+
type: StringConstructor;
|
|
79
|
+
default: string;
|
|
80
|
+
required: true;
|
|
81
|
+
};
|
|
82
|
+
labelBtnConfirm: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
default: string;
|
|
85
|
+
required: true;
|
|
86
|
+
};
|
|
87
|
+
avatarIcon: {
|
|
88
|
+
type: StringConstructor;
|
|
89
|
+
default: string;
|
|
90
|
+
};
|
|
91
|
+
avatarSize: {
|
|
92
|
+
type: StringConstructor;
|
|
93
|
+
default: string;
|
|
94
|
+
};
|
|
95
|
+
avatarColor: {
|
|
96
|
+
type: StringConstructor;
|
|
97
|
+
default: string;
|
|
98
|
+
};
|
|
99
|
+
avatarTextColor: {
|
|
100
|
+
type: StringConstructor;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
103
|
+
avatarFontSize: {
|
|
104
|
+
type: StringConstructor;
|
|
105
|
+
default: string;
|
|
106
|
+
};
|
|
107
|
+
}>> & Readonly<{}>, {
|
|
108
|
+
dataCy: string;
|
|
109
|
+
persistent: boolean;
|
|
110
|
+
cancelBtnColor: string;
|
|
111
|
+
labelBtnCancel: string;
|
|
112
|
+
confirmBtnColor: string;
|
|
113
|
+
labelBtnConfirm: string;
|
|
114
|
+
avatarIcon: string;
|
|
115
|
+
avatarSize: string;
|
|
116
|
+
avatarColor: string;
|
|
117
|
+
avatarTextColor: string;
|
|
118
|
+
avatarFontSize: string;
|
|
119
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
120
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Plugin } from 'vue';
|
|
2
|
+
import Confirm from './Confirm.vue';
|
|
3
|
+
/** export button specific types */
|
|
4
|
+
/** export button plugin */
|
|
5
|
+
declare const _default: Plugin;
|
|
6
|
+
export default _default;
|
|
7
|
+
/** export button components */
|
|
8
|
+
export { Confirm as Confirm };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const infiniteScroll: {
|
|
2
2
|
handleInfiniteScrollNewTable(self: {
|
|
3
3
|
$nextTick: (arg0: () => void) => void;
|
|
4
4
|
totalPageModal: number;
|
|
@@ -19,4 +19,4 @@ declare const infinitScroll: {
|
|
|
19
19
|
rowsPaginationCount: number;
|
|
20
20
|
}, rows: object[]): object[];
|
|
21
21
|
};
|
|
22
|
-
export default
|
|
22
|
+
export default infiniteScroll;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
2
|
+
Alert: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
dataCy: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
persistent: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
icon: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
iconSize: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
iconColor: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
btnColor: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
btnLabel: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
}>, {}, {
|
|
32
|
+
showPopUp: boolean;
|
|
33
|
+
message: string;
|
|
34
|
+
}, {}, {
|
|
35
|
+
showPopupMessage(message: string): void;
|
|
36
|
+
closePopup(): void;
|
|
37
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
38
|
+
dataCy: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
persistent: {
|
|
43
|
+
type: BooleanConstructor;
|
|
44
|
+
default: boolean;
|
|
45
|
+
};
|
|
46
|
+
icon: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
iconSize: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
iconColor: {
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
58
|
+
btnColor: {
|
|
59
|
+
type: StringConstructor;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
btnLabel: {
|
|
63
|
+
type: StringConstructor;
|
|
64
|
+
default: string;
|
|
65
|
+
};
|
|
66
|
+
}>> & Readonly<{}>, {
|
|
67
|
+
icon: string;
|
|
68
|
+
dataCy: string;
|
|
69
|
+
persistent: boolean;
|
|
70
|
+
iconColor: string;
|
|
71
|
+
iconSize: string;
|
|
72
|
+
btnColor: string;
|
|
73
|
+
btnLabel: string;
|
|
74
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
75
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
76
|
+
export default _default;
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {
|
|
2
|
+
onClickBtnCancel(): void;
|
|
3
|
+
onClickBtnConfirm(): void;
|
|
4
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
5
|
+
Confirm: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
|
+
persistent: {
|
|
7
|
+
type: BooleanConstructor;
|
|
8
|
+
default: boolean;
|
|
9
|
+
};
|
|
10
|
+
dataCy: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
cancelBtnColor: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
labelBtnCancel: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
confirmBtnColor: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
labelBtnConfirm: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: string;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
avatarIcon: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
avatarSize: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
avatarColor: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
avatarTextColor: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
avatarFontSize: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
}>, {}, {
|
|
55
|
+
alert: boolean;
|
|
56
|
+
message: string;
|
|
57
|
+
}, {}, {
|
|
58
|
+
showPopupAndSetMessage(msg: string): void;
|
|
59
|
+
closeAlert(): void;
|
|
60
|
+
onClickBtnCancel(): void;
|
|
61
|
+
onClickBtnConfirm(): void;
|
|
62
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
63
|
+
persistent: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
default: boolean;
|
|
66
|
+
};
|
|
67
|
+
dataCy: {
|
|
68
|
+
type: StringConstructor;
|
|
69
|
+
default: string;
|
|
70
|
+
};
|
|
71
|
+
cancelBtnColor: {
|
|
72
|
+
type: StringConstructor;
|
|
73
|
+
default: string;
|
|
74
|
+
required: true;
|
|
75
|
+
};
|
|
76
|
+
labelBtnCancel: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
default: string;
|
|
79
|
+
required: true;
|
|
80
|
+
};
|
|
81
|
+
confirmBtnColor: {
|
|
82
|
+
type: StringConstructor;
|
|
83
|
+
default: string;
|
|
84
|
+
required: true;
|
|
85
|
+
};
|
|
86
|
+
labelBtnConfirm: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
default: string;
|
|
89
|
+
required: true;
|
|
90
|
+
};
|
|
91
|
+
avatarIcon: {
|
|
92
|
+
type: StringConstructor;
|
|
93
|
+
default: string;
|
|
94
|
+
};
|
|
95
|
+
avatarSize: {
|
|
96
|
+
type: StringConstructor;
|
|
97
|
+
default: string;
|
|
98
|
+
};
|
|
99
|
+
avatarColor: {
|
|
100
|
+
type: StringConstructor;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
103
|
+
avatarTextColor: {
|
|
104
|
+
type: StringConstructor;
|
|
105
|
+
default: string;
|
|
106
|
+
};
|
|
107
|
+
avatarFontSize: {
|
|
108
|
+
type: StringConstructor;
|
|
109
|
+
default: string;
|
|
110
|
+
};
|
|
111
|
+
}>> & Readonly<{}>, {
|
|
112
|
+
dataCy: string;
|
|
113
|
+
persistent: boolean;
|
|
114
|
+
cancelBtnColor: string;
|
|
115
|
+
labelBtnCancel: string;
|
|
116
|
+
confirmBtnColor: string;
|
|
117
|
+
labelBtnConfirm: string;
|
|
118
|
+
avatarIcon: string;
|
|
119
|
+
avatarSize: string;
|
|
120
|
+
avatarColor: string;
|
|
121
|
+
avatarTextColor: string;
|
|
122
|
+
avatarFontSize: string;
|
|
123
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
124
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
125
|
+
export default _default;
|