quasar-factory-lib 0.0.51 → 0.0.52
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/Table/utils/setTableHeight.d.ts +1 -0
- package/dist/pages/TablePage.vue.d.ts +1 -1
- package/dist/quasar-factory-lib.js +11 -1
- package/dist/quasar-factory-lib.umd.cjs +9 -9
- package/package.json +1 -1
- package/src/components/Table/components/TableSlotGrid.vue +1 -1
- package/src/components/Table/utils/setTableHeight.ts +13 -0
- package/src/pages/TablePage.vue +12 -8
|
@@ -288,7 +288,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
288
288
|
onUpdateCustomizedCheckboxValue(rows: object[]): void;
|
|
289
289
|
setItemNotFound(rows: object[]): void;
|
|
290
290
|
getCellClass(row: any, col: any): "" | "text-color-negative-bold";
|
|
291
|
-
additionalFilterConditions(rows_: object[] | [], filteredRowsParam_: object[] | []):
|
|
291
|
+
additionalFilterConditions(rows_: object[] | [], filteredRowsParam_: object[] | []): object[];
|
|
292
292
|
additionalSortConditions(filteredRowsData: object[] | [], rows: object[] | []): object[] | undefined;
|
|
293
293
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
294
294
|
Table: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -7284,7 +7284,7 @@ function og(e, t, n, o, r, l) {
|
|
|
7284
7284
|
default: ie(() => [
|
|
7285
7285
|
ee(Lt, { class: "itemsFontSize ellipsis text-color-lightGray" }, {
|
|
7286
7286
|
default: ie(() => [
|
|
7287
|
-
Sr(On(u.label)
|
|
7287
|
+
Sr(On(u.label), 1)
|
|
7288
7288
|
]),
|
|
7289
7289
|
_: 2
|
|
7290
7290
|
}, 1024)
|
|
@@ -13184,6 +13184,16 @@ const Yp = {
|
|
|
13184
13184
|
}
|
|
13185
13185
|
const r = Number(t) + Number(o);
|
|
13186
13186
|
return `height:${window.innerHeight - r}px`;
|
|
13187
|
+
},
|
|
13188
|
+
setModalTableHeight(e) {
|
|
13189
|
+
const t = document.getElementById(e);
|
|
13190
|
+
let n = "";
|
|
13191
|
+
if (t) {
|
|
13192
|
+
const r = window.getComputedStyle(t).height;
|
|
13193
|
+
r !== "auto" && (n = r.replace("px", ""));
|
|
13194
|
+
}
|
|
13195
|
+
const o = Number(n);
|
|
13196
|
+
return `height:${window.innerHeight - o}px`;
|
|
13187
13197
|
}
|
|
13188
13198
|
}, Uy = {
|
|
13189
13199
|
sortMethod(e, t, n, o = []) {
|