shared-ritm 1.1.70 → 1.1.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +103 -103
- package/dist/index.css +1 -1
- package/dist/shared-ritm.es.js +252 -243
- package/dist/shared-ritm.umd.js +3 -3
- package/dist/types/api/services/TasksService.d.ts +6 -1
- package/dist/types/api/types/Api_Tasks.d.ts +4 -0
- package/package.json +57 -57
- package/src/api/services/AuthService.ts +41 -41
- package/src/api/services/FileService.ts +15 -15
- package/src/api/services/GanttService.ts +17 -17
- package/src/api/services/MetricsService.ts +101 -101
- package/src/api/services/ProjectsService.ts +61 -61
- package/src/api/services/TasksService.ts +12 -0
- package/src/api/settings/ApiService.ts +125 -125
- package/src/api/types/Api_Files.ts +1 -1
- package/src/api/types/Api_Projects.ts +55 -55
- package/src/api/types/Api_Tasks.ts +155 -150
- package/src/common/app-button/AppButton.vue +173 -173
- package/src/common/app-checkbox/AppCheckbox.vue +26 -26
- package/src/common/app-date-picker/AppDatePicker.vue +74 -74
- package/src/common/app-dialogs/AppConfirmDialog.vue +100 -100
- package/src/common/app-dropdown/AppDropdown.vue +31 -31
- package/src/common/app-icon/AppIcon.vue +104 -104
- package/src/common/app-input/AppInput.vue +147 -147
- package/src/common/app-input-search/AppInputSearch.vue +170 -170
- package/src/common/app-layout/AppLayout.vue +63 -63
- package/src/common/app-layout/components/AppLayoutHeader.vue +123 -123
- package/src/common/app-loader/index.vue +43 -43
- package/src/common/app-page-layout/AppPageLayout.vue +122 -122
- package/src/common/app-select/AppSelect.vue +157 -157
- package/src/common/app-sheet/AppSheet.vue +114 -114
- package/src/common/app-sidebar/AppSidebar.vue +168 -168
- package/src/common/app-sidebar/components/SidebarMenu.vue +37 -37
- package/src/common/app-sidebar/components/SidebarMenuItem.vue +139 -139
- package/src/common/app-wrapper/AppWrapper.vue +28 -28
- package/src/global.d.ts +1 -1
- package/src/icons/components/arrow-down-icon.vue +25 -25
- package/src/icons/components/arrow-frame-icon.vue +19 -19
- package/src/icons/components/arrow-square.vue +22 -22
- package/src/icons/dialogs/RemoveIcon.vue +12 -12
- package/src/icons/dialogs/SafetyIcon.vue +12 -12
- package/src/icons/header/flashIcon.vue +24 -24
- package/src/icons/header/notificationIcon.vue +18 -18
- package/src/icons/header/searchStatusIcon.vue +24 -24
- package/src/icons/header/smallCapsIcon.vue +34 -34
- package/src/icons/sidebar/assign-module-icon.vue +36 -36
- package/src/icons/sidebar/instrument-history-icon.vue +32 -32
- package/src/icons/sidebar/instrument-order-icon.vue +38 -38
- package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
- package/src/icons/sidebar/instruments-icon.vue +45 -45
- package/src/icons/sidebar/logo-icon.vue +15 -15
- package/src/icons/sidebar/logout-icon.vue +13 -13
- package/src/icons/sidebar/modules-icon.vue +16 -16
- package/src/icons/sidebar/notifications-icon.vue +24 -24
- package/src/icons/sidebar/order-icon.vue +44 -44
- package/src/icons/sidebar/pass-icon.vue +38 -38
- package/src/icons/sidebar/positions-icon.vue +42 -42
- package/src/icons/sidebar/preorder-icon.vue +19 -19
- package/src/icons/sidebar/projects-icon.vue +31 -31
- package/src/icons/sidebar/repair-object-icon.vue +18 -18
- package/src/icons/sidebar/repairs-icon.vue +20 -20
- package/src/icons/sidebar/roles-icon.vue +26 -26
- package/src/icons/sidebar/status-history-icon.vue +24 -24
- package/src/icons/sidebar/tasks-icon.vue +28 -28
- package/src/icons/sidebar/tasks_tasks-icon.vue +39 -39
- package/src/icons/sidebar/tasks_today-icon.vue +27 -27
- package/src/icons/sidebar/teams-icon.vue +32 -32
- package/src/icons/sidebar/user-icon.vue +18 -18
- package/src/icons/sidebar/users-icon.vue +46 -46
- package/src/icons/sidebar/videosources-icon.vue +19 -19
- package/src/icons/sidebar/videowall-icon.vue +13 -13
- package/src/icons/sidebar/videozones-icon.vue +21 -21
- package/src/icons/sidebar/warehouses-icon.vue +43 -43
- package/src/icons/sidebar/workshop-icon.vue +100 -100
- package/src/icons/sidebar/workzones-icon.vue +22 -22
- package/src/icons/task/attention-icon.vue +13 -13
- package/src/icons/task/clock-icon.vue +10 -10
- package/src/icons/task/delete-icon.vue +10 -10
- package/src/icons/task/fire-icon.vue +16 -16
- package/src/index.ts +62 -62
- package/src/main.ts +18 -18
- package/src/quasar-user-options.ts +17 -17
- package/src/router/index.ts +10 -10
- package/src/shared/styles/general.css +96 -96
- package/src/shims-vue.d.ts +5 -5
- package/src/utils/confirm.ts +12 -12
- package/src/utils/notification.ts +9 -9
|
@@ -1,139 +1,139 @@
|
|
|
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-tooltip
|
|
47
|
-
v-if="minify"
|
|
48
|
-
:delay="100"
|
|
49
|
-
transition-show="jump-right"
|
|
50
|
-
transition-hide="jump-left"
|
|
51
|
-
anchor="center right"
|
|
52
|
-
self="center left"
|
|
53
|
-
>
|
|
54
|
-
{{ item.label }}
|
|
55
|
-
</q-tooltip>
|
|
56
|
-
|
|
57
|
-
<q-item-section v-if="item.icon" avatar>
|
|
58
|
-
<app-icon :name="item.icon" color="white" size="24px" />
|
|
59
|
-
</q-item-section>
|
|
60
|
-
|
|
61
|
-
<q-item-section :class="$style['menu-item__label']">{{ item.label }}</q-item-section>
|
|
62
|
-
</q-item>
|
|
63
|
-
</template>
|
|
64
|
-
|
|
65
|
-
<script lang="ts" setup>
|
|
66
|
-
import { defineProps, reactive, 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
|
-
white-space: nowrap;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
@media (max-width: 1440px) {
|
|
128
|
-
.menu-item {
|
|
129
|
-
margin: 0 4px;
|
|
130
|
-
:global(.q-item__section--avatar) {
|
|
131
|
-
min-width: 24px;
|
|
132
|
-
padding-right: 10px;
|
|
133
|
-
}
|
|
134
|
-
&__label {
|
|
135
|
-
font-size: 14px;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
</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-tooltip
|
|
47
|
+
v-if="minify"
|
|
48
|
+
:delay="100"
|
|
49
|
+
transition-show="jump-right"
|
|
50
|
+
transition-hide="jump-left"
|
|
51
|
+
anchor="center right"
|
|
52
|
+
self="center left"
|
|
53
|
+
>
|
|
54
|
+
{{ item.label }}
|
|
55
|
+
</q-tooltip>
|
|
56
|
+
|
|
57
|
+
<q-item-section v-if="item.icon" avatar>
|
|
58
|
+
<app-icon :name="item.icon" color="white" size="24px" />
|
|
59
|
+
</q-item-section>
|
|
60
|
+
|
|
61
|
+
<q-item-section :class="$style['menu-item__label']">{{ item.label }}</q-item-section>
|
|
62
|
+
</q-item>
|
|
63
|
+
</template>
|
|
64
|
+
|
|
65
|
+
<script lang="ts" setup>
|
|
66
|
+
import { defineProps, reactive, 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
|
+
white-space: nowrap;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
@media (max-width: 1440px) {
|
|
128
|
+
.menu-item {
|
|
129
|
+
margin: 0 4px;
|
|
130
|
+
:global(.q-item__section--avatar) {
|
|
131
|
+
min-width: 24px;
|
|
132
|
+
padding-right: 10px;
|
|
133
|
+
}
|
|
134
|
+
&__label {
|
|
135
|
+
font-size: 14px;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
</style>
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="app-wrapper">
|
|
3
|
-
<slot />
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
<script setup lang="ts"></script>
|
|
7
|
-
<style scoped lang="scss">
|
|
8
|
-
.app-wrapper {
|
|
9
|
-
width: 100%;
|
|
10
|
-
height: 100%;
|
|
11
|
-
margin: 20px 0 12px 0;
|
|
12
|
-
padding: 30px;
|
|
13
|
-
border-radius: 8px;
|
|
14
|
-
background: #fff;
|
|
15
|
-
outline: 4px solid #598dd5;
|
|
16
|
-
outline-offset: -3px;
|
|
17
|
-
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 4px 0px #c4d7f1 inset,
|
|
18
|
-
0px 0px 6.4px 3px rgba(31, 82, 159, 0.5), 0px 6px 58px 0px rgba(0, 49, 122, 0.1);
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@media (max-width: 1440px) {
|
|
22
|
-
.app-wrapper {
|
|
23
|
-
margin: 10px 0;
|
|
24
|
-
padding: 14px;
|
|
25
|
-
border-radius: 8px;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="app-wrapper">
|
|
3
|
+
<slot />
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
<script setup lang="ts"></script>
|
|
7
|
+
<style scoped lang="scss">
|
|
8
|
+
.app-wrapper {
|
|
9
|
+
width: 100%;
|
|
10
|
+
height: 100%;
|
|
11
|
+
margin: 20px 0 12px 0;
|
|
12
|
+
padding: 30px;
|
|
13
|
+
border-radius: 8px;
|
|
14
|
+
background: #fff;
|
|
15
|
+
outline: 4px solid #598dd5;
|
|
16
|
+
outline-offset: -3px;
|
|
17
|
+
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 4px 0px #c4d7f1 inset,
|
|
18
|
+
0px 0px 6.4px 3px rgba(31, 82, 159, 0.5), 0px 6px 58px 0px rgba(0, 49, 122, 0.1);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@media (max-width: 1440px) {
|
|
22
|
+
.app-wrapper {
|
|
23
|
+
margin: 10px 0;
|
|
24
|
+
padding: 14px;
|
|
25
|
+
border-radius: 8px;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
</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,12 +1,12 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" 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="60" height="60" 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 60 60" 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 60 60" 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,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>
|