shared-ritm 1.0.87 → 1.0.89

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 (51) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/shared-ritm.es.js +7265 -5456
  3. package/dist/shared-ritm.umd.js +7 -7
  4. package/dist/types/index.d.ts +10 -7
  5. package/dist/types/router/index.d.ts +2 -2
  6. package/package.json +1 -1
  7. package/src/common/app-button/AppButton.vue +19 -2
  8. package/src/common/app-checkbox/AppCheckbox.vue +26 -0
  9. package/src/common/app-date-picker/AppDatePicker.vue +66 -0
  10. package/src/common/app-input/AppInput.vue +17 -2
  11. package/src/common/app-sheet/AppSheet.vue +40 -15
  12. package/src/common/app-sidebar/AppSidebar.vue +1 -0
  13. package/src/icons/components/arrow-down-icon.vue +25 -25
  14. package/src/icons/components/arrow-frame-icon.vue +19 -19
  15. package/src/icons/components/arrow-square.vue +22 -22
  16. package/src/icons/header/flashIcon.vue +24 -24
  17. package/src/icons/header/notificationIcon.vue +18 -18
  18. package/src/icons/header/searchStatusIcon.vue +24 -24
  19. package/src/icons/header/smallCapsIcon.vue +34 -34
  20. package/src/icons/sidebar/assign-module-icon.vue +36 -36
  21. package/src/icons/sidebar/instrument-history-icon.vue +32 -32
  22. package/src/icons/sidebar/instrument-order-icon.vue +38 -38
  23. package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
  24. package/src/icons/sidebar/instruments-icon.vue +45 -45
  25. package/src/icons/sidebar/logo-icon.vue +15 -15
  26. package/src/icons/sidebar/logout-icon.vue +13 -13
  27. package/src/icons/sidebar/modules-icon.vue +16 -16
  28. package/src/icons/sidebar/notifications-icon.vue +24 -24
  29. package/src/icons/sidebar/order-icon.vue +44 -44
  30. package/src/icons/sidebar/pass-icon.vue +38 -38
  31. package/src/icons/sidebar/positions-icon.vue +42 -42
  32. package/src/icons/sidebar/preorder-icon.vue +19 -19
  33. package/src/icons/sidebar/repair-object-icon.vue +18 -18
  34. package/src/icons/sidebar/repairs-icon.vue +20 -20
  35. package/src/icons/sidebar/roles-icon.vue +26 -26
  36. package/src/icons/sidebar/status-history-icon.vue +24 -24
  37. package/src/icons/sidebar/tasks-icon.vue +28 -28
  38. package/src/icons/sidebar/teams-icon.vue +32 -32
  39. package/src/icons/sidebar/user-icon.vue +18 -18
  40. package/src/icons/sidebar/users-icon.vue +46 -46
  41. package/src/icons/sidebar/videosources-icon.vue +19 -19
  42. package/src/icons/sidebar/videowall-icon.vue +13 -13
  43. package/src/icons/sidebar/videozones-icon.vue +21 -21
  44. package/src/icons/sidebar/warehouses-icon.vue +43 -43
  45. package/src/icons/sidebar/workshop-icon.vue +100 -100
  46. package/src/icons/sidebar/workzones-icon.vue +22 -22
  47. package/src/index.ts +15 -10
  48. package/src/shared/fonts/Montserrat-Bold.ttf +0 -0
  49. package/src/shared/fonts/NunitoSans_7pt-Bold.ttf +0 -0
  50. package/src/shared/styles/general.css +46 -27
  51. /package/src/common/app-toggle/{index.vue → AppToggle.vue} +0 -0
@@ -1,14 +1,17 @@
1
+ import '@/shared/styles/general.css';
1
2
  import AppButton from '@/common/app-button/AppButton.vue';
2
- import AppInputSearch from '@/common/app-input-search/AppInputSearch.vue';
3
+ import AppCheckbox from '@/common/app-checkbox/AppCheckbox.vue';
4
+ import AppDatePicker from '@/common/app-date-picker/AppDatePicker.vue';
3
5
  import AppInput from '@/common/app-input/AppInput.vue';
