quasar-factory-lib 0.0.19 → 0.0.21
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/Confirm/ConfirmDialog.vue.d.ts +4 -112
- package/dist/components/Counter/Counter.vue.d.ts +68 -0
- package/dist/components/NavBar/BasicNavBar.vue.d.ts +70 -0
- package/dist/components/NavBar/TaskNavBar.vue.d.ts +61 -0
- package/dist/i18n/en/index.d.ts +10 -1
- package/dist/i18n/es/index.d.ts +10 -1
- package/dist/i18n/index.d.ts +20 -2
- package/dist/pages/ConfirmPage.vue.d.ts +5 -113
- package/dist/pages/NavBarPage.vue.d.ts +131 -0
- package/dist/pages/TablePage.vue.d.ts +1 -0
- package/dist/quasar-factory-lib.js +1756 -1814
- package/dist/quasar-factory-lib.umd.cjs +11 -11
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/assets/icons/Add.svg +6 -0
- package/src/assets/icons/ArrowBack.svg +3 -0
- package/src/assets/icons/BoxLocation.svg +11 -0
- package/src/assets/icons/ConfirmadaLecturaGrande.svg +9 -0
- package/src/assets/icons/Confirmado.svg +5 -0
- package/src/assets/icons/Delete.svg +11 -0
- package/src/assets/icons/DeleteEtiqueta.svg +10 -0
- package/src/assets/icons/Deliveries.svg +8 -0
- package/src/assets/icons/Doscolumnas.svg +14 -0
- package/src/assets/icons/ErrorLectura.svg +10 -0
- package/src/assets/icons/Exit.svg +3 -0
- package/src/assets/icons/Inventario.svg +18 -0
- package/src/assets/icons/Location.svg +4 -0
- package/src/assets/icons/Logout.svg +6 -0
- package/src/assets/icons/Lupa.svg +3 -0
- package/src/assets/icons/Menu.svg +7 -0
- package/src/assets/icons/Pause.svg +12 -0
- package/src/assets/icons/Scan.svg +17 -0
- package/src/assets/icons/ScanOffwhite.svg +17 -0
- package/src/assets/icons/Scanner.svg +20 -0
- package/src/assets/icons/ScannerWhite.svg +31 -0
- package/src/assets/icons/Start.svg +9 -0
- package/src/assets/icons/UnaColumna.svg +9 -0
- package/src/assets/icons/XAnular.svg +9 -0
- package/src/assets/icons/favicon_16x16.png +0 -0
- package/src/assets/img/logo.svg +17 -0
- package/src/components/Confirm/ConfirmDialog.vue +13 -63
- package/src/components/Counter/Counter.vue +65 -0
- package/src/components/NavBar/BasicNavBar.vue +102 -0
- package/src/components/NavBar/TaskNavBar.vue +95 -0
- package/src/components/Table/Table.vue +3 -2
- package/src/css/app.css +12 -0
- package/src/i18n/en/index.ts +11 -2
- package/src/i18n/es/index.ts +22 -13
- package/src/layouts/MenuLayout.vue +6 -0
- package/src/pages/ConfirmPage.vue +7 -13
- package/src/pages/NavBarPage.vue +65 -0
- package/src/pages/TablePage.vue +8 -1
- package/src/router/routes.ts +4 -0
|
@@ -1,120 +1,12 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<
|
|
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
|
-
}>, {}, {
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
51
2
|
alert: boolean;
|
|
52
3
|
message: string;
|
|
53
4
|
}, {}, {
|
|
54
5
|
openDialogAndSetMessage(msg: string): void;
|
|
55
6
|
closeAlert(): void;
|
|
56
|
-
|
|
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<{}>, {
|
|
7
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {
|
|
108
8
|
dataCy: string;
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
labelBtnCancel: string;
|
|
112
|
-
confirmBtnColor: string;
|
|
113
|
-
labelBtnConfirm: string;
|
|
114
|
-
avatarIcon: string;
|
|
115
|
-
avatarSize: string;
|
|
116
|
-
avatarColor: string;
|
|
117
|
-
avatarTextColor: string;
|
|
118
|
-
avatarFontSize: string;
|
|
9
|
+
onClickBtnConfirm: Function;
|
|
10
|
+
onClickBtnCancel: Function;
|
|
119
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
120
12
|
export default _default;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
containerClass: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
containerStyle: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
dataCy: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
counterTitle: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
counterTitleClass: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
default: string;
|
|
21
|
+
};
|
|
22
|
+
value: {
|
|
23
|
+
type: NumberConstructor;
|
|
24
|
+
default: number;
|
|
25
|
+
};
|
|
26
|
+
counterValueClass: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
containerClass: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
containerStyle: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
dataCy: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
counterTitle: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
counterTitleClass: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
value: {
|
|
52
|
+
type: NumberConstructor;
|
|
53
|
+
default: number;
|
|
54
|
+
};
|
|
55
|
+
counterValueClass: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
}>> & Readonly<{}>, {
|
|
60
|
+
value: number;
|
|
61
|
+
dataCy: string;
|
|
62
|
+
containerClass: string;
|
|
63
|
+
containerStyle: string;
|
|
64
|
+
counterTitle: string;
|
|
65
|
+
counterTitleClass: string;
|
|
66
|
+
counterValueClass: string;
|
|
67
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
68
|
+
export default _default;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { date } from 'quasar';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
logo: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
title: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
employeeName: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
showBtnBack: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
showBtnSearch: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
showSearch: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
}>, {}, {
|
|
28
|
+
date: typeof date;
|
|
29
|
+
rightDrawerOpen: boolean;
|
|
30
|
+
}, {}, {
|
|
31
|
+
toggleRightDrawer(): void;
|
|
32
|
+
search(): void;
|
|
33
|
+
back(): void;
|
|
34
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "back")[], "search" | "back", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
+
logo: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
title: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
employeeName: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
showBtnBack: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
showBtnSearch: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
showSearch: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
}>> & Readonly<{
|
|
60
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
61
|
+
onBack?: ((...args: any[]) => any) | undefined;
|
|
62
|
+
}>, {
|
|
63
|
+
showSearch: boolean;
|
|
64
|
+
title: string;
|
|
65
|
+
logo: string;
|
|
66
|
+
showBtnBack: boolean;
|
|
67
|
+
showBtnSearch: boolean;
|
|
68
|
+
employeeName: string;
|
|
69
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
70
|
+
export default _default;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { date } from 'quasar';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
logo: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
title: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
showBtnBack: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
showBtnSearch: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
default: boolean;
|
|
18
|
+
};
|
|
19
|
+
showSearch: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
}>, {}, {
|
|
24
|
+
date: typeof date;
|
|
25
|
+
rightDrawerOpen: boolean;
|
|
26
|
+
}, {}, {
|
|
27
|
+
toggleRightDrawer(): void;
|
|
28
|
+
search(): void;
|
|
29
|
+
back(): void;
|
|
30
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "back")[], "search" | "back", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
logo: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
title: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
showBtnBack: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
showBtnSearch: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
showSearch: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
}>> & Readonly<{
|
|
52
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
53
|
+
onBack?: ((...args: any[]) => any) | undefined;
|
|
54
|
+
}>, {
|
|
55
|
+
showSearch: boolean;
|
|
56
|
+
title: string;
|
|
57
|
+
logo: string;
|
|
58
|
+
showBtnBack: boolean;
|
|
59
|
+
showBtnSearch: boolean;
|
|
60
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
61
|
+
export default _default;
|
package/dist/i18n/en/index.d.ts
CHANGED
|
@@ -1,15 +1,24 @@
|
|
|
1
1
|
declare const en: {
|
|
2
|
-
test: string;
|
|
3
2
|
table: {
|
|
4
3
|
search: string;
|
|
5
4
|
cancel: string;
|
|
6
5
|
confirm: string;
|
|
7
6
|
};
|
|
7
|
+
confirmDialog: {
|
|
8
|
+
cancel: string;
|
|
9
|
+
confirm: string;
|
|
10
|
+
};
|
|
8
11
|
form: {
|
|
9
12
|
rules: {
|
|
10
13
|
emptyField: string;
|
|
11
14
|
exceedCharactersTypeList: string;
|
|
12
15
|
};
|
|
13
16
|
};
|
|
17
|
+
header: {
|
|
18
|
+
hello: string;
|
|
19
|
+
};
|
|
20
|
+
global: {
|
|
21
|
+
total: string;
|
|
22
|
+
};
|
|
14
23
|
};
|
|
15
24
|
export default en;
|
package/dist/i18n/es/index.d.ts
CHANGED
|
@@ -1,15 +1,24 @@
|
|
|
1
1
|
declare const es: {
|
|
2
|
-
test: string;
|
|
3
2
|
table: {
|
|
4
3
|
search: string;
|
|
5
4
|
cancel: string;
|
|
6
5
|
confirm: string;
|
|
7
6
|
};
|
|
7
|
+
confirmDialog: {
|
|
8
|
+
cancel: string;
|
|
9
|
+
confirm: string;
|
|
10
|
+
};
|
|
8
11
|
form: {
|
|
9
12
|
rules: {
|
|
10
13
|
emptyField: string;
|
|
11
14
|
exceedCharactersTypeList: string;
|
|
12
15
|
};
|
|
13
16
|
};
|
|
17
|
+
header: {
|
|
18
|
+
hello: string;
|
|
19
|
+
};
|
|
20
|
+
global: {
|
|
21
|
+
total: string;
|
|
22
|
+
};
|
|
14
23
|
};
|
|
15
24
|
export default es;
|
package/dist/i18n/index.d.ts
CHANGED
|
@@ -1,31 +1,49 @@
|
|
|
1
1
|
export default i18n;
|
|
2
2
|
declare const i18n: import("vue-i18n").I18n<{
|
|
3
3
|
en: {
|
|
4
|
-
test: string;
|
|
5
4
|
table: {
|
|
6
5
|
search: string;
|
|
7
6
|
cancel: string;
|
|
8
7
|
confirm: string;
|
|
9
8
|
};
|
|
9
|
+
confirmDialog: {
|
|
10
|
+
cancel: string;
|
|
11
|
+
confirm: string;
|
|
12
|
+
};
|
|
10
13
|
form: {
|
|
11
14
|
rules: {
|
|
12
15
|
emptyField: string;
|
|
13
16
|
exceedCharactersTypeList: string;
|
|
14
17
|
};
|
|
15
18
|
};
|
|
19
|
+
header: {
|
|
20
|
+
hello: string;
|
|
21
|
+
};
|
|
22
|
+
global: {
|
|
23
|
+
total: string;
|
|
24
|
+
};
|
|
16
25
|
};
|
|
17
26
|
es: {
|
|
18
|
-
test: string;
|
|
19
27
|
table: {
|
|
20
28
|
search: string;
|
|
21
29
|
cancel: string;
|
|
22
30
|
confirm: string;
|
|
23
31
|
};
|
|
32
|
+
confirmDialog: {
|
|
33
|
+
cancel: string;
|
|
34
|
+
confirm: string;
|
|
35
|
+
};
|
|
24
36
|
form: {
|
|
25
37
|
rules: {
|
|
26
38
|
emptyField: string;
|
|
27
39
|
exceedCharactersTypeList: string;
|
|
28
40
|
};
|
|
29
41
|
};
|
|
42
|
+
header: {
|
|
43
|
+
hello: string;
|
|
44
|
+
};
|
|
45
|
+
global: {
|
|
46
|
+
total: string;
|
|
47
|
+
};
|
|
30
48
|
};
|
|
31
49
|
}, {}, {}, string, true>;
|
|
@@ -1,125 +1,17 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {
|
|
2
|
-
onClickBtnCancel(): void;
|
|
3
2
|
onClickBtnConfirm(): void;
|
|
3
|
+
onClickBtnCancel(): void;
|
|
4
4
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
5
|
-
ConfirmDialog: import("vue").DefineComponent<
|
|
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
|
-
}>, {}, {
|
|
5
|
+
ConfirmDialog: import("vue").DefineComponent<{}, {}, {
|
|
55
6
|
alert: boolean;
|
|
56
7
|
message: string;
|
|
57
8
|
}, {}, {
|
|
58
9
|
openDialogAndSetMessage(msg: string): void;
|
|
59
10
|
closeAlert(): void;
|
|
60
|
-
|
|
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<{}>, {
|
|
11
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {
|
|
112
12
|
dataCy: string;
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
labelBtnCancel: string;
|
|
116
|
-
confirmBtnColor: string;
|
|
117
|
-
labelBtnConfirm: string;
|
|
118
|
-
avatarIcon: string;
|
|
119
|
-
avatarSize: string;
|
|
120
|
-
avatarColor: string;
|
|
121
|
-
avatarTextColor: string;
|
|
122
|
-
avatarFontSize: string;
|
|
13
|
+
onClickBtnConfirm: Function;
|
|
14
|
+
onClickBtnCancel: Function;
|
|
123
15
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
124
16
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
125
17
|
export default _default;
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
+
rightDrawerOpen: boolean;
|
|
3
|
+
}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
4
|
+
TaskNavBar: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
|
+
logo: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
title: {
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
showBtnBack: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
showBtnSearch: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
showSearch: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
}>, {}, {
|
|
26
|
+
date: typeof import("quasar").date;
|
|
27
|
+
rightDrawerOpen: boolean;
|
|
28
|
+
}, {}, {
|
|
29
|
+
toggleRightDrawer(): void;
|
|
30
|
+
search(): void;
|
|
31
|
+
back(): void;
|
|
32
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "back")[], "search" | "back", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
|
+
logo: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
title: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
default: string;
|
|
40
|
+
};
|
|
41
|
+
showBtnBack: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
default: boolean;
|
|
44
|
+
};
|
|
45
|
+
showBtnSearch: {
|
|
46
|
+
type: BooleanConstructor;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
49
|
+
showSearch: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
53
|
+
}>> & Readonly<{
|
|
54
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
55
|
+
onBack?: ((...args: any[]) => any) | undefined;
|
|
56
|
+
}>, {
|
|
57
|
+
showSearch: boolean;
|
|
58
|
+
title: string;
|
|
59
|
+
logo: string;
|
|
60
|
+
showBtnBack: boolean;
|
|
61
|
+
showBtnSearch: boolean;
|
|
62
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
63
|
+
Counter: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
64
|
+
containerClass: {
|
|
65
|
+
type: StringConstructor;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
containerStyle: {
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
dataCy: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
default: string;
|
|
75
|
+
};
|
|
76
|
+
counterTitle: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
counterTitleClass: {
|
|
81
|
+
type: StringConstructor;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
value: {
|
|
85
|
+
type: NumberConstructor;
|
|
86
|
+
default: number;
|
|
87
|
+
};
|
|
88
|
+
counterValueClass: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
93
|
+
containerClass: {
|
|
94
|
+
type: StringConstructor;
|
|
95
|
+
default: string;
|
|
96
|
+
};
|
|
97
|
+
containerStyle: {
|
|
98
|
+
type: StringConstructor;
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
101
|
+
dataCy: {
|
|
102
|
+
type: StringConstructor;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
105
|
+
counterTitle: {
|
|
106
|
+
type: StringConstructor;
|
|
107
|
+
default: string;
|
|
108
|
+
};
|
|
109
|
+
counterTitleClass: {
|
|
110
|
+
type: StringConstructor;
|
|
111
|
+
default: string;
|
|
112
|
+
};
|
|
113
|
+
value: {
|
|
114
|
+
type: NumberConstructor;
|
|
115
|
+
default: number;
|
|
116
|
+
};
|
|
117
|
+
counterValueClass: {
|
|
118
|
+
type: StringConstructor;
|
|
119
|
+
default: string;
|
|
120
|
+
};
|
|
121
|
+
}>> & Readonly<{}>, {
|
|
122
|
+
value: number;
|
|
123
|
+
dataCy: string;
|
|
124
|
+
containerClass: string;
|
|
125
|
+
containerStyle: string;
|
|
126
|
+
counterTitle: string;
|
|
127
|
+
counterTitleClass: string;
|
|
128
|
+
counterValueClass: string;
|
|
129
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
130
|
+
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
131
|
+
export default _default;
|
|
@@ -284,6 +284,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
284
284
|
onUpdateCustomizedCheckboxValue(rows: object[]): void;
|
|
285
285
|
setItemNotFound(rows: object[]): void;
|
|
286
286
|
close(): void;
|
|
287
|
+
clearTable(): void;
|
|
287
288
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
288
289
|
Table: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
289
290
|
columns: {
|