@eturnity/eturnity_reusable_components 7.48.1-EPDM-12680.26 → 7.48.1-EPDM-4900.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/package.json +3 -2
- package/src/components/buttons/buttonIcon/index.vue +1 -3
- package/src/components/buttons/mainButton/index.vue +1 -15
- package/src/components/icon/index.vue +0 -1
- package/src/components/infoText/index.vue +11 -38
- package/src/components/inputs/checkbox/index.vue +1 -1
- package/src/components/inputs/inputNumber/index.vue +12 -200
- package/src/components/inputs/inputText/index.vue +2 -23
- package/src/components/inputs/radioButton/index.vue +6 -27
- package/src/components/inputs/select/index.vue +21 -69
- package/src/components/inputs/select/option/index.vue +2 -11
- package/src/components/markerItem/index.vue +1 -8
- package/src/components/spinner/index.vue +0 -11
- package/src/assets/gifs/spinner.gif +0 -0
- package/src/assets/svgIcons/checkmark.svg +0 -3
- package/src/assets/svgIcons/collapse_all.svg +0 -4
- package/src/assets/svgIcons/expand_all.svg +0 -4
- package/src/assets/svgIcons/export_document.svg +0 -3
- package/src/assets/svgIcons/hybrid.svg +0 -4
- package/src/assets/svgIcons/module.svg +0 -3
- package/src/assets/svgIcons/move_down.svg +0 -3
- package/src/assets/svgIcons/move_up.svg +0 -3
- package/src/assets/svgIcons/optimizer.svg +0 -6
- package/src/assets/svgIcons/string_design.svg +0 -5
- package/src/assets/svgIcons/string_directions.svg +0 -10
- package/src/components/banner/notificationBanner/index.vue +0 -131
- package/src/components/spinnerGif/index.vue +0 -98
- package/src/components/stringDesign/DropdownMenu/index.vue +0 -900
@@ -31,10 +31,8 @@
|
|
31
31
|
<InputContainer
|
32
32
|
ref="inputElement"
|
33
33
|
:background-color="backgroundColor"
|
34
|
-
:border-color="borderColor"
|
35
34
|
:data-id="inputDataId"
|
36
35
|
data-test-id="input"
|
37
|
-
:default-padding="defaultPadding"
|
38
36
|
:disabled="disabled"
|
39
37
|
:disabled-background-color="disabledBackgroundColor"
|
40
38
|
:font-color="fontColor"
|
@@ -66,13 +64,6 @@
|
|
66
64
|
<IconWrapper v-if="hasError" data-test-id="error_wrapper" size="16px">
|
67
65
|
<Icon cursor="default" name="warning" size="16px" />
|
68
66
|
</IconWrapper>
|
69
|
-
<IconWrapper
|
70
|
-
v-if="iconName && !hasError && inputType !== 'password'"
|
71
|
-
:default-padding="defaultPadding"
|
72
|
-
size="16px"
|
73
|
-
>
|
74
|
-
<Icon color="white" cursor="default" :name="iconName" size="16px" />
|
75
|
-
</IconWrapper>
|
76
67
|
</IconContainer>
|
77
68
|
<ErrorMessage
|
78
69
|
v-if="hasError && hasErrorMessage"
|
@@ -140,7 +131,6 @@
|
|
140
131
|
borderColor: String,
|
141
132
|
inputHeight: String,
|
142
133
|
disabledBackgroundColor: String,
|
143
|
-
defaultPadding: Boolean,
|
144
134
|
}
|
145
135
|
const InputContainer = styled('input', inputProps)`
|
146
136
|
border: ${(props) =>
|
@@ -158,8 +148,6 @@
|
|
158
148
|
? '11px 25px 11px 10px'
|
159
149
|
: props.inputType === 'password'
|
160
150
|
? '11px 25px 11px 10px'
|
161
|
-
: props.defaultPadding
|
162
|
-
? '10px 35px 10px 15px'
|
163
151
|
: '11px 5px 11px 10px'};
|
164
152
|
border-radius: 4px;
|
165
153
|
position: relative;
|
@@ -206,13 +194,13 @@
|
|
206
194
|
props.alignItems === 'vertical' || !props.hasLabel ? '1fr' : 'auto 1fr'};
|
207
195
|
`
|
208
196
|
|
209
|
-
const IconAttrs = { size: String
|
197
|
+
const IconAttrs = { size: String }
|
210
198
|
const IconWrapper = styled('div', IconAttrs)`
|
211
199
|
position: absolute;
|
212
200
|
top: 0;
|
213
201
|
bottom: 0;
|
214
202
|
margin: auto;
|
215
|
-
right:
|
203
|
+
right: 5px;
|
216
204
|
height: ${(props) => (props.size ? props.size : 'auto')};
|
217
205
|
`
|
218
206
|
|
@@ -376,15 +364,6 @@
|
|
376
364
|
default: '',
|
377
365
|
type: String,
|
378
366
|
},
|
379
|
-
iconName: {
|
380
|
-
required: false,
|
381
|
-
default: null,
|
382
|
-
type: String,
|
383
|
-
},
|
384
|
-
defaultPadding: {
|
385
|
-
required: false,
|
386
|
-
default: false,
|
387
|
-
},
|
388
367
|
},
|
389
368
|
data() {
|
390
369
|
return {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
<template>
|
2
|
-
<ComponentWrapper :
|
2
|
+
<ComponentWrapper :layout="layout">
|
3
3
|
<RadioWrapper
|
4
4
|
v-for="(item, index) in options"
|
5
5
|
:key="item.value"
|
@@ -7,9 +7,7 @@
|
|
7
7
|
>
|
8
8
|
<LabelContainer
|
9
9
|
:checkmark-color="checkmarkColor"
|
10
|
-
:color-mode="colorMode"
|
11
10
|
:has-label="!!item.label"
|
12
|
-
:has-slots="!!$slots[`input-${item.value}`]"
|
13
11
|
:is-checked="selectedOption === item.value"
|
14
12
|
:is-disabled="item.disabled"
|
15
13
|
:size="size"
|
@@ -27,7 +25,6 @@
|
|
27
25
|
<span class="checkmark"></span>
|
28
26
|
<LabelText
|
29
27
|
v-if="item.label"
|
30
|
-
:color-mode="colorMode"
|
31
28
|
:data-test-id="'radioLabel_' + item.value"
|
32
29
|
:is-disabled="item.disabled"
|
33
30
|
>
|
@@ -39,7 +36,6 @@
|
|
39
36
|
size="16px"
|
40
37
|
:text="item.infoText"
|
41
38
|
/>
|
42
|
-
<slot :name="`input-${item.value}`"></slot>
|
43
39
|
</LabelContainer>
|
44
40
|
<ImageContainer v-if="item.img">
|
45
41
|
<RadioImage
|
@@ -99,14 +95,12 @@
|
|
99
95
|
|
100
96
|
const wrapperProps = {
|
101
97
|
layout: String,
|
102
|
-
colorMode: String,
|
103
98
|
}
|
104
99
|
const ComponentWrapper = styled('div', wrapperProps)`
|
105
100
|
display: flex;
|
106
101
|
flex-direction: ${(props) =>
|
107
102
|
props.layout === 'vertical' ? 'column' : 'row'};
|
108
|
-
grid-gap:
|
109
|
-
props.colorMode === 'transparent' ? '16px 5px' : '10px 5px'};
|
103
|
+
grid-gap: 10px 5px;
|
110
104
|
flex-wrap: wrap;
|
111
105
|
`
|
112
106
|
|
@@ -129,20 +123,14 @@
|
|
129
123
|
isChecked: Boolean,
|
130
124
|
checkmarkColor: String,
|
131
125
|
hasLabel: Boolean,
|
132
|
-
colorMode: String,
|
133
|
-
hasSlots: Boolean,
|
134
126
|
}
|
135
127
|
const LabelContainer = styled('label', containerProps)`
|
136
128
|
display: grid;
|
137
129
|
grid-template-columns: auto 1fr auto;
|
138
|
-
grid-gap: ${(props) => (props.hasLabel
|
130
|
+
grid-gap: ${(props) => (props.hasLabel ? '15px' : 0)};
|
139
131
|
align-items: center;
|
140
132
|
color: ${(props) =>
|
141
|
-
props.isDisabled
|
142
|
-
? props.theme.colors.grey2
|
143
|
-
: props.colorMode === 'transparent'
|
144
|
-
? props.theme.colors.white
|
145
|
-
: props.theme.colors.black};
|
133
|
+
props.isDisabled ? props.theme.colors.grey2 : props.theme.colors.black};
|
146
134
|
position: relative;
|
147
135
|
cursor: ${(props) => (props.isDisabled ? 'not-allowed' : 'pointer')};
|
148
136
|
font-size: ${(props) =>
|
@@ -199,14 +187,10 @@
|
|
199
187
|
}
|
200
188
|
`
|
201
189
|
|
202
|
-
const textAttrs = { isDisabled: Boolean
|
190
|
+
const textAttrs = { isDisabled: Boolean }
|
203
191
|
const LabelText = styled('div', textAttrs)`
|
204
192
|
color: ${(props) =>
|
205
|
-
props.isDisabled
|
206
|
-
? props.theme.colors.grey2
|
207
|
-
: props.colorMode === 'transparent'
|
208
|
-
? props.theme.colors.white
|
209
|
-
: props.theme.colors.black};
|
193
|
+
props.isDisabled ? props.theme.colors.grey2 : props.theme.colors.black};
|
210
194
|
`
|
211
195
|
|
212
196
|
const RadioImage = styled.img`
|
@@ -296,11 +280,6 @@
|
|
296
280
|
required: false,
|
297
281
|
type: String,
|
298
282
|
},
|
299
|
-
colorMode: {
|
300
|
-
default: '',
|
301
|
-
required: false,
|
302
|
-
type: String,
|
303
|
-
},
|
304
283
|
},
|
305
284
|
emits: ['on-radio-change'],
|
306
285
|
data() {
|
@@ -17,9 +17,7 @@
|
|
17
17
|
>
|
18
18
|
<InputLabel
|
19
19
|
:font-color="
|
20
|
-
labelFontColor || colorMode == 'dark'
|
21
|
-
? 'white'
|
22
|
-
: 'eturnityGrey'
|
20
|
+
labelFontColor || colorMode == 'dark' ? 'white' : 'eturnityGrey'
|
23
21
|
"
|
24
22
|
:font-size="fontSize"
|
25
23
|
>{{ label }}
|
@@ -42,26 +40,18 @@
|
|
42
40
|
<SelectButton
|
43
41
|
ref="select"
|
44
42
|
:bg-color="
|
45
|
-
buttonBgColor || colorMode == 'dark'
|
46
|
-
? 'transparentBlack1'
|
47
|
-
: colorMode == 'transparent'
|
48
|
-
? 'transparent'
|
49
|
-
: 'white'
|
43
|
+
buttonBgColor || colorMode == 'dark' ? 'transparentBlack1' : 'white'
|
50
44
|
"
|
51
45
|
class="select-button"
|
52
|
-
:color-mode="colorMode"
|
53
46
|
:data-id="dataId"
|
54
47
|
:disabled="disabled"
|
55
48
|
:font-color="
|
56
|
-
buttonFontColor || colorMode == 'dark'
|
57
|
-
? 'white'
|
58
|
-
: 'black'
|
49
|
+
buttonFontColor || colorMode == 'dark' ? 'white' : 'black'
|
59
50
|
"
|
60
51
|
:font-size="fontSize"
|
61
52
|
:has-error="hasError"
|
62
53
|
:has-no-padding="isSearchBarVisible || !hasSelectButtonPadding"
|
63
54
|
:height="height"
|
64
|
-
:is-search-bar-visible="isSearchBarVisible"
|
65
55
|
:no-relative="noRelative"
|
66
56
|
:padding-left="paddingLeft"
|
67
57
|
:select-height="selectHeight"
|
@@ -82,11 +72,7 @@
|
|
82
72
|
ref="searchInput"
|
83
73
|
background-color="transparent"
|
84
74
|
:font-color="
|
85
|
-
buttonFontColor ||
|
86
|
-
colorMode == 'dark' ||
|
87
|
-
colorMode == 'transparent'
|
88
|
-
? 'white'
|
89
|
-
: 'black'
|
75
|
+
buttonFontColor || colorMode == 'dark' ? 'white' : 'black'
|
90
76
|
"
|
91
77
|
:font-size="fontSize"
|
92
78
|
input-height="34px"
|
@@ -106,30 +92,26 @@
|
|
106
92
|
>
|
107
93
|
<slot name="selector" :selected-value="selectedValue"></slot>
|
108
94
|
</Selector>
|
109
|
-
<Caret
|
110
|
-
class="caret_dropdown"
|
111
|
-
:color-mode="colorMode"
|
112
|
-
@click.stop="toggleCaretDropdown"
|
113
|
-
>
|
95
|
+
<Caret class="caret_dropdown" @click.stop="toggleCaretDropdown">
|
114
96
|
<Icon
|
115
97
|
v-if="isDropdownOpen"
|
116
98
|
:color="
|
117
|
-
caretColor || colorMode == 'dark'
|
99
|
+
caretColor || colorMode == 'dark'
|
118
100
|
? 'white'
|
119
101
|
: 'transparentBlack1'
|
120
102
|
"
|
121
103
|
name="arrow_up"
|
122
|
-
|
104
|
+
size="12px"
|
123
105
|
/>
|
124
106
|
<Icon
|
125
107
|
v-else
|
126
108
|
:color="
|
127
|
-
caretColor || colorMode == 'dark'
|
109
|
+
caretColor || colorMode == 'dark'
|
128
110
|
? 'white'
|
129
111
|
: 'transparentBlack1'
|
130
112
|
"
|
131
113
|
name="arrow_down"
|
132
|
-
|
114
|
+
size="12px"
|
133
115
|
/>
|
134
116
|
</Caret>
|
135
117
|
</SelectButton>
|
@@ -139,27 +121,15 @@
|
|
139
121
|
v-show="isSelectDropdownShown"
|
140
122
|
ref="dropdown"
|
141
123
|
:bg-color="
|
142
|
-
dropdownBgColor ||
|
143
|
-
colorMode == 'dark' ||
|
144
|
-
colorMode == 'transparent'
|
145
|
-
? 'black'
|
146
|
-
: 'white'
|
124
|
+
dropdownBgColor || colorMode == 'dark' ? 'black' : 'white'
|
147
125
|
"
|
148
126
|
:dropdown-position="dropdownPosition"
|
149
127
|
:font-color="
|
150
|
-
dropdownFontColor ||
|
151
|
-
colorMode == 'dark' ||
|
152
|
-
colorMode == 'transparent'
|
153
|
-
? 'white'
|
154
|
-
: 'black'
|
128
|
+
dropdownFontColor || colorMode == 'dark' ? 'white' : 'black'
|
155
129
|
"
|
156
130
|
:font-size="fontSize"
|
157
131
|
:hovered-bg-color="
|
158
|
-
colorMode == 'dark'
|
159
|
-
? '#000000'
|
160
|
-
: colorMode == 'transparent'
|
161
|
-
? 'grey6'
|
162
|
-
: dropdownBgColor
|
132
|
+
colorMode == 'dark' ? '#000000' : dropdownBgColor
|
163
133
|
"
|
164
134
|
:hovered-index="hoveredIndex"
|
165
135
|
:hovered-value="hoveredValue"
|
@@ -216,15 +186,12 @@
|
|
216
186
|
const CARET_WIDTH = '30px'
|
217
187
|
const BORDER_WIDTH = '1px'
|
218
188
|
|
219
|
-
const
|
220
|
-
const Caret = styled('div', CaretAttrs)`
|
189
|
+
const Caret = styled.div`
|
221
190
|
display: flex;
|
222
191
|
align-items: center;
|
223
192
|
justify-content: center;
|
224
|
-
width: ${
|
225
|
-
|
226
|
-
min-width: ${(props) =>
|
227
|
-
props.colorMode === 'transparent' ? '15px' : CARET_WIDTH};
|
193
|
+
width: ${CARET_WIDTH};
|
194
|
+
min-width: ${CARET_WIDTH};
|
228
195
|
height: 100%;
|
229
196
|
align-items: center;
|
230
197
|
cursor: pointer;
|
@@ -263,7 +230,6 @@
|
|
263
230
|
`
|
264
231
|
const OptionalLabel = styled.span`
|
265
232
|
font-weight: 300;
|
266
|
-
text-transform: lowercase;
|
267
233
|
`
|
268
234
|
const inputProps = {
|
269
235
|
selectWidth: String,
|
@@ -308,8 +274,6 @@
|
|
308
274
|
noRelative: Boolean,
|
309
275
|
tablePaddingLeft: String,
|
310
276
|
showDisabledBackground: Boolean,
|
311
|
-
colorMode: String,
|
312
|
-
isSearchBarVisible: Boolean,
|
313
277
|
}
|
314
278
|
const SelectButton = styled('div', selectButtonAttrs)`
|
315
279
|
position: ${(props) => (props.noRelative ? 'static' : 'relative')};
|
@@ -317,11 +281,7 @@
|
|
317
281
|
border-radius: 4px;
|
318
282
|
max-width: ${(props) => (props.selectWidth ? props.selectWidth : '100%')};
|
319
283
|
${(props) =>
|
320
|
-
props.
|
321
|
-
? props.isSearchBarVisible
|
322
|
-
? 'padding: 10px 15px 10px 5px;'
|
323
|
-
: 'padding: 10px 15px;'
|
324
|
-
: props.isSearchBarVisible
|
284
|
+
props.isSearchBarVisible
|
325
285
|
? ''
|
326
286
|
: `padding-left: ${
|
327
287
|
props.hasNoPadding
|
@@ -349,22 +309,14 @@
|
|
349
309
|
hasError ? theme.colors.red : theme.colors.grey4
|
350
310
|
}
|
351
311
|
`}
|
352
|
-
|
353
|
-
props.
|
354
|
-
|
355
|
-
props.colorMode === 'transparent'
|
356
|
-
? 'transparent'
|
357
|
-
: props.disabled && props.showDisabledBackground
|
358
|
-
? props.theme.colors.disabled
|
312
|
+
background-color:${(props) =>
|
313
|
+
props.disabled && props.showDisabledBackground
|
314
|
+
? props.theme.colors.grey5
|
359
315
|
: props.theme.colors[props.bgColor]
|
360
316
|
? props.theme.colors[props.bgColor]
|
361
317
|
: props.bgColor};
|
362
318
|
color: ${(props) =>
|
363
|
-
props.
|
364
|
-
? props.theme.colors.white
|
365
|
-
: props.disabled && props.showDisabledBackground
|
366
|
-
? props.theme.colors.black
|
367
|
-
: props.theme.colors[props.fontColor]
|
319
|
+
props.theme.colors[props.fontColor]
|
368
320
|
? props.theme.colors[props.fontColor]
|
369
321
|
: props.fontColor};
|
370
322
|
${(props) => (props.disabled ? 'pointer-events: none' : '')};
|
@@ -661,7 +613,7 @@
|
|
661
613
|
if (this.isDropdownOpen) {
|
662
614
|
return this.$refs.dropdown.$el.childElementCount > 1
|
663
615
|
? this.$refs.dropdown.$el.childElementCount
|
664
|
-
: this.$refs.dropdown.$el.children[0]
|
616
|
+
: !!this.$refs.dropdown.$el.children[0]
|
665
617
|
? this.$refs.dropdown.$el.children[0].childElementCount
|
666
618
|
: 0
|
667
619
|
}
|
@@ -1,12 +1,6 @@
|
|
1
1
|
<template>
|
2
2
|
<OptionContainer
|
3
|
-
:background-color="
|
4
|
-
colorMode == 'dark'
|
5
|
-
? '#000000'
|
6
|
-
: colorMode == 'transparent'
|
7
|
-
? 'black'
|
8
|
-
: backgroundColor
|
9
|
-
"
|
3
|
+
:background-color="colorMode == 'dark' ? '#000000' : backgroundColor"
|
10
4
|
:cursor-type="cursorType"
|
11
5
|
:data-value="value"
|
12
6
|
:disabled-bg-color="disabledBgColor"
|
@@ -14,8 +8,6 @@
|
|
14
8
|
:hovered-bg-color="
|
15
9
|
colorMode == 'dark'
|
16
10
|
? '#000000'
|
17
|
-
: colorMode == 'transparent'
|
18
|
-
? 'grey6'
|
19
11
|
: hoveredBgColor
|
20
12
|
? hoveredBgColor
|
21
13
|
: 'grey5'
|
@@ -138,8 +130,7 @@
|
|
138
130
|
default: '12px 10px',
|
139
131
|
},
|
140
132
|
textColor: {
|
141
|
-
type:
|
142
|
-
required: false,
|
133
|
+
type: true,
|
143
134
|
default: 'inherit',
|
144
135
|
},
|
145
136
|
},
|
@@ -12,7 +12,7 @@
|
|
12
12
|
:name="iconName"
|
13
13
|
size="10px"
|
14
14
|
/>
|
15
|
-
<span
|
15
|
+
<span>{{ label }}</span>
|
16
16
|
</MarkerContainer>
|
17
17
|
</PageContainer>
|
18
18
|
</template>
|
@@ -60,13 +60,6 @@
|
|
60
60
|
border-radius: 4px;
|
61
61
|
white-space: nowrap;
|
62
62
|
cursor: ${(props) => (props.isEditionAllowed ? 'pointer' : props.cursor)};
|
63
|
-
overflow: hidden;
|
64
|
-
text-overflow: ellipsis;
|
65
|
-
|
66
|
-
span {
|
67
|
-
overflow: hidden;
|
68
|
-
text-overflow: ellipsis;
|
69
|
-
}
|
70
63
|
`
|
71
64
|
|
72
65
|
export default {
|
@@ -3,7 +3,6 @@
|
|
3
3
|
<Container>
|
4
4
|
<SpinnerWrapper data-test-id="spinner_full_wrapper">
|
5
5
|
<SpinnerSvg
|
6
|
-
:class="{ white: isWhite }"
|
7
6
|
data-test-id="spinner_full_icon"
|
8
7
|
:style="{ width: size, height: size }"
|
9
8
|
/>
|
@@ -17,7 +16,6 @@
|
|
17
16
|
>
|
18
17
|
<SpinnerWrapper data-test-id="spinner_wrapper">
|
19
18
|
<SpinnerSvg
|
20
|
-
:class="{ white: isWhite }"
|
21
19
|
data-test-id="spinner_icon"
|
22
20
|
:style="{ width: size, height: size }"
|
23
21
|
/>
|
@@ -56,10 +54,6 @@
|
|
56
54
|
const SpinnerWrapper = styled.div`
|
57
55
|
width: ${(props) => (props.size ? props.size : '60px')};
|
58
56
|
height: auto;
|
59
|
-
|
60
|
-
.white {
|
61
|
-
filter: brightness(0) invert(1);
|
62
|
-
}
|
63
57
|
`
|
64
58
|
|
65
59
|
export default {
|
@@ -86,11 +80,6 @@
|
|
86
80
|
default: '60px',
|
87
81
|
type: String,
|
88
82
|
},
|
89
|
-
isWhite: {
|
90
|
-
required: false,
|
91
|
-
default: false,
|
92
|
-
type: Boolean,
|
93
|
-
},
|
94
83
|
},
|
95
84
|
}
|
96
85
|
</script>
|
Binary file
|
@@ -1,3 +0,0 @@
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M17.0686 17.0686C20.9771 13.1601 20.9771 6.83992 17.0686 2.93139C13.1601 -0.977131 6.83992 -0.977131 2.93139 2.93139C-0.977131 6.83992 -0.977131 13.1601 2.93139 17.0686C6.83992 20.9771 13.1601 20.9771 17.0686 17.0686ZM6.42412 8.50312L8.66944 10.7484L13.5759 5.842L15.3222 7.58836L10.4158 12.4948L8.66944 14.158L6.92308 12.4948L4.67775 10.2495L6.42412 8.50312Z" fill="white"/>
|
3
|
-
</svg>
|
@@ -1,4 +0,0 @@
|
|
1
|
-
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.99998 1.20459L11.3818 4.49095L10.6182 5.50914L6.99998 2.7955L3.3818 5.50914L2.61816 4.49095L6.99998 1.20459Z" fill="#263238"/>
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.99998 12.7954L11.3818 9.50905L10.6182 8.49086L6.99998 11.2045L3.3818 8.49086L2.61816 9.50905L6.99998 12.7954Z" fill="#263238"/>
|
4
|
-
</svg>
|
@@ -1,3 +0,0 @@
|
|
1
|
-
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M0.75 0H8.33405L11.7467 3.41264V6.7202H10.5248V4.88741H6.85927V1.22185H1.97185V12.2185H5.63741V13.4404H0.75V0ZM8.08112 1.47478V3.66556H10.2719L8.08112 1.47478ZM10.5554 7.99581L13.5233 10.9979L10.5554 14L9.68664 13.141L11.2017 11.6088H6.85805V10.387H11.2017L9.68664 8.85477L10.5554 7.99581Z" fill="#0D0D0D"/>
|
3
|
-
</svg>
|
@@ -1,4 +0,0 @@
|
|
1
|
-
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.22998 11.8962H10.5006H12.2505V10.1463V8.97906H14.0004V5.47917H12.2505V4.31283V2.56289V2.55151H10.5006V2.56289H8.58218L7.76617 4.31283H10.5006V10.1463H5.04599L4.22998 11.8962Z" fill="white"/>
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.2622 4.79738C6.91629 4.63687 6.53076 4.54729 6.12431 4.54729C4.63054 4.54729 3.41919 5.75796 3.41919 7.25241C3.41919 8.33588 4.05591 9.26984 4.97534 9.70158L7.2622 4.79738ZM5.44786 3.11681C5.44786 3.49042 5.7507 3.79326 6.12431 3.79326C6.49793 3.79326 6.80077 3.49042 6.80077 3.11681V1.76459C6.80077 1.39097 6.49793 1.08813 6.12431 1.08813C5.7507 1.08813 5.44786 1.39097 5.44786 1.76459V3.11681ZM2.02818 7.88939H0.675962C0.302349 7.88939 -0.000488281 7.58655 -0.000488281 7.21294C-0.000488281 6.83932 0.302349 6.53649 0.675962 6.53649H2.02818C2.4018 6.53649 2.70463 6.83932 2.70463 7.21294C2.70463 7.58655 2.4018 7.88939 2.02818 7.88939ZM3.7057 10.5877L2.74955 11.5439C2.4855 11.8079 2.05745 11.8079 1.7934 11.5439C1.52935 11.2798 1.52935 10.8518 1.7934 10.5877L2.74955 9.63155C3.0136 9.36751 3.44165 9.36751 3.7057 9.63155C3.96975 9.8956 3.96975 10.3237 3.7057 10.5877ZM2.74955 4.79432L1.7934 3.83817C1.52935 3.57412 1.52935 3.14607 1.7934 2.88202C2.05745 2.61797 2.4855 2.61797 2.74955 2.88202L3.7057 3.83817C3.96975 4.10222 3.96975 4.53027 3.7057 4.79432C3.44165 5.05837 3.0136 5.05837 2.74955 4.79432Z" fill="white"/>
|
4
|
-
</svg>
|
@@ -1,3 +0,0 @@
|
|
1
|
-
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.0722 3.6H1.6V10.4H11.0722L7.87332 7.60217L7.18484 7L7.87332 6.39783L11.0722 3.6ZM12.4 9.43572V4.56428L9.61516 7L12.4 9.43572ZM0 2H1.6H12.4H14V3.6V10.4V12H12.4H1.6H0V10.4V3.6V2Z" fill="white"/>
|
3
|
-
</svg>
|
@@ -1,6 +0,0 @@
|
|
1
|
-
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<rect x="3.11079" y="3.10981" width="7.77778" height="7.77778" stroke="white" stroke-width="1.55556"/>
|
3
|
-
<line x1="3.72749" y1="10.3387" x2="10.7275" y2="3.3387" stroke="white" stroke-width="1.55556"/>
|
4
|
-
<line x1="-0.000366211" y1="7.05425" x2="2.99963" y2="7.05425" stroke="white" stroke-width="1.55556"/>
|
5
|
-
<line x1="10.9994" y1="6.99957" x2="13.9994" y2="6.99957" stroke="white" stroke-width="1.55556"/>
|
6
|
-
</svg>
|
@@ -1,5 +0,0 @@
|
|
1
|
-
<svg width="10" height="11" viewBox="0 0 10 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M2.85714 1.92857C2.85714 2.71755 2.21755 3.35714 1.42857 3.35714C0.639593 3.35714 0 2.71755 0 1.92857C0 1.13959 0.639593 0.5 1.42857 0.5C2.21755 0.5 2.85714 1.13959 2.85714 1.92857Z" fill="white"/>
|
3
|
-
<path d="M10 9.07143C10 9.86041 9.36041 10.5 8.57143 10.5C7.78245 10.5 7.14286 9.86041 7.14286 9.07143C7.14286 8.28245 7.78245 7.64286 8.57143 7.64286C9.36041 7.64286 10 8.28245 10 9.07143Z" fill="white"/>
|
4
|
-
<path d="M5.71429 3C5.71429 2.40827 6.19398 1.92857 6.78571 1.92857C7.37745 1.92857 7.85714 2.40827 7.85714 3V6.21429H9.28571V3C9.28571 1.61929 8.16643 0.5 6.78571 0.5C5.405 0.5 4.28571 1.61929 4.28571 3V8C4.28571 8.59173 3.80602 9.07143 3.21429 9.07143C2.62255 9.07143 2.14286 8.59173 2.14286 8V4.78571H0.714286V8C0.714286 9.38071 1.83357 10.5 3.21429 10.5C4.595 10.5 5.71429 9.38071 5.71429 8V3Z" fill="white"/>
|
5
|
-
</svg>
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<svg width="30" height="30" viewBox="8 8 14 14" fill="#263238" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_908_47480)" fill="#263238">
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.5 19.75V8.5H9.5V19.75C9.5 20.1642 9.83579 20.5 10.25 20.5C10.6642 20.5 11 20.1642 11 19.75V10.25C11 9.2835 11.7835 8.5 12.75 8.5C13.7165 8.5 14.5 9.2835 14.5 10.25V21.5H13.5V10.25C13.5 9.83579 13.1642 9.5 12.75 9.5C12.3358 9.5 12 9.83579 12 10.25V19.75C12 20.7165 11.2165 21.5 10.25 21.5C9.2835 21.5 8.5 20.7165 8.5 19.75ZM20 9.5H15.5V8.5H20C20.8284 8.5 21.5 9.17157 21.5 10C21.5 10.8284 20.8284 11.5 20 11.5H17C16.7239 11.5 16.5 11.7239 16.5 12C16.5 12.2761 16.7239 12.5 17 12.5H20C20.8284 12.5 21.5 13.1716 21.5 14C21.5 14.8284 20.8284 15.5 20 15.5H17C16.7239 15.5 16.5 15.7239 16.5 16C16.5 16.2761 16.7239 16.5 17 16.5H20C20.8284 16.5 21.5 17.1716 21.5 18C21.5 18.8284 20.8284 19.5 20 19.5H17C16.7239 19.5 16.5 19.7239 16.5 20C16.5 20.2761 16.7239 20.5 17 20.5H21.5V21.5H17C16.1716 21.5 15.5 20.8284 15.5 20C15.5 19.1716 16.1716 18.5 17 18.5H20C20.2761 18.5 20.5 18.2761 20.5 18C20.5 17.7239 20.2761 17.5 20 17.5H17C16.1716 17.5 15.5 16.8284 15.5 16C15.5 15.1716 16.1716 14.5 17 14.5H20C20.2761 14.5 20.5 14.2761 20.5 14C20.5 13.7239 20.2761 13.5 20 13.5H17C16.1716 13.5 15.5 12.8284 15.5 12C15.5 11.1716 16.1716 10.5 17 10.5H20C20.2761 10.5 20.5 10.2761 20.5 10C20.5 9.72386 20.2761 9.5 20 9.5Z" fill="white"/>
|
4
|
-
</g>
|
5
|
-
<defs>
|
6
|
-
<clipPath id="clip0_908_47480">
|
7
|
-
<rect width="14" height="14" fill="white" transform="translate(8 8)"/>
|
8
|
-
</clipPath>
|
9
|
-
</defs>
|
10
|
-
</svg>
|