quasar-factory-lib 0.0.35 → 0.0.36
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.
|
@@ -93,7 +93,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
93
93
|
toggleSearchVisibility(store: {
|
|
94
94
|
disableScannerButtons: boolean;
|
|
95
95
|
lastFilterValue: string;
|
|
96
|
-
|
|
96
|
+
filterValue: string;
|
|
97
97
|
}): void;
|
|
98
98
|
toogleColumnsSelectorVisibility(): void;
|
|
99
99
|
filterInputFocus(): void;
|
|
@@ -393,7 +393,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
393
393
|
toggleSearchVisibility(store: {
|
|
394
394
|
disableScannerButtons: boolean;
|
|
395
395
|
lastFilterValue: string;
|
|
396
|
-
|
|
396
|
+
filterValue: string;
|
|
397
397
|
}): void;
|
|
398
398
|
toogleColumnsSelectorVisibility(): void;
|
|
399
399
|
filterInputFocus(): void;
|
|
@@ -7884,7 +7884,7 @@ const Ag = /* @__PURE__ */ ht(Tg, [["render", Og]]), Dg = mn({
|
|
|
7884
7884
|
this.selected = [];
|
|
7885
7885
|
},
|
|
7886
7886
|
toggleSearchVisibility(e) {
|
|
7887
|
-
this.showSearch = !this.showSearch, e.disableScannerButtons = !1, e.lastFilterValue = "", e.
|
|
7887
|
+
this.showSearch = !this.showSearch, e.disableScannerButtons = !1, e.lastFilterValue = "", e.filterValue = "";
|
|
7888
7888
|
},
|
|
7889
7889
|
toogleColumnsSelectorVisibility() {
|
|
7890
7890
|
this.showColumnsSelector = !this.showColumnsSelector;
|
|
@@ -7899,7 +7899,7 @@ const Ag = /* @__PURE__ */ ht(Tg, [["render", Og]]), Dg = mn({
|
|
|
7899
7899
|
},
|
|
7900
7900
|
sortMethod(e, t, n) {
|
|
7901
7901
|
const r = yi.sortMethod(e, t, n, this.sortDataValues).slice(0, e.length);
|
|
7902
|
-
return this.store.
|
|
7902
|
+
return this.store.filterValue === "" ? r : yi.sortMethod(e, t, n, this.sortDataValues);
|
|
7903
7903
|
}
|
|
7904
7904
|
}
|
|
7905
7905
|
});
|