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
|
@@ -1,100 +1,100 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg width="24" height="24" viewBox="0 0 24 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<g filter="url(#filter0_d_116_6675)">
|
|
4
|
-
<path d="M11.99 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round" />
|
|
5
|
-
</g>
|
|
6
|
-
<g filter="url(#filter1_d_116_6675)">
|
|
7
|
-
<path d="M15.99 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round" />
|
|
8
|
-
</g>
|
|
9
|
-
<path
|
|
10
|
-
d="M2 22H22"
|
|
11
|
-
stroke="currentStroke"
|
|
12
|
-
stroke-width="1.5"
|
|
13
|
-
stroke-miterlimit="10"
|
|
14
|
-
stroke-linecap="round"
|
|
15
|
-
stroke-linejoin="round"
|
|
16
|
-
/>
|
|
17
|
-
<path
|
|
18
|
-
d="M12 2C13.6 2.64 15.4 2.64 17 2V5C15.4 5.64 13.6 5.64 12 5V2Z"
|
|
19
|
-
stroke="currentStroke"
|
|
20
|
-
stroke-width="1.5"
|
|
21
|
-
stroke-miterlimit="10"
|
|
22
|
-
stroke-linecap="round"
|
|
23
|
-
stroke-linejoin="round"
|
|
24
|
-
/>
|
|
25
|
-
<path
|
|
26
|
-
d="M12 5V8"
|
|
27
|
-
stroke="currentStroke"
|
|
28
|
-
stroke-width="1.5"
|
|
29
|
-
stroke-miterlimit="10"
|
|
30
|
-
stroke-linecap="round"
|
|
31
|
-
stroke-linejoin="round"
|
|
32
|
-
/>
|
|
33
|
-
<path
|
|
34
|
-
d="M17 8H7C5 8 4 9 4 11V22H20V11C20 9 19 8 17 8Z"
|
|
35
|
-
stroke="currentStroke"
|
|
36
|
-
stroke-width="1.5"
|
|
37
|
-
stroke-miterlimit="10"
|
|
38
|
-
stroke-linecap="round"
|
|
39
|
-
stroke-linejoin="round"
|
|
40
|
-
/>
|
|
41
|
-
<path
|
|
42
|
-
d="M4.58008 12H19.4201"
|
|
43
|
-
stroke="currentStroke"
|
|
44
|
-
stroke-width="1.5"
|
|
45
|
-
stroke-miterlimit="10"
|
|
46
|
-
stroke-linecap="round"
|
|
47
|
-
stroke-linejoin="round"
|
|
48
|
-
/>
|
|
49
|
-
<path d="M7.98999 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round" />
|
|
50
|
-
<defs>
|
|
51
|
-
<filter
|
|
52
|
-
id="filter0_d_116_6675"
|
|
53
|
-
x="7.23999"
|
|
54
|
-
y="12"
|
|
55
|
-
width="9.5"
|
|
56
|
-
height="18"
|
|
57
|
-
filterUnits="userSpaceOnUse"
|
|
58
|
-
color-interpolation-filters="sRGB"
|
|
59
|
-
>
|
|
60
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
61
|
-
<feColorMatrix
|
|
62
|
-
in="SourceAlpha"
|
|
63
|
-
type="matrix"
|
|
64
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
65
|
-
result="hardAlpha"
|
|
66
|
-
/>
|
|
67
|
-
<feOffset dy="4" />
|
|
68
|
-
<feGaussianBlur stdDeviation="2" />
|
|
69
|
-
<feComposite in2="hardAlpha" operator="out" />
|
|
70
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" />
|
|
71
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_116_6675" />
|
|
72
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_116_6675" result="shape" />
|
|
73
|
-
</filter>
|
|
74
|
-
<filter
|
|
75
|
-
id="filter1_d_116_6675"
|
|
76
|
-
x="11.24"
|
|
77
|
-
y="12"
|
|
78
|
-
width="9.5"
|
|
79
|
-
height="18"
|
|
80
|
-
filterUnits="userSpaceOnUse"
|
|
81
|
-
color-interpolation-filters="sRGB"
|
|
82
|
-
>
|
|
83
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
84
|
-
<feColorMatrix
|
|
85
|
-
in="SourceAlpha"
|
|
86
|
-
type="matrix"
|
|
87
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
88
|
-
result="hardAlpha"
|
|
89
|
-
/>
|
|
90
|
-
<feOffset dy="4" />
|
|
91
|
-
<feGaussianBlur stdDeviation="2" />
|
|
92
|
-
<feComposite in2="hardAlpha" operator="out" />
|
|
93
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" />
|
|
94
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_116_6675" />
|
|
95
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_116_6675" result="shape" />
|
|
96
|
-
</filter>
|
|
97
|
-
</defs>
|
|
98
|
-
</svg>
|
|
99
|
-
</template>
|
|
100
|
-
<script setup lang="ts"></script>
|
|
1
|
+
<template>
|
|
2
|
+
<svg width="24" height="24" viewBox="0 0 24 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<g filter="url(#filter0_d_116_6675)">
|
|
4
|
+
<path d="M11.99 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round" />
|
|
5
|
+
</g>
|
|
6
|
+
<g filter="url(#filter1_d_116_6675)">
|
|
7
|
+
<path d="M15.99 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round" />
|
|
8
|
+
</g>
|
|
9
|
+
<path
|
|
10
|
+
d="M2 22H22"
|
|
11
|
+
stroke="currentStroke"
|
|
12
|
+
stroke-width="1.5"
|
|
13
|
+
stroke-miterlimit="10"
|
|
14
|
+
stroke-linecap="round"
|
|
15
|
+
stroke-linejoin="round"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M12 2C13.6 2.64 15.4 2.64 17 2V5C15.4 5.64 13.6 5.64 12 5V2Z"
|
|
19
|
+
stroke="currentStroke"
|
|
20
|
+
stroke-width="1.5"
|
|
21
|
+
stroke-miterlimit="10"
|
|
22
|
+
stroke-linecap="round"
|
|
23
|
+
stroke-linejoin="round"
|
|
24
|
+
/>
|
|
25
|
+
<path
|
|
26
|
+
d="M12 5V8"
|
|
27
|
+
stroke="currentStroke"
|
|
28
|
+
stroke-width="1.5"
|
|
29
|
+
stroke-miterlimit="10"
|
|
30
|
+
stroke-linecap="round"
|
|
31
|
+
stroke-linejoin="round"
|
|
32
|
+
/>
|
|
33
|
+
<path
|
|
34
|
+
d="M17 8H7C5 8 4 9 4 11V22H20V11C20 9 19 8 17 8Z"
|
|
35
|
+
stroke="currentStroke"
|
|
36
|
+
stroke-width="1.5"
|
|
37
|
+
stroke-miterlimit="10"
|
|
38
|
+
stroke-linecap="round"
|
|
39
|
+
stroke-linejoin="round"
|
|
40
|
+
/>
|
|
41
|
+
<path
|
|
42
|
+
d="M4.58008 12H19.4201"
|
|
43
|
+
stroke="currentStroke"
|
|
44
|
+
stroke-width="1.5"
|
|
45
|
+
stroke-miterlimit="10"
|
|
46
|
+
stroke-linecap="round"
|
|
47
|
+
stroke-linejoin="round"
|
|
48
|
+
/>
|
|
49
|
+
<path d="M7.98999 12V22" stroke="currentStroke" stroke-width="1.5" stroke-miterlimit="10" stroke-linejoin="round" />
|
|
50
|
+
<defs>
|
|
51
|
+
<filter
|
|
52
|
+
id="filter0_d_116_6675"
|
|
53
|
+
x="7.23999"
|
|
54
|
+
y="12"
|
|
55
|
+
width="9.5"
|
|
56
|
+
height="18"
|
|
57
|
+
filterUnits="userSpaceOnUse"
|
|
58
|
+
color-interpolation-filters="sRGB"
|
|
59
|
+
>
|
|
60
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
61
|
+
<feColorMatrix
|
|
62
|
+
in="SourceAlpha"
|
|
63
|
+
type="matrix"
|
|
64
|
+
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
65
|
+
result="hardAlpha"
|
|
66
|
+
/>
|
|
67
|
+
<feOffset dy="4" />
|
|
68
|
+
<feGaussianBlur stdDeviation="2" />
|
|
69
|
+
<feComposite in2="hardAlpha" operator="out" />
|
|
70
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" />
|
|
71
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_116_6675" />
|
|
72
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_116_6675" result="shape" />
|
|
73
|
+
</filter>
|
|
74
|
+
<filter
|
|
75
|
+
id="filter1_d_116_6675"
|
|
76
|
+
x="11.24"
|
|
77
|
+
y="12"
|
|
78
|
+
width="9.5"
|
|
79
|
+
height="18"
|
|
80
|
+
filterUnits="userSpaceOnUse"
|
|
81
|
+
color-interpolation-filters="sRGB"
|
|
82
|
+
>
|
|
83
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
|
84
|
+
<feColorMatrix
|
|
85
|
+
in="SourceAlpha"
|
|
86
|
+
type="matrix"
|
|
87
|
+
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
88
|
+
result="hardAlpha"
|
|
89
|
+
/>
|
|
90
|
+
<feOffset dy="4" />
|
|
91
|
+
<feGaussianBlur stdDeviation="2" />
|
|
92
|
+
<feComposite in2="hardAlpha" operator="out" />
|
|
93
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" />
|
|
94
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_116_6675" />
|
|
95
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_116_6675" result="shape" />
|
|
96
|
+
</filter>
|
|
97
|
+
</defs>
|
|
98
|
+
</svg>
|
|
99
|
+
</template>
|
|
100
|
+
<script setup lang="ts"></script>
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<path d="M17 3H21V7" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
4
|
-
<path d="M15 9L21 3" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
5
|
-
<path d="M7 21H3V17" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
6
|
-
<path d="M9 15L3 21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
7
|
-
<path
|
|
8
|
-
d="M14.02 2.20001C13.37 2.07001 12.69 2 12 2C6.48 2 2 6.48 2 12C2 12.69 2.07001 13.36 2.20001 14"
|
|
9
|
-
stroke="currentStroke"
|
|
10
|
-
stroke-width="1.5"
|
|
11
|
-
stroke-linecap="round"
|
|
12
|
-
stroke-linejoin="round"
|
|
13
|
-
/>
|
|
14
|
-
<path
|
|
15
|
-
d="M9.97998 21.8C10.63 21.93 11.31 22 12 22C17.52 22 22 17.52 22 12C22 11.32 21.93 10.65 21.8 10"
|
|
16
|
-
stroke="currentStroke"
|
|
17
|
-
stroke-width="1.5"
|
|
18
|
-
stroke-linecap="round"
|
|
19
|
-
stroke-linejoin="round"
|
|
20
|
-
/>
|
|
21
|
-
</svg>
|
|
22
|
-
</template>
|
|
1
|
+
<template>
|
|
2
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="M17 3H21V7" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
4
|
+
<path d="M15 9L21 3" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
5
|
+
<path d="M7 21H3V17" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
6
|
+
<path d="M9 15L3 21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
7
|
+
<path
|
|
8
|
+
d="M14.02 2.20001C13.37 2.07001 12.69 2 12 2C6.48 2 2 6.48 2 12C2 12.69 2.07001 13.36 2.20001 14"
|
|
9
|
+
stroke="currentStroke"
|
|
10
|
+
stroke-width="1.5"
|
|
11
|
+
stroke-linecap="round"
|
|
12
|
+
stroke-linejoin="round"
|
|
13
|
+
/>
|
|
14
|
+
<path
|
|
15
|
+
d="M9.97998 21.8C10.63 21.93 11.31 22 12 22C17.52 22 22 17.52 22 12C22 11.32 21.93 10.65 21.8 10"
|
|
16
|
+
stroke="currentStroke"
|
|
17
|
+
stroke-width="1.5"
|
|
18
|
+
stroke-linecap="round"
|
|
19
|
+
stroke-linejoin="round"
|
|
20
|
+
/>
|
|
21
|
+
</svg>
|
|
22
|
+
</template>
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
3
|
-
<path
|
|
4
|
-
d="M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z"
|
|
5
|
-
stroke="#F65160"
|
|
6
|
-
stroke-width="1.5"
|
|
7
|
-
stroke-linecap="round"
|
|
8
|
-
stroke-linejoin="round"
|
|
9
|
-
/>
|
|
10
|
-
<path d="M12 8V13" stroke="#F65160" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
11
|
-
<path d="M11.9941 16H12.0031" stroke="#F65160" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
|
|
12
|
-
</svg>
|
|
13
|
-
</template>
|
|
1
|
+
<template>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
3
|
+
<path
|
|
4
|
+
d="M12 22C17.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z"
|
|
5
|
+
stroke="#F65160"
|
|
6
|
+
stroke-width="1.5"
|
|
7
|
+
stroke-linecap="round"
|
|
8
|
+
stroke-linejoin="round"
|
|
9
|
+
/>
|
|
10
|
+
<path d="M12 8V13" stroke="#F65160" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
11
|
+
<path d="M11.9941 16H12.0031" stroke="#F65160" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
|
|
12
|
+
</svg>
|
|
13
|
+
</template>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
3
|
-
<path
|
|
4
|
-
fill-rule="evenodd"
|
|
5
|
-
clip-rule="evenodd"
|
|
6
|
-
d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4ZM12.9933 6.88338C12.9355 6.38604 12.5128 6 12 6C11.4477 6 11 6.44772 11 7V12.25L11.0086 12.3808C11.0539 12.7247 11.2756 13.0246 11.5992 13.1662L15.5992 14.9162L15.7087 14.9567C16.1875 15.1032 16.7106 14.8707 16.9162 14.4008L16.9567 14.2913C17.1032 13.8125 16.8707 13.2894 16.4008 13.0838L13 11.596V7L12.9933 6.88338Z"
|
|
7
|
-
fill="#7D8592"
|
|
8
|
-
/>
|
|
9
|
-
</svg>
|
|
10
|
-
</template>
|
|
1
|
+
<template>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
3
|
+
<path
|
|
4
|
+
fill-rule="evenodd"
|
|
5
|
+
clip-rule="evenodd"
|
|
6
|
+
d="M12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4ZM12.9933 6.88338C12.9355 6.38604 12.5128 6 12 6C11.4477 6 11 6.44772 11 7V12.25L11.0086 12.3808C11.0539 12.7247 11.2756 13.0246 11.5992 13.1662L15.5992 14.9162L15.7087 14.9567C16.1875 15.1032 16.7106 14.8707 16.9162 14.4008L16.9567 14.2913C17.1032 13.8125 16.8707 13.2894 16.4008 13.0838L13 11.596V7L12.9933 6.88338Z"
|
|
7
|
+
fill="#7D8592"
|
|
8
|
+
/>
|
|
9
|
+
</svg>
|
|
10
|
+
</template>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
3
|
-
<path
|
|
4
|
-
fill-rule="evenodd"
|
|
5
|
-
clip-rule="evenodd"
|
|
6
|
-
d="M14 1C15.5977 1 16.9037 2.24892 16.9949 3.82373L17 4V5H19H21C21.5523 5 22 5.44772 22 6C22 6.51284 21.614 6.93551 21.1166 6.99327L21 7H20V20C20 21.5977 18.7511 22.9037 17.1763 22.9949L17 23H7C5.40232 23 4.09634 21.7511 4.00509 20.1763L4 20V7H3C2.44772 7 2 6.55228 2 6C2 5.48716 2.38604 5.06449 2.88338 5.00673L3 5H5H7V4C7 2.40232 8.24892 1.09634 9.82373 1.00509L10 1H14ZM6 7V20C6 20.5128 6.38604 20.9355 6.88338 20.9933L7 21H17C17.5128 21 17.9355 20.614 17.9933 20.1166L18 20V7H16H8H6ZM15 5H9V4L9.00673 3.88338C9.06449 3.38604 9.48716 3 10 3H14L14.1166 3.00673C14.614 3.06449 15 3.48716 15 4V5ZM10 10C10.5128 10 10.9355 10.386 10.9933 10.8834L11 11V17C11 17.5523 10.5523 18 10 18C9.48716 18 9.06449 17.614 9.00673 17.1166L9 17V11C9 10.4477 9.44772 10 10 10ZM14.9933 10.8834C14.9355 10.386 14.5128 10 14 10C13.4477 10 13 10.4477 13 11V17L13.0067 17.1166C13.0645 17.614 13.4872 18 14 18C14.5523 18 15 17.5523 15 17V11L14.9933 10.8834Z"
|
|
7
|
-
fill="#F65160"
|
|
8
|
-
/>
|
|
9
|
-
</svg>
|
|
10
|
-
</template>
|
|
1
|
+
<template>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
3
|
+
<path
|
|
4
|
+
fill-rule="evenodd"
|
|
5
|
+
clip-rule="evenodd"
|
|
6
|
+
d="M14 1C15.5977 1 16.9037 2.24892 16.9949 3.82373L17 4V5H19H21C21.5523 5 22 5.44772 22 6C22 6.51284 21.614 6.93551 21.1166 6.99327L21 7H20V20C20 21.5977 18.7511 22.9037 17.1763 22.9949L17 23H7C5.40232 23 4.09634 21.7511 4.00509 20.1763L4 20V7H3C2.44772 7 2 6.55228 2 6C2 5.48716 2.38604 5.06449 2.88338 5.00673L3 5H5H7V4C7 2.40232 8.24892 1.09634 9.82373 1.00509L10 1H14ZM6 7V20C6 20.5128 6.38604 20.9355 6.88338 20.9933L7 21H17C17.5128 21 17.9355 20.614 17.9933 20.1166L18 20V7H16H8H6ZM15 5H9V4L9.00673 3.88338C9.06449 3.38604 9.48716 3 10 3H14L14.1166 3.00673C14.614 3.06449 15 3.48716 15 4V5ZM10 10C10.5128 10 10.9355 10.386 10.9933 10.8834L11 11V17C11 17.5523 10.5523 18 10 18C9.48716 18 9.06449 17.614 9.00673 17.1166L9 17V11C9 10.4477 9.44772 10 10 10ZM14.9933 10.8834C14.9355 10.386 14.5128 10 14 10C13.4477 10 13 10.4477 13 11V17L13.0067 17.1166C13.0645 17.614 13.4872 18 14 18C14.5523 18 15 17.5523 15 17V11L14.9933 10.8834Z"
|
|
7
|
+
fill="#F65160"
|
|
8
|
+
/>
|
|
9
|
+
</svg>
|
|
10
|
+
</template>
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="25" viewBox="0 0 16 25" fill="none">
|
|
3
|
-
<path
|
|
4
|
-
d="M5.98265 0.364887C5.98265 0.386246 6.1589 0.656149 6.39514 0.999838C6.71014 1.45615 6.9239 1.94547 7.0139 2.41343C7.28765 3.85615 6.79452 5.5377 5.30577 8.22896C4.73202 9.26197 3.94077 10.5571 2.3414 13.0775C1.49952 14.4057 1.4714 14.4523 1.3139 14.761C0.950145 15.4833 0.76452 16.1105 0.713895 16.796C0.65202 17.6134 0.85827 18.4853 1.29327 19.2523C2.08265 20.6406 3.56765 21.8853 5.78577 23.0193C6.59765 23.4348 7.34389 23.7591 8.4014 24.1591C8.85139 24.3299 8.85139 24.328 8.85139 24.3222C8.85139 24.3183 8.77264 24.2697 8.67889 24.2134C8.58327 24.1571 8.41264 24.0503 8.29827 23.9746C6.12327 22.5319 5.02264 20.7319 5.24202 18.9765C5.29452 18.5629 5.37702 18.2678 5.66577 17.4639C5.92452 16.7416 6.2339 16.0231 6.72327 15.0095C7.01765 14.3979 7.0589 14.3144 7.7489 12.9804C7.97577 12.5416 8.19702 12.1144 8.24202 12.029C9.05202 10.4561 9.52452 9.2678 9.7439 8.25032C9.79077 8.03673 9.7964 7.97071 9.7964 7.66003C9.7964 7.27751 9.76639 7.05227 9.65952 6.6445C9.33327 5.40566 8.50827 3.78819 7.3139 2.04838C6.71014 1.16683 5.98265 0.248383 5.98265 0.364887Z"
|
|
5
|
-
fill="#F65160"
|
|
6
|
-
/>
|
|
7
|
-
<path
|
|
8
|
-
d="M11.0699 8.1164C11.1055 8.19602 11.1824 8.36495 11.2424 8.49116C11.368 8.76301 11.4018 8.90864 11.4018 9.18825C11.4018 9.90669 10.9987 11.1416 10.2205 12.8057C10.1249 13.0077 9.99555 13.2873 9.92992 13.4271C9.86617 13.5649 9.54367 14.2251 9.21367 14.8931C7.87492 17.6057 7.59742 18.2834 7.53742 18.9882C7.46805 19.8135 7.75867 20.7397 8.3493 21.5688C8.54055 21.8368 8.81805 22.1378 8.84805 22.1086C8.8518 22.1028 8.78617 22.0077 8.7018 21.8989C8.61555 21.7882 8.52555 21.6543 8.50117 21.598C8.2443 21.0213 8.49555 19.9669 9.2493 18.4465C9.5268 17.8873 9.80055 17.3882 10.3368 16.462C11.1843 14.996 11.4955 14.3824 11.8368 13.5048C12.0262 13.0135 12.2793 12.1921 12.3562 11.8115C12.3993 11.5921 12.418 11.2659 12.3955 11.0717C12.3374 10.5591 12.1987 10.2115 11.5705 9.00961C11.0793 8.06592 10.9274 7.79407 11.0699 8.1164Z"
|
|
9
|
-
fill="#F65160"
|
|
10
|
-
/>
|
|
11
|
-
<path
|
|
12
|
-
d="M13.7868 11.1261C13.875 11.3028 13.965 11.5105 13.9875 11.5882C14.295 12.6134 14.0925 14.1824 13.455 15.6989C13.2037 16.2969 12.9712 16.6989 12.0581 18.1164C11.1112 19.5863 10.8056 20.1066 10.5262 20.728C10.2712 21.295 10.1681 21.7028 10.1268 22.3105C10.1081 22.5863 10.125 23.0542 10.1625 23.3202C10.1775 23.4193 10.1793 23.4212 10.1812 23.3494C10.1887 23.0736 10.35 22.7435 10.6837 22.3261C10.9031 22.0484 11.6268 21.3105 12.3018 20.6756C13.0481 19.9727 13.515 19.4892 13.8412 19.0775C14.9006 17.7416 15.3468 16.4542 15.2943 14.8892C15.2568 13.763 15.1012 13.2872 14.3625 12.0387C14.1806 11.7338 13.9518 11.3416 13.8487 11.1649C13.7475 10.9882 13.6575 10.8348 13.6481 10.8251C13.6387 10.8134 13.7006 10.9494 13.7868 11.1261Z"
|
|
13
|
-
fill="#F65160"
|
|
14
|
-
/>
|
|
15
|
-
</svg>
|
|
16
|
-
</template>
|
|
1
|
+
<template>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="25" viewBox="0 0 16 25" fill="none">
|
|
3
|
+
<path
|
|
4
|
+
d="M5.98265 0.364887C5.98265 0.386246 6.1589 0.656149 6.39514 0.999838C6.71014 1.45615 6.9239 1.94547 7.0139 2.41343C7.28765 3.85615 6.79452 5.5377 5.30577 8.22896C4.73202 9.26197 3.94077 10.5571 2.3414 13.0775C1.49952 14.4057 1.4714 14.4523 1.3139 14.761C0.950145 15.4833 0.76452 16.1105 0.713895 16.796C0.65202 17.6134 0.85827 18.4853 1.29327 19.2523C2.08265 20.6406 3.56765 21.8853 5.78577 23.0193C6.59765 23.4348 7.34389 23.7591 8.4014 24.1591C8.85139 24.3299 8.85139 24.328 8.85139 24.3222C8.85139 24.3183 8.77264 24.2697 8.67889 24.2134C8.58327 24.1571 8.41264 24.0503 8.29827 23.9746C6.12327 22.5319 5.02264 20.7319 5.24202 18.9765C5.29452 18.5629 5.37702 18.2678 5.66577 17.4639C5.92452 16.7416 6.2339 16.0231 6.72327 15.0095C7.01765 14.3979 7.0589 14.3144 7.7489 12.9804C7.97577 12.5416 8.19702 12.1144 8.24202 12.029C9.05202 10.4561 9.52452 9.2678 9.7439 8.25032C9.79077 8.03673 9.7964 7.97071 9.7964 7.66003C9.7964 7.27751 9.76639 7.05227 9.65952 6.6445C9.33327 5.40566 8.50827 3.78819 7.3139 2.04838C6.71014 1.16683 5.98265 0.248383 5.98265 0.364887Z"
|
|
5
|
+
fill="#F65160"
|
|
6
|
+
/>
|
|
7
|
+
<path
|
|
8
|
+
d="M11.0699 8.1164C11.1055 8.19602 11.1824 8.36495 11.2424 8.49116C11.368 8.76301 11.4018 8.90864 11.4018 9.18825C11.4018 9.90669 10.9987 11.1416 10.2205 12.8057C10.1249 13.0077 9.99555 13.2873 9.92992 13.4271C9.86617 13.5649 9.54367 14.2251 9.21367 14.8931C7.87492 17.6057 7.59742 18.2834 7.53742 18.9882C7.46805 19.8135 7.75867 20.7397 8.3493 21.5688C8.54055 21.8368 8.81805 22.1378 8.84805 22.1086C8.8518 22.1028 8.78617 22.0077 8.7018 21.8989C8.61555 21.7882 8.52555 21.6543 8.50117 21.598C8.2443 21.0213 8.49555 19.9669 9.2493 18.4465C9.5268 17.8873 9.80055 17.3882 10.3368 16.462C11.1843 14.996 11.4955 14.3824 11.8368 13.5048C12.0262 13.0135 12.2793 12.1921 12.3562 11.8115C12.3993 11.5921 12.418 11.2659 12.3955 11.0717C12.3374 10.5591 12.1987 10.2115 11.5705 9.00961C11.0793 8.06592 10.9274 7.79407 11.0699 8.1164Z"
|
|
9
|
+
fill="#F65160"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M13.7868 11.1261C13.875 11.3028 13.965 11.5105 13.9875 11.5882C14.295 12.6134 14.0925 14.1824 13.455 15.6989C13.2037 16.2969 12.9712 16.6989 12.0581 18.1164C11.1112 19.5863 10.8056 20.1066 10.5262 20.728C10.2712 21.295 10.1681 21.7028 10.1268 22.3105C10.1081 22.5863 10.125 23.0542 10.1625 23.3202C10.1775 23.4193 10.1793 23.4212 10.1812 23.3494C10.1887 23.0736 10.35 22.7435 10.6837 22.3261C10.9031 22.0484 11.6268 21.3105 12.3018 20.6756C13.0481 19.9727 13.515 19.4892 13.8412 19.0775C14.9006 17.7416 15.3468 16.4542 15.2943 14.8892C15.2568 13.763 15.1012 13.2872 14.3625 12.0387C14.1806 11.7338 13.9518 11.3416 13.8487 11.1649C13.7475 10.9882 13.6575 10.8348 13.6481 10.8251C13.6387 10.8134 13.7006 10.9494 13.7868 11.1261Z"
|
|
13
|
+
fill="#F65160"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
</template>
|
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 '../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 '../types/Api_Metrics'
|