quasar-factory-lib 0.0.17 → 0.0.19
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/Alert/{Alert.vue.d.ts → AlertDialog.vue.d.ts} +1 -1
- package/dist/components/Alert/index.d.ts +2 -2
- package/dist/components/Confirm/{Confirm.vue.d.ts → ConfirmDialog.vue.d.ts} +1 -1
- package/dist/components/Confirm/index.d.ts +2 -2
- package/dist/components/Table/Table.vue.d.ts +1 -1
- package/dist/components/Table/components/TableFilter.vue.d.ts +1 -1
- package/dist/components/plugins.d.ts +3 -3
- package/dist/index.d.ts +1 -1
- package/dist/pages/AlertPage.vue.d.ts +2 -2
- package/dist/pages/ConfirmPage.vue.d.ts +2 -2
- package/dist/pages/TablePage.vue.d.ts +3 -1
- package/dist/quasar-factory-lib.js +290 -289
- package/dist/quasar-factory-lib.umd.cjs +2 -2
- package/package.json +1 -1
- package/src/components/Alert/{Alert.vue → AlertDialog.vue} +2 -2
- package/src/components/Alert/index.ts +3 -3
- package/src/components/Confirm/{Confirm.vue → ConfirmDialog.vue} +2 -1
- package/src/components/Confirm/index.ts +3 -3
- package/src/components/Table/components/TableFilter.vue +4 -7
- package/src/components/plugins.ts +3 -3
- package/src/index.ts +4 -4
- package/src/pages/AlertPage.vue +4 -4
- package/src/pages/ConfirmPage.vue +4 -4
- package/src/pages/TablePage.vue +25 -0
- package/src/store/table.js +0 -1
|
@@ -31,7 +31,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
31
31
|
showPopUp: boolean;
|
|
32
32
|
message: string;
|
|
33
33
|
}, {}, {
|
|
34
|
-
|
|
34
|
+
openAlertAndSetMessage(message: string): void;
|
|
35
35
|
closePopup(): void;
|
|
36
36
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
37
37
|
dataCy: {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { Plugin } from 'vue';
|
|
2
|
-
import
|
|
2
|
+
import AlertDialog from './AlertDialog.vue';
|
|
3
3
|
/** export button specific types */
|
|
4
4
|
/** export button plugin */
|
|
5
5
|
declare const _default: Plugin;
|
|
6
6
|
export default _default;
|
|
7
7
|
/** export button components */
|
|
8
|
-
export {
|
|
8
|
+
export { AlertDialog as AlertDialog };
|
|
@@ -51,7 +51,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
51
51
|
alert: boolean;
|
|
52
52
|
message: string;
|
|
53
53
|
}, {}, {
|
|
54
|
-
|
|
54
|
+
openDialogAndSetMessage(msg: string): void;
|
|
55
55
|
closeAlert(): void;
|
|
56
56
|
onClickBtnCancel(): void;
|
|
57
57
|
onClickBtnConfirm(): void;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { Plugin } from 'vue';
|
|
2
|
-
import
|
|
2
|
+
import ConfirmDialog from './ConfirmDialog.vue';
|
|
3
3
|
/** export button specific types */
|
|
4
4
|
/** export button plugin */
|
|
5
5
|
declare const _default: Plugin;
|
|
6
6
|
export default _default;
|
|
7
7
|
/** export button components */
|
|
8
|
-
export {
|
|
8
|
+
export { ConfirmDialog as ConfirmDialog };
|
|
@@ -827,7 +827,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
827
827
|
localStore: Record<string, any>;
|
|
828
828
|
}, {}, {
|
|
829
829
|
inputFocus(): void;
|
|
830
|
-
|
|
830
|
+
cleanFilter(): void;
|
|
831
831
|
setFilterValue(val: any): void;
|
|
832
832
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
833
833
|
store: {
|
|
@@ -7,7 +7,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7
7
|
localStore: Record<string, any>;
|
|
8
8
|
}, {}, {
|
|
9
9
|
inputFocus(): void;
|
|
10
|
-
|
|
10
|
+
cleanFilter(): void;
|
|
11
11
|
setFilterValue(val: any): void;
|
|
12
12
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
13
|
store: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import MyTable from './Table';
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
export { MyTable,
|
|
2
|
+
import AlertDialog from './Alert';
|
|
3
|
+
import ConfirmDialog from './Confirm';
|
|
4
|
+
export { MyTable, AlertDialog, ConfirmDialog };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '@quasar/extras/material-icons/material-icons.css';
|
|
2
2
|
import { Plugin } from 'vue';
|
|
3
3
|
import TranslateKeys from './i18n/translateKeys.ts';
|
|
4
|
-
export { MyTable,
|
|
4
|
+
export { MyTable, AlertDialog, ConfirmDialog } from './components/index.ts';
|
|
5
5
|
export type { TranslateKeys };
|
|
6
6
|
export * from './i18n/messages.js';
|
|
7
7
|
export * from './utils';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
2
|
-
|
|
2
|
+
AlertDialog: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
3
|
dataCy: {
|
|
4
4
|
type: StringConstructor;
|
|
5
5
|
default: string;
|
|
@@ -32,7 +32,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import
|
|
|
32
32
|
showPopUp: boolean;
|
|
33
33
|
message: string;
|
|
34
34
|
}, {}, {
|
|
35
|
-
|
|
35
|
+
openAlertAndSetMessage(message: string): void;
|
|
36
36
|
closePopup(): void;
|
|
37
37
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
38
38
|
dataCy: {
|
|
@@ -2,7 +2,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {
|
|
|
2
2
|
onClickBtnCancel(): void;
|
|
3
3
|
onClickBtnConfirm(): void;
|
|
4
4
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
5
|
-
|
|
5
|
+
ConfirmDialog: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
6
|
persistent: {
|
|
7
7
|
type: BooleanConstructor;
|
|
8
8
|
default: boolean;
|
|
@@ -55,7 +55,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {
|
|
|
55
55
|
alert: boolean;
|
|
56
56
|
message: string;
|
|
57
57
|
}, {}, {
|
|
58
|
-
|
|
58
|
+
openDialogAndSetMessage(msg: string): void;
|
|
59
59
|
closeAlert(): void;
|
|
60
60
|
onClickBtnCancel(): void;
|
|
61
61
|
onClickBtnConfirm(): void;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
+
showDialog: boolean;
|
|
2
3
|
forceRender: boolean;
|
|
3
4
|
store: import("pinia").Store<"tableStore", {
|
|
4
5
|
disableScannerButtons: import("@vueuse/shared").RemovableRef<boolean>;
|
|
@@ -282,6 +283,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
282
283
|
onUpdateBasicCheckboxValue(rows: object[]): void;
|
|
283
284
|
onUpdateCustomizedCheckboxValue(rows: object[]): void;
|
|
284
285
|
setItemNotFound(rows: object[]): void;
|
|
286
|
+
close(): void;
|
|
285
287
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
286
288
|
Table: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
287
289
|
columns: {
|
|
@@ -1112,7 +1114,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1112
1114
|
localStore: Record<string, any>;
|
|
1113
1115
|
}, {}, {
|
|
1114
1116
|
inputFocus(): void;
|
|
1115
|
-
|
|
1117
|
+
cleanFilter(): void;
|
|
1116
1118
|
setFilterValue(val: any): void;
|
|
1117
1119
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1118
1120
|
store: {
|