quasar-factory-lib 0.0.21 → 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.
Files changed (65) hide show
  1. package/dist/components/Alert/AlertDialog.vue.d.ts +2 -2
  2. package/dist/components/Confirm/ConfirmDialog.vue.d.ts +17 -4
  3. package/dist/components/{NavBar → TaskNavBar}/TaskNavBar.vue.d.ts +3 -3
  4. package/dist/components/{KMyButton → TaskNavBar}/index.d.ts +2 -2
  5. package/dist/components/index.d.ts +1 -0
  6. package/dist/components/plugins.d.ts +2 -1
  7. package/dist/i18n/en/index.d.ts +2 -0
  8. package/dist/i18n/es/index.d.ts +2 -0
  9. package/dist/i18n/index.d.ts +4 -0
  10. package/dist/index.d.ts +1 -1
  11. package/dist/pages/AlertPage.vue.d.ts +2 -2
  12. package/dist/pages/ConfirmPage.vue.d.ts +17 -4
  13. package/dist/pages/NavBarPage.vue.d.ts +3 -70
  14. package/dist/quasar-factory-lib.js +5663 -4854
  15. package/dist/quasar-factory-lib.umd.cjs +11 -11
  16. package/dist/style.css +1 -1
  17. package/package.json +1 -1
  18. package/src/components/Alert/AlertDialog.vue +7 -7
  19. package/src/components/Confirm/ConfirmDialog.vue +11 -10
  20. package/src/components/Table/Table.vue +0 -1
  21. package/src/components/Table/components/TableSlotBody.vue +1 -0
  22. package/src/components/Table/components/TableSlotGrid.vue +1 -1
  23. package/src/components/TaskNavBar/TaskNavBar.vue +96 -0
  24. package/src/components/TaskNavBar/css/taskNavBar.css +33 -0
  25. package/src/components/{KMyButton → TaskNavBar}/index.ts +5 -3
  26. package/src/components/index.ts +2 -1
  27. package/src/components/plugins.ts +2 -1
  28. package/src/css/app.css +1 -2
  29. package/src/i18n/en/index.ts +3 -1
  30. package/src/i18n/es/index.ts +3 -1
  31. package/src/index.ts +3 -2
  32. package/src/pages/ConfirmPage.vue +2 -4
  33. package/src/pages/NavBarPage.vue +5 -29
  34. package/dist/components/Counter/Counter.vue.d.ts +0 -68
  35. package/dist/components/KMyButton/MyButton.vue.d.ts +0 -27
  36. package/dist/pages/TablePage.vue.d.ts +0 -1130
  37. package/dist/store/table.d.ts +0 -9
  38. package/src/assets/icons/BoxLocation.svg +0 -11
  39. package/src/assets/icons/ConfirmadaLecturaGrande.svg +0 -9
  40. package/src/assets/icons/Confirmado.svg +0 -5
  41. package/src/assets/icons/Delete.svg +0 -11
  42. package/src/assets/icons/DeleteEtiqueta.svg +0 -10
  43. package/src/assets/icons/Deliveries.svg +0 -8
  44. package/src/assets/icons/Doscolumnas.svg +0 -14
  45. package/src/assets/icons/ErrorLectura.svg +0 -10
  46. package/src/assets/icons/Exit.svg +0 -3
  47. package/src/assets/icons/Inventario.svg +0 -18
  48. package/src/assets/icons/Location.svg +0 -4
  49. package/src/assets/icons/Logout.svg +0 -6
  50. package/src/assets/icons/Pause.svg +0 -12
  51. package/src/assets/icons/Scan.svg +0 -17
  52. package/src/assets/icons/ScanOffwhite.svg +0 -17
  53. package/src/assets/icons/Scanner.svg +0 -20
  54. package/src/assets/icons/ScannerWhite.svg +0 -31
  55. package/src/assets/icons/Start.svg +0 -9
  56. package/src/assets/icons/UnaColumna.svg +0 -9
  57. package/src/assets/icons/XAnular.svg +0 -9
  58. package/src/assets/img/logo.svg +0 -17
  59. package/src/components/Counter/Counter.vue +0 -65
  60. package/src/components/KMyButton/MyButton.vue +0 -36
  61. package/src/components/NavBar/TaskNavBar.vue +0 -95
  62. package/src/pages/TablePage.vue +0 -348
  63. /package/dist/components/{NavBar → TaskNavBar}/BasicNavBar.vue.d.ts +0 -0
  64. /package/src/assets/icons/{Lupa.svg → Search.svg} +0 -0
  65. /package/src/components/{NavBar → TaskNavBar}/BasicNavBar.vue +0 -0
