@eturnity/eturnity_reusable_components 7.18.0--EPDM-9013.1 → 7.18.0-EPDM-10335.0
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/.storybook/preview.js +1 -1
- package/package.json +19 -23
- package/src/App.vue +2 -2
- package/src/components/addNewButton/index.vue +5 -3
- package/src/components/buttons/buttonIcon/index.vue +1 -1
- package/src/components/buttons/closeButton/index.vue +1 -1
- package/src/components/buttons/mainButton/index.vue +6 -1
- package/src/components/deleteIcon/DeleteIcon.stories.js +7 -7
- package/src/components/deleteIcon/index.vue +25 -21
- package/src/components/draggableInputHandle/index.vue +24 -25
- package/src/components/dropdown/index.vue +129 -110
- package/src/components/errorMessage/index.vue +10 -5
- package/src/components/filter/filterSettings.vue +58 -97
- package/src/components/filter/index.vue +3 -3
- package/src/components/filter/parentDropdown.vue +2 -2
- package/src/components/icon/iconCache.js +23 -0
- package/src/components/icon/iconCollection.vue +2 -2
- package/src/components/icon/index.vue +67 -75
- package/src/components/iconWrapper/index.vue +1 -4
- package/src/components/infoCard/index.vue +2 -3
- package/src/components/infoText/index.vue +1 -1
- package/src/components/inputs/checkbox/index.vue +21 -6
- package/src/components/inputs/inputNumber/index.vue +8 -11
- package/src/components/inputs/inputNumberQuestion/index.vue +1 -1
- package/src/components/inputs/inputText/index.vue +3 -3
- package/src/components/inputs/radioButton/index.vue +1 -1
- package/src/components/inputs/searchInput/index.vue +28 -11
- package/src/components/inputs/select/index.vue +199 -55
- package/src/components/inputs/select/option/index.vue +36 -11
- package/src/components/inputs/slider/index.vue +16 -16
- package/src/components/inputs/switchField/index.vue +2 -2
- package/src/components/inputs/textAreaInput/index.vue +1 -1
- package/src/components/inputs/toggle/index.vue +2 -2
- package/src/components/label/index.vue +27 -31
- package/src/components/modals/modal/index.vue +2 -6
- package/src/components/navigationTabs/index.vue +27 -20
- package/src/components/pageSubtitle/index.vue +1 -1
- package/src/components/pageTitle/index.vue +4 -4
- package/src/components/pagination/index.vue +1 -1
- package/src/components/progressBar/index.vue +1 -1
- package/src/components/projectMarker/index.vue +16 -9
- package/src/components/sideMenu/index.vue +1 -1
- package/src/components/spinner/index.vue +7 -11
- package/src/components/tableDropdown/index.vue +30 -37
- package/src/components/tables/mainTable/exampleNested.vue +1 -1
- package/src/components/tables/mainTable/index.vue +10 -9
- package/src/components/tables/viewTable/index.vue +2 -2
- package/src/components/threeDots/index.vue +1 -1
- package/src/components/videoThumbnail/index.vue +95 -100
- package/src/main.js +4 -11
- package/src/assets/svgIcons/bexio.svg +0 -4
- package/src/assets/svgIcons/data_transfer.svg +0 -3
@@ -53,7 +53,7 @@
|
|
53
53
|
</no-template>
|
54
54
|
<input-container
|
55
55
|
v-if="item.type === 'input'"
|
56
|
-
@click.
|
56
|
+
@click.stop="onInputClick()"
|
57
57
|
>
|
58
58
|
<text-container
|
59
59
|
v-if="customInputDisabled"
|
@@ -93,16 +93,11 @@
|
|
93
93
|
triggerType="hover"
|
94
94
|
></et-popover>
|
95
95
|
<arrow-down
|
96
|
-
@click.
|
96
|
+
@click.stop="toggleOpen"
|
97
97
|
v-if="!isOpen"
|
98
98
|
class="arrow-dropdown"
|
99
|
-
:src="require('../../assets/icons/collapse_arrow_icon.svg')"
|
100
|
-
/>
|
101
|
-
<arrow-up
|
102
|
-
@click.native.stop="toggleOpen"
|
103
|
-
v-else
|
104
|
-
:src="require('../../assets/icons/collapse_arrow_icon.svg')"
|
105
99
|
/>
|
100
|
+
<arrow-up @click.stop="toggleOpen" v-else />
|
106
101
|
</arrow-wrapper>
|
107
102
|
<options-container v-if="isOpen" ref="optionsContainer">
|
108
103
|
<options-wrapper @click.prevent.stop>
|
@@ -127,20 +122,18 @@
|
|
127
122
|
:key="index"
|
128
123
|
@click="onItemClick(item)"
|
129
124
|
:tabindex="0"
|
130
|
-
@keyup.enter
|
125
|
+
@keyup.enter="onItemClick(item)"
|
131
126
|
>
|
132
|
-
<template v-for="(option, idx) in optionsDisplay">
|
133
|
-
<span v-if="option !== 'template'"
|
127
|
+
<template v-for="(option, idx) in optionsDisplay" :key="idx">
|
128
|
+
<span v-if="option !== 'template'">
|
134
129
|
{{ !!item[option] ? item[option] : '-' }}
|
135
130
|
</span>
|
136
131
|
<template-button
|
137
|
-
:key="idx"
|
138
132
|
@click.stop="onTemplateClick(item)"
|
139
133
|
v-else-if="option === 'template' && item.has_template"
|
140
134
|
>{{ $gettext('Use template...') }}</template-button
|
141
135
|
>
|
142
136
|
<no-template
|
143
|
-
:key="idx"
|
144
137
|
v-else-if="option === 'template' && !item.has_template"
|
145
138
|
>
|
146
139
|
{{ $gettext('No main component template') }}
|
@@ -183,10 +176,12 @@
|
|
183
176
|
// :optionsDisplay="['display_name', 'company_item_number']" // Array. what should be displayed
|
184
177
|
// :disabled="true"
|
185
178
|
// />
|
186
|
-
import styled from '
|
187
|
-
import Spinner from '
|
188
|
-
import SearchInput from '
|
189
|
-
import InputText from '
|
179
|
+
import styled from 'vue3-styled-components'
|
180
|
+
import Spinner from '../spinner'
|
181
|
+
import SearchInput from '../inputs/searchInput'
|
182
|
+
import InputText from '../inputs/inputText'
|
183
|
+
import CollapseArrowIcon from '../../assets/icons/collapse_arrow_icon.svg'
|
184
|
+
import SubpositionMarkerIcon from '../../assets/icons/subposition_marker.svg'
|
190
185
|
|
191
186
|
const rowAttrs = { disabled: Boolean, isOpen: Boolean }
|
192
187
|
const DropdownRow = styled('div', rowAttrs)`
|
@@ -237,9 +232,8 @@ const ComponentContainer = styled('div', containerAttrs)`
|
|
237
232
|
padding: 5px 4px;
|
238
233
|
`
|
239
234
|
|
240
|
-
const ArrowDown = styled
|
235
|
+
const ArrowDown = styled(CollapseArrowIcon)`
|
241
236
|
width: 8px;
|
242
|
-
transform: rotate(0deg);
|
243
237
|
transition: transform 150ms ease;
|
244
238
|
`
|
245
239
|
|
@@ -403,9 +397,7 @@ const TextContainer = styled.div`
|
|
403
397
|
align-items: center;
|
404
398
|
`
|
405
399
|
|
406
|
-
const NestedIcon = styled
|
407
|
-
background-image: ${() =>
|
408
|
-
`url(${require('../../assets/icons/subposition_marker.svg')})`};
|
400
|
+
const NestedIcon = styled(SubpositionMarkerIcon)`
|
409
401
|
height: 10px;
|
410
402
|
width: 6px;
|
411
403
|
`
|
@@ -583,30 +575,28 @@ export default {
|
|
583
575
|
},
|
584
576
|
setDropdownWidth(options) {
|
585
577
|
this.dynamicWidth = []
|
586
|
-
|
587
|
-
|
578
|
+
|
579
|
+
options.forEach((item) => {
|
580
|
+
this.optionsDisplay.forEach((header, index) => {
|
588
581
|
let value =
|
589
582
|
header === 'template'
|
590
583
|
? this.$gettext('No main component template')
|
591
584
|
: item[header]
|
592
|
-
|
593
585
|
value = value ? value : ''
|
594
586
|
|
587
|
+
// Update dynamicWidth with the maximum value
|
595
588
|
if (
|
596
|
-
this.
|
597
|
-
|
598
|
-
value.length > this.dynamicWidth[index])
|
589
|
+
!this.dynamicWidth[index] ||
|
590
|
+
value.length > this.dynamicWidth[index]
|
599
591
|
) {
|
600
|
-
if (Array.isArray(this.dynamicGridWidth)) {
|
601
|
-
this.dynamicGridWidth[index] = value.length + 'ch'
|
602
|
-
}
|
603
592
|
this.dynamicWidth[index] = value.length
|
604
593
|
}
|
605
594
|
})
|
606
595
|
})
|
607
|
-
|
608
|
-
|
609
|
-
|
596
|
+
|
597
|
+
this.dynamicGridWidth = this.dynamicWidth
|
598
|
+
.map((width) => width + 'ch')
|
599
|
+
.join(' ')
|
610
600
|
}
|
611
601
|
},
|
612
602
|
computed: {
|
@@ -627,9 +617,12 @@ export default {
|
|
627
617
|
})
|
628
618
|
}
|
629
619
|
},
|
630
|
-
optionItems
|
631
|
-
|
632
|
-
|
620
|
+
optionItems: {
|
621
|
+
immediate: true,
|
622
|
+
handler(val) {
|
623
|
+
if (val && val.length) {
|
624
|
+
this.setDropdownWidth(val)
|
625
|
+
}
|
633
626
|
}
|
634
627
|
}
|
635
628
|
}
|
@@ -161,7 +161,7 @@
|
|
161
161
|
|
162
162
|
<script>
|
163
163
|
import draggable from "vuedraggable"
|
164
|
-
import styled from "
|
164
|
+
import styled from "vue3-styled-components"
|
165
165
|
import MainTable from "@/components/reusable-components/tables/MainTable"
|
166
166
|
import InputText from "@eturnity/eturnity_reusable_components/src/components/inputs/inputText"
|
167
167
|
import DeleteIcon from "@/components/reusable-components/DeleteIcon"
|
@@ -29,8 +29,12 @@
|
|
29
29
|
<script>
|
30
30
|
// ToDo: add this to storybook
|
31
31
|
// import MainTable from "@eturnity/eturnity_reusable_components/src/components/tables/mainTable"
|
32
|
-
import styled from '
|
32
|
+
import styled from 'vue3-styled-components'
|
33
33
|
import Spinner from '../../spinner'
|
34
|
+
import dragIconSvg from '../../../assets/icons/drag_icon.svg?url'
|
35
|
+
import subpositionIconSvg from '../../../assets/icons/subposition_icon.svg?url'
|
36
|
+
import arrowDownSvg from '../../../assets/icons/arrow_down.svg?url'
|
37
|
+
import arrowUpRedSvg from '../../../assets/icons/arrow_up_red.svg?url'
|
34
38
|
|
35
39
|
const pageContainerProps = {
|
36
40
|
tableHeight: String,
|
@@ -122,6 +126,7 @@ const TableContainer = styled('table', containerAttrs)`
|
|
122
126
|
background-color: ${(props) => props.theme.colors.white};
|
123
127
|
cursor: ${(props) => (props.tableCursor ? props.tableCursor : 'auto')};
|
124
128
|
|
129
|
+
.select-button,
|
125
130
|
.arrow-container,
|
126
131
|
.input-placeholder,
|
127
132
|
.table-dropdown-item {
|
@@ -322,8 +327,7 @@ const TableContainer = styled('table', containerAttrs)`
|
|
322
327
|
height: 16px;
|
323
328
|
cursor: grab;
|
324
329
|
background-position: center;
|
325
|
-
background-image: ${() =>
|
326
|
-
`url(${require('../../../assets/icons/drag_icon.svg')})`};
|
330
|
+
background-image: ${() => `url(${dragIconSvg})`};
|
327
331
|
|
328
332
|
&:active {
|
329
333
|
cursor: grabbing;
|
@@ -335,8 +339,7 @@ const TableContainer = styled('table', containerAttrs)`
|
|
335
339
|
height: 11px;
|
336
340
|
background: no-repeat;
|
337
341
|
margin-left: 10px;
|
338
|
-
background-image: ${() =>
|
339
|
-
`url(${require('../../../assets/icons/subposition_icon.svg')})`};
|
342
|
+
background-image: ${() => `url(${subpositionIconSvg})`};
|
340
343
|
}
|
341
344
|
|
342
345
|
.arrow-down {
|
@@ -344,8 +347,7 @@ const TableContainer = styled('table', containerAttrs)`
|
|
344
347
|
height: 11px;
|
345
348
|
background: no-repeat;
|
346
349
|
background-position: center;
|
347
|
-
background-image: ${() =>
|
348
|
-
`url(${require('../../../assets/icons/arrow_down.svg')})`};
|
350
|
+
background-image: ${() => `url(${arrowDownSvg})`};
|
349
351
|
}
|
350
352
|
|
351
353
|
.arrow-up {
|
@@ -353,8 +355,7 @@ const TableContainer = styled('table', containerAttrs)`
|
|
353
355
|
height: 11px;
|
354
356
|
background: no-repeat;
|
355
357
|
background-position: center;
|
356
|
-
background-image: ${() =>
|
357
|
-
`url(${require('../../../assets/icons/arrow_up_red.svg')})`};
|
358
|
+
background-image: ${() => `url(${arrowUpRedSvg})`};
|
358
359
|
}
|
359
360
|
}
|
360
361
|
|
@@ -29,7 +29,7 @@
|
|
29
29
|
</table-item>
|
30
30
|
<icons-container v-if="showIconsContainer">
|
31
31
|
<delete-icon
|
32
|
-
@click
|
32
|
+
@click="$emit('on-click-delete', index)"
|
33
33
|
color="gray"
|
34
34
|
/>
|
35
35
|
</icons-container>
|
@@ -45,7 +45,7 @@
|
|
45
45
|
// This is a read only table. Pass it data, and it displays it
|
46
46
|
// ToDo: add this to storybook
|
47
47
|
// import ViewTable from "@eturnity/eturnity_reusable_components/src/components/tables/viewTable"
|
48
|
-
import styled from '
|
48
|
+
import styled from 'vue3-styled-components'
|
49
49
|
import DeleteIcon from '../../deleteIcon'
|
50
50
|
import Spinner from '../../spinner'
|
51
51
|
|
@@ -1,108 +1,103 @@
|
|
1
1
|
<template>
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
// />
|
23
|
-
|
24
|
-
import styled from 'vue-styled-components'
|
25
|
-
import Icon from '../icon'
|
26
|
-
|
27
|
-
const wrapperAttrs = { width: String, height:String,fit:String }
|
28
|
-
const Wrapper = styled('div', wrapperAttrs)`
|
29
|
-
display: inline-block;
|
30
|
-
position: relative;
|
31
|
-
width:${props=>props.width};
|
32
|
-
height:${props=>props.height};
|
33
|
-
& img{
|
34
|
-
object-fit:${props=>props.fit};
|
35
|
-
width:${props=>props.width};
|
36
|
-
height:${props=>props.height};
|
37
|
-
}
|
38
|
-
`
|
39
|
-
const iconWrapper = styled('div')`
|
40
|
-
position: absolute;
|
41
|
-
top:0;
|
42
|
-
bottom:0;
|
43
|
-
left:0;
|
44
|
-
right:0;
|
45
|
-
display:flex;
|
46
|
-
justify-content:center;
|
47
|
-
align-items: center;
|
48
|
-
`
|
2
|
+
<wrapper :width="width" :height="height" :fit="fit">
|
3
|
+
<img :src="src" />
|
4
|
+
<iconWrapper>
|
5
|
+
<icon name="play" :size="playIconSize" :color="playIconColor" />
|
6
|
+
</iconWrapper>
|
7
|
+
</wrapper>
|
8
|
+
</template>
|
9
|
+
|
10
|
+
<script>
|
11
|
+
// import VideoThumbnail from "@eturnity/eturnity_reusable_components/src/components/videoThumbnail"
|
12
|
+
// How to use:
|
13
|
+
//<videoThumbnail src="https://musicart.xboxlive.com/6/cfaf1e9d-0000-0000-0000-000000000009/504/image.jpg?w=1920&h=1080"
|
14
|
+
// playIconColor="red"
|
15
|
+
// playIconSize="20px"
|
16
|
+
// width="400px"
|
17
|
+
// height="600px"
|
18
|
+
// />
|
19
|
+
|
20
|
+
import styled from 'vue3-styled-components'
|
21
|
+
import Icon from '../icon'
|
49
22
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
23
|
+
const wrapperAttrs = { width: String, height: String, fit: String }
|
24
|
+
const Wrapper = styled('div', wrapperAttrs)`
|
25
|
+
display: inline-block;
|
26
|
+
position: relative;
|
27
|
+
width: ${(props) => props.width};
|
28
|
+
height: ${(props) => props.height};
|
29
|
+
& img {
|
30
|
+
object-fit: ${(props) => props.fit};
|
31
|
+
width: ${(props) => props.width};
|
32
|
+
height: ${(props) => props.height};
|
33
|
+
}
|
34
|
+
`
|
35
|
+
const iconWrapper = styled('div')`
|
36
|
+
position: absolute;
|
37
|
+
top: 0;
|
38
|
+
bottom: 0;
|
39
|
+
left: 0;
|
40
|
+
right: 0;
|
41
|
+
display: flex;
|
42
|
+
justify-content: center;
|
43
|
+
align-items: center;
|
44
|
+
`
|
45
|
+
|
46
|
+
export default {
|
47
|
+
name: 'VideoThumbnail',
|
48
|
+
components: {
|
49
|
+
Wrapper,
|
50
|
+
Icon,
|
51
|
+
iconWrapper
|
52
|
+
},
|
53
|
+
props: {
|
54
|
+
src: {
|
55
|
+
required: true
|
56
56
|
},
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
},
|
61
|
-
fit:{
|
62
|
-
required: false,
|
63
|
-
default: 'cover'
|
64
|
-
},
|
65
|
-
width: {
|
66
|
-
required: false,
|
67
|
-
default: '300px'
|
68
|
-
},
|
69
|
-
height: {
|
70
|
-
required: false,
|
71
|
-
default: '200px'
|
72
|
-
},
|
73
|
-
playIconSize:{
|
74
|
-
required: false,
|
75
|
-
default: '50px'
|
76
|
-
},
|
77
|
-
playIconColor:{
|
78
|
-
required: false,
|
79
|
-
default: 'blue'
|
80
|
-
}
|
57
|
+
fit: {
|
58
|
+
required: false,
|
59
|
+
default: 'cover'
|
81
60
|
},
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
}
|
61
|
+
width: {
|
62
|
+
required: false,
|
63
|
+
default: '300px'
|
86
64
|
},
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
if (
|
91
|
-
this.$refs.dropdown.$el == event.target ||
|
92
|
-
this.$refs.dropdown.$el.contains(event.target)
|
93
|
-
) {
|
94
|
-
return
|
95
|
-
} else {
|
96
|
-
this.isOpenByClick=false
|
97
|
-
}
|
98
|
-
},
|
65
|
+
height: {
|
66
|
+
required: false,
|
67
|
+
default: '200px'
|
99
68
|
},
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
beforeDestroy() {
|
104
|
-
document.removeEventListener('click', this.clickOutside)
|
69
|
+
playIconSize: {
|
70
|
+
required: false,
|
71
|
+
default: '50px'
|
105
72
|
},
|
73
|
+
playIconColor: {
|
74
|
+
required: false,
|
75
|
+
default: 'blue'
|
76
|
+
}
|
77
|
+
},
|
78
|
+
data() {
|
79
|
+
return {
|
80
|
+
isOpenByClick: false
|
81
|
+
}
|
82
|
+
},
|
83
|
+
methods: {
|
84
|
+
clickOutside(event) {
|
85
|
+
if (this.openingMode != 'click') return
|
86
|
+
if (
|
87
|
+
this.$refs.dropdown.$el == event.target ||
|
88
|
+
this.$refs.dropdown.$el.contains(event.target)
|
89
|
+
) {
|
90
|
+
return
|
91
|
+
} else {
|
92
|
+
this.isOpenByClick = false
|
93
|
+
}
|
94
|
+
}
|
95
|
+
},
|
96
|
+
mounted() {
|
97
|
+
document.addEventListener('click', this.clickOutside)
|
98
|
+
},
|
99
|
+
beforeDestroy() {
|
100
|
+
document.removeEventListener('click', this.clickOutside)
|
106
101
|
}
|
107
|
-
|
108
|
-
|
102
|
+
}
|
103
|
+
</script>
|
package/src/main.js
CHANGED
@@ -1,13 +1,6 @@
|
|
1
|
-
import
|
2
|
-
import
|
3
|
-
import VueCompositionAPI from "@vue/composition-api"
|
4
|
-
import vClickOutside from 'v-click-outside'
|
1
|
+
import App from './App.vue'
|
2
|
+
import { createApp } from 'vue'
|
5
3
|
|
6
|
-
|
4
|
+
const app = createApp(App)
|
7
5
|
|
8
|
-
|
9
|
-
Vue.use(vClickOutside)
|
10
|
-
|
11
|
-
new Vue({
|
12
|
-
render: (h) => h(App),
|
13
|
-
}).$mount("#app")
|
6
|
+
app.mount('#app')
|
@@ -1,4 +0,0 @@
|
|
1
|
-
<svg width="15" height="9" viewBox="0 0 15 9" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M14.462 8.46H12.894C12.7848 8.46 12.697 8.4327 12.6307 8.37809C12.5683 8.32349 12.5176 8.26108 12.4786 8.19087L10.5186 4.94378C10.4874 5.04129 10.4504 5.12514 10.4075 5.19535L8.52943 8.19087C8.48263 8.25718 8.42802 8.31958 8.36562 8.37809C8.30711 8.4327 8.2291 8.46 8.13159 8.46H6.66309L9.47138 4.10714L6.77425 0H8.34221C8.45143 0 8.52943 0.0156017 8.57624 0.0468051C8.62694 0.0741079 8.67375 0.120913 8.71665 0.18722L10.6415 3.28805C10.6805 3.19054 10.7273 3.09303 10.7819 2.99552L12.5488 0.216473C12.5917 0.142365 12.6385 0.0877595 12.6892 0.052656C12.7399 0.017552 12.8043 0 12.8823 0H14.3859L11.6654 4.04278L14.462 8.46Z" fill="#263238"/>
|
3
|
-
<path d="M3.16519 7.23137C3.45772 7.23137 3.70344 7.19627 3.90237 7.12606C4.10129 7.05585 4.25925 6.96224 4.37627 6.84523C4.49718 6.72822 4.58299 6.5917 4.63369 6.43569C4.6883 6.27967 4.7156 6.1139 4.7156 5.93838C4.7156 5.75506 4.68635 5.59124 4.62784 5.44693C4.56934 5.29871 4.47768 5.1739 4.35286 5.07249C4.22805 4.96718 4.06618 4.88722 3.86726 4.83261C3.67224 4.77801 3.43627 4.75071 3.15934 4.75071H1.57382V7.23137H3.16519ZM1.57382 1.21693V3.66249H2.82585C3.36411 3.66249 3.76975 3.56498 4.04278 3.36996C4.31971 3.17494 4.45817 2.86486 4.45817 2.43971C4.45817 1.99896 4.33336 1.68498 4.08373 1.49776C3.83411 1.31054 3.44407 1.21693 2.91361 1.21693H1.57382ZM2.91361 0C3.46747 0 3.94137 0.0526557 4.33531 0.157967C4.72925 0.263278 5.05104 0.413444 5.30066 0.608465C5.55419 0.803486 5.73946 1.03946 5.85647 1.31639C5.97349 1.59332 6.03199 1.90535 6.03199 2.25249C6.03199 2.45141 6.00274 2.64253 5.94423 2.82585C5.88573 3.00527 5.79407 3.17494 5.66925 3.33485C5.54834 3.49087 5.39232 3.63324 5.2012 3.76195C5.01398 3.89066 4.78971 3.99988 4.52838 4.08959C5.69071 4.35091 6.27187 4.97888 6.27187 5.97349C6.27187 6.33232 6.20361 6.66386 6.0671 6.96809C5.93058 7.27232 5.73166 7.5356 5.47033 7.75793C5.209 7.97635 4.88722 8.14797 4.50498 8.27278C4.12274 8.39759 3.68589 8.46 3.19444 8.46H0V0H2.91361Z" fill="#263238"/>
|
4
|
-
</svg>
|
@@ -1,3 +0,0 @@
|
|
1
|
-
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M16 0H2C0.89 0 0 0.9 0 2V16C0 17.1 0.89 18 2 18H6V16H2V2H16V16H12V18H16C17.1 18 18 17.1 18 16V2C18 0.9 17.11 0 16 0ZM9 6L5 10H8V18H10V10H13L9 6Z" fill="#263238"/>
|
3
|
-
</svg>
|