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/package.json CHANGED
@@ -97,6 +97,6 @@
97
97
  "release": "standard-version"
98
98
  },
99
99
  "type": "module",
100
- "version": "0.0.60",
100
+ "version": "0.0.61",
101
101
  "author": ""
102
102
  }
@@ -56,7 +56,7 @@
56
56
  <span class="float-left">
57
57
  <q-btn
58
58
  flat
59
- size="sm"
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="sm"
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: 'AlertWithLabelsError',
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 AlertWithLabelsError from './AlertWithLabelsError.vue'
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, 'AlertWithLabelsError', AlertWithLabelsError)
13
+ registerComponent(app, 'AlertLabelsWithError', AlertLabelsWithError)
14
14
  }
15
15
  } as Plugin
16
16
 
17
17
  /** export button components */
18
- export { AlertWithLabelsError as AlertWithLabelsError }
18
+ export { AlertLabelsWithError as AlertLabelsWithError }
@@ -5,4 +5,4 @@ export * from './TaskNavBar'
5
5
  export * from './ConfirmedTask'
6
6
  export * from './TableRowsCounter'
7
7
  export * from './NavBarSkeleton'
8
- export * from './AlertWithLabelsError'
8
+ export * from './AlertLabelsWithError'
@@ -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 AlertWithLabelsError from './AlertWithLabelsError'
9
- export { MyTable, AlertDialog, ConfirmDialog, TaskNavBar, ConfirmedTask, TableRowsCounter, NavBarSkeleton, AlertWithLabelsError }
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, AlertWithLabelsError} from './components/plugins.ts'
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, AlertWithLabelsError } from './components/index.ts'
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, AlertWithLabelsError)
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/AlertWithLabelsError/AlertWithLabelsError.vue'
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'