shared-ritm 1.1.86 → 1.1.88

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 (66) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +18 -13
  3. package/dist/shared-ritm.umd.js +3 -3
  4. package/dist/types/api/services/ProjectsService.d.ts +1 -0
  5. package/package.json +1 -1
  6. package/src/App.vue +6 -0
  7. package/src/api/services/AuthService.ts +41 -41
  8. package/src/api/services/FileService.ts +15 -15
  9. package/src/api/services/ProjectsService.ts +65 -61
  10. package/src/api/settings/ApiService.ts +126 -126
  11. package/src/api/types/Api_Repairs.ts +93 -93
  12. package/src/common/app-button/AppButton.vue +173 -173
  13. package/src/common/app-date-picker/AppDatePicker.vue +81 -79
  14. package/src/common/app-icon/AppIcon.vue +104 -104
  15. package/src/common/app-input/AppInput.vue +147 -147
  16. package/src/common/app-layout/AppLayout.vue +63 -63
  17. package/src/common/app-layout/components/AppLayoutHeader.vue +123 -123
  18. package/src/common/app-loader/index.vue +43 -43
  19. package/src/common/app-page-layout/AppPageLayout.vue +122 -122
  20. package/src/common/app-sheet/AppSheet.vue +120 -120
  21. package/src/common/app-sidebar/AppSidebar.vue +168 -168
  22. package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
  23. package/src/common/app-sidebar/components/SidebarMenuItem.vue +146 -146
  24. package/src/common/app-toggle/AppToggle.vue +23 -23
  25. package/src/global.d.ts +1 -1
  26. package/src/icons/components/arrow-down-icon.vue +25 -25
  27. package/src/icons/components/arrow-frame-icon.vue +19 -19
  28. package/src/icons/components/arrow-square.vue +22 -22
  29. package/src/icons/header/flashIcon.vue +24 -24
  30. package/src/icons/header/notificationIcon.vue +18 -18
  31. package/src/icons/header/searchStatusIcon.vue +24 -24
  32. package/src/icons/header/smallCapsIcon.vue +34 -34
  33. package/src/icons/sidebar/assign-module-icon.vue +36 -36
  34. package/src/icons/sidebar/instrument-history-icon.vue +32 -32
  35. package/src/icons/sidebar/instrument-order-icon.vue +38 -38
  36. package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
  37. package/src/icons/sidebar/instruments-icon.vue +45 -45
  38. package/src/icons/sidebar/logo-icon.vue +15 -15
  39. package/src/icons/sidebar/logout-icon.vue +13 -13
  40. package/src/icons/sidebar/modules-icon.vue +16 -16
  41. package/src/icons/sidebar/notifications-icon.vue +24 -24
  42. package/src/icons/sidebar/order-icon.vue +44 -44
  43. package/src/icons/sidebar/pass-icon.vue +38 -38
  44. package/src/icons/sidebar/positions-icon.vue +42 -42
  45. package/src/icons/sidebar/preorder-icon.vue +19 -19
  46. package/src/icons/sidebar/projects-icon.vue +31 -31
  47. package/src/icons/sidebar/repair-object-icon.vue +18 -18
  48. package/src/icons/sidebar/repairs-icon.vue +20 -20
  49. package/src/icons/sidebar/roles-icon.vue +26 -26
  50. package/src/icons/sidebar/status-history-icon.vue +24 -24
  51. package/src/icons/sidebar/tasks-icon.vue +28 -28
  52. package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
  53. package/src/icons/sidebar/tasks_today-icon.vue +27 -27
  54. package/src/icons/sidebar/teams-icon.vue +32 -32
  55. package/src/icons/sidebar/user-icon.vue +18 -18
  56. package/src/icons/sidebar/users-icon.vue +46 -46
  57. package/src/icons/sidebar/videosources-icon.vue +19 -19
  58. package/src/icons/sidebar/videowall-icon.vue +13 -13
  59. package/src/icons/sidebar/videozones-icon.vue +21 -21
  60. package/src/icons/sidebar/warehouses-icon.vue +43 -43
  61. package/src/icons/sidebar/workshop-icon.vue +100 -100
  62. package/src/icons/sidebar/workzones-icon.vue +22 -22
  63. package/src/main.ts +18 -18
  64. package/src/quasar-user-options.ts +17 -17
  65. package/src/router/index.ts +10 -10
  66. package/src/shims-vue.d.ts +5 -5
