shared-ritm 1.2.73 → 1.2.75

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.
Files changed (53) hide show
  1. package/README.md +103 -103
  2. package/dist/index.css +1 -1
  3. package/dist/shared-ritm.es.js +15 -15
  4. package/dist/shared-ritm.umd.js +8 -8
  5. package/dist/types/api/services/TasksService.d.ts +4 -3
  6. package/dist/types/api/types/Api_Tasks.d.ts +54 -23
  7. package/dist/types/api/types/Api_Users.d.ts +43 -0
  8. package/package.json +64 -64
  9. package/src/api/services/PhotoService.ts +137 -137
  10. package/src/api/services/RepairsService.ts +119 -119
  11. package/src/api/services/TasksService.ts +4 -4
  12. package/src/api/services/UserService.ts +19 -19
  13. package/src/api/types/Api_Controls.ts +72 -72
  14. package/src/api/types/Api_Files.ts +1 -1
  15. package/src/api/types/Api_Instruments.ts +98 -98
  16. package/src/api/types/Api_Projects.ts +55 -55
  17. package/src/api/types/Api_Repairs.ts +115 -115
  18. package/src/api/types/Api_Tasks.ts +59 -25
  19. package/src/api/types/Api_User.ts +44 -44
  20. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  21. package/src/common/app-datepicker/AppDatepicker.vue +165 -165
  22. package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
  23. package/src/common/app-dropdown/AppDropdown.vue +31 -31
  24. package/src/common/app-input/AppInput.vue +148 -148
  25. package/src/common/app-input-new/AppInputNew.vue +152 -152
  26. package/src/common/app-select/AppSelect.vue +157 -157
  27. package/src/common/app-sheet/AppSheet.vue +120 -120
  28. package/src/common/app-sidebar/components/SidebarMenuItem.vue +148 -148
  29. package/src/common/app-table/AppTable.vue +297 -297
  30. package/src/common/app-table/AppTableLayout.vue +111 -111
  31. package/src/common/app-table/components/ModalSelect.vue +270 -270
  32. package/src/common/app-table/components/TableModal.vue +329 -329
  33. package/src/common/app-table/components/TablePagination.vue +152 -152
  34. package/src/common/app-table/components/TableSearch.vue +76 -76
  35. package/src/common/app-table/controllers/useBaseTable.ts +42 -42
  36. package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
  37. package/src/common/app-table/controllers/useTableModel.ts +93 -93
  38. package/src/common/app-toggle/AppToggle.vue +24 -24
  39. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  40. package/src/icons/components/table-filter-icon.vue +30 -30
  41. package/src/icons/dialogs/RemoveIcon.vue +12 -12
  42. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  43. package/src/icons/task/attention-icon.vue +13 -13
  44. package/src/icons/task/clock-icon.vue +10 -10
  45. package/src/icons/task/delete-icon.vue +10 -10
  46. package/src/icons/task/fire-icon.vue +16 -16
  47. package/src/index.ts +103 -103
  48. package/src/main.ts +28 -28
  49. package/src/shared/styles/general.css +125 -125
  50. package/src/styles/variables.sass +12 -12
  51. package/src/utils/confirm.ts +12 -12
  52. package/src/utils/helpers.ts +58 -58
  53. package/src/utils/notification.ts +9 -9
