shared-ritm 1.0.88 → 1.0.90
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/dist/index.css +1 -1
- package/dist/shared-ritm.es.js +21 -19
- package/dist/shared-ritm.umd.js +7 -7
- package/dist/types/index.d.ts +1 -0
- package/dist/types/router/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/common/app-button/AppButton.vue +1 -0
- package/src/common/app-checkbox/AppCheckbox.vue +26 -26
- package/src/common/app-date-picker/AppDatePicker.vue +66 -66
- package/src/common/app-select/AppSelect.vue +2 -0
- package/src/common/app-sheet/AppSheet.vue +114 -111
- package/src/common/app-sidebar/AppSidebar.vue +1 -0
- 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/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/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/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/index.ts +1 -0
- package/src/shared/fonts/Montserrat-Bold.ttf +0 -0
- package/src/shared/fonts/NunitoSans_7pt-Bold.ttf +0 -0
- package/src/shared/styles/general.css +46 -27
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const router: import(
|
|
2
|
-
export default router
|
|
1
|
+
declare const router: import('vue-router').Router
|
|
2
|
+
export default router
|
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<q-checkbox :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>
|
|
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>
|
|
@@ -1,66 +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 mask="YYYY-MM-DD"
|
|
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
|
+
<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>
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
:label="label"
|
|
17
17
|
input-debounce="100"
|
|
18
18
|
:popup-content-class="$style['app-select__menu']"
|
|
19
|
+
:clearable="clearable"
|
|
19
20
|
rounded
|
|
20
21
|
autocomplete=""
|
|
21
22
|
@filter="filterFn"
|
|
@@ -58,6 +59,7 @@ interface AppQSelectProps {
|
|
|
58
59
|
multiple?: boolean
|
|
59
60
|
borderColor: string
|
|
60
61
|
isDisabled?: boolean
|
|
62
|
+
clearable?: boolean
|
|
61
63
|
}
|
|
62
64
|
|
|
63
65
|
const props = defineProps<AppQSelectProps>()
|
|
@@ -1,111 +1,114 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<q-dialog
|
|
3
|
-
ref="DialogRef"
|
|
4
|
-
:model-value="true"
|
|
5
|
-
:position="'right'"
|
|
6
|
-
:class="$style['sheet-dialog']"
|
|
7
|
-
full-height
|
|
8
|
-
full-width
|
|
9
|
-
>
|
|
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 />
|
|
23
|
-
</div>
|
|
24
|
-
</q-card>
|
|
25
|
-
</template>
|
|
26
|
-
<template v-if="type === 'custom'">
|
|
27
|
-
<div class="custom-wrapper"
|
|
28
|
-
<div class="loader">
|
|
29
|
-
<q-spinner-audio v-if="loading" class="loader-spinner" size="md" :thickness="3" color="primary" />
|
|
30
|
-
</div>
|
|
31
|
-
</div>
|
|
32
|
-
<slot v-else />
|
|
33
|
-
</template>
|
|
34
|
-
</q-dialog>
|
|
35
|
-
</template>
|
|
36
|
-
|
|
37
|
-
<script setup lang="ts">
|
|
38
|
-
import { computed, defineEmits, defineProps,
|
|
39
|
-
|
|
40
|
-
interface DialogProps {
|
|
41
|
-
dialogRef: any
|
|
42
|
-
loading?: boolean
|
|
43
|
-
title?: string
|
|
44
|
-
width?: string
|
|
45
|
-
type?: 'details' | 'custom'
|
|
46
|
-
tabs?: any[]
|
|
47
|
-
currentTabName?: string
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
const props = withDefaults(defineProps<DialogProps>(), {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
},
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<q-dialog
|
|
3
|
+
ref="DialogRef"
|
|
4
|
+
:model-value="true"
|
|
5
|
+
:position="'right'"
|
|
6
|
+
:class="$style['sheet-dialog']"
|
|
7
|
+
full-height
|
|
8
|
+
full-width
|
|
9
|
+
>
|
|
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 />
|
|
23
|
+
</div>
|
|
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" />
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
<slot v-else />
|
|
33
|
+
</template>
|
|
34
|
+
</q-dialog>
|
|
35
|
+
</template>
|
|
36
|
+
|
|
37
|
+
<script setup lang="ts">
|
|
38
|
+
import { computed, defineEmits, defineProps, withDefaults } from 'vue'
|
|
39
|
+
|
|
40
|
+
interface DialogProps {
|
|
41
|
+
dialogRef: any
|
|
42
|
+
loading?: boolean
|
|
43
|
+
title?: string
|
|
44
|
+
width?: string
|
|
45
|
+
type?: 'details' | 'custom'
|
|
46
|
+
tabs?: any[]
|
|
47
|
+
currentTabName?: string
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const props = withDefaults(defineProps<DialogProps>(), {
|
|
51
|
+
title: '',
|
|
52
|
+
width: '976px',
|
|
53
|
+
type: 'details',
|
|
54
|
+
loading: false,
|
|
55
|
+
tabs: () => [],
|
|
56
|
+
currentTabName: '',
|
|
57
|
+
})
|
|
58
|
+
|
|
59
|
+
const emit = defineEmits(['update:dialogRef', 'update:currentTabName'])
|
|
60
|
+
|
|
61
|
+
const DialogRef = computed({
|
|
62
|
+
get() {
|
|
63
|
+
return props.dialogRef
|
|
64
|
+
},
|
|
65
|
+
set(value) {
|
|
66
|
+
emit('update:dialogRef', value)
|
|
67
|
+
},
|
|
68
|
+
})
|
|
69
|
+
</script>
|
|
70
|
+
|
|
71
|
+
<style lang="scss" scoped>
|
|
72
|
+
.custom-wrapper {
|
|
73
|
+
width: v-bind(width);
|
|
74
|
+
background-color: white;
|
|
75
|
+
}
|
|
76
|
+
.wrapper {
|
|
77
|
+
display: flex;
|
|
78
|
+
flex-direction: column;
|
|
79
|
+
gap: 1rem;
|
|
80
|
+
width: v-bind(width);
|
|
81
|
+
height: 100vh;
|
|
82
|
+
min-height: 100vh;
|
|
83
|
+
position: relative;
|
|
84
|
+
padding: 2rem 2rem 4rem 2rem;
|
|
85
|
+
background-color: #7991ad32;
|
|
86
|
+
font-family: 'NunitoSansFont', sans-serif;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.sheet-header {
|
|
90
|
+
display: flex;
|
|
91
|
+
justify-content: space-between;
|
|
92
|
+
align-items: center;
|
|
93
|
+
h2 {
|
|
94
|
+
font-size: 36px;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
.loader {
|
|
98
|
+
min-width: 976px;
|
|
99
|
+
&-spinner {
|
|
100
|
+
position: absolute;
|
|
101
|
+
top: 50%;
|
|
102
|
+
left: 50%;
|
|
103
|
+
z-index: 4;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
</style>
|
|
107
|
+
|
|
108
|
+
<style lang="scss" module>
|
|
109
|
+
.sheet-dialog {
|
|
110
|
+
:global(.q-dialog__inner--minimized) {
|
|
111
|
+
padding: 0;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
</style>
|
|
@@ -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>
|