quasar-factory-lib 0.1.4 → 0.1.6
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 +157 -161
- package/dist/quasar-factory-lib.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/SkeletonCardList/SkeletonCardList.vue +39 -0
- package/src/components/Table/Table.vue +9 -12
- package/src/components/Table/css/table.css +0 -3
- package/src/layouts/PdaLayout.vue +1 -0
- 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: {
|