shared-ritm 1.2.79 → 1.2.81
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 +9409 -8849
- package/dist/shared-ritm.umd.js +520 -520
- package/dist/types/api/services/UserService.d.ts +10 -1
- package/dist/types/api/types/Api_Service.d.ts +1 -1
- package/dist/types/api/types/Api_User.d.ts +11 -0
- package/dist/types/common/app-table/controllers/useTableModel.d.ts +1 -1
- package/dist/types/index.d.ts +3 -2
- package/package.json +64 -64
- package/src/api/services/PhotoService.ts +137 -137
- package/src/api/services/RepairsService.ts +119 -119
- package/src/api/services/UserService.ts +32 -19
- package/src/api/types/Api_Controls.ts +72 -72
- package/src/api/types/Api_Files.ts +1 -1
- package/src/api/types/Api_Instruments.ts +98 -98
- package/src/api/types/Api_Projects.ts +55 -55
- package/src/api/types/Api_Repairs.ts +115 -115
- package/src/api/types/Api_Service.ts +1 -1
- package/src/api/types/Api_User.ts +57 -44
- package/src/common/app-checkbox/AppCheckbox.vue +26 -26
- package/src/common/app-datepicker/AppDatepicker.vue +165 -165
- package/src/common/app-dialogs/AppConfirmDialog.vue +99 -99
- package/src/common/app-dropdown/AppDropdown.vue +31 -31
- package/src/common/app-input/AppInput.vue +148 -148
- package/src/common/app-input-new/AppInputNew.vue +152 -152
- package/src/common/app-select/AppSelect.vue +157 -157
- package/src/common/app-sheet/AppSheet.vue +120 -120
- package/src/common/app-sheet-new/AppSheetNew.vue +255 -0
- package/src/common/app-sidebar/components/SidebarMenuItem.vue +148 -148
- package/src/common/app-table/AppTable.vue +301 -297
- package/src/common/app-table/AppTableLayout.vue +126 -111
- package/src/common/app-table/components/ModalSelect.vue +270 -270
- package/src/common/app-table/components/TableModal.vue +329 -329
- package/src/common/app-table/components/TablePagination.vue +152 -152
- package/src/common/app-table/components/TableSearch.vue +76 -76
- package/src/common/app-table/controllers/useBaseTable.ts +42 -42
- package/src/common/app-table/controllers/useColumnSelector.ts +38 -38
- package/src/common/app-table/controllers/useTableModel.ts +93 -93
- package/src/common/app-toggle/AppToggle.vue +24 -24
- package/src/common/app-wrapper/AppWrapper.vue +28 -28
- package/src/icons/components/table-filter-icon.vue +30 -30
- package/src/icons/dialogs/RemoveIcon.vue +12 -12
- package/src/icons/dialogs/SafetyIcon.vue +12 -12
- 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 +3 -1
- package/src/main.ts +28 -28
- package/src/shared/styles/general.css +125 -125
- package/src/styles/variables.sass +12 -12
- package/src/utils/confirm.ts +12 -12
- package/src/utils/helpers.ts +58 -58
- package/src/utils/notification.ts +9 -9
- package/dist/types/api/types/Api_Users.d.ts +0 -43
|
@@ -1,93 +1,93 @@
|
|
|
1
|
-
import { Ref, computed, ref } from 'vue'
|
|
2
|
-
|
|
3
|
-
export interface TableColumn {
|
|
4
|
-
name: string
|
|
5
|
-
label: string
|
|
6
|
-
style?: string
|
|
7
|
-
headerStyle?: string
|
|
8
|
-
field
|
|
9
|
-
sortable?: boolean
|
|
10
|
-
filterType?: 'single' | 'multi' | null
|
|
11
|
-
align?: 'left' | 'center' | 'right'
|
|
12
|
-
badge?: {
|
|
13
|
-
true?: string
|
|
14
|
-
false?: string
|
|
15
|
-
colorTrue?: string
|
|
16
|
-
colorFalse?: string
|
|
17
|
-
}
|
|
18
|
-
format?: (val: any) => any
|
|
19
|
-
html?: boolean
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export interface FilterOption {
|
|
23
|
-
id: string
|
|
24
|
-
name: string
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export interface TableModel<T = any> {
|
|
28
|
-
columns: TableColumn[]
|
|
29
|
-
rows: T[] | Ref<T[]>
|
|
30
|
-
filtersOptions?: Ref<Record<string, FilterOption[]>>
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
export const useTableModel = <T = any>(model: TableModel<T>) => {
|
|
34
|
-
const columnFilters = ref<Record<string, string | string[] | undefined>>({})
|
|
35
|
-
const filterMenus = ref<Record<string, boolean>>({})
|
|
36
|
-
|
|
37
|
-
model.columns.forEach(({ name, filterType }) => {
|
|
38
|
-
if (filterType) {
|
|
39
|
-
columnFilters.value[name] = filterType === 'multi' ? [] : undefined
|
|
40
|
-
filterMenus.value[name] = false
|
|
41
|
-
}
|
|
42
|
-
})
|
|
43
|
-
|
|
44
|
-
const resolvedRows = computed(() => (Array.isArray(model.rows) ? model.rows : model.rows.value))
|
|
45
|
-
|
|
46
|
-
const toggleFilterValue = (colName: string, value: string) => {
|
|
47
|
-
const col = model.columns.find(c => c.name === colName)
|
|
48
|
-
if (col?.filterType === 'multi') {
|
|
49
|
-
const current = columnFilters.value[colName] as string[]
|
|
50
|
-
const index = current.indexOf(value)
|
|
51
|
-
index > -1 ? current.splice(index, 1) : current.push(value)
|
|
52
|
-
columnFilters.value[colName] = [...current]
|
|
53
|
-
} else {
|
|
54
|
-
columnFilters.value[colName] = value
|
|
55
|
-
filterMenus.value[colName] = false
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
const selectedFilters = computed(() => {
|
|
60
|
-
const result: Record<string, string[]> = {}
|
|
61
|
-
for (const col of model.columns) {
|
|
62
|
-
const filter = columnFilters.value[col.name]
|
|
63
|
-
const options = model.filtersOptions?.value[col.name] || []
|
|
64
|
-
|
|
65
|
-
if (filter) {
|
|
66
|
-
result[col.name] = Array.isArray(filter)
|
|
67
|
-
? options.filter(opt => filter.includes(opt.name)).map(opt => opt.id)
|
|
68
|
-
: options.filter(opt => opt.name === filter).map(opt => opt.id)
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
return result
|
|
72
|
-
})
|
|
73
|
-
|
|
74
|
-
const clearFilter = (colName: string) => {
|
|
75
|
-
const col = model.columns.find(c => c.name === colName)
|
|
76
|
-
columnFilters.value[colName] = col?.filterType === 'multi' ? [] : undefined
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
const openFilterMenu = (colName: string, isOpen: boolean) => {
|
|
80
|
-
filterMenus.value[colName] = isOpen
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
return {
|
|
84
|
-
rows: resolvedRows,
|
|
85
|
-
columns: computed(() => model.columns),
|
|
86
|
-
columnFilters,
|
|
87
|
-
filterMenus,
|
|
88
|
-
toggleFilterValue,
|
|
89
|
-
clearFilter,
|
|
90
|
-
openFilterMenu,
|
|
91
|
-
selectedFilters,
|
|
92
|
-
}
|
|
93
|
-
}
|
|
1
|
+
import { Ref, computed, ref } from 'vue'
|
|
2
|
+
|
|
3
|
+
export interface TableColumn {
|
|
4
|
+
name: string
|
|
5
|
+
label: string
|
|
6
|
+
style?: string
|
|
7
|
+
headerStyle?: string
|
|
8
|
+
field?: string | ((row: any) => any)
|
|
9
|
+
sortable?: boolean
|
|
10
|
+
filterType?: 'single' | 'multi' | null
|
|
11
|
+
align?: 'left' | 'center' | 'right'
|
|
12
|
+
badge?: {
|
|
13
|
+
true?: string
|
|
14
|
+
false?: string
|
|
15
|
+
colorTrue?: string
|
|
16
|
+
colorFalse?: string
|
|
17
|
+
}
|
|
18
|
+
format?: (val: any) => any
|
|
19
|
+
html?: boolean
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface FilterOption {
|
|
23
|
+
id: string
|
|
24
|
+
name: string
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export interface TableModel<T = any> {
|
|
28
|
+
columns: TableColumn[]
|
|
29
|
+
rows: T[] | Ref<T[]>
|
|
30
|
+
filtersOptions?: Ref<Record<string, FilterOption[]>>
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export const useTableModel = <T = any>(model: TableModel<T>) => {
|
|
34
|
+
const columnFilters = ref<Record<string, string | string[] | undefined>>({})
|
|
35
|
+
const filterMenus = ref<Record<string, boolean>>({})
|
|
36
|
+
|
|
37
|
+
model.columns.forEach(({ name, filterType }) => {
|
|
38
|
+
if (filterType) {
|
|
39
|
+
columnFilters.value[name] = filterType === 'multi' ? [] : undefined
|
|
40
|
+
filterMenus.value[name] = false
|
|
41
|
+
}
|
|
42
|
+
})
|
|
43
|
+
|
|
44
|
+
const resolvedRows = computed(() => (Array.isArray(model.rows) ? model.rows : model.rows.value))
|
|
45
|
+
|
|
46
|
+
const toggleFilterValue = (colName: string, value: string) => {
|
|
47
|
+
const col = model.columns.find(c => c.name === colName)
|
|
48
|
+
if (col?.filterType === 'multi') {
|
|
49
|
+
const current = columnFilters.value[colName] as string[]
|
|
50
|
+
const index = current.indexOf(value)
|
|
51
|
+
index > -1 ? current.splice(index, 1) : current.push(value)
|
|
52
|
+
columnFilters.value[colName] = [...current]
|
|
53
|
+
} else {
|
|
54
|
+
columnFilters.value[colName] = value
|
|
55
|
+
filterMenus.value[colName] = false
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
const selectedFilters = computed(() => {
|
|
60
|
+
const result: Record<string, string[]> = {}
|
|
61
|
+
for (const col of model.columns) {
|
|
62
|
+
const filter = columnFilters.value[col.name]
|
|
63
|
+
const options = model.filtersOptions?.value[col.name] || []
|
|
64
|
+
|
|
65
|
+
if (filter) {
|
|
66
|
+
result[col.name] = Array.isArray(filter)
|
|
67
|
+
? options.filter(opt => filter.includes(opt.name)).map(opt => opt.id)
|
|
68
|
+
: options.filter(opt => opt.name === filter).map(opt => opt.id)
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
return result
|
|
72
|
+
})
|
|
73
|
+
|
|
74
|
+
const clearFilter = (colName: string) => {
|
|
75
|
+
const col = model.columns.find(c => c.name === colName)
|
|
76
|
+
columnFilters.value[colName] = col?.filterType === 'multi' ? [] : undefined
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
const openFilterMenu = (colName: string, isOpen: boolean) => {
|
|
80
|
+
filterMenus.value[colName] = isOpen
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
return {
|
|
84
|
+
rows: resolvedRows,
|
|
85
|
+
columns: computed(() => model.columns),
|
|
86
|
+
columnFilters,
|
|
87
|
+
filterMenus,
|
|
88
|
+
toggleFilterValue,
|
|
89
|
+
clearFilter,
|
|
90
|
+
openFilterMenu,
|
|
91
|
+
selectedFilters,
|
|
92
|
+
}
|
|
93
|
+
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<q-toggle v-model="value" :disable="disable" />
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
|
|
7
|
-
<script setup lang="ts">
|
|
8
|
-
import { computed, defineProps, defineEmits } from 'vue'
|
|
9
|
-
|
|
10
|
-
interface Props {
|
|
11
|
-
modelValue: any
|
|
12
|
-
disable?: boolean
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
const props = defineProps<Props>()
|
|
16
|
-
const emit = defineEmits(['update:modelValue', 'number'])
|
|
17
|
-
|
|
18
|
-
const value = computed({
|
|
19
|
-
get: () => props.modelValue,
|
|
20
|
-
set: (newValue: any) => emit('update:modelValue', newValue),
|
|
21
|
-
})
|
|
22
|
-
</script>
|
|
23
|
-
|
|
24
|
-
<style module lang="scss"></style>
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<q-toggle v-model="value" :disable="disable" />
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script setup lang="ts">
|
|
8
|
+
import { computed, defineProps, defineEmits } from 'vue'
|
|
9
|
+
|
|
10
|
+
interface Props {
|
|
11
|
+
modelValue: any
|
|
12
|
+
disable?: boolean
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
const props = defineProps<Props>()
|
|
16
|
+
const emit = defineEmits(['update:modelValue', 'number'])
|
|
17
|
+
|
|
18
|
+
const value = computed({
|
|
19
|
+
get: () => props.modelValue,
|
|
20
|
+
set: (newValue: any) => emit('update:modelValue', newValue),
|
|
21
|
+
})
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
<style module lang="scss"></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>
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
<script setup lang="ts"></script>
|
|
2
|
-
|
|
3
|
-
<template>
|
|
4
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none">
|
|
5
|
-
<path
|
|
6
|
-
d="M11.9328 16.1547C11.9328 16.663 11.5995 17.3297 11.1745 17.588L9.99948 18.3463C8.90781 19.0213 7.39114 18.263 7.39114 16.913V12.4547C7.39114 11.863 7.05781 11.1047 6.71615 10.688L3.51612 7.32131C3.09112 6.89631 2.75781 6.14632 2.75781 5.63799V3.70465C2.75781 2.69632 3.51616 1.93799 4.44116 1.93799H15.5578C16.4828 1.93799 17.2411 2.69631 17.2411 3.62131V5.47131C17.2411 6.14631 16.8161 6.98799 16.3995 7.40465"
|
|
7
|
-
stroke="#A4B4CF"
|
|
8
|
-
stroke-width="1.5"
|
|
9
|
-
stroke-miterlimit="10"
|
|
10
|
-
stroke-linecap="round"
|
|
11
|
-
stroke-linejoin="round"
|
|
12
|
-
/>
|
|
13
|
-
<path
|
|
14
|
-
d="M13.3923 14.0301C14.865 14.0301 16.0589 12.8362 16.0589 11.3635C16.0589 9.89069 14.865 8.69678 13.3923 8.69678C11.9195 8.69678 10.7256 9.89069 10.7256 11.3635C10.7256 12.8362 11.9195 14.0301 13.3923 14.0301Z"
|
|
15
|
-
stroke="#A4B4CF"
|
|
16
|
-
stroke-width="1.5"
|
|
17
|
-
stroke-linecap="round"
|
|
18
|
-
stroke-linejoin="round"
|
|
19
|
-
/>
|
|
20
|
-
<path
|
|
21
|
-
d="M16.5589 14.5301L15.7256 13.6968"
|
|
22
|
-
stroke="#A4B4CF"
|
|
23
|
-
stroke-width="1.5"
|
|
24
|
-
stroke-linecap="round"
|
|
25
|
-
stroke-linejoin="round"
|
|
26
|
-
/>
|
|
27
|
-
</svg>
|
|
28
|
-
</template>
|
|
29
|
-
|
|
30
|
-
<style scoped lang="scss"></style>
|
|
1
|
+
<script setup lang="ts"></script>
|
|
2
|
+
|
|
3
|
+
<template>
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none">
|
|
5
|
+
<path
|
|
6
|
+
d="M11.9328 16.1547C11.9328 16.663 11.5995 17.3297 11.1745 17.588L9.99948 18.3463C8.90781 19.0213 7.39114 18.263 7.39114 16.913V12.4547C7.39114 11.863 7.05781 11.1047 6.71615 10.688L3.51612 7.32131C3.09112 6.89631 2.75781 6.14632 2.75781 5.63799V3.70465C2.75781 2.69632 3.51616 1.93799 4.44116 1.93799H15.5578C16.4828 1.93799 17.2411 2.69631 17.2411 3.62131V5.47131C17.2411 6.14631 16.8161 6.98799 16.3995 7.40465"
|
|
7
|
+
stroke="#A4B4CF"
|
|
8
|
+
stroke-width="1.5"
|
|
9
|
+
stroke-miterlimit="10"
|
|
10
|
+
stroke-linecap="round"
|
|
11
|
+
stroke-linejoin="round"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
d="M13.3923 14.0301C14.865 14.0301 16.0589 12.8362 16.0589 11.3635C16.0589 9.89069 14.865 8.69678 13.3923 8.69678C11.9195 8.69678 10.7256 9.89069 10.7256 11.3635C10.7256 12.8362 11.9195 14.0301 13.3923 14.0301Z"
|
|
15
|
+
stroke="#A4B4CF"
|
|
16
|
+
stroke-width="1.5"
|
|
17
|
+
stroke-linecap="round"
|
|
18
|
+
stroke-linejoin="round"
|
|
19
|
+
/>
|
|
20
|
+
<path
|
|
21
|
+
d="M16.5589 14.5301L15.7256 13.6968"
|
|
22
|
+
stroke="#A4B4CF"
|
|
23
|
+
stroke-width="1.5"
|
|
24
|
+
stroke-linecap="round"
|
|
25
|
+
stroke-linejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
</svg>
|
|
28
|
+
</template>
|
|
29
|
+
|
|
30
|
+
<style scoped lang="scss"></style>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" 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="50" height="50" 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 50 50" 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 50 50" 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,13 +1,13 @@
|
|
|
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.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z"
|
|
5
|
-
stroke="#F65160"
|
|
6
|
-
stroke-width="1.5"
|
|
7
|
-
stroke-linecap="round"
|
|
8
|
-
stroke-linejoin="round"
|
|
9
|
-
/>
|
|
10
|
-
<path d="M12 8V13" stroke="#F65160" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
11
|
-
<path d="M11.9941 16H12.0031" stroke="#F65160" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
|
|
12
|
-
</svg>
|
|
13
|
-
</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.5 22 22 17.5 22 12C22 6.5 17.5 2 12 2C6.5 2 2 6.5 2 12C2 17.5 6.5 22 12 22Z"
|
|
5
|
+
stroke="#F65160"
|
|
6
|
+
stroke-width="1.5"
|
|
7
|
+
stroke-linecap="round"
|
|
8
|
+
stroke-linejoin="round"
|
|
9
|
+
/>
|
|
10
|
+
<path d="M12 8V13" stroke="#F65160" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
|
|
11
|
+
<path d="M11.9941 16H12.0031" stroke="#F65160" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
|
|
12
|
+
</svg>
|
|
13
|
+
</template>
|
|
@@ -1,10 +1,10 @@
|
|
|
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
|
-
fill-rule="evenodd"
|
|
5
|
-
clip-rule="evenodd"
|
|
6
|
-
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 2ZM12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4ZM12.9933 6.88338C12.9355 6.38604 12.5128 6 12 6C11.4477 6 11 6.44772 11 7V12.25L11.0086 12.3808C11.0539 12.7247 11.2756 13.0246 11.5992 13.1662L15.5992 14.9162L15.7087 14.9567C16.1875 15.1032 16.7106 14.8707 16.9162 14.4008L16.9567 14.2913C17.1032 13.8125 16.8707 13.2894 16.4008 13.0838L13 11.596V7L12.9933 6.88338Z"
|
|
7
|
-
fill="#7D8592"
|
|
8
|
-
/>
|
|
9
|
-
</svg>
|
|
10
|
-
</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
|
+
fill-rule="evenodd"
|
|
5
|
+
clip-rule="evenodd"
|
|
6
|
+
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 2ZM12 4C16.4183 4 20 7.58172 20 12C20 16.4183 16.4183 20 12 20C7.58172 20 4 16.4183 4 12C4 7.58172 7.58172 4 12 4ZM12.9933 6.88338C12.9355 6.38604 12.5128 6 12 6C11.4477 6 11 6.44772 11 7V12.25L11.0086 12.3808C11.0539 12.7247 11.2756 13.0246 11.5992 13.1662L15.5992 14.9162L15.7087 14.9567C16.1875 15.1032 16.7106 14.8707 16.9162 14.4008L16.9567 14.2913C17.1032 13.8125 16.8707 13.2894 16.4008 13.0838L13 11.596V7L12.9933 6.88338Z"
|
|
7
|
+
fill="#7D8592"
|
|
8
|
+
/>
|
|
9
|
+
</svg>
|
|
10
|
+
</template>
|
|
@@ -1,10 +1,10 @@
|
|
|
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
|
-
fill-rule="evenodd"
|
|
5
|
-
clip-rule="evenodd"
|
|
6
|
-
d="M14 1C15.5977 1 16.9037 2.24892 16.9949 3.82373L17 4V5H19H21C21.5523 5 22 5.44772 22 6C22 6.51284 21.614 6.93551 21.1166 6.99327L21 7H20V20C20 21.5977 18.7511 22.9037 17.1763 22.9949L17 23H7C5.40232 23 4.09634 21.7511 4.00509 20.1763L4 20V7H3C2.44772 7 2 6.55228 2 6C2 5.48716 2.38604 5.06449 2.88338 5.00673L3 5H5H7V4C7 2.40232 8.24892 1.09634 9.82373 1.00509L10 1H14ZM6 7V20C6 20.5128 6.38604 20.9355 6.88338 20.9933L7 21H17C17.5128 21 17.9355 20.614 17.9933 20.1166L18 20V7H16H8H6ZM15 5H9V4L9.00673 3.88338C9.06449 3.38604 9.48716 3 10 3H14L14.1166 3.00673C14.614 3.06449 15 3.48716 15 4V5ZM10 10C10.5128 10 10.9355 10.386 10.9933 10.8834L11 11V17C11 17.5523 10.5523 18 10 18C9.48716 18 9.06449 17.614 9.00673 17.1166L9 17V11C9 10.4477 9.44772 10 10 10ZM14.9933 10.8834C14.9355 10.386 14.5128 10 14 10C13.4477 10 13 10.4477 13 11V17L13.0067 17.1166C13.0645 17.614 13.4872 18 14 18C14.5523 18 15 17.5523 15 17V11L14.9933 10.8834Z"
|
|
7
|
-
fill="#F65160"
|
|
8
|
-
/>
|
|
9
|
-
</svg>
|
|
10
|
-
</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
|
+
fill-rule="evenodd"
|
|
5
|
+
clip-rule="evenodd"
|
|
6
|
+
d="M14 1C15.5977 1 16.9037 2.24892 16.9949 3.82373L17 4V5H19H21C21.5523 5 22 5.44772 22 6C22 6.51284 21.614 6.93551 21.1166 6.99327L21 7H20V20C20 21.5977 18.7511 22.9037 17.1763 22.9949L17 23H7C5.40232 23 4.09634 21.7511 4.00509 20.1763L4 20V7H3C2.44772 7 2 6.55228 2 6C2 5.48716 2.38604 5.06449 2.88338 5.00673L3 5H5H7V4C7 2.40232 8.24892 1.09634 9.82373 1.00509L10 1H14ZM6 7V20C6 20.5128 6.38604 20.9355 6.88338 20.9933L7 21H17C17.5128 21 17.9355 20.614 17.9933 20.1166L18 20V7H16H8H6ZM15 5H9V4L9.00673 3.88338C9.06449 3.38604 9.48716 3 10 3H14L14.1166 3.00673C14.614 3.06449 15 3.48716 15 4V5ZM10 10C10.5128 10 10.9355 10.386 10.9933 10.8834L11 11V17C11 17.5523 10.5523 18 10 18C9.48716 18 9.06449 17.614 9.00673 17.1166L9 17V11C9 10.4477 9.44772 10 10 10ZM14.9933 10.8834C14.9355 10.386 14.5128 10 14 10C13.4477 10 13 10.4477 13 11V17L13.0067 17.1166C13.0645 17.614 13.4872 18 14 18C14.5523 18 15 17.5523 15 17V11L14.9933 10.8834Z"
|
|
7
|
+
fill="#F65160"
|
|
8
|
+
/>
|
|
9
|
+
</svg>
|
|
10
|
+
</template>
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="25" viewBox="0 0 16 25" fill="none">
|
|
3
|
-
<path
|
|
4
|
-
d="M5.98265 0.364887C5.98265 0.386246 6.1589 0.656149 6.39514 0.999838C6.71014 1.45615 6.9239 1.94547 7.0139 2.41343C7.28765 3.85615 6.79452 5.5377 5.30577 8.22896C4.73202 9.26197 3.94077 10.5571 2.3414 13.0775C1.49952 14.4057 1.4714 14.4523 1.3139 14.761C0.950145 15.4833 0.76452 16.1105 0.713895 16.796C0.65202 17.6134 0.85827 18.4853 1.29327 19.2523C2.08265 20.6406 3.56765 21.8853 5.78577 23.0193C6.59765 23.4348 7.34389 23.7591 8.4014 24.1591C8.85139 24.3299 8.85139 24.328 8.85139 24.3222C8.85139 24.3183 8.77264 24.2697 8.67889 24.2134C8.58327 24.1571 8.41264 24.0503 8.29827 23.9746C6.12327 22.5319 5.02264 20.7319 5.24202 18.9765C5.29452 18.5629 5.37702 18.2678 5.66577 17.4639C5.92452 16.7416 6.2339 16.0231 6.72327 15.0095C7.01765 14.3979 7.0589 14.3144 7.7489 12.9804C7.97577 12.5416 8.19702 12.1144 8.24202 12.029C9.05202 10.4561 9.52452 9.2678 9.7439 8.25032C9.79077 8.03673 9.7964 7.97071 9.7964 7.66003C9.7964 7.27751 9.76639 7.05227 9.65952 6.6445C9.33327 5.40566 8.50827 3.78819 7.3139 2.04838C6.71014 1.16683 5.98265 0.248383 5.98265 0.364887Z"
|
|
5
|
-
fill="#F65160"
|
|
6
|
-
/>
|
|
7
|
-
<path
|
|
8
|
-
d="M11.0699 8.1164C11.1055 8.19602 11.1824 8.36495 11.2424 8.49116C11.368 8.76301 11.4018 8.90864 11.4018 9.18825C11.4018 9.90669 10.9987 11.1416 10.2205 12.8057C10.1249 13.0077 9.99555 13.2873 9.92992 13.4271C9.86617 13.5649 9.54367 14.2251 9.21367 14.8931C7.87492 17.6057 7.59742 18.2834 7.53742 18.9882C7.46805 19.8135 7.75867 20.7397 8.3493 21.5688C8.54055 21.8368 8.81805 22.1378 8.84805 22.1086C8.8518 22.1028 8.78617 22.0077 8.7018 21.8989C8.61555 21.7882 8.52555 21.6543 8.50117 21.598C8.2443 21.0213 8.49555 19.9669 9.2493 18.4465C9.5268 17.8873 9.80055 17.3882 10.3368 16.462C11.1843 14.996 11.4955 14.3824 11.8368 13.5048C12.0262 13.0135 12.2793 12.1921 12.3562 11.8115C12.3993 11.5921 12.418 11.2659 12.3955 11.0717C12.3374 10.5591 12.1987 10.2115 11.5705 9.00961C11.0793 8.06592 10.9274 7.79407 11.0699 8.1164Z"
|
|
9
|
-
fill="#F65160"
|
|
10
|
-
/>
|
|
11
|
-
<path
|
|
12
|
-
d="M13.7868 11.1261C13.875 11.3028 13.965 11.5105 13.9875 11.5882C14.295 12.6134 14.0925 14.1824 13.455 15.6989C13.2037 16.2969 12.9712 16.6989 12.0581 18.1164C11.1112 19.5863 10.8056 20.1066 10.5262 20.728C10.2712 21.295 10.1681 21.7028 10.1268 22.3105C10.1081 22.5863 10.125 23.0542 10.1625 23.3202C10.1775 23.4193 10.1793 23.4212 10.1812 23.3494C10.1887 23.0736 10.35 22.7435 10.6837 22.3261C10.9031 22.0484 11.6268 21.3105 12.3018 20.6756C13.0481 19.9727 13.515 19.4892 13.8412 19.0775C14.9006 17.7416 15.3468 16.4542 15.2943 14.8892C15.2568 13.763 15.1012 13.2872 14.3625 12.0387C14.1806 11.7338 13.9518 11.3416 13.8487 11.1649C13.7475 10.9882 13.6575 10.8348 13.6481 10.8251C13.6387 10.8134 13.7006 10.9494 13.7868 11.1261Z"
|
|
13
|
-
fill="#F65160"
|
|
14
|
-
/>
|
|
15
|
-
</svg>
|
|
16
|
-
</template>
|
|
1
|
+
<template>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="25" viewBox="0 0 16 25" fill="none">
|
|
3
|
+
<path
|
|
4
|
+
d="M5.98265 0.364887C5.98265 0.386246 6.1589 0.656149 6.39514 0.999838C6.71014 1.45615 6.9239 1.94547 7.0139 2.41343C7.28765 3.85615 6.79452 5.5377 5.30577 8.22896C4.73202 9.26197 3.94077 10.5571 2.3414 13.0775C1.49952 14.4057 1.4714 14.4523 1.3139 14.761C0.950145 15.4833 0.76452 16.1105 0.713895 16.796C0.65202 17.6134 0.85827 18.4853 1.29327 19.2523C2.08265 20.6406 3.56765 21.8853 5.78577 23.0193C6.59765 23.4348 7.34389 23.7591 8.4014 24.1591C8.85139 24.3299 8.85139 24.328 8.85139 24.3222C8.85139 24.3183 8.77264 24.2697 8.67889 24.2134C8.58327 24.1571 8.41264 24.0503 8.29827 23.9746C6.12327 22.5319 5.02264 20.7319 5.24202 18.9765C5.29452 18.5629 5.37702 18.2678 5.66577 17.4639C5.92452 16.7416 6.2339 16.0231 6.72327 15.0095C7.01765 14.3979 7.0589 14.3144 7.7489 12.9804C7.97577 12.5416 8.19702 12.1144 8.24202 12.029C9.05202 10.4561 9.52452 9.2678 9.7439 8.25032C9.79077 8.03673 9.7964 7.97071 9.7964 7.66003C9.7964 7.27751 9.76639 7.05227 9.65952 6.6445C9.33327 5.40566 8.50827 3.78819 7.3139 2.04838C6.71014 1.16683 5.98265 0.248383 5.98265 0.364887Z"
|
|
5
|
+
fill="#F65160"
|
|
6
|
+
/>
|
|
7
|
+
<path
|
|
8
|
+
d="M11.0699 8.1164C11.1055 8.19602 11.1824 8.36495 11.2424 8.49116C11.368 8.76301 11.4018 8.90864 11.4018 9.18825C11.4018 9.90669 10.9987 11.1416 10.2205 12.8057C10.1249 13.0077 9.99555 13.2873 9.92992 13.4271C9.86617 13.5649 9.54367 14.2251 9.21367 14.8931C7.87492 17.6057 7.59742 18.2834 7.53742 18.9882C7.46805 19.8135 7.75867 20.7397 8.3493 21.5688C8.54055 21.8368 8.81805 22.1378 8.84805 22.1086C8.8518 22.1028 8.78617 22.0077 8.7018 21.8989C8.61555 21.7882 8.52555 21.6543 8.50117 21.598C8.2443 21.0213 8.49555 19.9669 9.2493 18.4465C9.5268 17.8873 9.80055 17.3882 10.3368 16.462C11.1843 14.996 11.4955 14.3824 11.8368 13.5048C12.0262 13.0135 12.2793 12.1921 12.3562 11.8115C12.3993 11.5921 12.418 11.2659 12.3955 11.0717C12.3374 10.5591 12.1987 10.2115 11.5705 9.00961C11.0793 8.06592 10.9274 7.79407 11.0699 8.1164Z"
|
|
9
|
+
fill="#F65160"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
d="M13.7868 11.1261C13.875 11.3028 13.965 11.5105 13.9875 11.5882C14.295 12.6134 14.0925 14.1824 13.455 15.6989C13.2037 16.2969 12.9712 16.6989 12.0581 18.1164C11.1112 19.5863 10.8056 20.1066 10.5262 20.728C10.2712 21.295 10.1681 21.7028 10.1268 22.3105C10.1081 22.5863 10.125 23.0542 10.1625 23.3202C10.1775 23.4193 10.1793 23.4212 10.1812 23.3494C10.1887 23.0736 10.35 22.7435 10.6837 22.3261C10.9031 22.0484 11.6268 21.3105 12.3018 20.6756C13.0481 19.9727 13.515 19.4892 13.8412 19.0775C14.9006 17.7416 15.3468 16.4542 15.2943 14.8892C15.2568 13.763 15.1012 13.2872 14.3625 12.0387C14.1806 11.7338 13.9518 11.3416 13.8487 11.1649C13.7475 10.9882 13.6575 10.8348 13.6481 10.8251C13.6387 10.8134 13.7006 10.9494 13.7868 11.1261Z"
|
|
13
|
+
fill="#F65160"
|
|
14
|
+
/>
|
|
15
|
+
</svg>
|
|
16
|
+
</template>
|
package/src/index.ts
CHANGED
|
@@ -12,6 +12,7 @@ import AppLayoutPage from '@/common/app-layout/components/AppLayoutPage.vue'
|
|
|
12
12
|
import AppLoader from '@/common/app-loader/index.vue'
|
|
13
13
|
import AppSelect from '@/common/app-select/AppSelect.vue'
|
|
14
14
|
import AppSheet from '@/common/app-sheet/AppSheet.vue'
|
|
15
|
+
import AppSheetNew from '@/common/app-sheet-new/AppSheetNew.vue'
|
|
15
16
|
import AppSidebar from '@/common/app-sidebar/AppSidebar.vue'
|
|
16
17
|
import AppToggle from '@/common/app-toggle/AppToggle.vue'
|
|
17
18
|
import AppWrapper from '@/common/app-wrapper/AppWrapper.vue'
|
|
@@ -29,7 +30,7 @@ import useGanttService from '@/api/services/GanttService'
|
|
|
29
30
|
import useMetricsService from '@/api/services/MetricsService'
|
|
30
31
|
import useProjectsService from '@/api/services/ProjectsService'
|
|
31
32
|
import useRepairsService from '@/api/services/RepairsService'
|
|
32
|
-
import useTasksService from '
|
|
33
|
+
import useTasksService from '@/api/services/TasksService'
|
|
33
34
|
import useAuthService from '@/api/services/AuthService'
|
|
34
35
|
import useFileService from '@/api/services/FileService'
|
|
35
36
|
import useVideoService from '@/api/services/VideoService'
|
|
@@ -53,6 +54,7 @@ export {
|
|
|
53
54
|
AppLoader,
|
|
54
55
|
AppSelect,
|
|
55
56
|
AppSheet,
|
|
57
|
+
AppSheetNew,
|
|
56
58
|
AppSidebar,
|
|
57
59
|
AppToggle,
|
|
58
60
|
AppWrapper,
|
package/src/main.ts
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { createApp } from 'vue'
|
|
2
|
-
import { Quasar, quasarUserOptions } from './quasar-user-options'
|
|
3
|
-
import router from './router/index'
|
|
4
|
-
|
|
5
|
-
import '@quasar/extras/material-icons/material-icons.css'
|
|
6
|
-
import 'quasar/src/css/index.sass'
|
|
7
|
-
|
|
8
|
-
import '@/shared/styles/general.css'
|
|
9
|
-
|
|
10
|
-
import App from './App.vue'
|
|
11
|
-
|
|
12
|
-
const app = createApp(App)
|
|
13
|
-
|
|
14
|
-
//@ts-ignore
|
|
15
|
-
app.use(Quasar, quasarUserOptions)
|
|
16
|
-
|
|
17
|
-
app.use(router)
|
|
18
|
-
app.mount('#app')
|
|
19
|
-
|
|
20
|
-
const observerErrRe = /^ResizeObserver loop completed/
|
|
21
|
-
|
|
22
|
-
const originalConsoleError = console.error
|
|
23
|
-
console.error = (...args) => {
|
|
24
|
-
if (typeof args[0] === 'string' && observerErrRe.test(args[0])) {
|
|
25
|
-
return
|
|
26
|
-
}
|
|
27
|
-
originalConsoleError(...args)
|
|
28
|
-
}
|
|
1
|
+
import { createApp } from 'vue'
|
|
2
|
+
import { Quasar, quasarUserOptions } from './quasar-user-options'
|
|
3
|
+
import router from './router/index'
|
|
4
|
+
|
|
5
|
+
import '@quasar/extras/material-icons/material-icons.css'
|
|
6
|
+
import 'quasar/src/css/index.sass'
|
|
7
|
+
|
|
8
|
+
import '@/shared/styles/general.css'
|
|
9
|
+
|
|
10
|
+
import App from './App.vue'
|
|
11
|
+
|
|
12
|
+
const app = createApp(App)
|
|
13
|
+
|
|
14
|
+
//@ts-ignore
|
|
15
|
+
app.use(Quasar, quasarUserOptions)
|
|
16
|
+
|
|
17
|
+
app.use(router)
|
|
18
|
+
app.mount('#app')
|
|
19
|
+
|
|
20
|
+
const observerErrRe = /^ResizeObserver loop completed/
|
|
21
|
+
|
|
22
|
+
const originalConsoleError = console.error
|
|
23
|
+
console.error = (...args) => {
|
|
24
|
+
if (typeof args[0] === 'string' && observerErrRe.test(args[0])) {
|
|
25
|
+
return
|
|
26
|
+
}
|
|
27
|
+
originalConsoleError(...args)
|
|
28
|
+
}
|