shared-ritm 1.3.68 → 1.3.69
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/index.css +1 -1
- package/dist/shared-ritm.es.js +4555 -4392
- package/dist/shared-ritm.umd.js +181 -181
- package/dist/types/api/services/AuthService.d.ts +0 -1
- package/dist/types/api/services/MetricsService.d.ts +2 -1
- package/dist/types/api/services/PhotoService.d.ts +40 -0
- package/dist/types/api/services/UserService.d.ts +1 -2
- package/dist/types/api/settings/ApiService.d.ts +2 -6
- package/dist/types/api/types/Api_Auth.d.ts +0 -15
- package/dist/types/api/types/Api_Metrics.d.ts +18 -0
- package/dist/types/api/types/Api_User.d.ts +0 -9
- package/dist/types/common/app-checkbox/Checkbox.stories.d.ts +5 -1
- package/dist/types/common/app-toggle/Toggle.stories.d.ts +5 -1
- package/dist/types/stories/Button.stories.d.ts +13 -0
- package/dist/types/stories/Checkbox.stories.d.ts +7 -0
- package/dist/types/stories/Confirm.stories.d.ts +8 -0
- package/dist/types/stories/DatePicker.stories.d.ts +8 -0
- package/dist/types/stories/Dropdown.stories.d.ts +8 -0
- package/dist/types/stories/File.stories.d.ts +8 -0
- package/dist/types/stories/Icon.stories.d.ts +7 -0
- package/dist/types/stories/Input.stories.d.ts +11 -0
- package/dist/types/stories/InputNew.stories.d.ts +12 -0
- package/dist/types/stories/InputSearch.stories.d.ts +10 -0
- package/dist/types/stories/Loader.stories.d.ts +8 -0
- package/dist/types/stories/Select.stories.d.ts +7 -0
- package/dist/types/stories/Toggle.stories.d.ts +8 -0
- package/package.json +70 -70
- package/src/App.vue +2461 -2461
- package/src/api/services/AuthService.ts +4 -18
- package/src/api/services/ControlsService.ts +96 -96
- package/src/api/services/EquipmentService.ts +29 -29
- package/src/api/services/GanttService.ts +23 -23
- package/src/api/services/MetricsService.ts +127 -123
- package/src/api/services/RepairsService.ts +111 -111
- package/src/api/services/UserService.ts +0 -6
- package/src/api/services/VideoService.ts +118 -118
- package/src/api/settings/ApiService.ts +10 -70
- package/src/api/types/Api_Auth.ts +0 -16
- package/src/api/types/Api_Metrics.ts +26 -5
- package/src/api/types/Api_Repairs.ts +186 -186
- package/src/api/types/Api_Tasks.ts +376 -376
- package/src/api/types/Api_User.ts +0 -10
- package/src/api/types/Api_Video.ts +244 -244
- package/src/common/app-button/Button.stories.ts +369 -369
- package/src/common/app-checkbox/AppCheckbox.vue +19 -12
- package/src/common/app-checkbox/Checkbox.stories.ts +252 -60
- package/src/common/app-date-picker/DatePicker.stories.ts +66 -66
- package/src/common/app-datepicker/Datepicker.stories.ts +145 -145
- package/src/common/app-dialogs/AppConfirmDialog.vue +109 -109
- package/src/common/app-dialogs/Confirm.stories.ts +93 -93
- package/src/common/app-dropdown/Dropdown.stories.ts +94 -94
- package/src/common/app-file/File.stories.ts +104 -104
- package/src/common/app-icon/AppIcon.vue +108 -108
- package/src/common/app-icon/Icon.stories.ts +91 -91
- package/src/common/app-input/Input.stories.ts +160 -160
- package/src/common/app-input-new/InputNew.stories.ts +240 -240
- package/src/common/app-input-search/InputSearch.stories.ts +149 -149
- package/src/common/app-layout/components/AppLayoutHeader.vue +289 -289
- package/src/common/app-loader/Loader.stories.ts +114 -114
- package/src/common/app-select/AppSelect.vue +159 -159
- package/src/common/app-select/Select.stories.ts +155 -155
- package/src/common/app-sidebar/AppSidebar.vue +174 -174
- package/src/common/app-table/AppTable.vue +313 -313
- package/src/common/app-table/components/ModalSelect.stories.ts +323 -323
- package/src/common/app-table/components/ModalSelect.vue +302 -302
- package/src/common/app-table/components/TableModal.vue +367 -367
- package/src/common/app-table/controllers/useColumnSelector.ts +45 -45
- package/src/common/app-table/controllers/useTableModel.ts +97 -97
- package/src/common/app-toggle/AppToggle.vue +5 -15
- package/src/common/app-toggle/Toggle.stories.ts +245 -69
- package/src/common/app-wrapper/AppWrapper.vue +31 -31
- package/src/configs/storybook.ts +14 -14
- package/src/index.ts +131 -131
- package/src/shared/styles/general.css +140 -140
- package/src/styles/variables.sass +12 -12
- package/src/utils/helpers.ts +59 -59
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="app-wrapper">
|
|
3
|
-
<slot />
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
<script setup lang="ts"></script>
|
|
7
|
-
<style scoped lang="scss">
|
|
8
|
-
.app-wrapper {
|
|
9
|
-
width: 100%;
|
|
10
|
-
height: 100%;
|
|
11
|
-
margin: 20px 0 12px 0;
|
|
12
|
-
padding: 30px;
|
|
13
|
-
border-radius: 8px;
|
|
14
|
-
background: #fff;
|
|
15
|
-
outline: 4px solid #598dd5;
|
|
16
|
-
outline-offset: -3px;
|
|
17
|
-
box-shadow:
|
|
18
|
-
0px 4px 4px 0px rgba(0, 0, 0, 0.25),
|
|
19
|
-
0px 4px 4px 0px #c4d7f1 inset,
|
|
20
|
-
0px 0px 6.4px 3px rgba(31, 82, 159, 0.5),
|
|
21
|
-
0px 6px 58px 0px rgba(0, 49, 122, 0.1);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
@media (max-width: 1440px) {
|
|
25
|
-
.app-wrapper {
|
|
26
|
-
margin: 10px 0;
|
|
27
|
-
padding: 14px;
|
|
28
|
-
border-radius: 8px;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="app-wrapper">
|
|
3
|
+
<slot />
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
<script setup lang="ts"></script>
|
|
7
|
+
<style scoped lang="scss">
|
|
8
|
+
.app-wrapper {
|
|
9
|
+
width: 100%;
|
|
10
|
+
height: 100%;
|
|
11
|
+
margin: 20px 0 12px 0;
|
|
12
|
+
padding: 30px;
|
|
13
|
+
border-radius: 8px;
|
|
14
|
+
background: #fff;
|
|
15
|
+
outline: 4px solid #598dd5;
|
|
16
|
+
outline-offset: -3px;
|
|
17
|
+
box-shadow:
|
|
18
|
+
0px 4px 4px 0px rgba(0, 0, 0, 0.25),
|
|
19
|
+
0px 4px 4px 0px #c4d7f1 inset,
|
|
20
|
+
0px 0px 6.4px 3px rgba(31, 82, 159, 0.5),
|
|
21
|
+
0px 6px 58px 0px rgba(0, 49, 122, 0.1);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@media (max-width: 1440px) {
|
|
25
|
+
.app-wrapper {
|
|
26
|
+
margin: 10px 0;
|
|
27
|
+
padding: 14px;
|
|
28
|
+
border-radius: 8px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
</style>
|
package/src/configs/storybook.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export const quasarColorOpts = [
|
|
2
|
-
'primary',
|
|
3
|
-
'secondary',
|
|
4
|
-
'accent',
|
|
5
|
-
'positive',
|
|
6
|
-
'negative',
|
|
7
|
-
'info',
|
|
8
|
-
'warning',
|
|
9
|
-
'dark',
|
|
10
|
-
'light',
|
|
11
|
-
'faded',
|
|
12
|
-
'white',
|
|
13
|
-
'black',
|
|
14
|
-
]
|
|
1
|
+
export const quasarColorOpts = [
|
|
2
|
+
'primary',
|
|
3
|
+
'secondary',
|
|
4
|
+
'accent',
|
|
5
|
+
'positive',
|
|
6
|
+
'negative',
|
|
7
|
+
'info',
|
|
8
|
+
'warning',
|
|
9
|
+
'dark',
|
|
10
|
+
'light',
|
|
11
|
+
'faded',
|
|
12
|
+
'white',
|
|
13
|
+
'black',
|
|
14
|
+
]
|
package/src/index.ts
CHANGED
|
@@ -1,131 +1,131 @@
|
|
|
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 AppSheetNew from './common/app-sheet-new/AppSheetNew.vue'
|
|
16
|
-
import AppSidebar from './common/app-sidebar/AppSidebar.vue'
|
|
17
|
-
import AppToggle from './common/app-toggle/AppToggle.vue'
|
|
18
|
-
import AppWrapper from './common/app-wrapper/AppWrapper.vue'
|
|
19
|
-
import AppConfirmDialog from './common/app-dialogs/AppConfirmDialog.vue'
|
|
20
|
-
import AppDropdown from './common/app-dropdown/AppDropdown.vue'
|
|
21
|
-
import AppTablePagination from './common/app-table/components/TablePagination.vue'
|
|
22
|
-
import AppTableSearch from './common/app-table/components/TableSearch.vue'
|
|
23
|
-
import AppTableModal from './common/app-table/components/TableModal.vue'
|
|
24
|
-
import AppTable from './common/app-table/AppTable.vue'
|
|
25
|
-
import AppTableLayout from './common/app-table/AppTableLayout.vue'
|
|
26
|
-
import AppModalSelect from './common/app-table/components/ModalSelect.vue'
|
|
27
|
-
import AppModal from './common/app-modal/index.vue'
|
|
28
|
-
import AppFile from './common/app-file/AppFile.vue'
|
|
29
|
-
|
|
30
|
-
import ApiService from './api/settings/ApiService'
|
|
31
|
-
import useGanttService from './api/services/GanttService'
|
|
32
|
-
import useMetricsService from './api/services/MetricsService'
|
|
33
|
-
import useProjectsService from './api/services/ProjectsService'
|
|
34
|
-
import useRepairsService from './api/services/RepairsService'
|
|
35
|
-
import useTasksService from './api/services/TasksService'
|
|
36
|
-
import useAuthService from './api/services/AuthService'
|
|
37
|
-
import useFileService from './api/services/FileService'
|
|
38
|
-
import useVideoService from './api/services/VideoService'
|
|
39
|
-
import useUserService from './api/services/UserService'
|
|
40
|
-
import useInstrumentsService from './api/services/InstrumentsService'
|
|
41
|
-
import useControlsService from './api/services/ControlsService'
|
|
42
|
-
import useSearchService from './api/services/SearchService'
|
|
43
|
-
import useModulesService from './api/services/ModulesService'
|
|
44
|
-
import useCommentsService from './api/services/CommentsService'
|
|
45
|
-
import useEquipmentService from './api/services/EquipmentService'
|
|
46
|
-
import useBrigadesService from './api/services/BrigadesService'
|
|
47
|
-
import useScheduleService from './api/services/ScheduleService'
|
|
48
|
-
|
|
49
|
-
import useFaceApiHelper from './utils/faceApiHelper'
|
|
50
|
-
|
|
51
|
-
export {
|
|
52
|
-
AppButton,
|
|
53
|
-
AppCheckbox,
|
|
54
|
-
AppDatepicker,
|
|
55
|
-
AppDatePicker,
|
|
56
|
-
AppInput,
|
|
57
|
-
AppInputNew,
|
|
58
|
-
AppInputSearch,
|
|
59
|
-
AppLayout,
|
|
60
|
-
AppLayoutHeader,
|
|
61
|
-
AppLayoutPage,
|
|
62
|
-
AppLoader,
|
|
63
|
-
AppSelect,
|
|
64
|
-
AppSheet,
|
|
65
|
-
AppSheetNew,
|
|
66
|
-
AppSidebar,
|
|
67
|
-
AppToggle,
|
|
68
|
-
AppWrapper,
|
|
69
|
-
AppConfirmDialog,
|
|
70
|
-
AppDropdown,
|
|
71
|
-
AppTablePagination,
|
|
72
|
-
AppTableSearch,
|
|
73
|
-
AppTableModal,
|
|
74
|
-
AppTable,
|
|
75
|
-
AppTableLayout,
|
|
76
|
-
AppModalSelect,
|
|
77
|
-
AppModal,
|
|
78
|
-
AppFile,
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export {
|
|
82
|
-
ApiService,
|
|
83
|
-
useAuthService,
|
|
84
|
-
useGanttService,
|
|
85
|
-
useMetricsService,
|
|
86
|
-
useProjectsService,
|
|
87
|
-
useRepairsService,
|
|
88
|
-
useTasksService,
|
|
89
|
-
useFileService,
|
|
90
|
-
useControlsService,
|
|
91
|
-
useVideoService,
|
|
92
|
-
useUserService,
|
|
93
|
-
useInstrumentsService,
|
|
94
|
-
useSearchService,
|
|
95
|
-
useModulesService,
|
|
96
|
-
useCommentsService,
|
|
97
|
-
useFaceApiHelper,
|
|
98
|
-
useEquipmentService,
|
|
99
|
-
useBrigadesService,
|
|
100
|
-
useScheduleService,
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
export { useBaseTable } from './common/app-table/controllers/useBaseTable'
|
|
104
|
-
export { useTableModel } from './common/app-table/controllers/useTableModel'
|
|
105
|
-
export { useColumnSelector } from './common/app-table/controllers/useColumnSelector'
|
|
106
|
-
|
|
107
|
-
export type { FilterOption, TableModel, TableColumn } from './common/app-table/controllers/useTableModel'
|
|
108
|
-
|
|
109
|
-
export type { NotificationType } from './utils/notification'
|
|
110
|
-
export { notificationSettings } from './utils/notification'
|
|
111
|
-
|
|
112
|
-
export * from './utils/helpers'
|
|
113
|
-
export * from './utils/files'
|
|
114
|
-
|
|
115
|
-
export * from './api/types/Api_Service'
|
|
116
|
-
export * from './api/types/Api_Auth'
|
|
117
|
-
export * from './api/types/Api_Tasks'
|
|
118
|
-
export * from './api/types/Api_Repairs'
|
|
119
|
-
export * from './api/types/Api_Projects'
|
|
120
|
-
export * from './api/types/Api_Controls'
|
|
121
|
-
export * from './api/types/Api_Instruments'
|
|
122
|
-
export * from './api/types/Api_Search'
|
|
123
|
-
export * from './api/types/Api_User'
|
|
124
|
-
export * from './api/types/Api_Comment'
|
|
125
|
-
export * from './api/types/Api_Files'
|
|
126
|
-
export * from './api/types/Api_Video'
|
|
127
|
-
export * from './api/types/Api_Equipment'
|
|
128
|
-
export * from './api/types/Api_Brigades'
|
|
129
|
-
export * from './api/types/Api_Modules'
|
|
130
|
-
export * from './api/types/Api_Schedule'
|
|
131
|
-
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 AppSheetNew from './common/app-sheet-new/AppSheetNew.vue'
|
|
16
|
+
import AppSidebar from './common/app-sidebar/AppSidebar.vue'
|
|
17
|
+
import AppToggle from './common/app-toggle/AppToggle.vue'
|
|
18
|
+
import AppWrapper from './common/app-wrapper/AppWrapper.vue'
|
|
19
|
+
import AppConfirmDialog from './common/app-dialogs/AppConfirmDialog.vue'
|
|
20
|
+
import AppDropdown from './common/app-dropdown/AppDropdown.vue'
|
|
21
|
+
import AppTablePagination from './common/app-table/components/TablePagination.vue'
|
|
22
|
+
import AppTableSearch from './common/app-table/components/TableSearch.vue'
|
|
23
|
+
import AppTableModal from './common/app-table/components/TableModal.vue'
|
|
24
|
+
import AppTable from './common/app-table/AppTable.vue'
|
|
25
|
+
import AppTableLayout from './common/app-table/AppTableLayout.vue'
|
|
26
|
+
import AppModalSelect from './common/app-table/components/ModalSelect.vue'
|
|
27
|
+
import AppModal from './common/app-modal/index.vue'
|
|
28
|
+
import AppFile from './common/app-file/AppFile.vue'
|
|
29
|
+
|
|
30
|
+
import ApiService from './api/settings/ApiService'
|
|
31
|
+
import useGanttService from './api/services/GanttService'
|
|
32
|
+
import useMetricsService from './api/services/MetricsService'
|
|
33
|
+
import useProjectsService from './api/services/ProjectsService'
|
|
34
|
+
import useRepairsService from './api/services/RepairsService'
|
|
35
|
+
import useTasksService from './api/services/TasksService'
|
|
36
|
+
import useAuthService from './api/services/AuthService'
|
|
37
|
+
import useFileService from './api/services/FileService'
|
|
38
|
+
import useVideoService from './api/services/VideoService'
|
|
39
|
+
import useUserService from './api/services/UserService'
|
|
40
|
+
import useInstrumentsService from './api/services/InstrumentsService'
|
|
41
|
+
import useControlsService from './api/services/ControlsService'
|
|
42
|
+
import useSearchService from './api/services/SearchService'
|
|
43
|
+
import useModulesService from './api/services/ModulesService'
|
|
44
|
+
import useCommentsService from './api/services/CommentsService'
|
|
45
|
+
import useEquipmentService from './api/services/EquipmentService'
|
|
46
|
+
import useBrigadesService from './api/services/BrigadesService'
|
|
47
|
+
import useScheduleService from './api/services/ScheduleService'
|
|
48
|
+
|
|
49
|
+
import useFaceApiHelper from './utils/faceApiHelper'
|
|
50
|
+
|
|
51
|
+
export {
|
|
52
|
+
AppButton,
|
|
53
|
+
AppCheckbox,
|
|
54
|
+
AppDatepicker,
|
|
55
|
+
AppDatePicker,
|
|
56
|
+
AppInput,
|
|
57
|
+
AppInputNew,
|
|
58
|
+
AppInputSearch,
|
|
59
|
+
AppLayout,
|
|
60
|
+
AppLayoutHeader,
|
|
61
|
+
AppLayoutPage,
|
|
62
|
+
AppLoader,
|
|
63
|
+
AppSelect,
|
|
64
|
+
AppSheet,
|
|
65
|
+
AppSheetNew,
|
|
66
|
+
AppSidebar,
|
|
67
|
+
AppToggle,
|
|
68
|
+
AppWrapper,
|
|
69
|
+
AppConfirmDialog,
|
|
70
|
+
AppDropdown,
|
|
71
|
+
AppTablePagination,
|
|
72
|
+
AppTableSearch,
|
|
73
|
+
AppTableModal,
|
|
74
|
+
AppTable,
|
|
75
|
+
AppTableLayout,
|
|
76
|
+
AppModalSelect,
|
|
77
|
+
AppModal,
|
|
78
|
+
AppFile,
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export {
|
|
82
|
+
ApiService,
|
|
83
|
+
useAuthService,
|
|
84
|
+
useGanttService,
|
|
85
|
+
useMetricsService,
|
|
86
|
+
useProjectsService,
|
|
87
|
+
useRepairsService,
|
|
88
|
+
useTasksService,
|
|
89
|
+
useFileService,
|
|
90
|
+
useControlsService,
|
|
91
|
+
useVideoService,
|
|
92
|
+
useUserService,
|
|
93
|
+
useInstrumentsService,
|
|
94
|
+
useSearchService,
|
|
95
|
+
useModulesService,
|
|
96
|
+
useCommentsService,
|
|
97
|
+
useFaceApiHelper,
|
|
98
|
+
useEquipmentService,
|
|
99
|
+
useBrigadesService,
|
|
100
|
+
useScheduleService,
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export { useBaseTable } from './common/app-table/controllers/useBaseTable'
|
|
104
|
+
export { useTableModel } from './common/app-table/controllers/useTableModel'
|
|
105
|
+
export { useColumnSelector } from './common/app-table/controllers/useColumnSelector'
|
|
106
|
+
|
|
107
|
+
export type { FilterOption, TableModel, TableColumn } from './common/app-table/controllers/useTableModel'
|
|
108
|
+
|
|
109
|
+
export type { NotificationType } from './utils/notification'
|
|
110
|
+
export { notificationSettings } from './utils/notification'
|
|
111
|
+
|
|
112
|
+
export * from './utils/helpers'
|
|
113
|
+
export * from './utils/files'
|
|
114
|
+
|
|
115
|
+
export * from './api/types/Api_Service'
|
|
116
|
+
export * from './api/types/Api_Auth'
|
|
117
|
+
export * from './api/types/Api_Tasks'
|
|
118
|
+
export * from './api/types/Api_Repairs'
|
|
119
|
+
export * from './api/types/Api_Projects'
|
|
120
|
+
export * from './api/types/Api_Controls'
|
|
121
|
+
export * from './api/types/Api_Instruments'
|
|
122
|
+
export * from './api/types/Api_Search'
|
|
123
|
+
export * from './api/types/Api_User'
|
|
124
|
+
export * from './api/types/Api_Comment'
|
|
125
|
+
export * from './api/types/Api_Files'
|
|
126
|
+
export * from './api/types/Api_Video'
|
|
127
|
+
export * from './api/types/Api_Equipment'
|
|
128
|
+
export * from './api/types/Api_Brigades'
|
|
129
|
+
export * from './api/types/Api_Modules'
|
|
130
|
+
export * from './api/types/Api_Schedule'
|
|
131
|
+
export * from './api/types/Api_Metrics'
|
|
@@ -1,140 +1,140 @@
|
|
|
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:
|
|
73
|
-
local('NunitoSansFont-Regular'),
|
|
74
|
-
url('../fonts/NunitoSansFont.ttf') format('truetype');
|
|
75
|
-
font-weight: 400;
|
|
76
|
-
font-style: normal;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
@font-face {
|
|
80
|
-
font-family: 'NunitoSansFont';
|
|
81
|
-
src:
|
|
82
|
-
local('NunitoSansFont-Bold'),
|
|
83
|
-
url('../fonts/NunitoSans_7pt-Bold.ttf') format('truetype');
|
|
84
|
-
font-weight: 700;
|
|
85
|
-
font-style: normal;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
@font-face {
|
|
89
|
-
font-family: 'Montserrat';
|
|
90
|
-
src:
|
|
91
|
-
local('Montserrat-Regular'),
|
|
92
|
-
url('../fonts/Montserrat.ttf') format('truetype');
|
|
93
|
-
font-weight: 400;
|
|
94
|
-
font-style: normal;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
@font-face {
|
|
98
|
-
font-family: 'Montserrat';
|
|
99
|
-
src:
|
|
100
|
-
local('Montserrat-Bold'),
|
|
101
|
-
url('../fonts/Montserrat-Bold.ttf') format('truetype');
|
|
102
|
-
font-weight: 700;
|
|
103
|
-
font-style: normal;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
@font-face {
|
|
107
|
-
font-family: 'Inter';
|
|
108
|
-
src:
|
|
109
|
-
local('Inter-Regular'),
|
|
110
|
-
url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
|
|
111
|
-
font-weight: 400;
|
|
112
|
-
font-style: normal;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
@font-face {
|
|
116
|
-
font-family: 'Inter';
|
|
117
|
-
src:
|
|
118
|
-
local('Inter-SemiBold'),
|
|
119
|
-
url('../fonts/Inter_18pt-SemiBold.ttf') format('truetype');
|
|
120
|
-
font-weight: 600;
|
|
121
|
-
font-style: normal;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
@font-face {
|
|
125
|
-
font-family: 'Inter';
|
|
126
|
-
src:
|
|
127
|
-
local('Inter-Bold'),
|
|
128
|
-
url('../fonts/Inter_18pt-Bold.ttf') format('truetype');
|
|
129
|
-
font-weight: 700;
|
|
130
|
-
font-style: normal;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
@font-face {
|
|
134
|
-
font-family: 'Inter';
|
|
135
|
-
src:
|
|
136
|
-
local('Inter-Black'),
|
|
137
|
-
url('../fonts/Inter_18pt-Black.ttf') format('truetype');
|
|
138
|
-
font-weight: 900;
|
|
139
|
-
font-style: normal;
|
|
140
|
-
}
|
|
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:
|
|
73
|
+
local('NunitoSansFont-Regular'),
|
|
74
|
+
url('../fonts/NunitoSansFont.ttf') format('truetype');
|
|
75
|
+
font-weight: 400;
|
|
76
|
+
font-style: normal;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@font-face {
|
|
80
|
+
font-family: 'NunitoSansFont';
|
|
81
|
+
src:
|
|
82
|
+
local('NunitoSansFont-Bold'),
|
|
83
|
+
url('../fonts/NunitoSans_7pt-Bold.ttf') format('truetype');
|
|
84
|
+
font-weight: 700;
|
|
85
|
+
font-style: normal;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@font-face {
|
|
89
|
+
font-family: 'Montserrat';
|
|
90
|
+
src:
|
|
91
|
+
local('Montserrat-Regular'),
|
|
92
|
+
url('../fonts/Montserrat.ttf') format('truetype');
|
|
93
|
+
font-weight: 400;
|
|
94
|
+
font-style: normal;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
@font-face {
|
|
98
|
+
font-family: 'Montserrat';
|
|
99
|
+
src:
|
|
100
|
+
local('Montserrat-Bold'),
|
|
101
|
+
url('../fonts/Montserrat-Bold.ttf') format('truetype');
|
|
102
|
+
font-weight: 700;
|
|
103
|
+
font-style: normal;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
@font-face {
|
|
107
|
+
font-family: 'Inter';
|
|
108
|
+
src:
|
|
109
|
+
local('Inter-Regular'),
|
|
110
|
+
url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
|
|
111
|
+
font-weight: 400;
|
|
112
|
+
font-style: normal;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
@font-face {
|
|
116
|
+
font-family: 'Inter';
|
|
117
|
+
src:
|
|
118
|
+
local('Inter-SemiBold'),
|
|
119
|
+
url('../fonts/Inter_18pt-SemiBold.ttf') format('truetype');
|
|
120
|
+
font-weight: 600;
|
|
121
|
+
font-style: normal;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
@font-face {
|
|
125
|
+
font-family: 'Inter';
|
|
126
|
+
src:
|
|
127
|
+
local('Inter-Bold'),
|
|
128
|
+
url('../fonts/Inter_18pt-Bold.ttf') format('truetype');
|
|
129
|
+
font-weight: 700;
|
|
130
|
+
font-style: normal;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
@font-face {
|
|
134
|
+
font-family: 'Inter';
|
|
135
|
+
src:
|
|
136
|
+
local('Inter-Black'),
|
|
137
|
+
url('../fonts/Inter_18pt-Black.ttf') format('truetype');
|
|
138
|
+
font-weight: 900;
|
|
139
|
+
font-style: normal;
|
|
140
|
+
}
|
|
@@ -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
|