@@ -1,146 +1,146 @@
1
- <template>
2
- <q-expansion-item
3
- v-if="item.items"
4
- :model-value="isRouteActive(item) && expand"
5
- header-class="text-purple"
6
- :class="[$style['menu-item'], { 'expansion-item-active': isRouteActive(item) && minify }]"
7
- @update:model-value="expand = $event"
8
- >
9
- <template #header>
10
- <q-tooltip
11
- v-if="minify"
12
- :delay="100"
13
- transition-show="jump-right"
14
- transition-hide="jump-left"
15
- anchor="center right"
16
- self="center left"
17
- >
18
- {{ item.label }}
19
- </q-tooltip>
20
-
21
- <q-item-section v-if="item.icon" avatar>
22
- <app-icon :name="item.icon" color="white" size="24px" />
23
- </q-item-section>
24
-
25
- <q-item-section :class="$style['menu-item__label']">{{ item.label }}</q-item-section>
26
- </template>
27
-
28
- <sidebar-menu-item
29
- v-for="(subItem, index) in item.items"
30
- :key="index"
31
- :item="subItem"
32
- :main="main"
33
- :is-route-active="isRouteActive"
34
- />
35
- </q-expansion-item>
36
- <q-item
37
- v-else-if="item.name !== 'sign-out'"
38
- v-ripple
39
- :class="$style['menu-item']"
40
- :active="isRouteActive(item)"
41
- active-class="menu-active"
42
- clickable
43
- :to="main ? item.to : ''"
44
- @click="goToRoute(item.to)"
45
- >
46
- <q-item-section v-if="item.icon" avatar>
47
- <app-icon :name="item.icon" color="white" size="24px" />
48
- </q-item-section>
49
-
50
- <q-item-section :class="$style['menu-item__label']">
51
- <p>{{ item.label }}</p>
52
- </q-item-section>
53
- <q-tooltip
54
- :delay="100"
55
- transition-show="jump-right"
56
- transition-hide="jump-left"
57
- anchor="center right"
58
- self="center left"
59
- >
60
- {{ item.label }}
61
- </q-tooltip>
62
- </q-item>
63
- </template>
64
-
65
- <script lang="ts" setup>
66
- import { defineProps, ref } from 'vue'
67
- import AppIcon from '@/common/app-icon/AppIcon.vue'
68
-
69
- interface Props {
70
- minify?: boolean
71
- main: boolean
72
- isRouteActive: (item: any) => boolean
73
- item: {
74
- name: string
75
- label: string
76
- icon: string
77
- href: string
78
- to: string
79
- items: any[]
80
- }
81
- }
82
-
83
- const emits = defineEmits(['goToRoute'])
84
- const props = defineProps<Props>()
85
-
86
- const expand = ref(true)
87
-
88
- const goToRoute = (to: string) => {
89
- if (!props.main) window.location.href = to
90
- }
91
- </script>
92
-
93
- <style lang="scss" scoped>
94
- .expansion-item-active {
95
- background: rgba(243, 249, 253, 0.1);
96
- border-radius: 10px;
97
- }
98
- </style>
99
-
100
- <style lang="scss" module>
101
- .menu-item {
102
- margin: 0 8px;
103
- &:global(.menu-active) {
104
- border-radius: 10px;
105
- background: rgba(243, 249, 253, 0.1);
106
- }
107
- :global(.q-item__section--avatar) {
108
- min-width: 24px;
109
- padding-right: 14px;
110
- }
111
-
112
- :global(.q-expansion-item__content .q-item) {
113
- padding-left: 20px;
114
- }
115
- :global(.q-item__section--main ~ .q-item__section--side) {
116
- color: white;
117
- }
118
- &__label {
119
- color: #fff;
120
- font-family: 'Nunito Sans', sans-serif;
121
- font-size: 16px;
122
- font-weight: 300;
123
- p {
124
- display: inline-block;
125
- max-width: 160px;
126
- white-space: nowrap;
127
- overflow: hidden;
128
- text-overflow: ellipsis;
129
- margin: 0;
130
- }
131
- }
132
- }
133
-
134
- @media (max-width: 1440px) {
135
- .menu-item {
136
- margin: 0 4px;
137
- :global(.q-item__section--avatar) {
138
- min-width: 24px;
139
- padding-right: 10px;
140
- }
141
- &__label {
142
- font-size: 14px;
143
- }
144
- }
145
- }
146
- </style>
1
+ <template>
2
+ <q-expansion-item
3
+ v-if="item.items"
4
+ :model-value="isRouteActive(item) && expand"
5
+ header-class="text-purple"
6
+ :class="[$style['menu-item'], { 'expansion-item-active': isRouteActive(item) && minify }]"
7
+ @update:model-value="expand = $event"
8
+ >
9
+ <template #header>
10
+ <q-tooltip
11
+ v-if="minify"
12
+ :delay="100"
13
+ transition-show="jump-right"
14
+ transition-hide="jump-left"
15
+ anchor="center right"
16
+ self="center left"
17
+ >
18
+ {{ item.label }}
19
+ </q-tooltip>
20
+
21
+ <q-item-section v-if="item.icon" avatar>
22
+ <app-icon :name="item.icon" color="white" size="24px" />
23
+ </q-item-section>
24
+
25
+ <q-item-section :class="$style['menu-item__label']">{{ item.label }}</q-item-section>
26
+ </template>
27
+
28
+ <sidebar-menu-item
29
+ v-for="(subItem, index) in item.items"
30
+ :key="index"
31
+ :item="subItem"
32
+ :main="main"
33
+ :is-route-active="isRouteActive"
34
+ />
35
+ </q-expansion-item>
36
+ <q-item
37
+ v-else-if="item.name !== 'sign-out'"
38
+ v-ripple
39
+ :class="$style['menu-item']"
40
+ :active="isRouteActive(item)"
41
+ active-class="menu-active"
42
+ clickable
43
+ :to="main ? item.to : ''"
44
+ @click="goToRoute(item.to)"
45
+ >
46
+ <q-item-section v-if="item.icon" avatar>
47
+ <app-icon :name="item.icon" color="white" size="24px" />
48
+ </q-item-section>
49
+
50
+ <q-item-section :class="$style['menu-item__label']">
51
+ <p>{{ item.label }}</p>
52
+ </q-item-section>
53
+ <q-tooltip
54
+ :delay="100"
55
+ transition-show="jump-right"
56
+ transition-hide="jump-left"
57
+ anchor="center right"
58
+ self="center left"
59
+ >
60
+ {{ item.label }}
61
+ </q-tooltip>
62
+ </q-item>
63
+ </template>
64
+
65
+ <script lang="ts" setup>
66
+ import { defineProps, ref } from 'vue'
67
+ import AppIcon from '@/common/app-icon/AppIcon.vue'
68
+
69
+ interface Props {
70
+ minify?: boolean
71
+ main: boolean
72
+ isRouteActive: (item: any) => boolean
73
+ item: {
74
+ name: string
75
+ label: string
76
+ icon: string
77
+ href: string
78
+ to: string
79
+ items: any[]
80
+ }
81
+ }
82
+
83
+ const emits = defineEmits(['goToRoute'])
84
+ const props = defineProps<Props>()
85
+
86
+ const expand = ref(true)
87
+
88
+ const goToRoute = (to: string) => {
89
+ if (!props.main) window.location.href = to
90
+ }
91
+ </script>
92
+
93
+ <style lang="scss" scoped>
94
+ .expansion-item-active {
95
+ background: rgba(243, 249, 253, 0.1);
96
+ border-radius: 10px;
97
+ }
98
+ </style>
99
+
100
+ <style lang="scss" module>
101
+ .menu-item {
102
+ margin: 0 8px;
103
+ &:global(.menu-active) {
104
+ border-radius: 10px;
105
+ background: rgba(243, 249, 253, 0.1);
106
+ }
107
+ :global(.q-item__section--avatar) {
108
+ min-width: 24px;
109
+ padding-right: 14px;
110
+ }
111
+
112
+ :global(.q-expansion-item__content .q-item) {
113
+ padding-left: 20px;
114
+ }
115
+ :global(.q-item__section--main ~ .q-item__section--side) {
116
+ color: white;
117
+ }
118
+ &__label {
119
+ color: #fff;
120
+ font-family: 'Nunito Sans', sans-serif;
121
+ font-size: 16px;
122
+ font-weight: 300;
123
+ p {
124
+ display: inline-block;
125
+ max-width: 160px;
126
+ white-space: nowrap;
127
+ overflow: hidden;
128
+ text-overflow: ellipsis;
129
+ margin: 0;
130
+ }
131
+ }
132
+ }
133
+
134
+ @media (max-width: 1440px) {
135
+ .menu-item {
136
+ margin: 0 4px;
137
+ :global(.q-item__section--avatar) {
138
+ min-width: 24px;
139
+ padding-right: 10px;
140
+ }
141
+ &__label {
142
+ font-size: 14px;
143
+ }
144
+ }
145
+ }
146
+ </style>
@@ -1,23 +1,23 @@
1
- <template>
2
- <div>
3
- <q-toggle v-model="value" />
4
- </div>
5
- </template>
6
-
7
- <script setup lang="ts">
8
- import { computed } from 'vue'
9
-
10
- interface Props {
11
- modelValue: any
12
- }
13
-
14
- const props = defineProps<Props>()
15
- const emit = defineEmits(['update:modelValue', 'number'])
16
-
17
- const value = computed({
18
- get: () => props.modelValue,
19
- set: (newValue: any) => emit('update:modelValue', newValue),
20
- })
21
- </script>
22
-
23
- <style module lang="scss"></style>
1
+ <template>
2
+ <div>
3
+ <q-toggle v-model="value" />
4
+ </div>
5
+ </template>
6
+
7
+ <script setup lang="ts">
8
+ import { computed } from 'vue'
9
+
10
+ interface Props {
11
+ modelValue: any
12
+ }
13
+
14
+ const props = defineProps<Props>()
15
+ const emit = defineEmits(['update:modelValue', 'number'])
16
+
17
+ const value = computed({
18
+ get: () => props.modelValue,
19
+ set: (newValue: any) => emit('update:modelValue', newValue),
20
+ })
21
+ </script>
22
+
23
+ <style module lang="scss"></style>
package/src/global.d.ts CHANGED
@@ -1 +1 @@
1
- declare module 'shared-ritm'
1
+ declare module 'shared-ritm'
@@ -1,25 +1,25 @@
1
- <script>
2
- export default {
3
- name: 'ArrowDownIcon',
4
- }
5
- </script>
6
-
7
- <template>
8
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
9
- <path
10
- 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 2Z"
11
- stroke="#3F8CFF"
12
- stroke-width="1.5"
13
- stroke-miterlimit="10"
14
- stroke-linecap="round"
15
- stroke-linejoin="round"
16
- />
17
- <path
18
- d="M15.53 10.74L12 14.26L8.47003 10.74"
19
- stroke="#3F8CFF"
20
- stroke-width="1.5"
21
- stroke-linecap="round"
22
- stroke-linejoin="round"
23
- />
24
- </svg>
25
- </template>
1
+ <script>
2
+ export default {
3
+ name: 'ArrowDownIcon',
4
+ }
5
+ </script>
6
+
7
+ <template>
8
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
9
+ <path
10
+ 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 2Z"
11
+ stroke="#3F8CFF"
12
+ stroke-width="1.5"
13
+ stroke-miterlimit="10"
14
+ stroke-linecap="round"
15
+ stroke-linejoin="round"
16
+ />
17
+ <path
18
+ d="M15.53 10.74L12 14.26L8.47003 10.74"
19
+ stroke="#3F8CFF"
20
+ stroke-width="1.5"
21
+ stroke-linecap="round"
22
+ stroke-linejoin="round"
23
+ />
24
+ </svg>
25
+ </template>
@@ -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,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,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 d="M12 6.43994V9.76994" stroke="#408CFF" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" />
4
- <path
5
- d="M12.0199 2C8.3399 2 5.3599 4.98 5.3599 8.66V10.76C5.3599 11.44 5.0799 12.46 4.7299 13.04L3.4599 15.16C2.6799 16.47 3.2199 17.93 4.6599 18.41C9.4399 20 14.6099 20 19.3899 18.41C20.7399 17.96 21.3199 16.38 20.5899 15.16L19.3199 13.04C18.9699 12.46 18.6899 11.43 18.6899 10.76V8.66C18.6799 5 15.6799 2 12.0199 2Z"
6
- stroke="#404650"
7
- stroke-width="1.5"
8
- stroke-miterlimit="10"
9
- stroke-linecap="round"
10
- />
11
- <path
12
- d="M15.33 18.8199C15.33 20.6499 13.83 22.1499 12 22.1499C11.09 22.1499 10.25 21.7699 9.65004 21.1699C9.05004 20.5699 8.67004 19.7299 8.67004 18.8199"
13
- stroke="#404650"
14
- stroke-width="1.5"
15
- stroke-miterlimit="10"
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 d="M12 6.43994V9.76994" stroke="#408CFF" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" />
4
+ <path
5
+ d="M12.0199 2C8.3399 2 5.3599 4.98 5.3599 8.66V10.76C5.3599 11.44 5.0799 12.46 4.7299 13.04L3.4599 15.16C2.6799 16.47 3.2199 17.93 4.6599 18.41C9.4399 20 14.6099 20 19.3899 18.41C20.7399 17.96 21.3199 16.38 20.5899 15.16L19.3199 13.04C18.9699 12.46 18.6899 11.43 18.6899 10.76V8.66C18.6799 5 15.6799 2 12.0199 2Z"
6
+ stroke="#404650"
7
+ stroke-width="1.5"
8
+ stroke-miterlimit="10"
9
+ stroke-linecap="round"
10
+ />
11
+ <path
12
+ d="M15.33 18.8199C15.33 20.6499 13.83 22.1499 12 22.1499C11.09 22.1499 10.25 21.7699 9.65004 21.1699C9.05004 20.5699 8.67004 19.7299 8.67004 18.8199"
13
+ stroke="#404650"
14
+ stroke-width="1.5"
15
+ stroke-miterlimit="10"
16
+ />
17
+ </svg>
18
+ </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="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>