shared-ritm 1.2.46 → 1.2.48

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 (91) hide show
  1. package/README.md +103 -103
  2. package/dist/index.css +1 -1
  3. package/dist/shared-ritm.es.js +199855 -72176
  4. package/dist/shared-ritm.umd.js +97 -42
  5. package/dist/types/api/services/ControlsService.d.ts +1 -0
  6. package/dist/types/api/types/Api_Controls.d.ts +12 -2
  7. package/dist/types/index.d.ts +2 -1
  8. package/package.json +1 -1
  9. package/src/api/services/ControlsService.ts +40 -36
  10. package/src/api/services/FileService.ts +15 -15
  11. package/src/api/services/GanttService.ts +17 -17
  12. package/src/api/services/MetricsService.ts +109 -109
  13. package/src/api/services/RepairsService.ts +100 -100
  14. package/src/api/settings/ApiService.ts +128 -128
  15. package/src/api/types/Api_Controls.ts +12 -2
  16. package/src/api/types/Api_Files.ts +1 -1
  17. package/src/api/types/Api_Projects.ts +55 -55
  18. package/src/api/types/Api_Repairs.ts +93 -93
  19. package/src/common/app-button/AppButton.vue +173 -173
  20. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  21. package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
  22. package/src/common/app-dropdown/AppDropdown.vue +31 -31
  23. package/src/common/app-input/AppInput.vue +147 -147
  24. package/src/common/app-loader/index.vue +43 -43
  25. package/src/common/app-page-layout/AppPageLayout.vue +122 -122
  26. package/src/common/app-select/AppSelect.vue +157 -157
  27. package/src/common/app-sidebar/AppSidebar.vue +168 -168
  28. package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
  29. package/src/common/app-sidebar/components/SidebarMenuItem.vue +148 -148
  30. package/src/common/app-table/AppTable.vue +211 -211
  31. package/src/common/app-table/AppTableLayout.vue +93 -93
  32. package/src/common/app-table/components/ModalSelect.vue +215 -0
  33. package/src/common/app-table/components/TableModal.vue +26 -53
  34. package/src/common/app-table/components/TablePagination.vue +151 -151
  35. package/src/common/app-table/components/TableSearch.vue +78 -78
  36. package/src/common/app-table/controllers/useBaseTable.ts +43 -43
  37. package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
  38. package/src/common/app-table/controllers/useTableModel.ts +93 -93
  39. package/src/common/app-toggle/AppToggle.vue +23 -23
  40. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  41. package/src/global.d.ts +1 -1
  42. package/src/icons/components/arrow-down-icon.vue +25 -25
  43. package/src/icons/components/arrow-frame-icon.vue +19 -19
  44. package/src/icons/components/arrow-square.vue +22 -22
  45. package/src/icons/components/table-filter-icon.vue +30 -30
  46. package/src/icons/dialogs/RemoveIcon.vue +12 -12
  47. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  48. package/src/icons/header/flashIcon.vue +24 -24
  49. package/src/icons/header/searchStatusIcon.vue +24 -24
  50. package/src/icons/header/smallCapsIcon.vue +34 -34
  51. package/src/icons/sidebar/assign-module-icon.vue +36 -36
  52. package/src/icons/sidebar/instrument-history-icon.vue +32 -32
  53. package/src/icons/sidebar/instrument-order-icon.vue +38 -38
  54. package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
  55. package/src/icons/sidebar/instruments-icon.vue +45 -45
  56. package/src/icons/sidebar/logo-icon.vue +15 -15
  57. package/src/icons/sidebar/logout-icon.vue +13 -13
  58. package/src/icons/sidebar/modules-icon.vue +16 -16
  59. package/src/icons/sidebar/notifications-icon.vue +24 -24
  60. package/src/icons/sidebar/order-icon.vue +44 -44
  61. package/src/icons/sidebar/pass-icon.vue +38 -38
  62. package/src/icons/sidebar/positions-icon.vue +42 -42
  63. package/src/icons/sidebar/preorder-icon.vue +19 -19
  64. package/src/icons/sidebar/projects-icon.vue +31 -31
  65. package/src/icons/sidebar/repair-object-icon.vue +18 -18
  66. package/src/icons/sidebar/repairs-icon.vue +20 -20
  67. package/src/icons/sidebar/roles-icon.vue +26 -26
  68. package/src/icons/sidebar/status-history-icon.vue +24 -24
  69. package/src/icons/sidebar/tasks-icon.vue +28 -28
  70. package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
  71. package/src/icons/sidebar/tasks_today-icon.vue +27 -27
  72. package/src/icons/sidebar/teams-icon.vue +32 -32
  73. package/src/icons/sidebar/user-icon.vue +18 -18
  74. package/src/icons/sidebar/users-icon.vue +46 -46
  75. package/src/icons/sidebar/videosources-icon.vue +19 -19
  76. package/src/icons/sidebar/videowall-icon.vue +13 -13
  77. package/src/icons/sidebar/videozones-icon.vue +21 -21
  78. package/src/icons/sidebar/warehouses-icon.vue +43 -43
  79. package/src/icons/sidebar/workshop-icon.vue +100 -100
  80. package/src/icons/sidebar/workzones-icon.vue +22 -22
  81. package/src/icons/task/attention-icon.vue +13 -13
  82. package/src/icons/task/clock-icon.vue +10 -10
  83. package/src/icons/task/delete-icon.vue +10 -10
  84. package/src/icons/task/fire-icon.vue +16 -16
  85. package/src/index.ts +2 -0
  86. package/src/quasar-user-options.ts +17 -17
  87. package/src/router/index.ts +10 -10
  88. package/src/shared/styles/general.css +96 -96
  89. package/src/shims-vue.d.ts +5 -5
  90. package/src/utils/confirm.ts +12 -12
  91. package/src/utils/notification.ts +9 -9
