quasar-factory-lib 0.0.19 → 0.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Confirm/ConfirmDialog.vue.d.ts +4 -112
- package/dist/i18n/en/index.d.ts +4 -1
- package/dist/i18n/es/index.d.ts +4 -1
- package/dist/i18n/index.d.ts +8 -2
- package/dist/pages/ConfirmPage.vue.d.ts +5 -113
- package/dist/quasar-factory-lib.js +1743 -1813
- package/dist/quasar-factory-lib.umd.cjs +11 -11
- package/dist/store/index.d.ts +1 -2
- package/dist/store/plugin.d.ts +2 -0
- package/dist/store/table.d.ts +2 -1
- package/package.json +1 -1
- package/src/components/Confirm/ConfirmDialog.vue +13 -63
- package/src/i18n/en/index.ts +5 -2
- package/src/i18n/es/index.ts +16 -13
- package/src/pages/ConfirmPage.vue +7 -13
- package/src/pages/TablePage.vue +1 -1
- package/src/store/index.ts +1 -0
- package/src/store/plugin.ts +3 -0
- package/src/store/table.js +3 -1
|
@@ -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;
|
package/dist/i18n/en/index.d.ts
CHANGED
package/dist/i18n/es/index.d.ts
CHANGED
package/dist/i18n/index.d.ts
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
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;
|
|
@@ -15,12 +18,15 @@ declare const i18n: import("vue-i18n").I18n<{
|
|
|
15
18
|
};
|
|
16
19
|
};
|
|
17
20
|
es: {
|
|
18
|
-
test: string;
|
|
19
21
|
table: {
|
|
20
22
|
search: string;
|
|
21
23
|
cancel: string;
|
|
22
24
|
confirm: string;
|
|
23
25
|
};
|
|
26
|
+
confirmDialog: {
|
|
27
|
+
cancel: string;
|
|
28
|
+
confirm: string;
|
|
29
|
+
};
|
|
24
30
|
form: {
|
|
25
31
|
rules: {
|
|
26
32
|
emptyField: string;
|
|
@@ -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;
|