@eturnity/eturnity_reusable_components 8.16.9-SLD.2 → 8.16.9-qa-16-03-26.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 +1 -1
- package/src/assets/svgIcons/duplicate.svg +3 -2
- package/src/assets/svgIcons/text_icon.svg +2 -2
- package/src/components/inputs/inputNumber/index.vue +66 -80
- package/src/components/inputs/select/option/index.vue +3 -10
- package/src/components/inputs/switchField/index.vue +8 -27
- package/src/components/inputs/toggle/index.vue +0 -1
- package/src/helpers/numberConverter.js +1 -1
- package/src/assets/svgIcons/edit.svg +0 -3
- package/src/assets/svgIcons/legend.svg +0 -3
- package/src/assets/svgIcons/preview.svg +0 -3
- package/src/assets/svgIcons/text_column_one.svg +0 -7
- package/src/assets/svgIcons/text_column_three.svg +0 -15
- package/src/assets/svgIcons/text_column_two.svg +0 -11
package/package.json
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
-
<svg
|
2
|
-
<path
|
1
|
+
<svg fill="none" height="16" viewbox="12 12 16 16" width="16" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M27 17.8751V25.8749C27 26.4374 26.5625 26.8749 26 26.8749H18.0626C17.5001 26.8749 17.0626 26.4374 17.0626 25.8749V17.8751C17.0626 17.3126 17.5001 16.8751 18.0626 16.8751H26.0625C26.5625 16.9376 27 17.3751 27 17.8751Z" fill="#B2B9C5"></path>
|
3
|
+
<path d="M22.9374 14.1251V16.3126H18.0624C17.1874 16.3126 16.4375 17.0626 16.4375 17.9376V23.125H14C13.4375 23.125 13 22.6875 13 22.125V14.1251C13 13.5626 13.4375 13.1251 14 13.1251H21.9999C22.4999 13.1251 22.9374 13.5626 22.9374 14.1251Z" fill="#B2B9C5"></path>
|
3
4
|
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.5 3C3.22386 3 3 3.22386 3 3.5V4.5C3 4.77614 2.77614 5 2.5 5C2.22386 5 2 4.77614 2 4.5V3.5C2 2.67157 2.67157 2 3.5 2H8H12.5C13.3284 2 14 2.67157 14 3.5V4.5C14 4.77614 13.7761 5 13.5 5C13.2239 5 13 4.77614 13 4.5V3.5C13 3.22386 12.7761 3 12.5 3H8.5V13H10.5C10.7761 13 11 13.2239 11 13.5C11 13.7761 10.7761 14 10.5 14H8H5.5C5.22386 14 5 13.7761 5 13.5C5 13.2239 5.22386 13 5.5 13H7.5V3H3.5Z" fill="white"/>
|
3
3
|
</svg>
|
@@ -61,7 +61,7 @@
|
|
61
61
|
:show-linear-unit-name="showLinearUnitName"
|
62
62
|
:slot-size="slotSize"
|
63
63
|
:text-align="textAlign"
|
64
|
-
:value="
|
64
|
+
:value="formattedValue"
|
65
65
|
@blur="onInputBlur($event)"
|
66
66
|
@focus="focusInput()"
|
67
67
|
@input="onInput($event)"
|
@@ -75,7 +75,7 @@
|
|
75
75
|
|
76
76
|
<UnitContainer
|
77
77
|
v-if="unitName && showLinearUnitName && !hasSlot"
|
78
|
-
:has-length="
|
78
|
+
:has-length="hasLength"
|
79
79
|
:is-error="isError"
|
80
80
|
>{{ unitName }}</UnitContainer
|
81
81
|
>
|
@@ -92,7 +92,7 @@
|
|
92
92
|
:disabled="isSelectDisabled"
|
93
93
|
:select-width="`${selectWidth}px`"
|
94
94
|
:show-border="false"
|
95
|
-
@input-change="
|
95
|
+
@input-change="handleSelectChange"
|
96
96
|
>
|
97
97
|
<template #selector>
|
98
98
|
<SelectText>{{ getSelectValue }}</SelectText>
|
@@ -457,8 +457,18 @@
|
|
457
457
|
background-color: ${({ theme }) => theme.colors.grey4};
|
458
458
|
`
|
459
459
|
|
460
|
+
const EVENT_TYPES = {
|
461
|
+
INPUT_FOCUS: 'input-focus',
|
462
|
+
INPUT_CHANGE: 'input-change',
|
463
|
+
INPUT_BLUR: 'input-blur',
|
464
|
+
PRESS_ENTER: 'on-enter-click',
|
465
|
+
INPUT_DRAG: 'on-input-drag',
|
466
|
+
SELECT_CHANGE: 'select-change',
|
467
|
+
}
|
468
|
+
|
460
469
|
export default {
|
461
470
|
name: 'InputNumber',
|
471
|
+
emits: [...Object.values(EVENT_TYPES)],
|
462
472
|
components: {
|
463
473
|
Container,
|
464
474
|
InputContainer,
|
@@ -701,9 +711,10 @@
|
|
701
711
|
},
|
702
712
|
data() {
|
703
713
|
return {
|
704
|
-
textInput: '',
|
705
714
|
isFocused: false,
|
706
715
|
warningIcon: warningIcon,
|
716
|
+
inputValue: null,
|
717
|
+
enteredValue: null,
|
707
718
|
}
|
708
719
|
},
|
709
720
|
computed: {
|
@@ -726,6 +737,14 @@
|
|
726
737
|
|
727
738
|
return item ? item.label : '-'
|
728
739
|
},
|
740
|
+
formattedValue() {
|
741
|
+
return this.isFocused
|
742
|
+
? this.enteredValue
|
743
|
+
: this.formatWithCurrency(this.value)
|
744
|
+
},
|
745
|
+
hasLength() {
|
746
|
+
return this.formattedValue !== null && this.formattedValue.length > 0
|
747
|
+
},
|
729
748
|
},
|
730
749
|
watch: {
|
731
750
|
focus(value) {
|
@@ -736,30 +755,19 @@
|
|
736
755
|
clearInput: function (value) {
|
737
756
|
if (value) {
|
738
757
|
// If the value is typed, then we should clear the textInput on Continue
|
739
|
-
this.
|
758
|
+
this.inputValue = ''
|
759
|
+
this.enteredValue = ''
|
740
760
|
}
|
741
761
|
},
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
}
|
750
|
-
}
|
751
|
-
this.textInput = numberToString({
|
752
|
-
value: this.defaultNumber,
|
753
|
-
numberPrecision: this.numberPrecision,
|
754
|
-
minDecimals: this.minDecimals,
|
755
|
-
})
|
756
|
-
} else if (this.minNumber !== null) {
|
757
|
-
this.textInput = numberToString({
|
758
|
-
value: this.minNumber,
|
759
|
-
numberPrecision: this.numberPrecision,
|
760
|
-
minDecimals: this.minDecimals,
|
761
|
-
})
|
762
|
-
}
|
762
|
+
value: {
|
763
|
+
immediate: true,
|
764
|
+
handler(val) {
|
765
|
+
if (this.value !== this.inputValue && !Number.isNaN(this.value)) {
|
766
|
+
this.inputValue = this.value
|
767
|
+
this.enteredValue = Number(this.value.toFixed(this.numberPrecision))
|
768
|
+
}
|
769
|
+
},
|
770
|
+
},
|
763
771
|
},
|
764
772
|
mounted() {
|
765
773
|
if (this.focus) {
|
@@ -798,32 +806,28 @@
|
|
798
806
|
}
|
799
807
|
},
|
800
808
|
onEnterPress() {
|
801
|
-
this.$emit(
|
809
|
+
this.$emit(EVENT_TYPES.PRESS_ENTER)
|
802
810
|
this.$refs.inputField1.$el.blur()
|
803
811
|
},
|
804
|
-
onChangeHandler(
|
805
|
-
if (isNaN(
|
806
|
-
|
812
|
+
onChangeHandler(value) {
|
813
|
+
if (isNaN(value) || value === '') {
|
814
|
+
value = this.defaultNumber
|
807
815
|
? this.defaultNumber
|
808
816
|
: this.minNumber || this.minNumber === 0
|
809
817
|
? this.minNumber
|
810
|
-
:
|
818
|
+
: value
|
811
819
|
}
|
812
820
|
if (!this.allowNegative) {
|
813
|
-
|
821
|
+
value = Math.abs(value)
|
814
822
|
}
|
815
|
-
|
816
|
-
event = this.minNumber
|
817
|
-
}
|
818
|
-
event = parseFloat(event)
|
823
|
+
value = parseFloat(value)
|
819
824
|
// Need to return an integer rather than a string
|
820
|
-
|
825
|
+
return parseFloat(value)
|
821
826
|
},
|
822
|
-
onEvaluateCode(
|
827
|
+
onEvaluateCode(value) {
|
823
828
|
// function to perform math on the code
|
824
829
|
// filter the string in case of any malicious content
|
825
|
-
|
826
|
-
let filtered = val.replace('(auto)', '').replace(/[^-()\d/*+.,]/g, '')
|
830
|
+
let filtered = value.replace('(auto)', '').replace(/[^-()\d/*+.,]/g, '')
|
827
831
|
filtered = filtered.split(/([-+*/()])/)
|
828
832
|
let formatted = filtered.map((item) => {
|
829
833
|
if (
|
@@ -881,48 +885,32 @@
|
|
881
885
|
return array
|
882
886
|
},
|
883
887
|
onInput(event) {
|
884
|
-
|
888
|
+
console.log('onInput', event.target.value)
|
889
|
+
this.enteredValue = event.target.value
|
890
|
+
if (!this.isFocused || this.enteredValue === this.inputValue) {
|
885
891
|
return
|
886
892
|
}
|
887
|
-
if (event.target.value === '') {
|
888
|
-
this.$emit('on-input', '')
|
889
|
-
}
|
890
893
|
let evaluatedVal
|
891
894
|
try {
|
892
|
-
evaluatedVal = this.onEvaluateCode(
|
895
|
+
evaluatedVal = this.onEvaluateCode(String(this.enteredValue))
|
893
896
|
} finally {
|
894
|
-
|
895
|
-
|
897
|
+
this.inputValue = this.onChangeHandler(evaluatedVal)
|
898
|
+
|
899
|
+
if (this.isFocused && typeof this.enteredValue !== 'number') {
|
900
|
+
this.$emit(EVENT_TYPES.INPUT_CHANGE, this.inputValue)
|
896
901
|
}
|
897
902
|
}
|
898
903
|
this.textInput = evaluatedVal
|
899
904
|
},
|
900
905
|
onInputBlur(e) {
|
901
906
|
this.isFocused = false
|
902
|
-
|
903
|
-
|
904
|
-
this.onChangeHandler(evaluatedInput ? evaluatedInput : value)
|
905
|
-
if ((evaluatedInput && value.length) || this.minNumber !== null) {
|
906
|
-
this.textInput = numberToString({
|
907
|
-
value:
|
908
|
-
evaluatedInput && value.length
|
909
|
-
? evaluatedInput
|
910
|
-
: this.defaultNumber
|
911
|
-
? this.defaultNumber
|
912
|
-
: this.minNumber,
|
913
|
-
numberPrecision: this.numberPrecision,
|
914
|
-
minDecimals: this.minDecimals,
|
915
|
-
})
|
907
|
+
if (!Number.isNaN(this.inputValue)) {
|
908
|
+
this.enteredValue = this.inputValue
|
916
909
|
}
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
? this.defaultNumber
|
922
|
-
: this.minNumber || this.minNumber === 0
|
923
|
-
? this.minNumber
|
924
|
-
: ''
|
925
|
-
this.$emit('input-blur', adjustedMinValue)
|
910
|
+
this.$emit(
|
911
|
+
EVENT_TYPES.INPUT_BLUR,
|
912
|
+
Number(this.onEvaluateCode(String(this.inputValue)))
|
913
|
+
)
|
926
914
|
},
|
927
915
|
focusInput() {
|
928
916
|
if (this.disabled) {
|
@@ -932,7 +920,7 @@
|
|
932
920
|
this.$nextTick(() => {
|
933
921
|
this.$refs.inputField1.$el.select()
|
934
922
|
})
|
935
|
-
this.$emit(
|
923
|
+
this.$emit(EVENT_TYPES.INPUT_FOCUS, this.inputValue)
|
936
924
|
},
|
937
925
|
blurInput() {
|
938
926
|
if (this.disabled) {
|
@@ -952,7 +940,7 @@
|
|
952
940
|
: this.minNumber || this.minNumber === 0
|
953
941
|
? this.minNumber
|
954
942
|
: ''
|
955
|
-
if (
|
943
|
+
if (adjustedMinValue || adjustedMinValue === 0) {
|
956
944
|
let input = this.numberToStringEnabled
|
957
945
|
? numberToString({
|
958
946
|
value: adjustedMinValue,
|
@@ -965,6 +953,8 @@
|
|
965
953
|
return input + ' ' + unit
|
966
954
|
} else if (!adjustedMinValue && adjustedMinValue !== 0) {
|
967
955
|
return ''
|
956
|
+
} else if (this.isFocused) {
|
957
|
+
return value
|
968
958
|
} else {
|
969
959
|
return this.numberToStringEnabled
|
970
960
|
? numberToString({
|
@@ -985,14 +975,7 @@
|
|
985
975
|
e.preventDefault()
|
986
976
|
let value = parseFloat(this.value || 0)
|
987
977
|
value += parseFloat(this.interactionStep) * parseInt(e.movementX)
|
988
|
-
this.$emit(
|
989
|
-
|
990
|
-
this.textInput = numberToString({
|
991
|
-
value: value && value.length ? value : this.minNumber,
|
992
|
-
numberPrecision: this.numberPrecision,
|
993
|
-
minDecimals: this.minDecimals,
|
994
|
-
})
|
995
|
-
//this.value=value
|
978
|
+
this.$emit(EVENT_TYPES.INPUT_DRAG, this.onChangeHandler(value))
|
996
979
|
},
|
997
980
|
stopInteract(e) {
|
998
981
|
e.preventDefault()
|
@@ -1000,6 +983,9 @@
|
|
1000
983
|
window.removeEventListener('mouseup', this.stopInteract, false)
|
1001
984
|
this.blurInput()
|
1002
985
|
},
|
986
|
+
handleSelectChange(value) {
|
987
|
+
this.$emit(EVENT_TYPES.SELECT_CHANGE, value)
|
988
|
+
},
|
1003
989
|
},
|
1004
990
|
}
|
1005
991
|
</script>
|
@@ -2,19 +2,18 @@
|
|
2
2
|
<OptionContainer
|
3
3
|
:background-color="
|
4
4
|
colorMode == 'dark'
|
5
|
-
?
|
5
|
+
? '#000000'
|
6
6
|
: colorMode == 'transparent'
|
7
7
|
? 'black'
|
8
8
|
: backgroundColor
|
9
9
|
"
|
10
|
-
:color-mode="colorMode"
|
11
10
|
:cursor-type="cursorType"
|
12
11
|
:data-value="value"
|
13
12
|
:disabled-bg-color="disabledBgColor"
|
14
13
|
:disabled-text-color="disabledTextColor"
|
15
14
|
:hovered-bg-color="
|
16
15
|
colorMode == 'dark'
|
17
|
-
?
|
16
|
+
? '#000000'
|
18
17
|
: colorMode == 'transparent'
|
19
18
|
? 'grey6'
|
20
19
|
: hoveredBgColor
|
@@ -37,7 +36,6 @@
|
|
37
36
|
// import selectButton from './selectButton'
|
38
37
|
// import selectDropdown from './selectDropDown'
|
39
38
|
import styled from 'vue3-styled-components'
|
40
|
-
import theme from '@/assets/theme'
|
41
39
|
const optionProps = {
|
42
40
|
isDisabled: Boolean,
|
43
41
|
hoveredBgColor: String,
|
@@ -48,7 +46,6 @@
|
|
48
46
|
disabledTextColor: String,
|
49
47
|
padding: String,
|
50
48
|
textColor: String,
|
51
|
-
colorMode: String,
|
52
49
|
}
|
53
50
|
const OptionContainer = styled('div', optionProps)`
|
54
51
|
display: flex;
|
@@ -80,8 +77,6 @@
|
|
80
77
|
? props.theme.colors[props.disabledTextColor]
|
81
78
|
: props.disabledTextColor
|
82
79
|
: props.theme.colors.grey3
|
83
|
-
: props.colorMode == 'dark'
|
84
|
-
? props.theme.colors['white']
|
85
80
|
: props.theme.colors[props.textColor]
|
86
81
|
? props.theme.colors[props.textColor]
|
87
82
|
: props.textColor};
|
@@ -150,9 +145,7 @@
|
|
150
145
|
},
|
151
146
|
emits: ['option-hovered', 'option-selected'],
|
152
147
|
data() {
|
153
|
-
return {
|
154
|
-
theme,
|
155
|
-
}
|
148
|
+
return {}
|
156
149
|
},
|
157
150
|
computed: {},
|
158
151
|
methods: {
|
@@ -33,18 +33,8 @@
|
|
33
33
|
:is-active="selectedValue == item.value"
|
34
34
|
:primary-color="primaryColor"
|
35
35
|
:secondary-color="secondaryColor"
|
36
|
-
:size="size"
|
37
36
|
@click="selectItem(item.value)"
|
38
37
|
>
|
39
|
-
<OptionIconContainer v-if="item.icon">
|
40
|
-
<RCIcon
|
41
|
-
:color="
|
42
|
-
selectedValue == item.value ? primaryColor : inactiveColor
|
43
|
-
"
|
44
|
-
:name="item.icon"
|
45
|
-
:size="item.iconSize"
|
46
|
-
/>
|
47
|
-
</OptionIconContainer>
|
48
38
|
{{ item.content }}
|
49
39
|
</SwitchOption>
|
50
40
|
</SwitchWrapper>
|
@@ -80,12 +70,6 @@
|
|
80
70
|
import styled from 'vue3-styled-components'
|
81
71
|
import InfoText from '../../infoText'
|
82
72
|
import theme from '../../../assets/theme'
|
83
|
-
import RCIcon from '../../icon'
|
84
|
-
const OptionIconContainer = styled.div`
|
85
|
-
display: flex;
|
86
|
-
align-items: center;
|
87
|
-
margin-right: 5px;
|
88
|
-
`
|
89
73
|
const Container = styled.div``
|
90
74
|
|
91
75
|
const flexAttrs = {
|
@@ -105,6 +89,7 @@
|
|
105
89
|
`
|
106
90
|
|
107
91
|
const toggleAttrs = {
|
92
|
+
size: String,
|
108
93
|
fontColor: String,
|
109
94
|
disabled: Boolean,
|
110
95
|
backgroundColor: String,
|
@@ -120,16 +105,20 @@
|
|
120
105
|
|
121
106
|
const SwitchWrapper = styled('span', toggleAttrs)`
|
122
107
|
display: flex;
|
123
|
-
align-items: center
|
124
108
|
position: relative;
|
125
109
|
cursor: ${(props) => (props.disabled ? 'not-allowed' : 'pointer')};
|
110
|
+
height: ${(props) =>
|
111
|
+
props.size === 'medium'
|
112
|
+
? '24px'
|
113
|
+
: props.size === 'small'
|
114
|
+
? '16px'
|
115
|
+
: '24px'};
|
126
116
|
`
|
127
117
|
const optionAttrs = {
|
128
118
|
isActive: Boolean,
|
129
119
|
primaryColor: String,
|
130
120
|
secondaryColor: String,
|
131
121
|
inactiveColor: String,
|
132
|
-
size: String,
|
133
122
|
}
|
134
123
|
const SwitchOption = styled('div', optionAttrs)`
|
135
124
|
color: ${(props) =>
|
@@ -146,13 +135,7 @@
|
|
146
135
|
font-size: 13px;
|
147
136
|
line-height: 1;
|
148
137
|
text-align: center;
|
149
|
-
|
150
|
-
props.size === 'medium'
|
151
|
-
? '24px'
|
152
|
-
: props.size === 'small'
|
153
|
-
? '16px'
|
154
|
-
: '24px'};
|
155
|
-
padding: 0 10px;
|
138
|
+
padding: 10px;
|
156
139
|
margin-right: -1px;
|
157
140
|
transition: all 0.1s ease-in-out;
|
158
141
|
overflow: hidden;
|
@@ -186,8 +169,6 @@
|
|
186
169
|
InfoText,
|
187
170
|
LabelContainer,
|
188
171
|
SwitchOption,
|
189
|
-
OptionIconContainer,
|
190
|
-
RCIcon,
|
191
172
|
},
|
192
173
|
props: {
|
193
174
|
label: {
|
@@ -94,7 +94,7 @@ export const stringToNumber = ({
|
|
94
94
|
|
95
95
|
export const numberToString = ({ value, numberPrecision, minDecimals }) => {
|
96
96
|
const minimumRounding = minDecimals ? minDecimals : 0
|
97
|
-
value = parseFloat(value)
|
97
|
+
value = !Number.isNaN(parseFloat(value)) ? parseFloat(value) : 0
|
98
98
|
return value.toLocaleString(langForLocaleString(), {
|
99
99
|
minimumFractionDigits: minimumRounding, // removing this for now. Why do we need this to be a minimum amount?
|
100
100
|
maximumFractionDigits:
|
@@ -1,3 +0,0 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M2.1068 13.2607L2.95525 10.7154C2.97979 10.6418 3.02115 10.5748 3.07603 10.52L11.5353 2.06066C11.7306 1.8654 12.0472 1.8654 12.2424 2.06066L13.9393 3.75756C14.1346 3.95282 14.1346 4.2694 13.9393 4.46466L5.48004 12.924C5.42515 12.9789 5.35824 13.0202 5.2846 13.0448L2.73925 13.8932C2.34837 14.0235 1.9765 13.6516 2.1068 13.2607Z" stroke="black"/>
|
3
|
-
</svg>
|
@@ -1,3 +0,0 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 2H6V4H2L2 2ZM1 2C1 1.44772 1.44772 1 2 1H6C6.55228 1 7 1.44772 7 2V4C7 4.55228 6.55228 5 6 5H2C1.44772 5 1 4.55228 1 4V2ZM2 7H6V9H2L2 7ZM1 7C1 6.44772 1.44772 6 2 6H6C6.55228 6 7 6.44772 7 7V9C7 9.55228 6.55228 10 6 10H2C1.44772 10 1 9.55228 1 9V7ZM6 12H2L2 14H6V12ZM2 11C1.44772 11 1 11.4477 1 12V14C1 14.5523 1.44772 15 2 15H6C6.55228 15 7 14.5523 7 14V12C7 11.4477 6.55228 11 6 11H2ZM9.5 2.5C9.22386 2.5 9 2.72386 9 3C9 3.27614 9.22386 3.5 9.5 3.5H14.5C14.7761 3.5 15 3.27614 15 3C15 2.72386 14.7761 2.5 14.5 2.5H9.5ZM9 8C9 7.72386 9.22386 7.5 9.5 7.5H14.5C14.7761 7.5 15 7.72386 15 8C15 8.27614 14.7761 8.5 14.5 8.5H9.5C9.22386 8.5 9 8.27614 9 8ZM9.5 12.5C9.22386 12.5 9 12.7239 9 13C9 13.2761 9.22386 13.5 9.5 13.5H14.5C14.7761 13.5 15 13.2761 15 13C15 12.7239 14.7761 12.5 14.5 12.5H9.5Z" fill="white"/>
|
3
|
-
</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="M0 1.5C0 0.671573 0.671573 0 1.5 0H3C3.27614 0 3.5 0.223858 3.5 0.5C3.5 0.776142 3.27614 1 3 1H1.5C1.22386 1 1 1.22386 1 1.5V3C1 3.27614 0.776142 3.5 0.5 3.5C0.223858 3.5 0 3.27614 0 3V1.5ZM4.02559 5.17721C3.23749 5.79381 2.68702 6.51738 2.4096 6.92917C2.39111 6.9566 2.37828 6.97568 2.36758 6.99221L2.3632 6.99901L2.36758 7.00581C2.37828 7.02234 2.39112 7.04142 2.4096 7.06885C2.68702 7.48064 3.23749 8.20421 4.02559 8.82081C4.81186 9.43598 5.81038 9.92657 6.99907 9.92657C8.18776 9.92657 9.18628 9.43598 9.97255 8.82081C10.7606 8.20421 11.3111 7.48064 11.5885 7.06885C11.607 7.04142 11.6199 7.02234 11.6306 7.00581L11.6349 6.99901L11.6306 6.99221C11.6199 6.97568 11.607 6.9566 11.5885 6.92917C11.3111 6.51738 10.7606 5.79381 9.97255 5.17721C9.18628 4.56204 8.18776 4.07145 6.99907 4.07145C5.81038 4.07145 4.81186 4.56204 4.02559 5.17721ZM3.40939 4.38962C4.31159 3.68375 5.52122 3.07145 6.99907 3.07145C8.47692 3.07145 9.68655 3.68375 10.5888 4.38962C11.4891 5.09407 12.1075 5.90967 12.4179 6.37043L12.4308 6.38953C12.4917 6.47928 12.5738 6.6004 12.6155 6.77086C12.6496 6.91004 12.6496 7.08798 12.6155 7.22716C12.5738 7.39763 12.4917 7.51874 12.4308 7.60849L12.4179 7.62759C12.1075 8.08835 11.4891 8.90395 10.5888 9.6084C9.68655 10.3143 8.47692 10.9266 6.99907 10.9266C5.52122 10.9266 4.31159 10.3143 3.40939 9.6084C2.509 8.90395 1.89067 8.08835 1.58025 7.62759L1.56733 7.60849C1.50645 7.51874 1.4243 7.39763 1.38262 7.22716C1.34859 7.08798 1.34859 6.91004 1.38262 6.77086C1.4243 6.60039 1.50645 6.47928 1.56733 6.38953L1.58025 6.37043C1.89067 5.90967 2.509 5.09407 3.40939 4.38962ZM6.99907 6.03006C6.37885 6.03006 5.93206 6.49382 5.93206 6.99901C5.93206 7.5042 6.37885 7.96797 6.99907 7.96797C7.61929 7.96797 8.06608 7.5042 8.06608 6.99901C8.06608 6.49382 7.61929 6.03006 6.99907 6.03006ZM4.93206 6.99901C4.93206 5.88164 5.88842 5.03006 6.99907 5.03006C8.10972 5.03006 9.06608 5.88164 9.06608 6.99901C9.06608 8.11638 8.10972 8.96797 6.99907 8.96797C5.88842 8.96797 4.93206 8.11638 4.93206 6.99901ZM12.5 0C13.3284 0 14 0.671573 14 1.5V3C14 3.27614 13.7761 3.5 13.5 3.5C13.2239 3.5 13 3.27614 13 3V1.5C13 1.22386 12.7761 1 12.5 1H11C10.7239 1 10.5 0.776142 10.5 0.5C10.5 0.223858 10.7239 0 11 0H12.5ZM14 12.5C14 13.3284 13.3284 14 12.5 14H11C10.7239 14 10.5 13.7761 10.5 13.5C10.5 13.2239 10.7239 13 11 13H12.5C12.7761 13 13 12.7761 13 12.5V11C13 10.7239 13.2239 10.5 13.5 10.5C13.7761 10.5 14 10.7239 14 11V12.5ZM1.5 14C0.671573 14 0 13.3284 0 12.5V11C0 10.7239 0.223858 10.5 0.5 10.5C0.776142 10.5 1 10.7239 1 11V12.5C1 12.7761 1.22386 13 1.5 13H3C3.27614 13 3.5 13.2239 3.5 13.5C3.5 13.7761 3.27614 14 3 14H1.5Z" fill="#263238"/>
|
3
|
-
</svg>
|
@@ -1,7 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
2
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="M5 5.75C5 5.33579 5.33579 5 5.75 5H18.25C18.6642 5 19 5.33579 19 5.75C19 6.16421 18.6642 6.5 18.25 6.5H5.75C5.33579 6.5 5 6.16421 5 5.75Z" fill="white"/>
|
4
|
-
<path d="M5 9.75C5 9.33579 5.33579 9 5.75 9H18.25C18.6642 9 19 9.33579 19 9.75C19 10.1642 18.6642 10.5 18.25 10.5H5.75C5.33579 10.5 5 10.1642 5 9.75Z" fill="white"/>
|
5
|
-
<path d="M5 13.75C5 13.3358 5.33579 13 5.75 13H18.25C18.6642 13 19 13.3358 19 13.75C19 14.1642 18.6642 14.5 18.25 14.5H5.75C5.33579 14.5 5 14.1642 5 13.75Z" fill="white"/>
|
6
|
-
<path d="M5 17.75C5 17.3358 5.33579 17 5.75 17H18.25C18.6642 17 19 17.3358 19 17.75C19 18.1642 18.6642 18.5 18.25 18.5H5.75C5.33579 18.5 5 18.1642 5 17.75Z" fill="white"/>
|
7
|
-
</svg>
|
@@ -1,15 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
2
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="M3 6C3 5.44772 3.44772 5 4 5H7C7.55228 5 8 5.44772 8 6C8 6.55228 7.55228 7 7 7H4C3.44772 7 3 6.55228 3 6Z" fill="#212121"/>
|
4
|
-
<path d="M9.58 6C9.58 5.44772 10.0277 5 10.58 5H13.58C14.1323 5 14.58 5.44772 14.58 6C14.58 6.55228 14.1323 7 13.58 7H10.58C10.0277 7 9.58 6.55228 9.58 6Z" fill="#212121"/>
|
5
|
-
<path d="M16 6C16 5.44772 16.4477 5 17 5H20C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H17C16.4477 7 16 6.55228 16 6Z" fill="#212121"/>
|
6
|
-
<path d="M3 10C3 9.44772 3.44772 9 4 9H7C7.55228 9 8 9.44772 8 10C8 10.5523 7.55228 11 7 11H4C3.44772 11 3 10.5523 3 10Z" fill="#212121"/>
|
7
|
-
<path d="M9.58 10C9.58 9.44772 10.0277 9 10.58 9H13.58C14.1323 9 14.58 9.44772 14.58 10C14.58 10.5523 14.1323 11 13.58 11H10.58C10.0277 11 9.58 10.5523 9.58 10Z" fill="#212121"/>
|
8
|
-
<path d="M16 10C16 9.44772 16.4477 9 17 9H20C20.5523 9 21 9.44772 21 10C21 10.5523 20.5523 11 20 11H17C16.4477 11 16 10.5523 16 10Z" fill="#212121"/>
|
9
|
-
<path d="M3 14C3 13.4477 3.44772 13 4 13H7C7.55228 13 8 13.4477 8 14C8 14.5523 7.55228 15 7 15H4C3.44772 15 3 14.5523 3 14Z" fill="#212121"/>
|
10
|
-
<path d="M9.58 14C9.58 13.4477 10.0277 13 10.58 13H13.58C14.1323 13 14.58 13.4477 14.58 14C14.58 14.5523 14.1323 15 13.58 15H10.58C10.0277 15 9.58 14.5523 9.58 14Z" fill="#212121"/>
|
11
|
-
<path d="M16 14C16 13.4477 16.4477 13 17 13H20C20.5523 13 21 13.4477 21 14C21 14.5523 20.5523 15 20 15H17C16.4477 15 16 14.5523 16 14Z" fill="#212121"/>
|
12
|
-
<path d="M3 18C3 17.4477 3.44772 17 4 17H7C7.55228 17 8 17.4477 8 18C8 18.5523 7.55228 19 7 19H4C3.44772 19 3 18.5523 3 18Z" fill="#212121"/>
|
13
|
-
<path d="M9.58 18C9.58 17.4477 10.0277 17 10.58 17H13.58C14.1323 17 14.58 17.4477 14.58 18C14.58 18.5523 14.1323 19 13.58 19H10.58C10.0277 19 9.58 18.5523 9.58 18Z" fill="#212121"/>
|
14
|
-
<path d="M16 18C16 17.4477 16.4477 17 17 17H20C20.5523 17 21 17.4477 21 18C21 18.5523 20.5523 19 20 19H17C16.4477 19 16 18.5523 16 18Z" fill="#212121"/>
|
15
|
-
</svg>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
2
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
3
|
-
<path d="M3 6C3 5.44772 3.44772 5 4 5H10C10.5523 5 11 5.44772 11 6C11 6.55228 10.5523 7 10 7H4C3.44772 7 3 6.55228 3 6Z" fill="white"/>
|
4
|
-
<path d="M3 10C3 9.44772 3.44772 9 4 9H10C10.5523 9 11 9.44772 11 10C11 10.5523 10.5523 11 10 11H4C3.44772 11 3 10.5523 3 10Z" fill="white"/>
|
5
|
-
<path d="M3 14C3 13.4477 3.44772 13 4 13H10C10.5523 13 11 13.4477 11 14C11 14.5523 10.5523 15 10 15H4C3.44772 15 3 14.5523 3 14Z" fill="white"/>
|
6
|
-
<path d="M3 18C3 17.4477 3.44772 17 4 17H10C10.5523 17 11 17.4477 11 18C11 18.5523 10.5523 19 10 19H4C3.44772 19 3 18.5523 3 18Z" fill="white"/>
|
7
|
-
<path d="M13 6C13 5.44772 13.4477 5 14 5H20C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H14C13.4477 7 13 6.55228 13 6Z" fill="white"/>
|
8
|
-
<path d="M13 10C13 9.44772 13.4477 9 14 9H20C20.5523 9 21 9.44772 21 10C21 10.5523 20.5523 11 20 11H14C13.4477 11 13 10.5523 13 10Z" fill="white"/>
|
9
|
-
<path d="M13 14C13 13.4477 13.4477 13 14 13H20C20.5523 13 21 13.4477 21 14C21 14.5523 20.5523 15 20 15H14C13.4477 15 13 14.5523 13 14Z" fill="white"/>
|
10
|
-
<path d="M13 18C13 17.4477 13.4477 17 14 17H20C20.5523 17 21 17.4477 21 18C21 18.5523 20.5523 19 20 19H14C13.4477 19 13 18.5523 13 18Z" fill="white"/>
|
11
|
-
</svg>
|