quasar-factory-lib 0.1.5 → 0.1.7
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/SkeletonCardList/SkeletonCardList.vue.d.ts +2 -0
- package/dist/components/Table/Table.vue.d.ts +11 -1
- package/dist/layouts/PdaLayout.vue.d.ts +1955 -0
- package/dist/pages/TablePage.vue.d.ts +11 -1
- package/dist/quasar-factory-lib.js +8 -3
- package/dist/quasar-factory-lib.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/components/SkeletonCardList/SkeletonCardList.vue +39 -0
- package/src/components/Table/Table.vue +8 -2
- package/src/router/routes.ts +1 -1
- package/dist/layouts/PdaLayoutVueCompositionApi.vue.d.ts +0 -1681
|
@@ -624,6 +624,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
624
624
|
type: BooleanConstructor;
|
|
625
625
|
default: boolean;
|
|
626
626
|
};
|
|
627
|
+
rowsPerPageOptions: {
|
|
628
|
+
type: ArrayConstructor;
|
|
629
|
+
default: () => number[];
|
|
630
|
+
};
|
|
627
631
|
}>, {}, {
|
|
628
632
|
selected: never[];
|
|
629
633
|
filter: string;
|
|
@@ -680,7 +684,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
680
684
|
}): any;
|
|
681
685
|
getAdvancedFilterColumns(): void;
|
|
682
686
|
handleInfiniteScrollTableCompositionAPi(): void;
|
|
683
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
687
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP")[], "onSelectVisibleColumns" | "onClickButton" | "onClickIconToolTip" | "onSaveValuePopupEdit" | "onUpdateBasicCheckboxValue" | "onUpdateCustomizedCheckboxValue" | "modifyPriorityOrder" | "storeUpdated" | "deleteItem" | "openModalWithTable" | "setItemNotFound" | "onClickSeeTaskDetails" | "startMaintenanceTicket" | "pauseMaintenanceTicket" | "finishMaintenanceTicket" | "onRowClick" | "onUpdateSelected" | "setLineRemainingQty" | "setLineNoStock" | "onDoneLineMaintenanceTasks" | "reprintSULabel" | "onDragStart" | "onDragUpdate" | "onDragEnd" | "onClickRowBtnPrintOP", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
684
688
|
columns: {
|
|
685
689
|
type: () => object[];
|
|
686
690
|
required: true;
|
|
@@ -752,6 +756,10 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
752
756
|
type: BooleanConstructor;
|
|
753
757
|
default: boolean;
|
|
754
758
|
};
|
|
759
|
+
rowsPerPageOptions: {
|
|
760
|
+
type: ArrayConstructor;
|
|
761
|
+
default: () => number[];
|
|
762
|
+
};
|
|
755
763
|
}>> & Readonly<{
|
|
756
764
|
onOnSelectVisibleColumns?: ((...args: any[]) => any) | undefined;
|
|
757
765
|
onOnClickButton?: ((...args: any[]) => any) | undefined;
|
|
@@ -777,6 +785,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
777
785
|
onOnDragStart?: ((...args: any[]) => any) | undefined;
|
|
778
786
|
onOnDragUpdate?: ((...args: any[]) => any) | undefined;
|
|
779
787
|
onOnDragEnd?: ((...args: any[]) => any) | undefined;
|
|
788
|
+
onOnClickRowBtnPrintOP?: ((...args: any[]) => any) | undefined;
|
|
780
789
|
}>, {
|
|
781
790
|
selectionType: "none" | "multiple" | "single";
|
|
782
791
|
popupEditNumberOptions: unknown[];
|
|
@@ -791,6 +800,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
791
800
|
additionalFilterConditions: Function;
|
|
792
801
|
additionalSortConditions: Function;
|
|
793
802
|
showIconAdvancedFilter: boolean;
|
|
803
|
+
rowsPerPageOptions: unknown[];
|
|
794
804
|
}, {}, {
|
|
795
805
|
TableSlotHeader: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
796
806
|
tableProps: {
|
|
@@ -12910,6 +12910,10 @@ const q0 = wn({
|
|
|
12910
12910
|
showIconAdvancedFilter: {
|
|
12911
12911
|
type: Boolean,
|
|
12912
12912
|
default: !1
|
|
12913
|
+
},
|
|
12914
|
+
rowsPerPageOptions: {
|
|
12915
|
+
type: Array,
|
|
12916
|
+
default: () => [0]
|
|
12913
12917
|
}
|
|
12914
12918
|
},
|
|
12915
12919
|
emits: [
|
|
@@ -12936,7 +12940,8 @@ const q0 = wn({
|
|
|
12936
12940
|
"onDragStart",
|
|
12937
12941
|
"onDragUpdate",
|
|
12938
12942
|
"onDragEnd",
|
|
12939
|
-
"modifyPriorityOrder"
|
|
12943
|
+
"modifyPriorityOrder",
|
|
12944
|
+
"onClickRowBtnPrintOP"
|
|
12940
12945
|
],
|
|
12941
12946
|
data() {
|
|
12942
12947
|
return {
|
|
@@ -13168,7 +13173,7 @@ function $0(e, t, n, o, a, l) {
|
|
|
13168
13173
|
rows: e.rowsData,
|
|
13169
13174
|
columns: e.columns,
|
|
13170
13175
|
"row-key": e.rowKey,
|
|
13171
|
-
"rows-per-page-options":
|
|
13176
|
+
"rows-per-page-options": e.rowsPerPageOptions,
|
|
13172
13177
|
selection: e.selectionType,
|
|
13173
13178
|
"visible-columns": e.visibleColumns,
|
|
13174
13179
|
"table-class": "text-grey-9",
|
|
@@ -13256,7 +13261,7 @@ function $0(e, t, n, o, a, l) {
|
|
|
13256
13261
|
}, null, 8, ["table-props", "selection-type", "popup-edit-number-options", "getCellClass", "onOnUpdateCustomizedCheckboxValue", "onOnUpdateBasicCheckboxValue", "onOnSaveValuePopupEdit", "onOnClickButton", "onOnClickIconToolTip", "onClick"]))
|
|
13257
13262
|
]),
|
|
13258
13263
|
_: 1
|
|
13259
|
-
}, 8, ["selected", "grid", "style", "filter-method", "rows", "columns", "row-key", "selection", "visible-columns", "filter", "sort-method", "selected-rows-label", "loading", "grid-header"]), [
|
|
13264
|
+
}, 8, ["selected", "grid", "style", "filter-method", "rows", "columns", "row-key", "rows-per-page-options", "selection", "visible-columns", "filter", "sort-method", "selected-rows-label", "loading", "grid-header"]), [
|
|
13260
13265
|
[Lo, !e.showSkeleton]
|
|
13261
13266
|
]),
|
|
13262
13267
|
xn(V(f, { id: "tableSkeleton" }, null, 512), [
|