@@ -28,8 +28,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
28
28
  default: string;
29
29
  };
30
30
  }>, {}, {
31
- showPopUp: boolean;
32
- message: string;
31
+ alert: boolean;
32
+ alertMessage: string;
33
33
  }, {}, {
34
34
  openAlertAndSetMessage(message: string): void;
35
35
  closePopup(): void;
@@ -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
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {
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
- toggleRightDrawer(): void;
28
- search(): void;
29
- back(): void;
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;
@@ -1,8 +1,8 @@
1
1
  import type { Plugin } from 'vue';
2
- import MyButton from './MyButton.vue';
2
+ import TaskNavBar from './TaskNavBar.vue';
3
3
  /** export button specific types */
4
4
  /** export button plugin */
5
5
  declare const _default: Plugin;
6
6
  export default _default;
7
7
  /** export button components */
8
- export { MyButton as KMyButton };
8
+ export { TaskNavBar as TaskNavBar };
@@ -1,3 +1,4 @@
1
1
  export * from './Table';
2
2
  export * from './Alert';
3
3
  export * from './Confirm';
4
+ export * from './TaskNavBar';
@@ -1,4 +1,5 @@
1
1
  import MyTable from './Table';
2
2
  import AlertDialog from './Alert';
3
3
  import ConfirmDialog from './Confirm';
4
- export { MyTable, AlertDialog, ConfirmDialog };
4
+ import TaskNavBar from './TaskNavBar';
5
+ export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar };
@@ -7,6 +7,8 @@ declare const en: {
7
7
  confirmDialog: {
8
8
  cancel: string;
9
9
  confirm: string;
10
+ yes: string;
11
+ no: string;
10
12
  };
11
13
  form: {
12
14
  rules: {
@@ -7,6 +7,8 @@ declare const es: {
7
7
  confirmDialog: {
8
8
  cancel: string;
9
9
  confirm: string;
10
+ yes: string;
11
+ no: string;
10
12
  };
11
13
  form: {
12
14
  rules: {
@@ -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: {
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import '@quasar/extras/material-icons/material-icons.css';
2
2
  import { Plugin } from 'vue';
3
3
  import TranslateKeys from './i18n/translateKeys.ts';
4
- export { MyTable, AlertDialog, ConfirmDialog } from './components/index.ts';
4
+ export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar } from './components/index.ts';
5
5
  export type { TranslateKeys };
6
6
  export * from './i18n/messages.js';
7
7
  export * from './utils';
@@ -29,8 +29,8 @@ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import
29
29
  default: string;
30
30
  };
31
31
  }>, {}, {
32
- showPopUp: boolean;
33
- message: string;
32
+ alert: boolean;
33
+ alertMessage: string;
34
34
  }, {}, {
35
35
  openAlertAndSetMessage(message: string): void;
36
36
  closePopup(): void;
@@ -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
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {
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
- toggleRightDrawer(): void;
30
- search(): void;
31
- back(): void;
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;
@@ -60,72 +60,5 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
60
60
  showBtnBack: boolean;
61
61
  showBtnSearch: boolean;
62
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
63
  }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
131
64
  export default _default;