quasar-factory-lib 0.0.61 → 0.0.63
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 +0 -1
- package/dist/layouts/PdaLayout.vue.d.ts +1 -3
- package/dist/pages/TablePage.vue.d.ts +0 -2
- package/dist/quasar-factory-lib.js +391 -373
- package/dist/quasar-factory-lib.umd.cjs +5 -5
- package/dist/store/table.d.ts +0 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Confirm/ConfirmDialog.vue +1 -1
- package/src/components/ConfirmedTask/ConfirmedTask.vue +2 -2
- package/src/components/Table/Table.vue +12 -4
- package/src/components/Table/components/BasicCheckBox.vue +5 -0
- package/src/components/Table/components/CustomizedCheckBox.vue +5 -0
- package/src/components/Table/components/TableSlotGrid.vue +3 -1
- package/src/css/app.css +1 -4
- package/src/layouts/MenuLayout.vue +1 -0
- package/src/layouts/PdaLayout.vue +17 -28
- package/src/store/table.js +0 -2
|
@@ -98,7 +98,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
98
98
|
onUpdateCustomizedCheckboxValue(row: object): void;
|
|
99
99
|
clearTableSelection(): void;
|
|
100
100
|
toggleSearchVisibility(store: {
|
|
101
|
-
disableScannerButtons: boolean;
|
|
102
101
|
lastFilterValue: string;
|
|
103
102
|
valueInputFilterTable: string;
|
|
104
103
|
}): void;
|
|
@@ -2,7 +2,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
2
2
|
showDialog: boolean;
|
|
3
3
|
tabletMaxWidth: number;
|
|
4
4
|
store: import("pinia").Store<"tableStore", {
|
|
5
|
-
disableScannerButtons: import("@vueuse/shared").RemovableRef<boolean>;
|
|
6
5
|
filterValue: import("@vueuse/shared").RemovableRef<string>;
|
|
7
6
|
lastFilterValue: import("@vueuse/shared").RemovableRef<string>;
|
|
8
7
|
visiblecolumns: import("@vueuse/shared").RemovableRef<never[]>;
|
|
@@ -334,7 +333,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
334
333
|
onClickBtnMenu(): void;
|
|
335
334
|
retryReadLabel(): void;
|
|
336
335
|
onCloseDialogLabelsError(): void;
|
|
337
|
-
|
|
336
|
+
getAlertLabelsWithError(): void;
|
|
338
337
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
339
338
|
TaskNavBar: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
340
339
|
logo: {
|
|
@@ -497,7 +496,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
497
496
|
onUpdateCustomizedCheckboxValue(row: object): void;
|
|
498
497
|
clearTableSelection(): void;
|
|
499
498
|
toggleSearchVisibility(store: {
|
|
500
|
-
disableScannerButtons: boolean;
|
|
501
499
|
lastFilterValue: string;
|
|
502
500
|
valueInputFilterTable: string;
|
|
503
501
|
}): void;
|
|
@@ -2,7 +2,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
2
2
|
showSkeleton: boolean;
|
|
3
3
|
showDialog: boolean;
|
|
4
4
|
store: import("pinia").Store<"tableStore", {
|
|
5
|
-
disableScannerButtons: import("@vueuse/shared").RemovableRef<boolean>;
|
|
6
5
|
filterValue: import("@vueuse/shared").RemovableRef<string>;
|
|
7
6
|
lastFilterValue: import("@vueuse/shared").RemovableRef<string>;
|
|
8
7
|
visiblecolumns: import("@vueuse/shared").RemovableRef<never[]>;
|
|
@@ -391,7 +390,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
391
390
|
onUpdateCustomizedCheckboxValue(row: object): void;
|
|
392
391
|
clearTableSelection(): void;
|
|
393
392
|
toggleSearchVisibility(store: {
|
|
394
|
-
disableScannerButtons: boolean;
|
|
395
393
|
lastFilterValue: string;
|
|
396
394
|
valueInputFilterTable: string;
|
|
397
395
|
}): void;
|