quasar-factory-lib 0.0.38 → 0.0.40
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/Table.vue.d.ts +8 -0
- package/dist/components/Table/utils/filterMethod.d.ts +1 -0
- package/dist/layouts/PdaLayout.vue.d.ts +1194 -0
- package/dist/pages/TablePage.vue.d.ts +8 -0
- package/dist/quasar-factory-lib.js +461 -442
- package/dist/quasar-factory-lib.umd.cjs +11 -11
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Table/Table.vue +12 -6
- package/src/components/Table/components/TableSlotBody.vue +16 -11
- package/src/components/Table/components/TableSlotGrid.vue +10 -10
- package/src/components/Table/components/TableSlotHeader.vue +7 -2
- package/src/components/Table/utils/filterMethod.ts +5 -1
- package/src/css/app.css +3 -0
- package/src/layouts/MenuLayout.vue +6 -0
- package/src/layouts/PdaLayout.vue +549 -0
- package/src/router/routes.ts +4 -0
- package/src/store/table.js +1 -1
|
@@ -362,6 +362,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
362
362
|
showSkeleton: {
|
|
363
363
|
type: BooleanConstructor;
|
|
364
364
|
};
|
|
365
|
+
filteredRows: {
|
|
366
|
+
type: () => object[] | [];
|
|
367
|
+
required: true;
|
|
368
|
+
};
|
|
365
369
|
}>, {}, {
|
|
366
370
|
selected: never[];
|
|
367
371
|
filter: string;
|
|
@@ -463,6 +467,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
463
467
|
showSkeleton: {
|
|
464
468
|
type: BooleanConstructor;
|
|
465
469
|
};
|
|
470
|
+
filteredRows: {
|
|
471
|
+
type: () => object[] | [];
|
|
472
|
+
required: true;
|
|
473
|
+
};
|
|
466
474
|
}>> & Readonly<{
|
|
467
475
|
onOnSelectVisibleColumns?: ((...args: any[]) => any) | undefined;
|
|
468
476
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|