quasar-factory-lib 0.0.22 → 0.0.23
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 +17 -4
- package/dist/components/TaskNavBar/TaskNavBar.vue.d.ts +3 -3
- package/dist/i18n/en/index.d.ts +2 -0
- package/dist/i18n/es/index.d.ts +2 -0
- package/dist/i18n/index.d.ts +4 -0
- package/dist/pages/ConfirmPage.vue.d.ts +17 -4
- package/dist/pages/NavBarPage.vue.d.ts +3 -3
- package/dist/quasar-factory-lib.js +4083 -4177
- package/dist/quasar-factory-lib.umd.cjs +11 -11
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Confirm/ConfirmDialog.vue +11 -10
- package/src/components/Table/components/TableSlotBody.vue +1 -0
- package/src/components/Table/components/TableSlotGrid.vue +1 -1
- package/src/components/TaskNavBar/TaskNavBar.vue +41 -53
- package/src/components/TaskNavBar/css/taskNavBar.css +33 -0
- package/src/css/app.css +1 -0
- package/src/i18n/en/index.ts +3 -1
- package/src/i18n/es/index.ts +3 -1
- package/src/pages/ConfirmPage.vue +2 -4
- package/src/pages/NavBarPage.vue +2 -1
- package/dist/pages/TablePage.vue.d.ts +0 -1129
- package/dist/store/table.d.ts +0 -9
- package/src/pages/TablePage.vue +0 -341
|
@@ -1,12 +1,25 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
dataCy: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}>, {}, {
|
|
2
7
|
alert: boolean;
|
|
3
8
|
message: string;
|
|
4
9
|
}, {}, {
|
|
5
10
|
openDialogAndSetMessage(msg: string): void;
|
|
6
11
|
closeAlert(): void;
|
|
7
|
-
|
|
12
|
+
onClickBtnConfirm(): void;
|
|
13
|
+
onClickBtnCancel(): void;
|
|
14
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickBtnConfirm" | "onClickBtnCancel")[], "onClickBtnConfirm" | "onClickBtnCancel", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
|
+
dataCy: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
}>> & Readonly<{
|
|
20
|
+
onOnClickBtnConfirm?: ((...args: any[]) => any) | undefined;
|
|
21
|
+
onOnClickBtnCancel?: ((...args: any[]) => any) | undefined;
|
|
22
|
+
}>, {
|
|
8
23
|
dataCy: string;
|
|
9
|
-
onClickBtnConfirm: Function;
|
|
10
|
-
onClickBtnCancel: Function;
|
|
11
24
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
25
|
export default _default;
|
|
@@ -24,9 +24,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
24
24
|
date: typeof date;
|
|
25
25
|
rightDrawerOpen: boolean;
|
|
26
26
|
}, {}, {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
27
|
+
onClickBtnMenu(): void;
|
|
28
|
+
onClickBtnSearch(): void;
|
|
29
|
+
onClickBtnBack(): void;
|
|
30
30
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "back")[], "search" | "back", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
31
|
logo: {
|
|
32
32
|
type: StringConstructor;
|
package/dist/i18n/en/index.d.ts
CHANGED
package/dist/i18n/es/index.d.ts
CHANGED
package/dist/i18n/index.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ declare const i18n: import("vue-i18n").I18n<{
|
|
|
9
9
|
confirmDialog: {
|
|
10
10
|
cancel: string;
|
|
11
11
|
confirm: string;
|
|
12
|
+
yes: string;
|
|
13
|
+
no: string;
|
|
12
14
|
};
|
|
13
15
|
form: {
|
|
14
16
|
rules: {
|
|
@@ -32,6 +34,8 @@ declare const i18n: import("vue-i18n").I18n<{
|
|
|
32
34
|
confirmDialog: {
|
|
33
35
|
cancel: string;
|
|
34
36
|
confirm: string;
|
|
37
|
+
yes: string;
|
|
38
|
+
no: string;
|
|
35
39
|
};
|
|
36
40
|
form: {
|
|
37
41
|
rules: {
|
|
@@ -2,16 +2,29 @@ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {
|
|
|
2
2
|
onClickBtnConfirm(): void;
|
|
3
3
|
onClickBtnCancel(): void;
|
|
4
4
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
5
|
-
ConfirmDialog: import("vue").DefineComponent<{
|
|
5
|
+
ConfirmDialog: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
|
+
dataCy: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
}>, {}, {
|
|
6
11
|
alert: boolean;
|
|
7
12
|
message: string;
|
|
8
13
|
}, {}, {
|
|
9
14
|
openDialogAndSetMessage(msg: string): void;
|
|
10
15
|
closeAlert(): void;
|
|
11
|
-
|
|
16
|
+
onClickBtnConfirm(): void;
|
|
17
|
+
onClickBtnCancel(): void;
|
|
18
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClickBtnConfirm" | "onClickBtnCancel")[], "onClickBtnConfirm" | "onClickBtnCancel", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
dataCy: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{
|
|
24
|
+
onOnClickBtnConfirm?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
onOnClickBtnCancel?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
}>, {
|
|
12
27
|
dataCy: string;
|
|
13
|
-
onClickBtnConfirm: Function;
|
|
14
|
-
onClickBtnCancel: Function;
|
|
15
28
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
29
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
17
30
|
export default _default;
|
|
@@ -26,9 +26,9 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
26
26
|
date: typeof import("quasar").date;
|
|
27
27
|
rightDrawerOpen: boolean;
|
|
28
28
|
}, {}, {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
29
|
+
onClickBtnMenu(): void;
|
|
30
|
+
onClickBtnSearch(): void;
|
|
31
|
+
onClickBtnBack(): void;
|
|
32
32
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "back")[], "search" | "back", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
33
33
|
logo: {
|
|
34
34
|
type: StringConstructor;
|