quasar-factory-lib 0.0.16 → 0.0.18
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 +1 -1
- package/dist/components/Table/components/TableFilter.vue.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/pages/TablePage.vue.d.ts +3 -1
- package/dist/quasar-factory-lib.js +878 -877
- package/dist/quasar-factory-lib.umd.cjs +9 -9
- package/dist/store/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/components/Alert/index.ts +2 -0
- package/src/components/Table/components/TableFilter.vue +6 -9
- package/src/index.ts +1 -0
- package/src/pages/TablePage.vue +25 -0
|
@@ -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: {
|
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export { MyTable, Alert, Confirm } from './components/index.ts';
|
|
|
5
5
|
export type { TranslateKeys };
|
|
6
6
|
export * from './i18n/messages.js';
|
|
7
7
|
export * from './utils';
|
|
8
|
+
export * from './store';
|
|
8
9
|
import './css/app.css';
|
|
9
10
|
declare const plugin: Plugin;
|
|
10
11
|
export declare function updatePackageLanguage(lang: 'es' | 'en'): 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: {
|