shared-ritm 1.2.91 → 1.2.93

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 (124) hide show
  1. package/README.md +103 -103
  2. package/dist/index.css +1 -1
  3. package/dist/shared-ritm.es.js +386 -368
  4. package/dist/shared-ritm.umd.js +153 -153
  5. package/dist/types/api/services/InstrumentsService.d.ts +1 -1
  6. package/dist/types/api/services/PhotoService.d.ts +40 -0
  7. package/dist/types/api/services/UserService.d.ts +10 -2
  8. package/dist/types/api/types/Api_Instruments.d.ts +1 -1
  9. package/dist/types/api/types/Api_User.d.ts +25 -0
  10. package/package.json +64 -64
  11. package/src/App.vue +2461 -2461
  12. package/src/api/services/AuthService.ts +64 -64
  13. package/src/api/services/CommentsService.ts +24 -24
  14. package/src/api/services/ControlsService.ts +65 -65
  15. package/src/api/services/FileService.ts +17 -17
  16. package/src/api/services/GanttService.ts +17 -17
  17. package/src/api/services/InstrumentsService.ts +22 -23
  18. package/src/api/services/MetricsService.ts +110 -110
  19. package/src/api/services/ProjectsService.ts +68 -68
  20. package/src/api/services/RepairsService.ts +119 -119
  21. package/src/api/services/SearchService.ts +16 -16
  22. package/src/api/services/TasksService.ts +145 -145
  23. package/src/api/services/UserService.ts +87 -71
  24. package/src/api/services/VideoService.ts +17 -17
  25. package/src/api/settings/ApiService.ts +123 -123
  26. package/src/api/types/Api_Comment.ts +40 -40
  27. package/src/api/types/Api_Controls.ts +72 -72
  28. package/src/api/types/Api_Files.ts +7 -7
  29. package/src/api/types/Api_Instruments.ts +98 -98
  30. package/src/api/types/Api_Projects.ts +55 -55
  31. package/src/api/types/Api_Repairs.ts +115 -115
  32. package/src/api/types/Api_Search.ts +48 -48
  33. package/src/api/types/Api_Service.ts +9 -9
  34. package/src/api/types/Api_Tasks.ts +315 -315
  35. package/src/api/types/Api_User.ts +117 -87
  36. package/src/common/app-button/AppButton.vue +173 -173
  37. package/src/common/app-checkbox/AppCheckbox.vue +26 -26
  38. package/src/common/app-date-picker/AppDatePicker.vue +81 -81
  39. package/src/common/app-datepicker/AppDatepicker.vue +165 -165
  40. package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
  41. package/src/common/app-dropdown/AppDropdown.vue +31 -31
  42. package/src/common/app-icon/AppIcon.vue +108 -108
  43. package/src/common/app-input/AppInput.vue +148 -148
  44. package/src/common/app-input-new/AppInputNew.vue +152 -152
  45. package/src/common/app-input-search/AppInputSearch.vue +174 -174
  46. package/src/common/app-layout/AppLayout.vue +84 -84
  47. package/src/common/app-layout/components/AppLayoutHeader.vue +246 -246
  48. package/src/common/app-layout/components/AppLayoutPage.vue +16 -16
  49. package/src/common/app-loader/index.vue +43 -43
  50. package/src/common/app-page-layout/AppPageLayout.vue +122 -122
  51. package/src/common/app-select/AppSelect.vue +157 -157
  52. package/src/common/app-sheet/AppSheet.vue +120 -120
  53. package/src/common/app-sheet-new/AppSheetNew.vue +246 -246
  54. package/src/common/app-sidebar/AppSidebar.vue +168 -168
  55. package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
  56. package/src/common/app-sidebar/components/SidebarMenuItem.vue +148 -148
  57. package/src/common/app-table/AppTable.vue +305 -305
  58. package/src/common/app-table/AppTableLayout.vue +136 -126
  59. package/src/common/app-table/components/ModalSelect.vue +270 -270
  60. package/src/common/app-table/components/TableModal.vue +331 -331
  61. package/src/common/app-table/components/TablePagination.vue +152 -152
  62. package/src/common/app-table/controllers/useBaseTable.ts +45 -45
  63. package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
  64. package/src/common/app-table/controllers/useTableModel.ts +93 -93
  65. package/src/common/app-toggle/AppToggle.vue +24 -24
  66. package/src/common/app-wrapper/AppWrapper.vue +28 -28
  67. package/src/global.d.ts +1 -1
  68. package/src/icons/components/arrow-down-icon.vue +25 -25
  69. package/src/icons/components/arrow-frame-icon.vue +19 -19
  70. package/src/icons/components/arrow-square.vue +22 -22
  71. package/src/icons/components/table-filter-icon.vue +30 -30
  72. package/src/icons/dialogs/RemoveIcon.vue +12 -12
  73. package/src/icons/dialogs/SafetyIcon.vue +12 -12
  74. package/src/icons/header/NotificationIcon.vue +18 -18
  75. package/src/icons/header/PersonIcon.vue +11 -11
  76. package/src/icons/header/SettingIcon.vue +14 -14
  77. package/src/icons/header/flashIcon.vue +24 -24
  78. package/src/icons/header/searchStatusIcon.vue +24 -24
  79. package/src/icons/header/smallCapsIcon.vue +34 -34
  80. package/src/icons/sidebar/assign-module-icon.vue +36 -36
  81. package/src/icons/sidebar/instrument-history-icon.vue +32 -32
  82. package/src/icons/sidebar/instrument-order-icon.vue +38 -38
  83. package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
  84. package/src/icons/sidebar/instruments-icon.vue +45 -45
  85. package/src/icons/sidebar/logo-icon.vue +15 -15
  86. package/src/icons/sidebar/logout-icon.vue +13 -13
  87. package/src/icons/sidebar/modules-icon.vue +16 -16
  88. package/src/icons/sidebar/notifications-icon.vue +24 -24
  89. package/src/icons/sidebar/order-icon.vue +44 -44
  90. package/src/icons/sidebar/pass-icon.vue +38 -38
  91. package/src/icons/sidebar/positions-icon.vue +42 -42
  92. package/src/icons/sidebar/preorder-icon.vue +19 -19
  93. package/src/icons/sidebar/projects-icon.vue +31 -31
  94. package/src/icons/sidebar/repair-object-icon.vue +18 -18
  95. package/src/icons/sidebar/repairs-icon.vue +20 -20
  96. package/src/icons/sidebar/roles-icon.vue +26 -26
  97. package/src/icons/sidebar/status-history-icon.vue +24 -24
  98. package/src/icons/sidebar/tasks-icon.vue +28 -28
  99. package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
  100. package/src/icons/sidebar/tasks_today-icon.vue +27 -27
  101. package/src/icons/sidebar/teams-icon.vue +32 -32
  102. package/src/icons/sidebar/user-icon.vue +18 -18
  103. package/src/icons/sidebar/users-icon.vue +46 -46
  104. package/src/icons/sidebar/videosources-icon.vue +19 -19
  105. package/src/icons/sidebar/videowall-icon.vue +13 -13
  106. package/src/icons/sidebar/videozones-icon.vue +21 -21
  107. package/src/icons/sidebar/warehouses-icon.vue +43 -43
  108. package/src/icons/sidebar/workshop-icon.vue +100 -100
  109. package/src/icons/sidebar/workzones-icon.vue +22 -22
  110. package/src/icons/task/attention-icon.vue +13 -13
  111. package/src/icons/task/clock-icon.vue +10 -10
  112. package/src/icons/task/delete-icon.vue +10 -10
  113. package/src/icons/task/fire-icon.vue +16 -16
  114. package/src/index.ts +112 -112
  115. package/src/main.ts +28 -28
  116. package/src/quasar-user-options.ts +17 -17
  117. package/src/router/index.ts +10 -10
  118. package/src/shared/styles/general.css +124 -124
  119. package/src/shims-vue.d.ts +5 -5
  120. package/src/styles/variables.sass +12 -12
  121. package/src/utils/confirm.ts +12 -12
  122. package/src/utils/faceApiHelper.ts +137 -137
  123. package/src/utils/helpers.ts +59 -59
  124. package/src/utils/notification.ts +9 -9
