quasar-factory-lib 0.0.21 → 0.0.22

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 (51) hide show
  1. package/dist/components/Alert/AlertDialog.vue.d.ts +2 -2
  2. package/dist/components/{KMyButton → TaskNavBar}/index.d.ts +2 -2
  3. package/dist/components/index.d.ts +1 -0
  4. package/dist/components/plugins.d.ts +2 -1
  5. package/dist/index.d.ts +1 -1
  6. package/dist/pages/AlertPage.vue.d.ts +2 -2
  7. package/dist/pages/NavBarPage.vue.d.ts +0 -67
  8. package/dist/pages/TablePage.vue.d.ts +0 -1
  9. package/dist/quasar-factory-lib.js +6116 -5213
  10. package/dist/quasar-factory-lib.umd.cjs +11 -11
  11. package/dist/style.css +1 -1
  12. package/package.json +1 -1
  13. package/src/components/Alert/AlertDialog.vue +7 -7
  14. package/src/components/Table/Table.vue +0 -1
  15. package/src/components/{NavBar → TaskNavBar}/TaskNavBar.vue +22 -9
  16. package/src/components/{KMyButton → TaskNavBar}/index.ts +5 -3
  17. package/src/components/index.ts +2 -1
  18. package/src/components/plugins.ts +2 -1
  19. package/src/css/app.css +0 -2
  20. package/src/index.ts +3 -2
  21. package/src/pages/NavBarPage.vue +4 -29
  22. package/src/pages/TablePage.vue +1 -8
  23. package/dist/components/Counter/Counter.vue.d.ts +0 -68
  24. package/dist/components/KMyButton/MyButton.vue.d.ts +0 -27
  25. package/src/assets/icons/BoxLocation.svg +0 -11
  26. package/src/assets/icons/ConfirmadaLecturaGrande.svg +0 -9
  27. package/src/assets/icons/Confirmado.svg +0 -5
  28. package/src/assets/icons/Delete.svg +0 -11
  29. package/src/assets/icons/DeleteEtiqueta.svg +0 -10
  30. package/src/assets/icons/Deliveries.svg +0 -8
  31. package/src/assets/icons/Doscolumnas.svg +0 -14
  32. package/src/assets/icons/ErrorLectura.svg +0 -10
  33. package/src/assets/icons/Exit.svg +0 -3
  34. package/src/assets/icons/Inventario.svg +0 -18
  35. package/src/assets/icons/Location.svg +0 -4
  36. package/src/assets/icons/Logout.svg +0 -6
  37. package/src/assets/icons/Pause.svg +0 -12
  38. package/src/assets/icons/Scan.svg +0 -17
  39. package/src/assets/icons/ScanOffwhite.svg +0 -17
  40. package/src/assets/icons/Scanner.svg +0 -20
  41. package/src/assets/icons/ScannerWhite.svg +0 -31
  42. package/src/assets/icons/Start.svg +0 -9
  43. package/src/assets/icons/UnaColumna.svg +0 -9
  44. package/src/assets/icons/XAnular.svg +0 -9
  45. package/src/assets/img/logo.svg +0 -17
  46. package/src/components/Counter/Counter.vue +0 -65
  47. package/src/components/KMyButton/MyButton.vue +0 -36
  48. /package/dist/components/{NavBar → TaskNavBar}/BasicNavBar.vue.d.ts +0 -0
  49. /package/dist/components/{NavBar → TaskNavBar}/TaskNavBar.vue.d.ts +0 -0
  50. /package/src/assets/icons/{Lupa.svg → Search.svg} +0 -0
  51. /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,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 };
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;
@@ -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;
@@ -284,7 +284,6 @@ 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;
288
287
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
289
288
  Table: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
290
289
  columns: {