quasar-factory-lib 0.0.60 → 0.0.62
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/{AlertWithLabelsError → AlertLabelsWithError}/index.d.ts +2 -2
- package/dist/components/Table/Table.vue.d.ts +0 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/components/plugins.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/layouts/PdaLayout.vue.d.ts +1 -3
- package/dist/pages/TablePage.vue.d.ts +0 -2
- package/dist/quasar-factory-lib.js +11 -9
- package/dist/quasar-factory-lib.umd.cjs +2 -2
- package/dist/store/table.d.ts +0 -1
- package/package.json +1 -1
- package/src/components/{AlertWithLabelsError/AlertWithLabelsError.vue → AlertLabelsWithError/AlertLabelsWithError.vue} +3 -3
- package/src/components/{AlertWithLabelsError → AlertLabelsWithError}/index.ts +3 -3
- package/src/components/Confirm/ConfirmDialog.vue +1 -1
- package/src/components/ConfirmedTask/ConfirmedTask.vue +2 -2
- package/src/components/Table/Table.vue +1 -2
- package/src/components/Table/components/TableSlotGrid.vue +2 -0
- package/src/components/index.ts +1 -1
- package/src/components/plugins.ts +2 -2
- package/src/index.ts +3 -3
- package/src/layouts/PdaLayout.vue +17 -28
- package/src/store/table.js +0 -2
- /package/dist/components/{AlertWithLabelsError/AlertWithLabelsError.vue.d.ts → AlertLabelsWithError/AlertLabelsWithError.vue.d.ts} +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { Plugin } from 'vue';
|
|
2
|
-
import
|
|
2
|
+
import AlertLabelsWithError from './AlertLabelsWithError.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 {
|
|
8
|
+
export { AlertLabelsWithError as AlertLabelsWithError };
|
|
@@ -98,7 +98,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
98
98
|
onUpdateCustomizedCheckboxValue(row: object): void;
|
|
99
99
|
clearTableSelection(): void;
|
|
100
100
|
toggleSearchVisibility(store: {
|
|
101
|
-
disableScannerButtons: boolean;
|
|
102
101
|
lastFilterValue: string;
|
|
103
102
|
valueInputFilterTable: string;
|
|
104
103
|
}): void;
|
|
@@ -5,5 +5,5 @@ import TaskNavBar from './TaskNavBar';
|
|
|
5
5
|
import ConfirmedTask from './ConfirmedTask';
|
|
6
6
|
import TableRowsCounter from './TableRowsCounter';
|
|
7
7
|
import NavBarSkeleton from './NavBarSkeleton';
|
|
8
|
-
import
|
|
9
|
-
export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton,
|
|
8
|
+
import AlertLabelsWithError from './AlertLabelsWithError';
|
|
9
|
+
export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertLabelsWithError };
|
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, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton,
|
|
4
|
+
export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertLabelsWithError } from './components/index.ts';
|
|
5
5
|
export type { TranslateKeys };
|
|
6
6
|
export * from './i18n/messages.js';
|
|
7
7
|
export * from './utils';
|
|
@@ -2,7 +2,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
2
2
|
showDialog: boolean;
|
|
3
3
|
tabletMaxWidth: number;
|
|
4
4
|
store: import("pinia").Store<"tableStore", {
|
|
5
|
-
disableScannerButtons: import("@vueuse/shared").RemovableRef<boolean>;
|
|
6
5
|
filterValue: import("@vueuse/shared").RemovableRef<string>;
|
|
7
6
|
lastFilterValue: import("@vueuse/shared").RemovableRef<string>;
|
|
8
7
|
visiblecolumns: import("@vueuse/shared").RemovableRef<never[]>;
|
|
@@ -334,7 +333,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
334
333
|
onClickBtnMenu(): void;
|
|
335
334
|
retryReadLabel(): void;
|
|
336
335
|
onCloseDialogLabelsError(): void;
|
|
337
|
-
|
|
336
|
+
getAlertLabelsWithError(): void;
|
|
338
337
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
339
338
|
TaskNavBar: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
340
339
|
logo: {
|
|
@@ -497,7 +496,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
497
496
|
onUpdateCustomizedCheckboxValue(row: object): void;
|
|
498
497
|
clearTableSelection(): void;
|
|
499
498
|
toggleSearchVisibility(store: {
|
|
500
|
-
disableScannerButtons: boolean;
|
|
501
499
|
lastFilterValue: string;
|
|
502
500
|
valueInputFilterTable: string;
|
|
503
501
|
}): void;
|
|
@@ -2,7 +2,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
2
2
|
showSkeleton: boolean;
|
|
3
3
|
showDialog: boolean;
|
|
4
4
|
store: import("pinia").Store<"tableStore", {
|
|
5
|
-
disableScannerButtons: import("@vueuse/shared").RemovableRef<boolean>;
|
|
6
5
|
filterValue: import("@vueuse/shared").RemovableRef<string>;
|
|
7
6
|
lastFilterValue: import("@vueuse/shared").RemovableRef<string>;
|
|
8
7
|
visiblecolumns: import("@vueuse/shared").RemovableRef<never[]>;
|
|
@@ -391,7 +390,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
391
390
|
onUpdateCustomizedCheckboxValue(row: object): void;
|
|
392
391
|
clearTableSelection(): void;
|
|
393
392
|
toggleSearchVisibility(store: {
|
|
394
|
-
disableScannerButtons: boolean;
|
|
395
393
|
lastFilterValue: string;
|
|
396
394
|
valueInputFilterTable: string;
|
|
397
395
|
}): void;
|
|
@@ -7328,6 +7328,7 @@ function cg(e, t, n, o, r, l) {
|
|
|
7328
7328
|
n.selectionType != "none" ? (ne(), fe(mn, {
|
|
7329
7329
|
key: 0,
|
|
7330
7330
|
"data-cy": "checkbox-" + r.tablePropsData.row.id,
|
|
7331
|
+
size: "sm",
|
|
7331
7332
|
modelValue: r.tablePropsData.selected,
|
|
7332
7333
|
"onUpdate:modelValue": t[0] || (t[0] = (u) => r.tablePropsData.selected = u),
|
|
7333
7334
|
dense: ""
|
|
@@ -7338,7 +7339,8 @@ function cg(e, t, n, o, r, l) {
|
|
|
7338
7339
|
F(ea, { dense: "" }, {
|
|
7339
7340
|
default: j(() => [
|
|
7340
7341
|
(ne(!0), it(an, null, Fn(r.tablePropsData.cols.filter((u) => u.name !== "desc"), (u) => (ne(), fe(Ft, {
|
|
7341
|
-
key: u.name
|
|
7342
|
+
key: u.name,
|
|
7343
|
+
id: u.name
|
|
7342
7344
|
}, {
|
|
7343
7345
|
default: j(() => [
|
|
7344
7346
|
F(St, null, {
|
|
@@ -7453,7 +7455,7 @@ function cg(e, t, n, o, r, l) {
|
|
|
7453
7455
|
}, 1024)
|
|
7454
7456
|
]),
|
|
7455
7457
|
_: 2
|
|
7456
|
-
},
|
|
7458
|
+
}, 1032, ["id"]))), 128))
|
|
7457
7459
|
]),
|
|
7458
7460
|
_: 1
|
|
7459
7461
|
})
|
|
@@ -7979,7 +7981,7 @@ const Pg = /* @__PURE__ */ Xe(Lg, [["render", Ng]]), Rg = zt({
|
|
|
7979
7981
|
this.selected = [];
|
|
7980
7982
|
},
|
|
7981
7983
|
toggleSearchVisibility(e) {
|
|
7982
|
-
this.showSearch = !this.showSearch, e.
|
|
7984
|
+
this.showSearch = !this.showSearch, e.lastFilterValue = "", e.valueInputFilterTable = "";
|
|
7983
7985
|
},
|
|
7984
7986
|
toogleColumnsSelectorVisibility() {
|
|
7985
7987
|
this.showColumnsSelector = !this.showColumnsSelector;
|
|
@@ -8309,7 +8311,7 @@ function Kg(e, t, n, o, r, l) {
|
|
|
8309
8311
|
default: j(() => [
|
|
8310
8312
|
F(so, {
|
|
8311
8313
|
class: "alert-card",
|
|
8312
|
-
"data-cy": e.dataCy
|
|
8314
|
+
"data-cy": e.dataCy || "confirm-dialog"
|
|
8313
8315
|
}, {
|
|
8314
8316
|
default: j(() => [
|
|
8315
8317
|
F(xr, { class: "row items-center" }, {
|
|
@@ -9427,7 +9429,7 @@ const Zh = /* @__PURE__ */ Xe(Qh, [["render", Xh]]), Jh = {
|
|
|
9427
9429
|
});
|
|
9428
9430
|
}
|
|
9429
9431
|
}), r_ = zt({
|
|
9430
|
-
name: "
|
|
9432
|
+
name: "AlertLabelsWithError",
|
|
9431
9433
|
data() {
|
|
9432
9434
|
return {
|
|
9433
9435
|
alert: !1,
|
|
@@ -9536,7 +9538,7 @@ function u_(e, t, n, o, r, l) {
|
|
|
9536
9538
|
me("span", i_, [
|
|
9537
9539
|
F(Ct, {
|
|
9538
9540
|
flat: "",
|
|
9539
|
-
size: "
|
|
9541
|
+
size: "md",
|
|
9540
9542
|
class: "text-blue",
|
|
9541
9543
|
"data-cy": "retry",
|
|
9542
9544
|
onClick: (s) => e.retryReadLabelAxios(a.label)
|
|
@@ -9551,7 +9553,7 @@ function u_(e, t, n, o, r, l) {
|
|
|
9551
9553
|
F(Ct, {
|
|
9552
9554
|
flat: "",
|
|
9553
9555
|
round: "",
|
|
9554
|
-
size: "
|
|
9556
|
+
size: "md",
|
|
9555
9557
|
color: "secondary",
|
|
9556
9558
|
icon: "delete",
|
|
9557
9559
|
"data-cy": "deleteLabelFromErrorsList",
|
|
@@ -9586,7 +9588,7 @@ function u_(e, t, n, o, r, l) {
|
|
|
9586
9588
|
}
|
|
9587
9589
|
const c_ = /* @__PURE__ */ Xe(r_, [["render", u_]]), d_ = {
|
|
9588
9590
|
install(e) {
|
|
9589
|
-
pn(e, "
|
|
9591
|
+
pn(e, "AlertLabelsWithError", c_);
|
|
9590
9592
|
}
|
|
9591
9593
|
};
|
|
9592
9594
|
var f_ = Object.create, Rc = Object.defineProperty, m_ = Object.getOwnPropertyDescriptor, ca = Object.getOwnPropertyNames, v_ = Object.getPrototypeOf, g_ = Object.prototype.hasOwnProperty, h_ = (e, t) => function() {
|
|
@@ -17336,7 +17338,7 @@ function IE(e) {
|
|
|
17336
17338
|
}
|
|
17337
17339
|
export {
|
|
17338
17340
|
Hg as AlertDialog,
|
|
17339
|
-
c_ as
|
|
17341
|
+
c_ as AlertLabelsWithError,
|
|
17340
17342
|
Yg as ConfirmDialog,
|
|
17341
17343
|
Uh as ConfirmedTask,
|
|
17342
17344
|
Vg as MyTable,
|