@@ -1,44 +1,44 @@
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
- class="icon-section"
5
- d="M8.5 14.25C8.5 16.17 10.08 17.75 12 17.75C13.92 17.75 15.5 16.17 15.5 14.25"
6
- stroke="currentStroke"
7
- stroke-width="1.5"
8
- stroke-miterlimit="10"
9
- stroke-linecap="round"
10
- stroke-linejoin="round"
11
- />
12
- <path
13
- class="icon-section"
14
- d="M8.80994 2L5.18994 5.63"
15
- stroke="currentStroke"
16
- stroke-width="1.5"
17
- stroke-miterlimit="10"
18
- stroke-linecap="round"
19
- stroke-linejoin="round"
20
- />
21
- <path
22
- class="icon-section"
23
- d="M15.1899 2L18.8099 5.63"
24
- stroke="currentStroke"
25
- stroke-width="1.5"
26
- stroke-miterlimit="10"
27
- stroke-linecap="round"
28
- stroke-linejoin="round"
29
- />
30
- <path
31
- class="icon-section"
32
- 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"
33
- stroke="currentStroke"
34
- stroke-width="1.5"
35
- />
36
- <path
37
- class="icon-section"
38
- 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"
39
- stroke="currentStroke"
40
- stroke-width="1.5"
41
- stroke-linecap="round"
42
- />
43
- </svg>
44
- </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
+ class="icon-section"
5
+ d="M8.5 14.25C8.5 16.17 10.08 17.75 12 17.75C13.92 17.75 15.5 16.17 15.5 14.25"
6
+ stroke="currentStroke"
7
+ stroke-width="1.5"
8
+ stroke-miterlimit="10"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ />
12
+ <path
13
+ class="icon-section"
14
+ d="M8.80994 2L5.18994 5.63"
15
+ stroke="currentStroke"
16
+ stroke-width="1.5"
17
+ stroke-miterlimit="10"
18
+ stroke-linecap="round"
19
+ stroke-linejoin="round"
20
+ />
21
+ <path
22
+ class="icon-section"
23
+ d="M15.1899 2L18.8099 5.63"
24
+ stroke="currentStroke"
25
+ stroke-width="1.5"
26
+ stroke-miterlimit="10"
27
+ stroke-linecap="round"
28
+ stroke-linejoin="round"
29
+ />
30
+ <path
31
+ class="icon-section"
32
+ 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"
33
+ stroke="currentStroke"
34
+ stroke-width="1.5"
35
+ />
36
+ <path
37
+ class="icon-section"
38
+ 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"
39
+ stroke="currentStroke"
40
+ stroke-width="1.5"
41
+ stroke-linecap="round"
42
+ />
43
+ </svg>
44
+ </template>
@@ -1,38 +1,38 @@
1
- <template>
2
- <svg
3
- xmlns="http://www.w3.org/2000/svg"
4
- width="currentWidth"
5
- height="currentHeight"
6
- viewBox="0 0 24 24"
7
- fill="currentFill"
8
- >
9
- <path
10
- d="M4.91003 11.84C9.21003 8.51998 14.8 8.51998 19.1 11.84"
11
- stroke="currentStroke"
12
- stroke-width="1.5"
13
- stroke-linecap="round"
14
- stroke-linejoin="round"
15
- />
16
- <path
17
- d="M2 8.35967C8.06 3.67967 15.94 3.67967 22 8.35967"
18
- stroke="currentStroke"
19
- stroke-width="1.5"
20
- stroke-linecap="round"
21
- stroke-linejoin="round"
22
- />
23
- <path
24
- d="M6.79004 15.49C9.94004 13.05 14.05 13.05 17.2 15.49"
25
- stroke="currentStroke"
26
- stroke-width="1.5"
27
- stroke-linecap="round"
28
- stroke-linejoin="round"
29
- />
30
- <path
31
- d="M9.40002 19.1499C10.98 17.9299 13.03 17.9299 14.61 19.1499"
32
- stroke="currentStroke"
33
- stroke-width="1.5"
34
- stroke-linecap="round"
35
- stroke-linejoin="round"
36
- />
37
- </svg>
38
- </template>
1
+ <template>
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ width="currentWidth"
5
+ height="currentHeight"
6
+ viewBox="0 0 24 24"
7
+ fill="currentFill"
8
+ >
9
+ <path
10
+ d="M4.91003 11.84C9.21003 8.51998 14.8 8.51998 19.1 11.84"
11
+ stroke="currentStroke"
12
+ stroke-width="1.5"
13
+ stroke-linecap="round"
14
+ stroke-linejoin="round"
15
+ />
16
+ <path
17
+ d="M2 8.35967C8.06 3.67967 15.94 3.67967 22 8.35967"
18
+ stroke="currentStroke"
19
+ stroke-width="1.5"
20
+ stroke-linecap="round"
21
+ stroke-linejoin="round"
22
+ />
23
+ <path
24
+ d="M6.79004 15.49C9.94004 13.05 14.05 13.05 17.2 15.49"
25
+ stroke="currentStroke"
26
+ stroke-width="1.5"
27
+ stroke-linecap="round"
28
+ stroke-linejoin="round"
29
+ />
30
+ <path
31
+ d="M9.40002 19.1499C10.98 17.9299 13.03 17.9299 14.61 19.1499"
32
+ stroke="currentStroke"
33
+ stroke-width="1.5"
34
+ stroke-linecap="round"
35
+ stroke-linejoin="round"
36
+ />
37
+ </svg>
38
+ </template>
@@ -1,42 +1,42 @@
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="M12 12C14.7614 12 17 9.76142 17 7C17 4.23858 14.7614 2 12 2C9.23858 2 7 4.23858 7 7C7 9.76142 9.23858 12 12 12Z"
5
- stroke="currentStroke"
6
- stroke-width="1.5"
7
- stroke-linecap="round"
8
- stroke-linejoin="round"
9
- />
10
- <path
11
- d="M3.41016 22C3.41016 18.13 7.26015 15 12.0002 15C12.9602 15 13.8902 15.13 14.7602 15.37"
12
- stroke="currentStroke"
13
- stroke-width="1.5"
14
- stroke-linecap="round"
15
- stroke-linejoin="round"
16
- />
17
- <path
18
- d="M22 18C22 18.32 21.96 18.63 21.88 18.93C21.79 19.33 21.63 19.72 21.42 20.06C20.73 21.22 19.46 22 18 22C16.97 22 16.04 21.61 15.34 20.97C15.04 20.71 14.78 20.4 14.58 20.06C14.21 19.46 14 18.75 14 18C14 16.92 14.43 15.93 15.13 15.21C15.86 14.46 16.88 14 18 14C19.18 14 20.25 14.51 20.97 15.33C21.61 16.04 22 16.98 22 18Z"
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="M19.4897 17.98H16.5098"
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="M18 16.52V19.51"
35
- stroke="currentStroke"
36
- stroke-width="1.5"
37
- stroke-miterlimit="10"
38
- stroke-linecap="round"
39
- stroke-linejoin="round"
40
- />
41
- </svg>
42
- </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="M12 12C14.7614 12 17 9.76142 17 7C17 4.23858 14.7614 2 12 2C9.23858 2 7 4.23858 7 7C7 9.76142 9.23858 12 12 12Z"
5
+ stroke="currentStroke"
6
+ stroke-width="1.5"
7
+ stroke-linecap="round"
8
+ stroke-linejoin="round"
9
+ />
10
+ <path
11
+ d="M3.41016 22C3.41016 18.13 7.26015 15 12.0002 15C12.9602 15 13.8902 15.13 14.7602 15.37"
12
+ stroke="currentStroke"
13
+ stroke-width="1.5"
14
+ stroke-linecap="round"
15
+ stroke-linejoin="round"
16
+ />
17
+ <path
18
+ d="M22 18C22 18.32 21.96 18.63 21.88 18.93C21.79 19.33 21.63 19.72 21.42 20.06C20.73 21.22 19.46 22 18 22C16.97 22 16.04 21.61 15.34 20.97C15.04 20.71 14.78 20.4 14.58 20.06C14.21 19.46 14 18.75 14 18C14 16.92 14.43 15.93 15.13 15.21C15.86 14.46 16.88 14 18 14C19.18 14 20.25 14.51 20.97 15.33C21.61 16.04 22 16.98 22 18Z"
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="M19.4897 17.98H16.5098"
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="M18 16.52V19.51"
35
+ stroke="currentStroke"
36
+ stroke-width="1.5"
37
+ stroke-miterlimit="10"
38
+ stroke-linecap="round"
39
+ stroke-linejoin="round"
40
+ />
41
+ </svg>
42
+ </template>
@@ -1,19 +1,19 @@
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="M20.41 17.03H8" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
4
- <path
5
- d="M8.40002 6.5H15.6C19 6.5 19.34 8.09 19.57 10.03L20.47 17.53C20.76 19.99 20 22 16.5 22H7.51003C4.00003 22 3.24002 19.99 3.54002 17.53L4.44003 10.03C4.66003 8.09 5.00002 6.5 8.40002 6.5Z"
6
- stroke="currentStroke"
7
- stroke-width="1.5"
8
- stroke-linecap="round"
9
- stroke-linejoin="round"
10
- />
11
- <path
12
- d="M8 8V4.5C8 3 9 2 10.5 2H13.5C15 2 16 3 16 4.5V8"
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 width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M20.41 17.03H8" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
4
+ <path
5
+ d="M8.40002 6.5H15.6C19 6.5 19.34 8.09 19.57 10.03L20.47 17.53C20.76 19.99 20 22 16.5 22H7.51003C4.00003 22 3.24002 19.99 3.54002 17.53L4.44003 10.03C4.66003 8.09 5.00002 6.5 8.40002 6.5Z"
6
+ stroke="currentStroke"
7
+ stroke-width="1.5"
8
+ stroke-linecap="round"
9
+ stroke-linejoin="round"
10
+ />
11
+ <path
12
+ d="M8 8V4.5C8 3 9 2 10.5 2H13.5C15 2 16 3 16 4.5V8"
13
+ stroke="currentStroke"
14
+ stroke-width="1.5"
15
+ stroke-linecap="round"
16
+ stroke-linejoin="round"
17
+ />
18
+ </svg>
19
+ </template>
@@ -1,31 +1,31 @@
1
- <template>
2
- <svg
3
- xmlns="http://www.w3.org/2000/svg"
4
- width="currentWidth"
5
- height="currentHeight"
6
- viewBox="0 0 24 24"
7
- fill="currentFill"
8
- >
9
- <path
10
- d="M13.01 2.91995L18.91 5.53995C20.61 6.28995 20.61 7.52995 18.91 8.27995L13.01 10.8999C12.34 11.1999 11.24 11.1999 10.57 10.8999L4.67002 8.27995C2.97002 7.52995 2.97002 6.28995 4.67002 5.53995L10.57 2.91995C11.24 2.61995 12.34 2.61995 13.01 2.91995Z"
11
- stroke="currentStroke"
12
- stroke-width="1.5"
13
- stroke-linecap="round"
14
- stroke-linejoin="round"
15
- />
16
- <path
17
- d="M3 11C3 11.84 3.63 12.81 4.4 13.15L11.19 16.17C11.71 16.4 12.3 16.4 12.81 16.17L19.6 13.15C20.37 12.81 21 11.84 21 11"
18
- stroke="currentStroke"
19
- stroke-width="1.5"
20
- stroke-linecap="round"
21
- stroke-linejoin="round"
22
- />
23
- <path
24
- d="M3 16C3 16.93 3.55 17.77 4.4 18.15L11.19 21.17C11.71 21.4 12.3 21.4 12.81 21.17L19.6 18.15C20.45 17.77 21 16.93 21 16"
25
- stroke="currentStroke"
26
- stroke-width="1.5"
27
- stroke-linecap="round"
28
- stroke-linejoin="round"
29
- />
30
- </svg>
31
- </template>
1
+ <template>
2
+ <svg
3
+ xmlns="http://www.w3.org/2000/svg"
4
+ width="currentWidth"
5
+ height="currentHeight"
6
+ viewBox="0 0 24 24"
7
+ fill="currentFill"
8
+ >
9
+ <path
10
+ d="M13.01 2.91995L18.91 5.53995C20.61 6.28995 20.61 7.52995 18.91 8.27995L13.01 10.8999C12.34 11.1999 11.24 11.1999 10.57 10.8999L4.67002 8.27995C2.97002 7.52995 2.97002 6.28995 4.67002 5.53995L10.57 2.91995C11.24 2.61995 12.34 2.61995 13.01 2.91995Z"
11
+ stroke="currentStroke"
12
+ stroke-width="1.5"
13
+ stroke-linecap="round"
14
+ stroke-linejoin="round"
15
+ />
16
+ <path
17
+ d="M3 11C3 11.84 3.63 12.81 4.4 13.15L11.19 16.17C11.71 16.4 12.3 16.4 12.81 16.17L19.6 13.15C20.37 12.81 21 11.84 21 11"
18
+ stroke="currentStroke"
19
+ stroke-width="1.5"
20
+ stroke-linecap="round"
21
+ stroke-linejoin="round"
22
+ />
23
+ <path
24
+ d="M3 16C3 16.93 3.55 17.77 4.4 18.15L11.19 21.17C11.71 21.4 12.3 21.4 12.81 21.17L19.6 18.15C20.45 17.77 21 16.93 21 16"
25
+ stroke="currentStroke"
26
+ stroke-width="1.5"
27
+ stroke-linecap="round"
28
+ stroke-linejoin="round"
29
+ />
30
+ </svg>
31
+ </template>
@@ -1,18 +1,18 @@
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="M10.07 2.82033L3.14002 8.37032C2.36002 8.99032 1.86002 10.3004 2.03002 11.2804L3.36002 19.2403C3.60002 20.6603 4.96002 21.8103 6.40002 21.8103H17.6C19.03 21.8103 20.4 20.6503 20.64 19.2403L21.97 11.2804C22.13 10.3004 21.63 8.99032 20.86 8.37032L13.93 2.83034C12.86 1.97034 11.13 1.97033 10.07 2.82033Z"
5
- stroke="currentStroke"
6
- stroke-width="1.5"
7
- stroke-linecap="round"
8
- stroke-linejoin="round"
9
- />
10
- <path
11
- d="M12 15.5002C13.3807 15.5002 14.5 14.381 14.5 13.0002C14.5 11.6195 13.3807 10.5002 12 10.5002C10.6193 10.5002 9.5 11.6195 9.5 13.0002C9.5 14.381 10.6193 15.5002 12 15.5002Z"
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 xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
3
+ <path
4
+ d="M10.07 2.82033L3.14002 8.37032C2.36002 8.99032 1.86002 10.3004 2.03002 11.2804L3.36002 19.2403C3.60002 20.6603 4.96002 21.8103 6.40002 21.8103H17.6C19.03 21.8103 20.4 20.6503 20.64 19.2403L21.97 11.2804C22.13 10.3004 21.63 8.99032 20.86 8.37032L13.93 2.83034C12.86 1.97034 11.13 1.97033 10.07 2.82033Z"
5
+ stroke="currentStroke"
6
+ stroke-width="1.5"
7
+ stroke-linecap="round"
8
+ stroke-linejoin="round"
9
+ />
10
+ <path
11
+ d="M12 15.5002C13.3807 15.5002 14.5 14.381 14.5 13.0002C14.5 11.6195 13.3807 10.5002 12 10.5002C10.6193 10.5002 9.5 11.6195 9.5 13.0002C9.5 14.381 10.6193 15.5002 12 15.5002Z"
12
+ stroke="currentStroke"
13
+ stroke-width="1.5"
14
+ stroke-linecap="round"
15
+ stroke-linejoin="round"
16
+ />
17
+ </svg>
18
+ </template>
@@ -1,20 +1,20 @@
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 14.9999C13.6569 14.9999 15 13.6567 15 11.9999C15 10.343 13.6569 8.99988 12 8.99988C10.3431 8.99988 9 10.343 9 11.9999C9 13.6567 10.3431 14.9999 12 14.9999Z"
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="M2 12.8801V11.1201C2 10.0801 2.85 9.22006 3.9 9.22006C5.71 9.22006 6.45 7.94006 5.54 6.37006C5.02 5.47006 5.33 4.30006 6.24 3.78006L7.97 2.79006C8.76 2.32006 9.78 2.60006 10.25 3.39006L10.36 3.58006C11.26 5.15006 12.74 5.15006 13.65 3.58006L13.76 3.39006C14.23 2.60006 15.25 2.32006 16.04 2.79006L17.77 3.78006C18.68 4.30006 18.99 5.47006 18.47 6.37006C17.56 7.94006 18.3 9.22006 20.11 9.22006C21.15 9.22006 22.01 10.0701 22.01 11.1201V12.8801C22.01 13.9201 21.16 14.7801 20.11 14.7801C18.3 14.7801 17.56 16.0601 18.47 17.6301C18.99 18.5401 18.68 19.7001 17.77 20.2201L16.04 21.2101C15.25 21.6801 14.23 21.4001 13.76 20.6101L13.65 20.4201C12.75 18.8501 11.27 18.8501 10.36 20.4201L10.25 20.6101C9.78 21.4001 8.76 21.6801 7.97 21.2101L6.24 20.2201C5.33 19.7001 5.02 18.5301 5.54 17.6301C6.45 16.0601 5.71 14.7801 3.9 14.7801C2.85 14.7801 2 13.9201 2 12.8801Z"
13
- stroke="currentStroke"
14
- stroke-width="1.5"
15
- stroke-miterlimit="10"
16
- stroke-linecap="round"
17
- stroke-linejoin="round"
18
- />
19
- </svg>
20
- </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 14.9999C13.6569 14.9999 15 13.6567 15 11.9999C15 10.343 13.6569 8.99988 12 8.99988C10.3431 8.99988 9 10.343 9 11.9999C9 13.6567 10.3431 14.9999 12 14.9999Z"
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="M2 12.8801V11.1201C2 10.0801 2.85 9.22006 3.9 9.22006C5.71 9.22006 6.45 7.94006 5.54 6.37006C5.02 5.47006 5.33 4.30006 6.24 3.78006L7.97 2.79006C8.76 2.32006 9.78 2.60006 10.25 3.39006L10.36 3.58006C11.26 5.15006 12.74 5.15006 13.65 3.58006L13.76 3.39006C14.23 2.60006 15.25 2.32006 16.04 2.79006L17.77 3.78006C18.68 4.30006 18.99 5.47006 18.47 6.37006C17.56 7.94006 18.3 9.22006 20.11 9.22006C21.15 9.22006 22.01 10.0701 22.01 11.1201V12.8801C22.01 13.9201 21.16 14.7801 20.11 14.7801C18.3 14.7801 17.56 16.0601 18.47 17.6301C18.99 18.5401 18.68 19.7001 17.77 20.2201L16.04 21.2101C15.25 21.6801 14.23 21.4001 13.76 20.6101L13.65 20.4201C12.75 18.8501 11.27 18.8501 10.36 20.4201L10.25 20.6101C9.78 21.4001 8.76 21.6801 7.97 21.2101L6.24 20.2201C5.33 19.7001 5.02 18.5301 5.54 17.6301C6.45 16.0601 5.71 14.7801 3.9 14.7801C2.85 14.7801 2 13.9201 2 12.8801Z"
13
+ stroke="currentStroke"
14
+ stroke-width="1.5"
15
+ stroke-miterlimit="10"
16
+ stroke-linecap="round"
17
+ stroke-linejoin="round"
18
+ />
19
+ </svg>
20
+ </template>
@@ -1,26 +1,26 @@
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="M18 18.86H17.24C16.44 18.86 15.68 19.17 15.12 19.73L13.41 21.42C12.63 22.19 11.36 22.19 10.58 21.42L8.87 19.73C8.31 19.17 7.54 18.86 6.75 18.86H6C4.34 18.86 3 17.53 3 15.89V4.97998C3 3.33998 4.34 2.01001 6 2.01001H18C19.66 2.01001 21 3.33998 21 4.97998V15.89C21 17.52 19.66 18.86 18 18.86Z"
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="M11.9999 10.0001C13.2868 10.0001 14.33 8.95687 14.33 7.67004C14.33 6.38322 13.2868 5.34009 11.9999 5.34009C10.7131 5.34009 9.66992 6.38322 9.66992 7.67004C9.66992 8.95687 10.7131 10.0001 11.9999 10.0001Z"
13
- stroke="currentStroke"
14
- stroke-width="1.5"
15
- stroke-linecap="round"
16
- stroke-linejoin="round"
17
- />
18
- <path
19
- d="M16 15.6601C16 13.8601 14.21 12.4001 12 12.4001C9.79 12.4001 8 13.8601 8 15.6601"
20
- stroke="currentStroke"
21
- stroke-width="1.5"
22
- stroke-linecap="round"
23
- stroke-linejoin="round"
24
- />
25
- </svg>
26
- </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="M18 18.86H17.24C16.44 18.86 15.68 19.17 15.12 19.73L13.41 21.42C12.63 22.19 11.36 22.19 10.58 21.42L8.87 19.73C8.31 19.17 7.54 18.86 6.75 18.86H6C4.34 18.86 3 17.53 3 15.89V4.97998C3 3.33998 4.34 2.01001 6 2.01001H18C19.66 2.01001 21 3.33998 21 4.97998V15.89C21 17.52 19.66 18.86 18 18.86Z"
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="M11.9999 10.0001C13.2868 10.0001 14.33 8.95687 14.33 7.67004C14.33 6.38322 13.2868 5.34009 11.9999 5.34009C10.7131 5.34009 9.66992 6.38322 9.66992 7.67004C9.66992 8.95687 10.7131 10.0001 11.9999 10.0001Z"
13
+ stroke="currentStroke"
14
+ stroke-width="1.5"
15
+ stroke-linecap="round"
16
+ stroke-linejoin="round"
17
+ />
18
+ <path
19
+ d="M16 15.6601C16 13.8601 14.21 12.4001 12 12.4001C9.79 12.4001 8 13.8601 8 15.6601"
20
+ stroke="currentStroke"
21
+ stroke-width="1.5"
22
+ stroke-linecap="round"
23
+ stroke-linejoin="round"
24
+ />
25
+ </svg>
26
+ </template>
@@ -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="M19 8.00018C20.6569 8.00018 22 6.65704 22 5.00018C22 3.34333 20.6569 2.00018 19 2.00018C17.3431 2.00018 16 3.34333 16 5.00018C16 6.65704 17.3431 8.00018 19 8.00018Z"
7
- stroke="currentStroke"
8
- stroke-width="1.5"
9
- stroke-linecap="round"
10
- stroke-linejoin="round"
11
- />
12
- <path d="M7 13.0003H12" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
13
- <path d="M7 17H16" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
14
- <path
15
- d="M14 2.00018H9C4 2.00018 2 4.00018 2 9.00018V15.0002C2 20.0002 4 22.0002 9 22.0002H15C20 22.0002 22 20.0002 22 15.0002V10.0002"
16
- stroke="currentStroke"
17
- stroke-width="1.5"
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="M19 8.00018C20.6569 8.00018 22 6.65704 22 5.00018C22 3.34333 20.6569 2.00018 19 2.00018C17.3431 2.00018 16 3.34333 16 5.00018C16 6.65704 17.3431 8.00018 19 8.00018Z"
7
+ stroke="currentStroke"
8
+ stroke-width="1.5"
9
+ stroke-linecap="round"
10
+ stroke-linejoin="round"
11
+ />
12
+ <path d="M7 13.0003H12" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
13
+ <path d="M7 17H16" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
14
+ <path
15
+ d="M14 2.00018H9C4 2.00018 2 4.00018 2 9.00018V15.0002C2 20.0002 4 22.0002 9 22.0002H15C20 22.0002 22 20.0002 22 15.0002V10.0002"
16
+ stroke="currentStroke"
17
+ stroke-width="1.5"
18
+ stroke-linecap="round"
19
+ stroke-linejoin="round"
20
+ />
21
+ </svg>
22
+ </template>
23
+
24
+ <style scoped lang="stylus"></style>
@@ -1,28 +1,28 @@
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="M11 19.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
4
- <path d="M11 12.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
5
- <path d="M11 5.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
6
- <path
7
- d="M3 5.5L4 6.5L7 3.5"
8
- stroke="currentStroke"
9
- stroke-width="1.5"
10
- stroke-linecap="round"
11
- stroke-linejoin="round"
12
- />
13
- <path
14
- d="M3 12.5L4 13.5L7 10.5"
15
- stroke="currentStroke"
16
- stroke-width="1.5"
17
- stroke-linecap="round"
18
- stroke-linejoin="round"
19
- />
20
- <path
21
- d="M3 19.5L4 20.5L7 17.5"
22
- stroke="currentStroke"
23
- stroke-width="1.5"
24
- stroke-linecap="round"
25
- stroke-linejoin="round"
26
- />
27
- </svg>
28
- </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="M11 19.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
4
+ <path d="M11 12.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
5
+ <path d="M11 5.5H21" stroke="currentStroke" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
6
+ <path
7
+ d="M3 5.5L4 6.5L7 3.5"
8
+ stroke="currentStroke"
9
+ stroke-width="1.5"
10
+ stroke-linecap="round"
11
+ stroke-linejoin="round"
12
+ />
13
+ <path
14
+ d="M3 12.5L4 13.5L7 10.5"
15
+ stroke="currentStroke"
16
+ stroke-width="1.5"
17
+ stroke-linecap="round"
18
+ stroke-linejoin="round"
19
+ />
20
+ <path
21
+ d="M3 19.5L4 20.5L7 17.5"
22
+ stroke="currentStroke"
23
+ stroke-width="1.5"
24
+ stroke-linecap="round"
25
+ stroke-linejoin="round"
26
+ />
27
+ </svg>
28
+ </template>