@@ -1,19 +1,19 @@
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.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
5
- stroke="currentStroke"
6
- stroke-width="1.5"
7
- stroke-miterlimit="10"
8
- stroke-linecap="round"
9
- stroke-linejoin="round"
10
- />
11
- <path
12
- d="M8.46997 13.26L12 9.73999L15.53 13.26"
13
- stroke="currentStroke"
14
- stroke-width="1.5"
15
- stroke-linecap="round"
16
- stroke-linejoin="round"
17
- />
18
- </svg>
19
- </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.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z"
5
+ stroke="currentStroke"
6
+ stroke-width="1.5"
7
+ stroke-miterlimit="10"
8
+ stroke-linecap="round"
9
+ stroke-linejoin="round"
10
+ />
11
+ <path
12
+ d="M8.46997 13.26L12 9.73999L15.53 13.26"
13
+ stroke="currentStroke"
14
+ stroke-width="1.5"
15
+ stroke-linecap="round"
16
+ stroke-linejoin="round"
17
+ />
18
+ </svg>
19
+ </template>
@@ -1,22 +1,22 @@
1
- <script setup lang="ts"></script>
2
-
3
- <template>
4
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
- <path
6
- d="M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z"
7
- stroke="#3F8CFF"
8
- stroke-width="1.5"
9
- stroke-linecap="round"
10
- stroke-linejoin="round"
11
- />
12
- <path
13
- d="M10.7402 15.53L14.2602 12L10.7402 8.46997"
14
- stroke="#3F8CFF"
15
- stroke-width="1.5"
16
- stroke-linecap="round"
17
- stroke-linejoin="round"
18
- />
19
- </svg>
20
- </template>
21
-
22
- <style scoped lang="scss"></style>
1
+ <script setup lang="ts"></script>
2
+
3
+ <template>
4
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
5
+ <path
6
+ d="M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z"
7
+ stroke="#3F8CFF"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ />
12
+ <path
13
+ d="M10.7402 15.53L14.2602 12L10.7402 8.46997"
14
+ stroke="#3F8CFF"
15
+ stroke-width="1.5"
16
+ stroke-linecap="round"
17
+ stroke-linejoin="round"
18
+ />
19
+ </svg>
20
+ </template>
21
+
22
+ <style scoped lang="scss"></style>
@@ -1,30 +1,30 @@
1
- <script setup lang="ts"></script>
2
-
3
- <template>
4
- <svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none">
5
- <path
6
- d="M11.9328 16.1547C11.9328 16.663 11.5995 17.3297 11.1745 17.588L9.99948 18.3463C8.90781 19.0213 7.39114 18.263 7.39114 16.913V12.4547C7.39114 11.863 7.05781 11.1047 6.71615 10.688L3.51612 7.32131C3.09112 6.89631 2.75781 6.14632 2.75781 5.63799V3.70465C2.75781 2.69632 3.51616 1.93799 4.44116 1.93799H15.5578C16.4828 1.93799 17.2411 2.69631 17.2411 3.62131V5.47131C17.2411 6.14631 16.8161 6.98799 16.3995 7.40465"
7
- stroke="#A4B4CF"
8
- stroke-width="1.5"
9
- stroke-miterlimit="10"
10
- stroke-linecap="round"
11
- stroke-linejoin="round"
12
- />
13
- <path
14
- d="M13.3923 14.0301C14.865 14.0301 16.0589 12.8362 16.0589 11.3635C16.0589 9.89069 14.865 8.69678 13.3923 8.69678C11.9195 8.69678 10.7256 9.89069 10.7256 11.3635C10.7256 12.8362 11.9195 14.0301 13.3923 14.0301Z"
15
- stroke="#A4B4CF"
16
- stroke-width="1.5"
17
- stroke-linecap="round"
18
- stroke-linejoin="round"
19
- />
20
- <path
21
- d="M16.5589 14.5301L15.7256 13.6968"
22
- stroke="#A4B4CF"
23
- stroke-width="1.5"
24
- stroke-linecap="round"
25
- stroke-linejoin="round"
26
- />
27
- </svg>
28
- </template>
29
-
30
- <style scoped lang="scss"></style>
1
+ <script setup lang="ts"></script>
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none">
5
+ <path
6
+ d="M11.9328 16.1547C11.9328 16.663 11.5995 17.3297 11.1745 17.588L9.99948 18.3463C8.90781 19.0213 7.39114 18.263 7.39114 16.913V12.4547C7.39114 11.863 7.05781 11.1047 6.71615 10.688L3.51612 7.32131C3.09112 6.89631 2.75781 6.14632 2.75781 5.63799V3.70465C2.75781 2.69632 3.51616 1.93799 4.44116 1.93799H15.5578C16.4828 1.93799 17.2411 2.69631 17.2411 3.62131V5.47131C17.2411 6.14631 16.8161 6.98799 16.3995 7.40465"
7
+ stroke="#A4B4CF"
8
+ stroke-width="1.5"
9
+ stroke-miterlimit="10"
10
+ stroke-linecap="round"
11
+ stroke-linejoin="round"
12
+ />
13
+ <path
14
+ d="M13.3923 14.0301C14.865 14.0301 16.0589 12.8362 16.0589 11.3635C16.0589 9.89069 14.865 8.69678 13.3923 8.69678C11.9195 8.69678 10.7256 9.89069 10.7256 11.3635C10.7256 12.8362 11.9195 14.0301 13.3923 14.0301Z"
15
+ stroke="#A4B4CF"
16
+ stroke-width="1.5"
17
+ stroke-linecap="round"
18
+ stroke-linejoin="round"
19
+ />
20
+ <path
21
+ d="M16.5589 14.5301L15.7256 13.6968"
22
+ stroke="#A4B4CF"
23
+ stroke-width="1.5"
24
+ stroke-linecap="round"
25
+ stroke-linejoin="round"
26
+ />
27
+ </svg>
28
+ </template>
29
+
30
+ <style scoped lang="scss"></style>
@@ -1,12 +1,12 @@
1
- <template>
2
- <svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 60 60" fill="none">
3
- <path
4
- fill-rule="evenodd"
5
- clip-rule="evenodd"
6
- d="M35 2.5C38.9942 2.5 42.2592 5.6223 42.4873 9.55932L42.5 10V12.5H47.5H52.5C53.8807 12.5 55 13.6193 55 15C55 16.2821 54.0349 17.3388 52.7916 17.4832L52.5 17.5H50V50C50 53.9942 46.8777 57.2592 42.9407 57.4873L42.5 57.5H17.5C13.5058 57.5 10.2408 54.3777 10.0127 50.4407L10 50V17.5H7.5C6.11929 17.5 5 16.3807 5 15C5 13.7179 5.9651 12.6612 7.20845 12.5168L7.5 12.5H12.5H17.5V10C17.5 6.0058 20.6223 2.74085 24.5593 2.51273L25 2.5H35ZM15 17.5V50C15 51.2821 15.9651 52.3388 17.2084 52.4832L17.5 52.5H42.5C43.7821 52.5 44.8388 51.5349 44.9832 50.2916L45 50V17.5H40H20H15ZM37.5 12.5H22.5V10L22.5168 9.70845C22.6612 8.4651 23.7179 7.5 25 7.5H35L35.2916 7.51682C36.5349 7.66123 37.5 8.71791 37.5 10V12.5ZM25 25C26.2821 25 27.3388 25.9651 27.4832 27.2084L27.5 27.5V42.5C27.5 43.8807 26.3807 45 25 45C23.7179 45 22.6612 44.0349 22.5168 42.7916L22.5 42.5V27.5C22.5 26.1193 23.6193 25 25 25ZM37.4832 27.2084C37.3388 25.9651 36.2821 25 35 25C33.6193 25 32.5 26.1193 32.5 27.5V42.5L32.5168 42.7916C32.6612 44.0349 33.7179 45 35 45C36.3807 45 37.5 43.8807 37.5 42.5V27.5L37.4832 27.2084Z"
7
- fill="#F65160"
8
- />
9
- </svg>
10
- </template>
11
-
12
- <style scoped lang="scss"></style>
1
+ <template>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 60 60" fill="none">
3
+ <path
4
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ d="M35 2.5C38.9942 2.5 42.2592 5.6223 42.4873 9.55932L42.5 10V12.5H47.5H52.5C53.8807 12.5 55 13.6193 55 15C55 16.2821 54.0349 17.3388 52.7916 17.4832L52.5 17.5H50V50C50 53.9942 46.8777 57.2592 42.9407 57.4873L42.5 57.5H17.5C13.5058 57.5 10.2408 54.3777 10.0127 50.4407L10 50V17.5H7.5C6.11929 17.5 5 16.3807 5 15C5 13.7179 5.9651 12.6612 7.20845 12.5168L7.5 12.5H12.5H17.5V10C17.5 6.0058 20.6223 2.74085 24.5593 2.51273L25 2.5H35ZM15 17.5V50C15 51.2821 15.9651 52.3388 17.2084 52.4832L17.5 52.5H42.5C43.7821 52.5 44.8388 51.5349 44.9832 50.2916L45 50V17.5H40H20H15ZM37.5 12.5H22.5V10L22.5168 9.70845C22.6612 8.4651 23.7179 7.5 25 7.5H35L35.2916 7.51682C36.5349 7.66123 37.5 8.71791 37.5 10V12.5ZM25 25C26.2821 25 27.3388 25.9651 27.4832 27.2084L27.5 27.5V42.5C27.5 43.8807 26.3807 45 25 45C23.7179 45 22.6612 44.0349 22.5168 42.7916L22.5 42.5V27.5C22.5 26.1193 23.6193 25 25 25ZM37.4832 27.2084C37.3388 25.9651 36.2821 25 35 25C33.6193 25 32.5 26.1193 32.5 27.5V42.5L32.5168 42.7916C32.6612 44.0349 33.7179 45 35 45C36.3807 45 37.5 43.8807 37.5 42.5V27.5L37.4832 27.2084Z"
7
+ fill="#F65160"
8
+ />
9
+ </svg>
10
+ </template>
11
+
12
+ <style scoped lang="scss"></style>
@@ -1,12 +1,12 @@
1
- <template>
2
- <svg width="60" height="60" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path
4
- fill-rule="evenodd"
5
- clip-rule="evenodd"
6
- d="M47.5 2.5H12.5C6.97715 2.5 2.5 6.97715 2.5 12.5V25C2.5 35.9165 9.14893 45.4216 22.0963 53.4484C26.938 56.45 33.062 56.45 37.9037 53.4484L38.8284 52.8657C51.1712 44.9576 57.5 35.6473 57.5 25V12.5C57.5 6.97715 53.0228 2.5 47.5 2.5ZM12.5 7.5H47.5C50.2614 7.5 52.5 9.73858 52.5 12.5V25C52.5 33.7331 47.1592 41.5899 36.1469 48.6456L35.2535 49.2085C32.0413 51.1999 27.9586 51.1999 24.7309 49.1988C13.1268 42.0048 7.5 33.9609 7.5 25V12.5C7.5 9.73858 9.73858 7.5 12.5 7.5ZM44.2833 15.7258C43.3072 14.7492 41.7243 14.7488 40.7477 15.7248L27.5 28.9625L21.7783 23.2302L21.543 23.0221C20.5629 22.2587 19.1448 22.3268 18.2428 23.2273C17.2657 24.2028 17.2643 25.7857 18.2398 26.7628L25.7308 34.2663L25.9662 34.4745C26.9467 35.2382 28.3655 35.1696 29.2673 34.2682L44.2823 19.2613L44.4904 19.0258C45.2532 18.0453 45.1842 16.6272 44.2833 15.7258Z"
7
- fill="#00D097"
8
- />
9
- </svg>
10
- </template>
11
-
12
- <style scoped lang="scss"></style>
1
+ <template>
2
+ <svg width="60" height="60" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path
4
+ fill-rule="evenodd"
5
+ clip-rule="evenodd"
6
+ d="M47.5 2.5H12.5C6.97715 2.5 2.5 6.97715 2.5 12.5V25C2.5 35.9165 9.14893 45.4216 22.0963 53.4484C26.938 56.45 33.062 56.45 37.9037 53.4484L38.8284 52.8657C51.1712 44.9576 57.5 35.6473 57.5 25V12.5C57.5 6.97715 53.0228 2.5 47.5 2.5ZM12.5 7.5H47.5C50.2614 7.5 52.5 9.73858 52.5 12.5V25C52.5 33.7331 47.1592 41.5899 36.1469 48.6456L35.2535 49.2085C32.0413 51.1999 27.9586 51.1999 24.7309 49.1988C13.1268 42.0048 7.5 33.9609 7.5 25V12.5C7.5 9.73858 9.73858 7.5 12.5 7.5ZM44.2833 15.7258C43.3072 14.7492 41.7243 14.7488 40.7477 15.7248L27.5 28.9625L21.7783 23.2302L21.543 23.0221C20.5629 22.2587 19.1448 22.3268 18.2428 23.2273C17.2657 24.2028 17.2643 25.7857 18.2398 26.7628L25.7308 34.2663L25.9662 34.4745C26.9467 35.2382 28.3655 35.1696 29.2673 34.2682L44.2823 19.2613L44.4904 19.0258C45.2532 18.0453 45.1842 16.6272 44.2833 15.7258Z"
7
+ fill="#00D097"
8
+ />
9
+ </svg>
10
+ </template>
11
+
12
+ <style scoped lang="scss"></style>
@@ -1,24 +1,24 @@
1
- <script setup lang="ts"></script>
2
-
3
- <template>
4
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
5
- <path
6
- d="M6.08998 13.28H9.17998V20.48C9.17998 22.16 10.09 22.5 11.2 21.24L18.77 12.64C19.7 11.59 19.31 10.72 17.9 10.72H14.81V3.52002C14.81 1.84002 13.9 1.50002 12.79 2.76002L5.21998 11.36C4.29998 12.42 4.68998 13.28 6.08998 13.28Z"
7
- stroke="#404650"
8
- stroke-width="1.5"
9
- stroke-miterlimit="10"
10
- stroke-linecap="round"
11
- stroke-linejoin="round"
12
- />
13
- <path
14
- d="M9.18005 20.4798C9.18005 22.1598 10.0901 22.4998 11.2001 21.2398L18.7701 12.6398C19.7001 11.5898 19.3101 10.7198 17.9001 10.7198H14.8101"
15
- stroke="#408CFF"
16
- stroke-width="1.5"
17
- stroke-miterlimit="10"
18
- stroke-linecap="round"
19
- stroke-linejoin="round"
20
- />
21
- </svg>
22
- </template>
23
-
24
- <style scoped lang="stylus"></style>
1
+ <script setup lang="ts"></script>
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
5
+ <path
6
+ d="M6.08998 13.28H9.17998V20.48C9.17998 22.16 10.09 22.5 11.2 21.24L18.77 12.64C19.7 11.59 19.31 10.72 17.9 10.72H14.81V3.52002C14.81 1.84002 13.9 1.50002 12.79 2.76002L5.21998 11.36C4.29998 12.42 4.68998 13.28 6.08998 13.28Z"
7
+ stroke="#404650"
8
+ stroke-width="1.5"
9
+ stroke-miterlimit="10"
10
+ stroke-linecap="round"
11
+ stroke-linejoin="round"
12
+ />
13
+ <path
14
+ d="M9.18005 20.4798C9.18005 22.1598 10.0901 22.4998 11.2001 21.2398L18.7701 12.6398C19.7001 11.5898 19.3101 10.7198 17.9001 10.7198H14.8101"
15
+ stroke="#408CFF"
16
+ stroke-width="1.5"
17
+ stroke-miterlimit="10"
18
+ stroke-linecap="round"
19
+ stroke-linejoin="round"
20
+ />
21
+ </svg>
22
+ </template>
23
+
24
+ <style scoped lang="stylus"></style>
@@ -1,24 +1,24 @@
1
- <script setup lang="ts"></script>
2
-
3
- <template>
4
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
5
- <path
6
- d="M20 11C20 15.97 15.97 20 11 20C6.03 20 2 15.97 2 11C2 6.03 6.03 2 11 2"
7
- stroke="#404650"
8
- stroke-width="1.5"
9
- stroke-linecap="round"
10
- stroke-linejoin="round"
11
- />
12
- <path
13
- d="M18.9299 20.6898C19.4599 22.2898 20.6699 22.4498 21.5999 21.0498C22.4499 19.7698 21.8899 18.7198 20.3499 18.7198C19.2099 18.7098 18.5699 19.5998 18.9299 20.6898Z"
14
- stroke="#404650"
15
- stroke-width="1.5"
16
- stroke-linecap="round"
17
- stroke-linejoin="round"
18
- />
19
- <path d="M14 5H20" stroke="#408CFF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
20
- <path d="M14 8H17" stroke="#408CFF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
21
- </svg>
22
- </template>
23
-
24
- <style scoped lang="stylus"></style>
1
+ <script setup lang="ts"></script>
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
5
+ <path
6
+ d="M20 11C20 15.97 15.97 20 11 20C6.03 20 2 15.97 2 11C2 6.03 6.03 2 11 2"
7
+ stroke="#404650"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ />
12
+ <path
13
+ d="M18.9299 20.6898C19.4599 22.2898 20.6699 22.4498 21.5999 21.0498C22.4499 19.7698 21.8899 18.7198 20.3499 18.7198C19.2099 18.7098 18.5699 19.5998 18.9299 20.6898Z"
14
+ stroke="#404650"
15
+ stroke-width="1.5"
16
+ stroke-linecap="round"
17
+ stroke-linejoin="round"
18
+ />
19
+ <path d="M14 5H20" stroke="#408CFF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
20
+ <path d="M14 8H17" stroke="#408CFF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
21
+ </svg>
22
+ </template>
23
+
24
+ <style scoped lang="stylus"></style>
@@ -1,34 +1,34 @@
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="M1.99023 5.92995V4.41995C1.99023 3.39995 2.82023 2.56995 3.84023 2.56995H16.7602C17.7802 2.56995 18.6102 3.39995 18.6102 4.41995V5.92995"
5
- stroke="#404650"
6
- stroke-width="1.5"
7
- stroke-linecap="round"
8
- stroke-linejoin="round"
9
- />
10
- <path
11
- d="M10.2998 18.0999V3.31995"
12
- stroke="#404650"
13
- stroke-width="1.5"
14
- stroke-linecap="round"
15
- stroke-linejoin="round"
16
- />
17
- <path d="M6.90002 18.1H12.48" stroke="#404650" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
18
- <path d="M16.08 21.43V10.87" stroke="#408CFF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
19
- <path
20
- d="M13.9399 21.4301H18.2199"
21
- stroke="#3055D9"
22
- stroke-width="1.5"
23
- stroke-linecap="round"
24
- stroke-linejoin="round"
25
- />
26
- <path
27
- d="M13.6797 10.3401H20.6897C21.4197 10.3401 22.0097 10.9301 22.0097 11.6601V12.4601"
28
- stroke="#404650"
29
- stroke-width="1.5"
30
- stroke-linecap="round"
31
- stroke-linejoin="round"
32
- />
33
- </svg>
34
- </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="M1.99023 5.92995V4.41995C1.99023 3.39995 2.82023 2.56995 3.84023 2.56995H16.7602C17.7802 2.56995 18.6102 3.39995 18.6102 4.41995V5.92995"
5
+ stroke="#404650"
6
+ stroke-width="1.5"
7
+ stroke-linecap="round"
8
+ stroke-linejoin="round"
9
+ />
10
+ <path
11
+ d="M10.2998 18.0999V3.31995"
12
+ stroke="#404650"
13
+ stroke-width="1.5"
14
+ stroke-linecap="round"
15
+ stroke-linejoin="round"
16
+ />
17
+ <path d="M6.90002 18.1H12.48" stroke="#404650" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
18
+ <path d="M16.08 21.43V10.87" stroke="#408CFF" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
19
+ <path
20
+ d="M13.9399 21.4301H18.2199"
21
+ stroke="#3055D9"
22
+ stroke-width="1.5"
23
+ stroke-linecap="round"
24
+ stroke-linejoin="round"
25
+ />
26
+ <path
27
+ d="M13.6797 10.3401H20.6897C21.4197 10.3401 22.0097 10.9301 22.0097 11.6601V12.4601"
28
+ stroke="#404650"
29
+ stroke-width="1.5"
30
+ stroke-linecap="round"
31
+ stroke-linejoin="round"
32
+ />
33
+ </svg>
34
+ </template>
@@ -1,36 +1,36 @@
1
- <script setup lang="ts"></script>
2
-
3
- <template>
4
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
5
- <path
6
- d="M9.02 2.83986L3.63 7.03986C2.73 7.73986 2 9.22986 2 10.3599V17.7699C2 20.0899 3.89 21.9899 6.21 21.9899H17.79C20.11 21.9899 22 20.0899 22 17.7799V10.4999C22 9.28986 21.19 7.73986 20.2 7.04986L14.02 2.71986C12.62 1.73986 10.37 1.78986 9.02 2.83986Z"
7
- stroke="currentStroke"
8
- stroke-width="1.5"
9
- stroke-linecap="round"
10
- stroke-linejoin="round"
11
- />
12
- <path
13
- d="M10.5 17.9999H13.5C15.15 17.9999 16.5 16.6499 16.5 14.9999V11.9999C16.5 10.3499 15.15 8.99988 13.5 8.99988H10.5C8.85 8.99988 7.5 10.3499 7.5 11.9999V14.9999C7.5 16.6499 8.85 17.9999 10.5 17.9999Z"
14
- stroke="currentStroke"
15
- stroke-width="1.5"
16
- stroke-linecap="round"
17
- stroke-linejoin="round"
18
- />
19
- <path
20
- d="M12 8.99988V17.9999"
21
- stroke="currentStroke"
22
- stroke-width="1.5"
23
- stroke-linecap="round"
24
- stroke-linejoin="round"
25
- />
26
- <path
27
- d="M7.5 13.5002H16.5"
28
- stroke="currentStroke"
29
- stroke-width="1.5"
30
- stroke-linecap="round"
31
- stroke-linejoin="round"
32
- />
33
- </svg>
34
- </template>
35
-
36
- <style scoped lang="stylus"></style>
1
+ <script setup lang="ts"></script>
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
5
+ <path
6
+ d="M9.02 2.83986L3.63 7.03986C2.73 7.73986 2 9.22986 2 10.3599V17.7699C2 20.0899 3.89 21.9899 6.21 21.9899H17.79C20.11 21.9899 22 20.0899 22 17.7799V10.4999C22 9.28986 21.19 7.73986 20.2 7.04986L14.02 2.71986C12.62 1.73986 10.37 1.78986 9.02 2.83986Z"
7
+ stroke="currentStroke"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ />
12
+ <path
13
+ d="M10.5 17.9999H13.5C15.15 17.9999 16.5 16.6499 16.5 14.9999V11.9999C16.5 10.3499 15.15 8.99988 13.5 8.99988H10.5C8.85 8.99988 7.5 10.3499 7.5 11.9999V14.9999C7.5 16.6499 8.85 17.9999 10.5 17.9999Z"
14
+ stroke="currentStroke"
15
+ stroke-width="1.5"
16
+ stroke-linecap="round"
17
+ stroke-linejoin="round"
18
+ />
19
+ <path
20
+ d="M12 8.99988V17.9999"
21
+ stroke="currentStroke"
22
+ stroke-width="1.5"
23
+ stroke-linecap="round"
24
+ stroke-linejoin="round"
25
+ />
26
+ <path
27
+ d="M7.5 13.5002H16.5"
28
+ stroke="currentStroke"
29
+ stroke-width="1.5"
30
+ stroke-linecap="round"
31
+ stroke-linejoin="round"
32
+ />
33
+ </svg>
34
+ </template>
35
+
36
+ <style scoped lang="stylus"></style>
@@ -1,32 +1,32 @@
1
- <script setup lang="ts"></script>
2
-
3
- <template>
4
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
5
- <path
6
- d="M12 22.0003C7.17 22.0003 3.25 18.0803 3.25 13.2503C3.25 8.42031 7.17 4.50031 12 4.50031C16.83 4.50031 20.75 8.42031 20.75 13.2503"
7
- stroke="currentStroke"
8
- stroke-width="1.5"
9
- stroke-linecap="round"
10
- stroke-linejoin="round"
11
- />
12
- <path
13
- d="M12 8.00012V13.0001"
14
- stroke="currentStroke"
15
- stroke-width="1.5"
16
- stroke-linecap="round"
17
- stroke-linejoin="round"
18
- />
19
- <path
20
- d="M9 2.00018H15"
21
- stroke="currentStroke"
22
- stroke-width="1.5"
23
- stroke-miterlimit="10"
24
- stroke-linecap="round"
25
- stroke-linejoin="round"
26
- />
27
- <path d="M19 17V21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
28
- <path d="M16 17V21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
29
- </svg>
30
- </template>
31
-
32
- <style scoped lang="stylus"></style>
1
+ <script setup lang="ts"></script>
2
+
3
+ <template>
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
5
+ <path
6
+ d="M12 22.0003C7.17 22.0003 3.25 18.0803 3.25 13.2503C3.25 8.42031 7.17 4.50031 12 4.50031C16.83 4.50031 20.75 8.42031 20.75 13.2503"
7
+ stroke="currentStroke"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ />
12
+ <path
13
+ d="M12 8.00012V13.0001"
14
+ stroke="currentStroke"
15
+ stroke-width="1.5"
16
+ stroke-linecap="round"
17
+ stroke-linejoin="round"
18
+ />
19
+ <path
20
+ d="M9 2.00018H15"
21
+ stroke="currentStroke"
22
+ stroke-width="1.5"
23
+ stroke-miterlimit="10"
24
+ stroke-linecap="round"
25
+ stroke-linejoin="round"
26
+ />
27
+ <path d="M19 17V21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
28
+ <path d="M16 17V21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
29
+ </svg>
30
+ </template>
31
+
32
+ <style scoped lang="stylus"></style>
@@ -1,38 +1,38 @@
1
- <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path
4
- d="M9.62012 16L11.1201 17.5L14.3701 14.5"
5
- stroke="currentStroke"
6
- stroke-width="1.5"
7
- stroke-linecap="round"
8
- stroke-linejoin="round"
9
- />
10
- <path
11
- d="M8.80994 2L5.18994 5.63"
12
- stroke="currentStroke"
13
- stroke-width="1.5"
14
- stroke-miterlimit="10"
15
- stroke-linecap="round"
16
- stroke-linejoin="round"
17
- />
18
- <path
19
- d="M15.1899 2L18.8099 5.63"
20
- stroke="currentStroke"
21
- stroke-width="1.5"
22
- stroke-miterlimit="10"
23
- stroke-linecap="round"
24
- stroke-linejoin="round"
25
- />
26
- <path
27
- d="M2 7.8501C2 6.0001 2.99 5.8501 4.22 5.8501H19.78C21.01 5.8501 22 6.0001 22 7.8501C22 10.0001 21.01 9.8501 19.78 9.8501H4.22C2.99 9.8501 2 10.0001 2 7.8501Z"
28
- stroke="currentStroke"
29
- stroke-width="1.5"
30
- />
31
- <path
32
- d="M3.5 10L4.91 18.64C5.23 20.58 6 22 8.86 22H14.89C18 22 18.46 20.64 18.82 18.76L20.5 10"
33
- stroke="currentStroke"
34
- stroke-width="1.5"
35
- stroke-linecap="round"
36
- />
37
- </svg>
38
- </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
4
+ d="M9.62012 16L11.1201 17.5L14.3701 14.5"
5
+ stroke="currentStroke"
6
+ stroke-width="1.5"
7
+ stroke-linecap="round"
8
+ stroke-linejoin="round"
9
+ />
10
+ <path
11
+ d="M8.80994 2L5.18994 5.63"
12
+ stroke="currentStroke"
13
+ stroke-width="1.5"
14
+ stroke-miterlimit="10"
15
+ stroke-linecap="round"
16
+ stroke-linejoin="round"
17
+ />
18
+ <path
19
+ d="M15.1899 2L18.8099 5.63"
20
+ stroke="currentStroke"
21
+ stroke-width="1.5"
22
+ stroke-miterlimit="10"
23
+ stroke-linecap="round"
24
+ stroke-linejoin="round"
25
+ />
26
+ <path
27
+ d="M2 7.8501C2 6.0001 2.99 5.8501 4.22 5.8501H19.78C21.01 5.8501 22 6.0001 22 7.8501C22 10.0001 21.01 9.8501 19.78 9.8501H4.22C2.99 9.8501 2 10.0001 2 7.8501Z"
28
+ stroke="currentStroke"
29
+ stroke-width="1.5"
30
+ />
31
+ <path
32
+ d="M3.5 10L4.91 18.64C5.23 20.58 6 22 8.86 22H14.89C18 22 18.46 20.64 18.82 18.76L20.5 10"
33
+ stroke="currentStroke"
34
+ stroke-width="1.5"
35
+ stroke-linecap="round"
36
+ />
37
+ </svg>
38
+ </template>
@@ -1,18 +1,18 @@
1
- <template>
2
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
- <path
4
- d="M14.2201 9.78L12.0001 10.89M12.0001 10.89L9.78011 9.78M12.0001 10.89V13.67M20.8901 6.44L18.6701 7.55M20.8901 6.44L18.6701 5.33M20.8901 6.44V9.22M3.11011 6.44L5.33011 5.33M3.11011 6.44L5.33011 7.55M3.11011 6.44V9.22M12.0001 22L9.78011 20.89M12.0001 22L14.2201 20.89M12.0001 22V19.22M18.6701 18.67L20.8901 17.56V14.78M14.2201 3.11L12.0001 2L9.78011 3.11H14.2201ZM5.33011 18.67L3.11011 17.56V14.78L5.33011 18.67Z"
5
- stroke="currentStroke"
6
- stroke-width="1.5"
7
- stroke-linecap="round"
8
- stroke-linejoin="round"
9
- />
10
- <path
11
- d="M12.0001 22L9.78011 20.89M12.0001 22L14.2201 20.89M12.0001 22V19.22M5.33011 18.67L3.11011 17.56V14.78L5.33011 18.67Z"
12
- stroke="currentStroke"
13
- stroke-width="1.5"
14
- stroke-linecap="round"
15
- stroke-linejoin="round"
16
- />
17
- </svg>
18
- </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
4
+ d="M14.2201 9.78L12.0001 10.89M12.0001 10.89L9.78011 9.78M12.0001 10.89V13.67M20.8901 6.44L18.6701 7.55M20.8901 6.44L18.6701 5.33M20.8901 6.44V9.22M3.11011 6.44L5.33011 5.33M3.11011 6.44L5.33011 7.55M3.11011 6.44V9.22M12.0001 22L9.78011 20.89M12.0001 22L14.2201 20.89M12.0001 22V19.22M18.6701 18.67L20.8901 17.56V14.78M14.2201 3.11L12.0001 2L9.78011 3.11H14.2201ZM5.33011 18.67L3.11011 17.56V14.78L5.33011 18.67Z"
5
+ stroke="currentStroke"
6
+ stroke-width="1.5"
7
+ stroke-linecap="round"
8
+ stroke-linejoin="round"
9
+ />
10
+ <path
11
+ d="M12.0001 22L9.78011 20.89M12.0001 22L14.2201 20.89M12.0001 22V19.22M5.33011 18.67L3.11011 17.56V14.78L5.33011 18.67Z"
12
+ stroke="currentStroke"
13
+ stroke-width="1.5"
14
+ stroke-linecap="round"
15
+ stroke-linejoin="round"
16
+ />
17
+ </svg>
18
+ </template>