quasar-factory-lib 0.0.59 → 0.0.61
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/AlertLabelsWithError/AlertLabelsWithError.vue.d.ts +11 -0
- package/dist/components/AlertLabelsWithError/index.d.ts +8 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/plugins.d.ts +2 -1
- package/dist/i18n/en/index.d.ts +1 -0
- package/dist/i18n/es/index.d.ts +1 -0
- package/dist/i18n/index.d.ts +2 -0
- package/dist/index.d.ts +1 -1
- package/dist/layouts/PdaLayout.vue.d.ts +24 -1
- package/dist/quasar-factory-lib.js +3879 -3678
- package/dist/quasar-factory-lib.umd.cjs +11 -11
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/AlertLabelsWithError/AlertLabelsWithError.vue +137 -0
- package/src/components/AlertLabelsWithError/index.ts +18 -0
- package/src/components/index.ts +2 -1
- package/src/components/plugins.ts +2 -1
- package/src/css/app.css +4 -0
- package/src/i18n/en/index.ts +2 -1
- package/src/i18n/es/index.ts +2 -1
- package/src/index.ts +3 -2
- package/src/layouts/PdaLayout.vue +43 -5
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
+
alert: boolean;
|
|
3
|
+
labelsErrors: never[];
|
|
4
|
+
}, {}, {
|
|
5
|
+
deleteLabelFromErrorMessage(index: number): void;
|
|
6
|
+
retryReadLabelAxios(label: string): void;
|
|
7
|
+
onCloseDialogLabelsError(): void;
|
|
8
|
+
setLabelsSpinner(labelCode: string, value: boolean): void;
|
|
9
|
+
setIconCircleCheck(labelCode: string): void;
|
|
10
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Plugin } from 'vue';
|
|
2
|
+
import AlertLabelsWithError from './AlertLabelsWithError.vue';
|
|
3
|
+
/** export button specific types */
|
|
4
|
+
/** export button plugin */
|
|
5
|
+
declare const _default: Plugin;
|
|
6
|
+
export default _default;
|
|
7
|
+
/** export button components */
|
|
8
|
+
export { AlertLabelsWithError as AlertLabelsWithError };
|
|
@@ -5,4 +5,5 @@ import TaskNavBar from './TaskNavBar';
|
|
|
5
5
|
import ConfirmedTask from './ConfirmedTask';
|
|
6
6
|
import TableRowsCounter from './TableRowsCounter';
|
|
7
7
|
import NavBarSkeleton from './NavBarSkeleton';
|
|
8
|
-
|
|
8
|
+
import AlertLabelsWithError from './AlertLabelsWithError';
|
|
9
|
+
export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertLabelsWithError };
|
package/dist/i18n/en/index.d.ts
CHANGED
package/dist/i18n/es/index.d.ts
CHANGED
package/dist/i18n/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ declare const i18n: import("vue-i18n").I18n<{
|
|
|
23
23
|
};
|
|
24
24
|
global: {
|
|
25
25
|
total: string;
|
|
26
|
+
retry: string;
|
|
26
27
|
};
|
|
27
28
|
taskConfirmed: {
|
|
28
29
|
repeatTask: string;
|
|
@@ -78,6 +79,7 @@ declare const i18n: import("vue-i18n").I18n<{
|
|
|
78
79
|
};
|
|
79
80
|
global: {
|
|
80
81
|
total: string;
|
|
82
|
+
retry: string;
|
|
81
83
|
};
|
|
82
84
|
taskConfirmed: {
|
|
83
85
|
repeatTask: string;
|
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, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton } from './components/index.ts';
|
|
4
|
+
export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertLabelsWithError } from './components/index.ts';
|
|
5
5
|
export type { TranslateKeys };
|
|
6
6
|
export * from './i18n/messages.js';
|
|
7
7
|
export * from './utils';
|
|
@@ -332,6 +332,9 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
332
332
|
toggleRightDrawer(): void;
|
|
333
333
|
toogleColumnsSelectorVisibility(): void;
|
|
334
334
|
onClickBtnMenu(): void;
|
|
335
|
+
retryReadLabel(): void;
|
|
336
|
+
onCloseDialogLabelsError(): void;
|
|
337
|
+
getX(): void;
|
|
335
338
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {
|
|
336
339
|
TaskNavBar: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
337
340
|
logo: {
|
|
@@ -394,7 +397,6 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
394
397
|
showBtnBack: boolean;
|
|
395
398
|
showBtnSearch: boolean;
|
|
396
399
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
397
|
-
SideBar: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
398
400
|
Table: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
399
401
|
columns: {
|
|
400
402
|
type: () => object[];
|
|
@@ -1316,5 +1318,26 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
|
1316
1318
|
required: true;
|
|
1317
1319
|
};
|
|
1318
1320
|
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1321
|
+
AlertLabelsWithError: import("vue").DefineComponent<{}, {}, {
|
|
1322
|
+
alert: boolean;
|
|
1323
|
+
labelsErrors: never[];
|
|
1324
|
+
}, {}, {
|
|
1325
|
+
deleteLabelFromErrorMessage(index: number): void;
|
|
1326
|
+
retryReadLabelAxios(label: string): void;
|
|
1327
|
+
onCloseDialogLabelsError(): void;
|
|
1328
|
+
setLabelsSpinner(labelCode: string, value: boolean): void;
|
|
1329
|
+
setIconCircleCheck(labelCode: string): void;
|
|
1330
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1331
|
+
NavBarSkeleton: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1332
|
+
smallDevice: {
|
|
1333
|
+
type: BooleanConstructor;
|
|
1334
|
+
required: true;
|
|
1335
|
+
};
|
|
1336
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1337
|
+
smallDevice: {
|
|
1338
|
+
type: BooleanConstructor;
|
|
1339
|
+
required: true;
|
|
1340
|
+
};
|
|
1341
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1319
1342
|
}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1320
1343
|
export default _default;
|