shared-ritm 1.3.14 → 1.3.15
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/README.md +103 -103
- package/dist/index.css +1 -1
- package/dist/shared-ritm.es.js +4291 -4257
- package/dist/shared-ritm.umd.js +154 -154
- package/dist/types/api/services/PhotoService.d.ts +40 -0
- package/dist/types/api/services/RepairsService.d.ts +1 -1
- package/dist/types/api/settings/ApiService.d.ts +1 -1
- package/package.json +65 -65
- package/src/App.vue +2461 -2461
- package/src/api/services/AuthService.ts +53 -53
- package/src/api/services/BrigadesService.ts +32 -32
- package/src/api/services/CommentsService.ts +24 -24
- package/src/api/services/ControlsService.ts +96 -96
- package/src/api/services/EquipmentService.ts +29 -29
- package/src/api/services/FileService.ts +17 -17
- package/src/api/services/GanttService.ts +17 -17
- package/src/api/services/InstrumentsService.ts +68 -68
- package/src/api/services/MetricsService.ts +110 -110
- package/src/api/services/ModulesService.ts +27 -27
- package/src/api/services/ProjectsService.ts +83 -83
- package/src/api/services/RepairsService.ts +124 -124
- package/src/api/services/ScheduleService.ts +69 -69
- package/src/api/services/SearchService.ts +22 -22
- package/src/api/services/TasksService.ts +150 -150
- package/src/api/services/UserService.ts +119 -119
- package/src/api/services/VideoService.ts +108 -108
- package/src/api/settings/ApiService.ts +124 -124
- package/src/api/types/Api_Auth.ts +105 -105
- package/src/api/types/Api_Brigades.ts +36 -36
- package/src/api/types/Api_Comment.ts +40 -40
- package/src/api/types/Api_Controls.ts +111 -111
- package/src/api/types/Api_Equipment.ts +3 -3
- package/src/api/types/Api_Files.ts +7 -7
- package/src/api/types/Api_Instruments.ts +156 -156
- package/src/api/types/Api_Modules.ts +21 -21
- package/src/api/types/Api_Projects.ts +62 -62
- package/src/api/types/Api_Repairs.ts +140 -140
- package/src/api/types/Api_Schedule.ts +64 -64
- package/src/api/types/Api_Search.ts +80 -80
- package/src/api/types/Api_Service.ts +9 -9
- package/src/api/types/Api_Tasks.ts +371 -371
- package/src/api/types/Api_User.ts +146 -146
- package/src/api/types/Api_Video.ts +198 -198
- package/src/common/app-button/AppButton.vue +173 -173
- package/src/common/app-checkbox/AppCheckbox.vue +26 -26
- package/src/common/app-date-picker/AppDatePicker.vue +81 -81
- package/src/common/app-datepicker/AppDatepicker.vue +218 -218
- package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
- package/src/common/app-dropdown/AppDropdown.vue +37 -37
- package/src/common/app-file/AppFile.vue +80 -80
- package/src/common/app-icon/AppIcon.vue +108 -108
- package/src/common/app-input/AppInput.vue +148 -148
- package/src/common/app-input-new/AppInputNew.vue +179 -179
- package/src/common/app-input-search/AppInputSearch.vue +174 -174
- package/src/common/app-layout/AppLayout.vue +84 -84
- package/src/common/app-layout/components/AppLayoutHeader.vue +273 -273
- package/src/common/app-layout/components/AppLayoutPage.vue +16 -16
- package/src/common/app-loader/index.vue +43 -43
- package/src/common/app-modal/index.vue +96 -96
- package/src/common/app-page-layout/AppPageLayout.vue +122 -122
- package/src/common/app-select/AppSelect.vue +157 -157
- package/src/common/app-sheet/AppSheet.vue +120 -120
- package/src/common/app-sheet-new/AppSheetNew.vue +244 -244
- package/src/common/app-sidebar/AppSidebar.vue +174 -168
- package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
- package/src/common/app-sidebar/components/SidebarMenuItem.vue +149 -149
- package/src/common/app-table/AppTable.vue +308 -308
- package/src/common/app-table/AppTableLayout.vue +137 -137
- package/src/common/app-table/components/ModalSelect.vue +294 -294
- package/src/common/app-table/components/TableModal.vue +356 -356
- package/src/common/app-table/components/TablePagination.vue +152 -152
- package/src/common/app-table/components/TableSearch.vue +76 -76
- package/src/common/app-table/controllers/useBaseTable.ts +45 -45
- package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
- package/src/common/app-table/controllers/useTableModel.ts +102 -102
- package/src/common/app-toggle/AppToggle.vue +24 -24
- package/src/common/app-wrapper/AppWrapper.vue +28 -28
- package/src/global.d.ts +1 -1
- package/src/icons/components/arrow-down-icon.vue +25 -25
- package/src/icons/components/arrow-frame-icon.vue +19 -19
- package/src/icons/components/arrow-square.vue +22 -22
- package/src/icons/components/table-filter-icon.vue +30 -30
- package/src/icons/dialogs/RemoveIcon.vue +12 -12
- package/src/icons/dialogs/SafetyIcon.vue +12 -12
- package/src/icons/header/NotificationIcon.vue +18 -18
- package/src/icons/header/PersonIcon.vue +11 -11
- package/src/icons/header/SettingIcon.vue +14 -14
- package/src/icons/header/flashIcon.vue +24 -24
- package/src/icons/header/searchStatusIcon.vue +24 -24
- package/src/icons/header/smallCapsIcon.vue +34 -34
- package/src/icons/sidebar/assign-module-icon.vue +36 -36
- package/src/icons/sidebar/instrument-history-icon.vue +32 -32
- package/src/icons/sidebar/instrument-order-icon.vue +38 -38
- package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
- package/src/icons/sidebar/instruments-icon.vue +45 -45
- package/src/icons/sidebar/logo-icon.vue +15 -15
- package/src/icons/sidebar/logout-icon.vue +13 -13
- package/src/icons/sidebar/modules-icon.vue +16 -16
- package/src/icons/sidebar/notifications-icon.vue +24 -24
- package/src/icons/sidebar/order-icon.vue +44 -44
- package/src/icons/sidebar/pass-icon.vue +38 -38
- package/src/icons/sidebar/positions-icon.vue +42 -42
- package/src/icons/sidebar/preorder-icon.vue +19 -19
- package/src/icons/sidebar/projects-icon.vue +31 -31
- package/src/icons/sidebar/repair-object-icon.vue +18 -18
- package/src/icons/sidebar/repairs-icon.vue +20 -20
- package/src/icons/sidebar/roles-icon.vue +26 -26
- package/src/icons/sidebar/status-history-icon.vue +24 -24
- package/src/icons/sidebar/tasks-icon.vue +28 -28
- package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
- package/src/icons/sidebar/tasks_today-icon.vue +27 -27
- package/src/icons/sidebar/teams-icon.vue +32 -32
- package/src/icons/sidebar/user-icon.vue +18 -18
- package/src/icons/sidebar/users-icon.vue +46 -46
- package/src/icons/sidebar/videosources-icon.vue +19 -19
- package/src/icons/sidebar/videowall-icon.vue +13 -13
- package/src/icons/sidebar/videozones-icon.vue +21 -21
- package/src/icons/sidebar/warehouses-icon.vue +43 -43
- package/src/icons/sidebar/workshop-icon.vue +100 -100
- package/src/icons/sidebar/workzones-icon.vue +22 -22
- package/src/icons/task/attention-icon.vue +13 -13
- package/src/icons/task/clock-icon.vue +10 -10
- package/src/icons/task/delete-icon.vue +10 -10
- package/src/icons/task/fire-icon.vue +16 -16
- package/src/index.ts +131 -131
- package/src/main.ts +28 -28
- package/src/quasar-user-options.ts +17 -17
- package/src/router/index.ts +10 -10
- package/src/shared/styles/general.css +124 -124
- package/src/shims-vue.d.ts +5 -5
- package/src/styles/variables.sass +12 -12
- package/src/utils/confirm.ts +12 -12
- package/src/utils/faceApiHelper.ts +132 -132
- package/src/utils/files.ts +19 -19
- package/src/utils/helpers.ts +59 -59
- package/src/utils/notification.ts +9 -9
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,17 +1,17 @@
|
|
|
1
|
-
import { Quasar, Notify, Loading, Dialog } from 'quasar'
|
|
2
|
-
|
|
3
|
-
import 'quasar/src/css/index.sass'
|
|
4
|
-
import '@quasar/extras/roboto-font/roboto-font.css'
|
|
5
|
-
import '@quasar/extras/material-icons/material-icons.css'
|
|
6
|
-
import '@quasar/extras/material-icons-outlined/material-icons-outlined.css'
|
|
7
|
-
import '@quasar/extras/mdi-v7/mdi-v7.css'
|
|
8
|
-
|
|
9
|
-
const quasarUserOptions = {
|
|
10
|
-
plugins: {
|
|
11
|
-
Notify,
|
|
12
|
-
Loading,
|
|
13
|
-
Dialog,
|
|
14
|
-
},
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export { Quasar, quasarUserOptions }
|
|
1
|
+
import { Quasar, Notify, Loading, Dialog } from 'quasar'
|
|
2
|
+
|
|
3
|
+
import 'quasar/src/css/index.sass'
|
|
4
|
+
import '@quasar/extras/roboto-font/roboto-font.css'
|
|
5
|
+
import '@quasar/extras/material-icons/material-icons.css'
|
|
6
|
+
import '@quasar/extras/material-icons-outlined/material-icons-outlined.css'
|
|
7
|
+
import '@quasar/extras/mdi-v7/mdi-v7.css'
|
|
8
|
+
|
|
9
|
+
const quasarUserOptions = {
|
|
10
|
+
plugins: {
|
|
11
|
+
Notify,
|
|
12
|
+
Loading,
|
|
13
|
+
Dialog,
|
|
14
|
+
},
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export { Quasar, quasarUserOptions }
|
package/src/router/index.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router'
|
|
2
|
-
|
|
3
|
-
const routes: RouteRecordRaw[] = []
|
|
4
|
-
|
|
5
|
-
const router = createRouter({
|
|
6
|
-
history: createWebHistory(),
|
|
7
|
-
routes,
|
|
8
|
-
})
|
|
9
|
-
|
|
10
|
-
export default router
|
|
1
|
+
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router'
|
|
2
|
+
|
|
3
|
+
const routes: RouteRecordRaw[] = []
|
|
4
|
+
|
|
5
|
+
const router = createRouter({
|
|
6
|
+
history: createWebHistory(),
|
|
7
|
+
routes,
|
|
8
|
+
})
|
|
9
|
+
|
|
10
|
+
export default router
|
|
@@ -1,124 +1,124 @@
|
|
|
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
|
-
}
|
|
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
|
+
}
|
package/src/shims-vue.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
declare module '*.vue' {
|
|
2
|
-
import { DefineComponent } from 'vue'
|
|
3
|
-
const component: DefineComponent<{}, {}, any>
|
|
4
|
-
export default component
|
|
5
|
-
}
|
|
1
|
+
declare module '*.vue' {
|
|
2
|
+
import { DefineComponent } from 'vue'
|
|
3
|
+
const component: DefineComponent<{}, {}, any>
|
|
4
|
+
export default component
|
|
5
|
+
}
|
|
@@ -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
|
package/src/utils/confirm.ts
CHANGED
|
@@ -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
|
+
}
|