4
- import AppToggle from '@/common/app-toggle/index.vue';
6
+ import AppInputSearch from '@/common/app-input-search/AppInputSearch.vue';
5
7
  import AppLayout from '@/common/app-layout/AppLayout.vue';
6
- import AppSelect from '@/common/app-select/AppSelect.vue';
7
- import AppWrapper from '@/common/app-wrapper/AppWrapper.vue';
8
- import AppSidebar from '@/common/app-sidebar/AppSidebar.vue';
9
8
  import AppLayoutHeader from '@/common/app-layout/components/AppLayoutHeader.vue';
10
9
  import AppLoader from '@/common/app-loader/index.vue';
10
+ import AppSelect from '@/common/app-select/AppSelect.vue';
11
11
  import AppSheet from '@/common/app-sheet/AppSheet.vue';
12
+ import AppSidebar from '@/common/app-sidebar/AppSidebar.vue';
13
+ import AppToggle from '@/common/app-toggle/AppToggle.vue';
14
+ import AppWrapper from '@/common/app-wrapper/AppWrapper.vue';
12
15
  import useGanttService from '@/api/services/GanttService';
13
16
  import useMetricsService from '@/api/services/MetricsService';
14
17
  import useProjectsService from '@/api/services/ProjectsService';
@@ -16,8 +19,8 @@ import useRepairsService from '@/api/services/RepairsService';
16
19
  import useTasksService from '@/api/services/TasksService';
17
20
  import useAuthService from '@/api/services/AuthService';
18
21
  import ApiService from '@/api/settings/ApiService';
19
- export { AppButton, AppInput, AppToggle, AppInputSearch, AppLayout, AppSelect, AppWrapper, AppSidebar, AppLayoutHeader, AppLoader, AppSheet, };
20
- export { ApiService, useGanttService, useMetricsService, useProjectsService, useRepairsService, useTasksService, useAuthService, };
22
+ export { AppButton, AppCheckbox, AppDatePicker, AppInput, AppInputSearch, AppLayout, AppLayoutHeader, AppLoader, AppSelect, AppSheet, AppSidebar, AppToggle, AppWrapper, };
23
+ export { ApiService, useAuthService, useGanttService, useMetricsService, useProjectsService, useRepairsService, useTasksService, };
21
24
  export * from '@/api/types/Api_Tasks';
22
25
  export * from '@/api/types/Api_Repairs';
23
26
  export * from '@/api/types/Api_Projects';
@@ -1,2 +1,2 @@
1
- declare const router: import("vue-router").Router;
2
- export default router;
1
+ declare const router: import('vue-router').Router
2
+ export default router
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shared-ritm",
3
- "version": "1.0.87",
3
+ "version": "1.0.89",
4
4
  "private": false,