package/src/index.ts CHANGED
@@ -1,103 +1,103 @@
1
- import '@/shared/styles/general.css'
2
- import AppButton from '@/common/app-button/AppButton.vue'
3
- import AppCheckbox from '@/common/app-checkbox/AppCheckbox.vue'
4
- import AppDatePicker from '@/common/app-date-picker/AppDatePicker.vue'
5
- import AppDatepicker from '@/common/app-datepicker/AppDatepicker.vue'
6
- import AppInput from '@/common/app-input/AppInput.vue'
7
- import AppInputNew from '@/common/app-input-new/AppInputNew.vue'
8
- import AppInputSearch from '@/common/app-input-search/AppInputSearch.vue'
9
- import AppLayout from '@/common/app-layout/AppLayout.vue'
10
- import AppLayoutHeader from '@/common/app-layout/components/AppLayoutHeader.vue'
11
- import AppLayoutPage from '@/common/app-layout/components/AppLayoutPage.vue'
12
- import AppLoader from '@/common/app-loader/index.vue'
13
- import AppSelect from '@/common/app-select/AppSelect.vue'
14
- import AppSheet from '@/common/app-sheet/AppSheet.vue'
15
- import AppSidebar from '@/common/app-sidebar/AppSidebar.vue'
16
- import AppToggle from '@/common/app-toggle/AppToggle.vue'
17
- import AppWrapper from '@/common/app-wrapper/AppWrapper.vue'
18
- import AppConfirmDialog from '@/common/app-dialogs/AppConfirmDialog.vue'
19
- import AppDropdown from '@/common/app-dropdown/AppDropdown.vue'
20
- import AppTablePagination from '@/common/app-table/components/TablePagination.vue'
21
- import AppTableSearch from '@/common/app-table/components/TableSearch.vue'
22
- import AppTableModal from '@/common/app-table/components/TableModal.vue'
23
- import AppTable from '@/common/app-table/AppTable.vue'
24
- import AppTableLayout from '@/common/app-table/AppTableLayout.vue'
25
- import AppModalSelect from '@/common/app-table/components/ModalSelect.vue'
26
-
27
- import ApiService from '@/api/settings/ApiService'
28
- import useGanttService from '@/api/services/GanttService'
29
- import useMetricsService from '@/api/services/MetricsService'
30
- import useProjectsService from '@/api/services/ProjectsService'
31
- import useRepairsService from '@/api/services/RepairsService'
32
- import useTasksService from '@/api/services/TasksService'
33
- import useAuthService from '@/api/services/AuthService'
34
- import useFileService from '@/api/services/FileService'
35
- import useVideoService from '@/api/services/VideoService'
36
- import useUserService from '@/api/services/UserService'
37
- import usePhotoService from '@/api/services/PhotoService'
38
- import useInstrumentsService from '@/api/services/InstrumentsService'
39
- import useControlsService from '@/api/services/ControlsService'
40
- import useSearchService from '@/api/services/SearchService'
41
-
42
- export {
43
- AppButton,
44
- AppCheckbox,
45
- AppDatepicker,
46
- AppDatePicker,
47
- AppInput,
48
- AppInputNew,
49
- AppInputSearch,
50
- AppLayout,
51
- AppLayoutHeader,
52
- AppLayoutPage,
53
- AppLoader,
54
- AppSelect,
55
- AppSheet,
56
- AppSidebar,
57
- AppToggle,
58
- AppWrapper,
59
- AppConfirmDialog,
60
- AppDropdown,
61
- AppTablePagination,
62
- AppTableSearch,
63
- AppTableModal,
64
- AppTable,
65
- AppTableLayout,
66
- AppModalSelect,
67
- }
68
-
69
- export {
70
- ApiService,
71
- useAuthService,
72
- useGanttService,
73
- useMetricsService,
74
- useProjectsService,
75
- useRepairsService,
76
- useTasksService,
77
- useFileService,
78
- useControlsService,
79
- useVideoService,
80
- useUserService,
81
- usePhotoService,
82
- useInstrumentsService,
83
- useSearchService,
84
- }
85
- export { useBaseTable } from './common/app-table/controllers/useBaseTable'
86
- export { useTableModel } from './common/app-table/controllers/useTableModel'
87
- export { useColumnSelector } from './common/app-table/controllers/useColumnSelector'
88
-
89
- export type { FilterOption, TableModel, TableColumn } from './common/app-table/controllers/useTableModel'
90
-
91
- export type { NotificationType } from './utils/notification'
92
- export { notificationSettings } from './utils/notification'
93
- export * from './utils/helpers'
94
-
95
- export * from './api/types/Api_Service'
96
- export * from './api/types/Api_Tasks'
97
- export * from './api/types/Api_Repairs'
98
- export * from './api/types/Api_Projects'
99
- export * from './api/types/Api_Controls'
100
- export * from './api/types/Api_Instruments'
101
- export * from './api/types/Api_Search'
102
- export * from './api/types/Api_User'
103
- // export * from '@/api/types/Api_Metrics'
1
+ import '@/shared/styles/general.css'
2
+ import AppButton from '@/common/app-button/AppButton.vue'
3
+ import AppCheckbox from '@/common/app-checkbox/AppCheckbox.vue'
4
+ import AppDatePicker from '@/common/app-date-picker/AppDatePicker.vue'
5
+ import AppDatepicker from '@/common/app-datepicker/AppDatepicker.vue'
6
+ import AppInput from '@/common/app-input/AppInput.vue'
7
+ import AppInputNew from '@/common/app-input-new/AppInputNew.vue'
8
+ import AppInputSearch from '@/common/app-input-search/AppInputSearch.vue'
9
+ import AppLayout from '@/common/app-layout/AppLayout.vue'
10
+ import AppLayoutHeader from '@/common/app-layout/components/AppLayoutHeader.vue'
11
+ import AppLayoutPage from '@/common/app-layout/components/AppLayoutPage.vue'
12
+ import AppLoader from '@/common/app-loader/index.vue'
13
+ import AppSelect from '@/common/app-select/AppSelect.vue'
14
+ import AppSheet from '@/common/app-sheet/AppSheet.vue'
15
+ import AppSidebar from '@/common/app-sidebar/AppSidebar.vue'
16
+ import AppToggle from '@/common/app-toggle/AppToggle.vue'
17
+ import AppWrapper from '@/common/app-wrapper/AppWrapper.vue'
18
+ import AppConfirmDialog from '@/common/app-dialogs/AppConfirmDialog.vue'
19
+ import AppDropdown from '@/common/app-dropdown/AppDropdown.vue'
20
+ import AppTablePagination from '@/common/app-table/components/TablePagination.vue'
21
+ import AppTableSearch from '@/common/app-table/components/TableSearch.vue'
22
+ import AppTableModal from '@/common/app-table/components/TableModal.vue'
23
+ import AppTable from '@/common/app-table/AppTable.vue'
24
+ import AppTableLayout from '@/common/app-table/AppTableLayout.vue'
25
+ import AppModalSelect from '@/common/app-table/components/ModalSelect.vue'
26
+
27
+ import ApiService from '@/api/settings/ApiService'
28
+ import useGanttService from '@/api/services/GanttService'
29
+ import useMetricsService from '@/api/services/MetricsService'
30
+ import useProjectsService from '@/api/services/ProjectsService'
31
+ import useRepairsService from '@/api/services/RepairsService'
32
+ import useTasksService from '@/api/services/TasksService'
33
+ import useAuthService from '@/api/services/AuthService'
34
+ import useFileService from '@/api/services/FileService'
35
+ import useVideoService from '@/api/services/VideoService'
36
+ import useUserService from '@/api/services/UserService'
37
+ import usePhotoService from '@/api/services/PhotoService'
38
+ import useInstrumentsService from '@/api/services/InstrumentsService'
39
+ import useControlsService from '@/api/services/ControlsService'
40
+ import useSearchService from '@/api/services/SearchService'
41
+
42
+ export {
43
+ AppButton,
44
+ AppCheckbox,
45
+ AppDatepicker,
46
+ AppDatePicker,
47
+ AppInput,
48
+ AppInputNew,
49
+ AppInputSearch,
50
+ AppLayout,
51
+ AppLayoutHeader,
52
+ AppLayoutPage,
53
+ AppLoader,
54
+ AppSelect,
55
+ AppSheet,
56
+ AppSidebar,
57
+ AppToggle,
58
+ AppWrapper,
59
+ AppConfirmDialog,
60
+ AppDropdown,
61
+ AppTablePagination,
62
+ AppTableSearch,
63
+ AppTableModal,
64
+ AppTable,
65
+ AppTableLayout,
66
+ AppModalSelect,
67
+ }
68
+
69
+ export {
70
+ ApiService,
71
+ useAuthService,
72
+ useGanttService,
73
+ useMetricsService,
74
+ useProjectsService,
75
+ useRepairsService,
76
+ useTasksService,
77
+ useFileService,
78
+ useControlsService,
79
+ useVideoService,
80
+ useUserService,
81
+ usePhotoService,
82
+ useInstrumentsService,
83
+ useSearchService,
84
+ }
85
+ export { useBaseTable } from './common/app-table/controllers/useBaseTable'
86
+ export { useTableModel } from './common/app-table/controllers/useTableModel'
87
+ export { useColumnSelector } from './common/app-table/controllers/useColumnSelector'
88
+
89
+ export type { FilterOption, TableModel, TableColumn } from './common/app-table/controllers/useTableModel'
90
+
91
+ export type { NotificationType } from './utils/notification'
92
+ export { notificationSettings } from './utils/notification'
93
+ export * from './utils/helpers'
94
+
95
+ export * from './api/types/Api_Service'
96
+ export * from './api/types/Api_Tasks'
97
+ export * from './api/types/Api_Repairs'
98
+ export * from './api/types/Api_Projects'
99
+ export * from './api/types/Api_Controls'
100
+ export * from './api/types/Api_Instruments'
101
+ export * from './api/types/Api_Search'
102
+ export * from './api/types/Api_User'
103
+ // export * from '@/api/types/Api_Metrics'
package/src/main.ts CHANGED
@@ -1,28 +1,28 @@
1
- import { createApp } from 'vue'
2
- import { Quasar, quasarUserOptions } from './quasar-user-options'
3
- import router from './router/index'
4
-
5
- import '@quasar/extras/material-icons/material-icons.css'
6
- import 'quasar/src/css/index.sass'
7
-
8
- import '@/shared/styles/general.css'
9
-
10
- import App from './App.vue'
11
-
12
- const app = createApp(App)
13
-
14
- //@ts-ignore
15
- app.use(Quasar, quasarUserOptions)
16
-
17
- app.use(router)
18
- app.mount('#app')
19
-
20
- const observerErrRe = /^ResizeObserver loop completed/
21
-
22
- const originalConsoleError = console.error
23
- console.error = (...args) => {
24
- if (typeof args[0] === 'string' && observerErrRe.test(args[0])) {
25
- return
26
- }
27
- originalConsoleError(...args)
28
- }
1
+ import { createApp } from 'vue'
2
+ import { Quasar, quasarUserOptions } from './quasar-user-options'
3
+ import router from './router/index'
4
+
5
+ import '@quasar/extras/material-icons/material-icons.css'
6
+ import 'quasar/src/css/index.sass'
7
+
8
+ import '@/shared/styles/general.css'
9
+
10
+ import App from './App.vue'
11
+
12
+ const app = createApp(App)
13
+
14
+ //@ts-ignore
15
+ app.use(Quasar, quasarUserOptions)
16
+
17
+ app.use(router)
18
+ app.mount('#app')
19
+
20
+ const observerErrRe = /^ResizeObserver loop completed/
21
+
22
+ const originalConsoleError = console.error
23
+ console.error = (...args) => {
24
+ if (typeof args[0] === 'string' && observerErrRe.test(args[0])) {
25
+ return
26
+ }
27
+ originalConsoleError(...args)
28
+ }
@@ -1,125 +1,125 @@
1
- :root {
2
- --main-header-height: 73px;
3
- --main-footer-height: 66px;
4
- --sidebar-width-max: 250px;
5
- --sidebar-width-min: 66px;
6
- }
7
-
8
- /*border-radius*/
9
- :root {
10
- --border-radius-xxs: 4px;
11
- --border-radius-xs: 8px;
12
- --border-radius-s: 12px;
13
- --border-radius-m: 16px;
14
- }
15
-
16
- /*color*/
17
- :root {
18
- --g-blue: #3f8cff;
19
- --g-blue-light: #e4efff;
20
- --g-blue-dark: #1c75ff;
21
- --g-green: #00d097;
22
- --g-green-light: #e0f9f2;
23
- --g-green-dark: #b8f8e7;
24
- --g-red: #ff192d;
25
- --g-red-light: #fdecee;
26
- --g-red-dark: #ffdcde;
27
- --g-grey-100: #d8e0f0;
28
-
29
- --g-font-color: #0a1629;
30
- --g-font-grey-color: #b9c0c7;
31
- --g-font-secondary-color: #7d8592;
32
-
33
- --g-grey-background: #ced5e0;
34
- --g-grey-hover-background: #9fa5af;
35
- --g-secondary-background: #f4f9fd;
36
- --g-thirty-background: #c8cbcf;
37
-
38
- --g-fire-color-1: #fee7e7;
39
- --g-fire-color-2: #fed4d5;
40
- --g-fire-color-3: #fcc0c0;
41
- --g-fire-color-4: #f9a2a2;
42
- --g-fire-color-5: #f97d7e;
43
- --g-fire-color-6: #f65160;
44
- --g-fire-color-7: #ff192d;
45
- --g-fire-color-8: #ab0514;
46
- --g-fire-color-9: #6e000a;
47
- }
48
-
49
- * {
50
- margin: 0;
51
- padding: 0;
52
- }
53
-
54
- button:active,
55
- button:focus {
56
- outline: none !important;
57
- }
58
-
59
- html {
60
- font-family: 'NunitoSansFont', sans-serif !important;
61
- }
62
-
63
- .ant-dropdown {
64
- z-index: 10000;
65
- .content {
66
- z-index: 10000;
67
- }
68
- }
69
-
70
- @font-face {
71
- font-family: 'NunitoSansFont';
72
- src: local('NunitoSansFont-Regular'), url('../fonts/NunitoSansFont.ttf') format('truetype');
73
- font-weight: 400;
74
- font-style: normal;
75
- }
76
-
77
- @font-face {
78
- font-family: 'NunitoSansFont';
79
- src: local('NunitoSansFont-Bold'), url('../fonts/NunitoSans_7pt-Bold.ttf') format('truetype');
80
- font-weight: 700;
81
- font-style: normal;
82
- }
83
-
84
- @font-face {
85
- font-family: 'Montserrat';
86
- src: local('Montserrat-Regular'), url('../fonts/Montserrat.ttf') format('truetype');
87
- font-weight: 400;
88
- font-style: normal;
89
- }
90
-
91
- @font-face {
92
- font-family: 'Montserrat';
93
- src: local('Montserrat-Bold'), url('../fonts/Montserrat-Bold.ttf') format('truetype');
94
- font-weight: 700;
95
- font-style: normal;
96
- }
97
-
98
- @font-face {
99
- font-family: 'Inter';
100
- src: local('Inter-Regular'), url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
101
- font-weight: 400;
102
- font-style: normal;
103
- }
104
-
105
- @font-face {
106
- font-family: 'Inter';
107
- src: local('Inter-SemiBold'), url('../fonts/Inter_18pt-SemiBold.ttf') format('truetype');
108
- font-weight: 600;
109
- font-style: normal;
110
- }
111
-
112
- @font-face {
113
- font-family: 'Inter';
114
- src: local('Inter-Bold'), url('../fonts/Inter_18pt-Bold.ttf') format('truetype');
115
- font-weight: 700;
116
- font-style: normal;
117
- }
118
-
119
- @font-face {
120
- font-family: 'Inter';
121
- src: local('Inter-Black'), url('../fonts/Inter_18pt-Black.ttf') format('truetype');
122
- font-weight: 900;
123
- font-style: normal;
124
- }
125
-
1
+ :root {
2
+ --main-header-height: 73px;
3
+ --main-footer-height: 66px;
4
+ --sidebar-width-max: 250px;
5
+ --sidebar-width-min: 66px;
6
+ }
7
+
8
+ /*border-radius*/
9
+ :root {
10
+ --border-radius-xxs: 4px;
11
+ --border-radius-xs: 8px;
12
+ --border-radius-s: 12px;
13
+ --border-radius-m: 16px;
14
+ }
15
+
16
+ /*color*/
17
+ :root {
18
+ --g-blue: #3f8cff;
19
+ --g-blue-light: #e4efff;
20
+ --g-blue-dark: #1c75ff;
21
+ --g-green: #00d097;
22
+ --g-green-light: #e0f9f2;
23
+ --g-green-dark: #b8f8e7;
24
+ --g-red: #ff192d;
25
+ --g-red-light: #fdecee;
26
+ --g-red-dark: #ffdcde;
27
+ --g-grey-100: #d8e0f0;
28
+
29
+ --g-font-color: #0a1629;
30
+ --g-font-grey-color: #b9c0c7;
31
+ --g-font-secondary-color: #7d8592;
32
+
33
+ --g-grey-background: #ced5e0;
34
+ --g-grey-hover-background: #9fa5af;
35
+ --g-secondary-background: #f4f9fd;
36
+ --g-thirty-background: #c8cbcf;
37
+
38
+ --g-fire-color-1: #fee7e7;
39
+ --g-fire-color-2: #fed4d5;
40
+ --g-fire-color-3: #fcc0c0;
41
+ --g-fire-color-4: #f9a2a2;
42
+ --g-fire-color-5: #f97d7e;
43
+ --g-fire-color-6: #f65160;
44
+ --g-fire-color-7: #ff192d;
45
+ --g-fire-color-8: #ab0514;
46
+ --g-fire-color-9: #6e000a;
47
+ }
48
+
49
+ * {
50
+ margin: 0;
51
+ padding: 0;
52
+ }
53
+
54
+ button:active,
55
+ button:focus {
56
+ outline: none !important;
57
+ }
58
+
59
+ html {
60
+ font-family: 'NunitoSansFont', sans-serif !important;
61
+ }
62
+
63
+ .ant-dropdown {
64
+ z-index: 10000;
65
+ .content {
66
+ z-index: 10000;
67
+ }
68
+ }
69
+
70
+ @font-face {
71
+ font-family: 'NunitoSansFont';
72
+ src: local('NunitoSansFont-Regular'), url('../fonts/NunitoSansFont.ttf') format('truetype');
73
+ font-weight: 400;
74
+ font-style: normal;
75
+ }
76
+
77
+ @font-face {
78
+ font-family: 'NunitoSansFont';
79
+ src: local('NunitoSansFont-Bold'), url('../fonts/NunitoSans_7pt-Bold.ttf') format('truetype');
80
+ font-weight: 700;
81
+ font-style: normal;
82
+ }
83
+
84
+ @font-face {
85
+ font-family: 'Montserrat';
86
+ src: local('Montserrat-Regular'), url('../fonts/Montserrat.ttf') format('truetype');
87
+ font-weight: 400;
88
+ font-style: normal;
89
+ }
90
+
91
+ @font-face {
92
+ font-family: 'Montserrat';
93
+ src: local('Montserrat-Bold'), url('../fonts/Montserrat-Bold.ttf') format('truetype');
94
+ font-weight: 700;
95
+ font-style: normal;
96
+ }
97
+
98
+ @font-face {
99
+ font-family: 'Inter';
100
+ src: local('Inter-Regular'), url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
101
+ font-weight: 400;
102
+ font-style: normal;
103
+ }
104
+
105
+ @font-face {
106
+ font-family: 'Inter';
107
+ src: local('Inter-SemiBold'), url('../fonts/Inter_18pt-SemiBold.ttf') format('truetype');
108
+ font-weight: 600;
109
+ font-style: normal;
110
+ }
111
+
112
+ @font-face {
113
+ font-family: 'Inter';
114
+ src: local('Inter-Bold'), url('../fonts/Inter_18pt-Bold.ttf') format('truetype');
115
+ font-weight: 700;
116
+ font-style: normal;
117
+ }
118
+
119
+ @font-face {
120
+ font-family: 'Inter';
121
+ src: local('Inter-Black'), url('../fonts/Inter_18pt-Black.ttf') format('truetype');
122
+ font-weight: 900;
123
+ font-style: normal;
124
+ }
125
+
@@ -1,12 +1,12 @@
1
- $primary : #1976D2
2
- $secondary : #C4C4C4
3
- $accent : #665BA6
4
- $positive : #3B9F69
5
- $negative : #C10015
6
- $info : #31CCEC
7
- $warning : #F2C037
8
-
9
- $dark : #1D1D1D
10
- $dark-page : #121212
11
-
12
- $secondary: #1D1D1D
1
+ $primary : #1976D2
2
+ $secondary : #C4C4C4
3
+ $accent : #665BA6
4
+ $positive : #3B9F69
5
+ $negative : #C10015
6
+ $info : #31CCEC
7
+ $warning : #F2C037
8
+
9
+ $dark : #1D1D1D
10
+ $dark-page : #121212
11
+
12
+ $secondary: #1D1D1D
@@ -1,12 +1,12 @@
1
- import { defineAsyncComponent } from 'vue'
2
- import { useQuasar } from 'quasar'
3
- const $q = useQuasar()
4
-
5
- const AppConfirmDialog = defineAsyncComponent(() => import('@/common/app-dialogs/AppConfirmDialog.vue'))
6
-
7
- export const appConfirm = (content: string, type: 'delete' | 'edit') => {
8
- return $q.dialog({
9
- component: AppConfirmDialog,
10
- componentProps: { content, type },
11
- })
12
- }
1
+ import { defineAsyncComponent } from 'vue'
2
+ import { useQuasar } from 'quasar'
3
+ const $q = useQuasar()
4
+
5
+ const AppConfirmDialog = defineAsyncComponent(() => import('@/common/app-dialogs/AppConfirmDialog.vue'))
6
+
7
+ export const appConfirm = (content: string, type: 'delete' | 'edit') => {
8
+ return $q.dialog({
9
+ component: AppConfirmDialog,
10
+ componentProps: { content, type },
11
+ })
12
+ }