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.
Files changed (136) hide show
  1. package/README.md +103 -103
  2. package/dist/index.css +1 -1
  3. package/dist/shared-ritm.es.js +4291 -4257
  4. package/dist/shared-ritm.umd.js +154 -154
  5. package/dist/types/api/services/PhotoService.d.ts +40 -0
  6. package/dist/types/api/services/RepairsService.d.ts +1 -1
  7. package/dist/types/api/settings/ApiService.d.ts +1 -1
  8. package/package.json +65 -65
  9. package/src/App.vue +2461 -2461
  10. package/src/api/services/AuthService.ts +53 -53
  11. package/src/api/services/BrigadesService.ts +32 -32
  12. package/src/api/services/CommentsService.ts +24 -24
  13. package/src/api/services/ControlsService.ts +96 -96
  14. package/src/api/services/EquipmentService.ts +29 -29
  15. package/src/api/services/FileService.ts +17 -17
  16. package/src/api/services/GanttService.ts +17 -17
  17. package/src/api/services/InstrumentsService.ts +68 -68
  18. package/src/api/services/MetricsService.ts +110 -110
  19. package/src/api/services/ModulesService.ts +27 -27
  20. package/src/api/services/ProjectsService.ts +83 -83
  21. package/src/api/services/RepairsService.ts +124 -124
  22. package/src/api/services/ScheduleService.ts +69 -69
  23. package/src/api/services/SearchService.ts +22 -22
  24. package/src/api/services/TasksService.ts +150 -150
  25. package/src/api/services/UserService.ts +119 -119
  26. package/src/api/services/VideoService.ts +108 -108
  27. package/src/api/settings/ApiService.ts +124 -124
  28. package/src/api/types/Api_Auth.ts +105 -105
  29. package/src/api/types/Api_Brigades.ts +36 -36
  30. package/src/api/types/Api_Comment.ts +40 -40
  31. package/src/api/types/Api_Controls.ts +111 -111
  32. package/src/api/types/Api_Equipment.ts +3 -3
  33. package/src/api/types/Api_Files.ts +7 -7
  34. package/src/api/types/Api_Instruments.ts +156 -156
  35. package/src/api/types/Api_Modules.ts +21 -21
  36. package/src/api/types/Api_Projects.ts +62 -62
  37. package/src/api/types/Api_Repairs.ts +140 -140
  38. package/src/api/types/Api_Schedule.ts +64 -64
  39. package/src/api/types/Api_Search.ts +80 -80
  40. package/src/api/types/Api_Service.ts +9 -9
  41. package/src/api/types/Api_Tasks.ts +371 -371
  42. package/src/api/types/Api_User.ts +146 -146
  43. package/src/api/types/Api_Video.ts +198 -198
  44. package/src/common/app-button/AppButton.vue +173 -173
  45. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  46. package/src/common/app-date-picker/AppDatePicker.vue +81 -81
  47. package/src/common/app-datepicker/AppDatepicker.vue +218 -218
  48. package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
  49. package/src/common/app-dropdown/AppDropdown.vue +37 -37
  50. package/src/common/app-file/AppFile.vue +80 -80
  51. package/src/common/app-icon/AppIcon.vue +108 -108
  52. package/src/common/app-input/AppInput.vue +148 -148
  53. package/src/common/app-input-new/AppInputNew.vue +179 -179
  54. package/src/common/app-input-search/AppInputSearch.vue +174 -174
  55. package/src/common/app-layout/AppLayout.vue +84 -84
  56. package/src/common/app-layout/components/AppLayoutHeader.vue +273 -273
  57. package/src/common/app-layout/components/AppLayoutPage.vue +16 -16
  58. package/src/common/app-loader/index.vue +43 -43
  59. package/src/common/app-modal/index.vue +96 -96
  60. package/src/common/app-page-layout/AppPageLayout.vue +122 -122
  61. package/src/common/app-select/AppSelect.vue +157 -157
  62. package/src/common/app-sheet/AppSheet.vue +120 -120
  63. package/src/common/app-sheet-new/AppSheetNew.vue +244 -244
  64. package/src/common/app-sidebar/AppSidebar.vue +174 -168
  65. package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
  66. package/src/common/app-sidebar/components/SidebarMenuItem.vue +149 -149
  67. package/src/common/app-table/AppTable.vue +308 -308
  68. package/src/common/app-table/AppTableLayout.vue +137 -137
  69. package/src/common/app-table/components/ModalSelect.vue +294 -294
  70. package/src/common/app-table/components/TableModal.vue +356 -356
  71. package/src/common/app-table/components/TablePagination.vue +152 -152
  72. package/src/common/app-table/components/TableSearch.vue +76 -76
  73. package/src/common/app-table/controllers/useBaseTable.ts +45 -45
  74. package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
  75. package/src/common/app-table/controllers/useTableModel.ts +102 -102
  76. package/src/common/app-toggle/AppToggle.vue +24 -24
  77. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  78. package/src/global.d.ts +1 -1
  79. package/src/icons/components/arrow-down-icon.vue +25 -25
  80. package/src/icons/components/arrow-frame-icon.vue +19 -19
  81. package/src/icons/components/arrow-square.vue +22 -22
  82. package/src/icons/components/table-filter-icon.vue +30 -30
  83. package/src/icons/dialogs/RemoveIcon.vue +12 -12
  84. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  85. package/src/icons/header/NotificationIcon.vue +18 -18
  86. package/src/icons/header/PersonIcon.vue +11 -11
  87. package/src/icons/header/SettingIcon.vue +14 -14
  88. package/src/icons/header/flashIcon.vue +24 -24
  89. package/src/icons/header/searchStatusIcon.vue +24 -24
  90. package/src/icons/header/smallCapsIcon.vue +34 -34
  91. package/src/icons/sidebar/assign-module-icon.vue +36 -36
  92. package/src/icons/sidebar/instrument-history-icon.vue +32 -32
  93. package/src/icons/sidebar/instrument-order-icon.vue +38 -38
  94. package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
  95. package/src/icons/sidebar/instruments-icon.vue +45 -45
  96. package/src/icons/sidebar/logo-icon.vue +15 -15
  97. package/src/icons/sidebar/logout-icon.vue +13 -13
  98. package/src/icons/sidebar/modules-icon.vue +16 -16
  99. package/src/icons/sidebar/notifications-icon.vue +24 -24
  100. package/src/icons/sidebar/order-icon.vue +44 -44
  101. package/src/icons/sidebar/pass-icon.vue +38 -38
  102. package/src/icons/sidebar/positions-icon.vue +42 -42
  103. package/src/icons/sidebar/preorder-icon.vue +19 -19
  104. package/src/icons/sidebar/projects-icon.vue +31 -31
  105. package/src/icons/sidebar/repair-object-icon.vue +18 -18
  106. package/src/icons/sidebar/repairs-icon.vue +20 -20
  107. package/src/icons/sidebar/roles-icon.vue +26 -26
  108. package/src/icons/sidebar/status-history-icon.vue +24 -24
  109. package/src/icons/sidebar/tasks-icon.vue +28 -28
  110. package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
  111. package/src/icons/sidebar/tasks_today-icon.vue +27 -27
  112. package/src/icons/sidebar/teams-icon.vue +32 -32
  113. package/src/icons/sidebar/user-icon.vue +18 -18
  114. package/src/icons/sidebar/users-icon.vue +46 -46
  115. package/src/icons/sidebar/videosources-icon.vue +19 -19
  116. package/src/icons/sidebar/videowall-icon.vue +13 -13
  117. package/src/icons/sidebar/videozones-icon.vue +21 -21
  118. package/src/icons/sidebar/warehouses-icon.vue +43 -43
  119. package/src/icons/sidebar/workshop-icon.vue +100 -100
  120. package/src/icons/sidebar/workzones-icon.vue +22 -22
  121. package/src/icons/task/attention-icon.vue +13 -13
  122. package/src/icons/task/clock-icon.vue +10 -10
  123. package/src/icons/task/delete-icon.vue +10 -10
  124. package/src/icons/task/fire-icon.vue +16 -16
  125. package/src/index.ts +131 -131
  126. package/src/main.ts +28 -28
  127. package/src/quasar-user-options.ts +17 -17
  128. package/src/router/index.ts +10 -10
  129. package/src/shared/styles/general.css +124 -124
  130. package/src/shims-vue.d.ts +5 -5
  131. package/src/styles/variables.sass +12 -12
  132. package/src/utils/confirm.ts +12 -12
  133. package/src/utils/faceApiHelper.ts +132 -132
  134. package/src/utils/files.ts +19 -19
  135. package/src/utils/helpers.ts +59 -59
  136. 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 }
@@ -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
+ }
@@ -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
@@ -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
+ }