5
5
  "files": [
6
6
  "dist",
@@ -75,9 +75,20 @@ interface Props extends QBtnProps {
75
75
  badgeColor?: string
76
76
  badgeInline?: boolean
77
77
  link?: boolean
78
+ borderColor?: string
79
+ borderRadius?: string
80
+ borderWidth?: string
81
+ width?: string
82
+ height?: string
78
83
  }
79
84
 
80
- const props = defineProps<Props>()
85
+ const props = withDefaults(defineProps<Props>(), {
86
+ borderRadius: '16px',
87
+ borderWidth: '1px',
88
+ width: 'auto',
89
+ height: 'auto',
90
+ disable: false,
91
+ })
81
92
 
82
93
  const emit = defineEmits(['update:modelValue', 'click'])
83
94
 
@@ -117,14 +128,20 @@ const isDisabled = computed(() => {
117
128
  <style lang="scss" module>
118
129
  .wrapper {
119
130
  flex: 0 0 auto;
131
+ width: v-bind(width);
132
+ height: v-bind(height);
120
133
  &:global(.q-btn--rounded) {
121
- border-radius: 14px;
134
+ border-radius: v-bind(borderRadius);
135
+ }
136
+ &:global(.q-btn--outline:before) {
137
+ border-width: v-bind(borderWidth);
122
138
  }
123
139
  &:global(.q-btn) {
124
140
  color: #0a1629;
125
141
  font-size: 16px;
126
142
  font-style: normal;
127
143
  font-weight: 700;
144
+ font-family: NunitoSansFont, sans-serif;
128
145
  }
129
146
 
130
147
  &:global(.--loading) {
@@ -0,0 +1,26 @@
1
+ <template>
2
+ <q-checkbox v-model="value" :class="$style['app-checkbox']" />
3
+ </template>
4
+ <script setup lang="ts">
5
+ import { computed } from 'vue'
6
+
7
+ interface Props {
8
+ modelValue: any
9
+ }
10
+
11
+ const props = defineProps<Props>()
12
+ const emit = defineEmits(['update:modelValue', 'number'])
13
+
14
+ const value = computed({
15
+ get: () => props.modelValue,
16
+ set: (newValue: any) => emit('update:modelValue', newValue),
17
+ })
18
+ </script>
19
+ <style module lang="scss">
20
+ .app-checkbox {
21
+ :global(.q-checkbox__bg) {
22
+ border-radius: 6px;
23
+ border-color: white;
24
+ }
25
+ }
26
+ </style>
@@ -0,0 +1,66 @@
1
+ <template>
2
+ <div class="date-picker">
3
+ <app-button
4
+ class="button"
5
+ outline
6
+ size="20px"
7
+ padding="10px"
8
+ border-radius="8px"
9
+ border-width="2px"
10
+ rounded
11
+ text-color="primary"
12
+ icon="event"
13
+ >
14
+ <q-popup-proxy anchor="top left" self="top left" transition-show="scale-up" transition-hide="scale-down">
15
+ <q-date v-model="model" mask="YYYY-MM-DD" minimal />
16
+ </q-popup-proxy>
17
+ </app-button>
18
+ <div class="date-picker__content">
19
+ <p>{{ label }}<span> * </span></p>
20
+ <span>{{ model || 'Выберите дату' }}</span>
21
+ </div>
22
+ </div>
23
+ </template>
24
+
25
+ <script setup lang="ts">
26
+ import { computed } from 'vue'
27
+ import AppButton from '@/common/app-button/AppButton.vue'
28
+
29
+ interface Props {
30
+ label: string
31
+ modelValue: string
32
+ }
33
+ const emits = defineEmits(['update:modelValue'])
34
+ const props = defineProps<Props>()
35
+
36
+ const model = computed({
37
+ get() {
38
+ return props.modelValue
39
+ },
40
+ set(value: string) {
41
+ emits('update:modelValue', value)
42
+ },
43
+ })
44
+ </script>
45
+
46
+ <style scoped lang="scss">
47
+ .date-picker {
48
+ display: flex;
49
+ gap: 14px;
50
+ &__content {
51
+ color: #7d8592;
52
+ font-weight: 500;
53
+ p {
54
+ margin: 0;
55
+ font-weight: 700;
56
+ span {
57
+ color: red;
58
+ }
59
+ }
60
+ span {
61
+ }
62
+ }
63
+ }
64
+ .button {
65
+ }
66
+ </style>
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <q-input
3
3
  v-model="value"
4
- :class="inputClasses"
4
+ :class="[inputClasses, $style['app-input']]"
5
5
  standout
6
6
  outlined
7
7
  dense
@@ -91,6 +91,11 @@ interface AppInputProps extends AppQInputProps {
91
91
  withIcon?: boolean
92
92
  withButton?: boolean
93
93
  withArrow?: boolean
94
+ borderColor?: string
95
+ borderRadius?: string
96
+ borderWidth?: string
97
+ width?: string
98
+ height?: string
94
99
  }
95
100
 
96
101
  const props = withDefaults(defineProps<AppInputProps>(), {
@@ -98,6 +103,10 @@ const props = withDefaults(defineProps<AppInputProps>(), {
98
103
  outlined: true,
99
104
  error: undefined,
100
105
  modelValue: '',
106
+ borderRadius: '8px',
107
+ borderWidth: '1px',
108
+ width: 'auto',
109
+ height: 'auto',
101
110
  })
102
111
 
103
112
  const emit = defineEmits(['update:modelValue', 'button-click', 'clear', 'focus', 'blur', 'click'])
@@ -125,4 +134,10 @@ const inputClasses = computed(() => {
125
134
  })
126
135
  </script>
127
136
 
128
- <style scoped lang="scss"></style>
137
+ <style module lang="scss">
138
+ .app-input {
139
+ &:global(.q-field--dense .q-field__control) {
140
+ height: v-bind(height);
141
+ }
142
+ }
143
+ </style>
@@ -7,19 +7,30 @@
7
7
  full-height
8
8
  full-width
9
9
  >
10
- <q-card>
11
- <div class="wrapper">
12
- <div class="sheet-header">
13
- <h2>{{ title }}</h2>
14
- <div class="close-button"></div>
15
- <q-btn v-close-popup dense flat icon="close" />
10
+ <template v-if="type === 'details'">
11
+ <q-card>
12
+ <div class="wrapper">
13
+ <div class="sheet-header">
14
+ <h2>{{ title }}</h2>
15
+ <div class="close-button">
16
+ <q-btn v-close-popup dense flat icon="close" />
17
+ </div>
18
+ </div>
19
+ <div v-if="loading" class="loader">
20
+ <q-spinner-audio v-if="loading" class="loader-spinner" size="md" :thickness="3" color="primary" />
21
+ </div>
22
+ <slot v-else />
16
23
  </div>
17
- <div v-if="loading" class="loader">
18
- <q-spinner-audio v-if="loading" class="loader-spiner" size="md" :thickness="3" color="primary" />
24
+ </q-card>
25
+ </template>
26
+ <template v-if="type === 'custom'">
27
+ <div v-if="loading" class="custom-wrapper">
28
+ <div class="loader">
29
+ <q-spinner-audio v-if="loading" class="loader-spinner" size="md" :thickness="3" color="primary" />
19
30
  </div>
20
- <slot v-else />
21
31
  </div>
22
- </q-card>
32
+ <slot v-else />
33
+ </template>
23
34
  </q-dialog>
24
35
  </template>
25
36
 
@@ -28,16 +39,24 @@ import { computed, defineEmits, defineProps, withDefaults } from 'vue'
28
39
 
29
40
  interface DialogProps {
30
41
  dialogRef: any
31
- loading: boolean
32
- title: string
42
+ loading?: boolean
43
+ title?: string
33
44
  width?: string
45
+ type?: 'details' | 'custom'
46
+ tabs?: any[]
47
+ currentTabName?: string
34
48
  }
35
49
 
36
50
  const props = withDefaults(defineProps<DialogProps>(), {
51
+ title: '',
37
52
  width: '976px',
53
+ type: 'details',
54
+ loading: false,
55
+ tabs: () => [],
56
+ currentTabName: '',
38
57
  })
39
58
 
40
- const emit = defineEmits(['update:dialogRef'])
59
+ const emit = defineEmits(['update:dialogRef', 'update:currentTabName'])
41
60
 
42
61
  const DialogRef = computed({
43
62
  get() {
@@ -50,6 +69,10 @@ const DialogRef = computed({
50
69
  </script>
51
70
 
52
71
  <style lang="scss" scoped>
72
+ .custom-wrapper {
73
+ width: v-bind(width);
74
+ background-color: white;
75
+ }
53
76
  .wrapper {
54
77
  display: flex;
55
78
  flex-direction: column;
@@ -60,18 +83,20 @@ const DialogRef = computed({
60
83
  position: relative;
61
84
  padding: 2rem 2rem 4rem 2rem;
62
85
  background-color: #7991ad32;
63
- font-family: 'NunitoSansFont', sans-serif !important;
86
+ font-family: 'NunitoSansFont', sans-serif;
64
87
  }
88
+
65
89
  .sheet-header {
66
90
  display: flex;
67
91
  justify-content: space-between;
92
+ align-items: center;
68
93
  h2 {
69
94
  font-size: 36px;
70
95
  }
71
96
  }
72
97
  .loader {
73
98
  min-width: 976px;
74
- &-spiner {
99
+ &-spinner {
75
100
  position: absolute;
76
101
  top: 50%;
77
102
  left: 50%;
@@ -71,6 +71,7 @@ interface Props {
71
71
  const emits = defineEmits(['logout'])
72
72
  const props = withDefaults(defineProps<Props>(), {
73
73
  main: false,
74
+ menuItems: () => [],
74
75
  })
75
76
  const $q = useQuasar()
76
77
 
@@ -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>