quasar-factory-lib 0.0.60 → 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/{AlertWithLabelsError → AlertLabelsWithError}/index.d.ts +2 -2
- package/dist/components/index.d.ts +1 -1
- package/dist/components/plugins.d.ts +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/quasar-factory-lib.js +5 -5
- package/dist/quasar-factory-lib.umd.cjs +2 -2
- package/package.json +1 -1
- package/src/components/{AlertWithLabelsError/AlertWithLabelsError.vue → AlertLabelsWithError/AlertLabelsWithError.vue} +3 -3
- package/src/components/{AlertWithLabelsError → AlertLabelsWithError}/index.ts +3 -3
- package/src/components/index.ts +1 -1
- package/src/components/plugins.ts +2 -2
- package/src/index.ts +3 -3
- package/src/layouts/PdaLayout.vue +1 -1
- /package/dist/components/{AlertWithLabelsError/AlertWithLabelsError.vue.d.ts → AlertLabelsWithError/AlertLabelsWithError.vue.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
<span class="float-left">
|
|
57
57
|
<q-btn
|
|
58
58
|
flat
|
|
59
|
-
size="
|
|
59
|
+
size="md"
|
|
60
60
|
class="text-blue"
|
|
61
61
|
data-cy="retry"
|
|
62
62
|
@click="retryReadLabelAxios(item.label)"
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
<q-btn
|
|
70
70
|
flat
|
|
71
71
|
round
|
|
72
|
-
size="
|
|
72
|
+
size="md"
|
|
73
73
|
color="secondary"
|
|
74
74
|
icon="delete"
|
|
75
75
|
data-cy="deleteLabelFromErrorsList"
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
import { defineComponent } from 'vue'
|
|
96
96
|
|
|
97
97
|
export default defineComponent({
|
|
98
|
-
name: '
|
|
98
|
+
name: 'AlertLabelsWithError',
|
|
99
99
|
data () {
|
|
100
100
|
return {
|
|
101
101
|
alert: false,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { App, Plugin } from 'vue'
|
|
2
2
|
|
|
3
|
-
import
|
|
3
|
+
import AlertLabelsWithError from './AlertLabelsWithError.vue'
|
|
4
4
|
|
|
5
5
|
import { registerComponent } from '@/utils/plugins'
|
|
6
6
|
|
|
@@ -10,9 +10,9 @@ import { registerComponent } from '@/utils/plugins'
|
|
|
10
10
|
/** export button plugin */
|
|
11
11
|
export default {
|
|
12
12
|
install (app: App) {
|
|
13
|
-
registerComponent(app, '
|
|
13
|
+
registerComponent(app, 'AlertLabelsWithError', AlertLabelsWithError)
|
|
14
14
|
}
|
|
15
15
|
} as Plugin
|
|
16
16
|
|
|
17
17
|
/** export button components */
|
|
18
|
-
export {
|
|
18
|
+
export { AlertLabelsWithError as AlertLabelsWithError }
|
package/src/components/index.ts
CHANGED
|
@@ -5,6 +5,6 @@ import TaskNavBar from './TaskNavBar'
|
|
|
5
5
|
import ConfirmedTask from './ConfirmedTask'
|
|
6
6
|
import TableRowsCounter from './TableRowsCounter'
|
|
7
7
|
import NavBarSkeleton from './NavBarSkeleton'
|
|
8
|
-
import
|
|
9
|
-
export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton,
|
|
8
|
+
import AlertLabelsWithError from './AlertLabelsWithError'
|
|
9
|
+
export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertLabelsWithError }
|
|
10
10
|
|
package/src/index.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import '@quasar/extras/material-icons/material-icons.css'
|
|
2
2
|
import { Quasar } from 'quasar'
|
|
3
3
|
import { App, Plugin } from 'vue'
|
|
4
|
-
import { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton,
|
|
4
|
+
import { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertLabelsWithError} from './components/plugins.ts'
|
|
5
5
|
import { registerPlugin, setVueInstance } from './utils/plugins.ts'
|
|
6
6
|
import TranslateKeys from './i18n/translateKeys.ts'
|
|
7
7
|
import { createPinia } from 'pinia'
|
|
8
|
-
export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton,
|
|
8
|
+
export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertLabelsWithError } from './components/index.ts'
|
|
9
9
|
|
|
10
10
|
export type { TranslateKeys }
|
|
11
11
|
// import plugins from "./components/plugins";
|
|
@@ -28,7 +28,7 @@ const plugin: Plugin = {
|
|
|
28
28
|
registerPlugin(app, ConfirmedTask)
|
|
29
29
|
registerPlugin(app, TableRowsCounter)
|
|
30
30
|
registerPlugin(app, NavBarSkeleton)
|
|
31
|
-
registerPlugin(app,
|
|
31
|
+
registerPlugin(app, AlertLabelsWithError)
|
|
32
32
|
app.use(i18n)
|
|
33
33
|
app.use(pinia)
|
|
34
34
|
i18n.global.locale = 'en'
|
|
@@ -77,7 +77,7 @@ import Table from '../components/Table/Table.vue'
|
|
|
77
77
|
// import SideBar from '../components/TaskNavBar/SideBar.vue'
|
|
78
78
|
import NavBarSkeleton from '../components/NavBarSkeleton/NavBarSkeleton.vue'
|
|
79
79
|
import TableRowsCounter from'../components/TableRowsCounter/TableRowsCounter.vue'
|
|
80
|
-
import AlertLabelsWithError from '../components/
|
|
80
|
+
import AlertLabelsWithError from '../components/AlertLabelsWithError/AlertLabelsWithError.vue'
|
|
81
81
|
import setTableHeight from '../components/Table/utils/setTableHeight'
|
|
82
82
|
import infiniteScroll from '../components/Table/utils/infiniteScroll'
|
|
83
83
|
import { tableStore } from '../store/table.js'
|