quasar-factory-lib 0.0.20 → 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.
Files changed (55) hide show
  1. package/dist/components/Counter/Counter.vue.d.ts +68 -0
  2. package/dist/components/NavBar/BasicNavBar.vue.d.ts +70 -0
  3. package/dist/components/NavBar/TaskNavBar.vue.d.ts +61 -0
  4. package/dist/i18n/en/index.d.ts +6 -0
  5. package/dist/i18n/es/index.d.ts +6 -0
  6. package/dist/i18n/index.d.ts +12 -0
  7. package/dist/pages/NavBarPage.vue.d.ts +131 -0
  8. package/dist/pages/TablePage.vue.d.ts +1 -0
  9. package/dist/quasar-factory-lib.js +13 -1
  10. package/dist/quasar-factory-lib.umd.cjs +2 -2
  11. package/dist/store/index.d.ts +2 -1
  12. package/dist/store/table.d.ts +1 -2
  13. package/dist/style.css +1 -1
  14. package/package.json +1 -1
  15. package/src/assets/icons/Add.svg +6 -0
  16. package/src/assets/icons/ArrowBack.svg +3 -0
  17. package/src/assets/icons/BoxLocation.svg +11 -0
  18. package/src/assets/icons/ConfirmadaLecturaGrande.svg +9 -0
  19. package/src/assets/icons/Confirmado.svg +5 -0
  20. package/src/assets/icons/Delete.svg +11 -0
  21. package/src/assets/icons/DeleteEtiqueta.svg +10 -0
  22. package/src/assets/icons/Deliveries.svg +8 -0
  23. package/src/assets/icons/Doscolumnas.svg +14 -0
  24. package/src/assets/icons/ErrorLectura.svg +10 -0
  25. package/src/assets/icons/Exit.svg +3 -0
  26. package/src/assets/icons/Inventario.svg +18 -0
  27. package/src/assets/icons/Location.svg +4 -0
  28. package/src/assets/icons/Logout.svg +6 -0
  29. package/src/assets/icons/Lupa.svg +3 -0
  30. package/src/assets/icons/Menu.svg +7 -0
  31. package/src/assets/icons/Pause.svg +12 -0
  32. package/src/assets/icons/Scan.svg +17 -0
  33. package/src/assets/icons/ScanOffwhite.svg +17 -0
  34. package/src/assets/icons/Scanner.svg +20 -0
  35. package/src/assets/icons/ScannerWhite.svg +31 -0
  36. package/src/assets/icons/Start.svg +9 -0
  37. package/src/assets/icons/UnaColumna.svg +9 -0
  38. package/src/assets/icons/XAnular.svg +9 -0
  39. package/src/assets/icons/favicon_16x16.png +0 -0
  40. package/src/assets/img/logo.svg +17 -0
  41. package/src/components/Counter/Counter.vue +65 -0
  42. package/src/components/NavBar/BasicNavBar.vue +102 -0
  43. package/src/components/NavBar/TaskNavBar.vue +95 -0
  44. package/src/components/Table/Table.vue +3 -2
  45. package/src/css/app.css +12 -0
  46. package/src/i18n/en/index.ts +6 -0
  47. package/src/i18n/es/index.ts +6 -0
  48. package/src/layouts/MenuLayout.vue +6 -0
  49. package/src/pages/NavBarPage.vue +65 -0
  50. package/src/pages/TablePage.vue +9 -2
  51. package/src/router/routes.ts +4 -0
  52. package/src/store/table.js +1 -3
  53. package/dist/store/plugin.d.ts +0 -2
  54. package/src/store/index.ts +0 -1
  55. package/src/store/plugin.ts +0 -3
@@ -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;
@@ -14,5 +14,11 @@ declare const en: {
14
14
  exceedCharactersTypeList: string;
15
15
  };
16
16
  };
17
+ header: {
18
+ hello: string;
19
+ };
20
+ global: {
21
+ total: string;
22
+ };
17
23
  };
18
24
  export default en;
@@ -14,5 +14,11 @@ declare const es: {
14
14
  exceedCharactersTypeList: string;
15
15
  };
16
16
  };
17
+ header: {
18
+ hello: string;
19
+ };
20
+ global: {
21
+ total: string;
22
+ };
17
23
  };
18
24
  export default es;
@@ -16,6 +16,12 @@ declare const i18n: import("vue-i18n").I18n<{
16
16
  exceedCharactersTypeList: string;
17
17
  };
18
18
  };
19
+ header: {
20
+ hello: string;
21
+ };
22
+ global: {
23
+ total: string;
24
+ };
19
25
  };
20
26
  es: {
21
27
  table: {
@@ -33,5 +39,11 @@ declare const i18n: import("vue-i18n").I18n<{
33
39
  exceedCharactersTypeList: string;
34
40
  };
35
41
  };
42
+ header: {
43
+ hello: string;
44
+ };
45
+ global: {
46
+ total: string;
47
+ };
36
48
  };
37
49
  }, {}, {}, string, true>;
@@ -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: {
@@ -7817,7 +7817,7 @@ const sg = /* @__PURE__ */ pt(ag, [["render", ig]]), ug = In({
7817
7817
  this.$emit("onUpdateCustomizedCheckboxValue", e);
7818
7818
  },
7819
7819
  clearTableSelection() {
7820
- this.$refs.myTable.clearSelection();
7820
+ this.selected = [];
7821
7821
  },
7822
7822
  toggleSearchVisibility(e) {
7823
7823
  this.showSearch = !this.showSearch, e.disableScannerButtons = !1, e.lastFilterValue = "", e.valueInputFilterTable = "";
@@ -12164,6 +12164,12 @@ const W_ = {
12164
12164
  emptyField: "The field cannot be empty",
12165
12165
  exceedCharactersTypeList: "Field must not exceed {0} characters"
12166
12166
  }
12167
+ },
12168
+ header: {
12169
+ hello: "Hello"
12170
+ },
12171
+ global: {
12172
+ total: "Total"
12167
12173
  }
12168
12174
  }, G_ = {
12169
12175
  table: {
@@ -12180,6 +12186,12 @@ const W_ = {
12180
12186
  emptyField: "El campo no puede estar vacío",
12181
12187
  exceedCharactersTypeList: "El campo no debe exceder más de {0} caracteres"
12182
12188
  }
12189
+ },
12190
+ header: {
12191
+ hello: "Hola"
12192
+ },
12193
+ global: {
12194
+ total: "Total"
12183
12195
  }
12184
12196
  }, Y_ = {
12185
12197
  en: W_,