@eturnity/eturnity_reusable_components 7.4.4-EPDM-7260.19 → 7.4.4-EPDM-7260.20
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
CHANGED
@@ -102,10 +102,7 @@
|
|
102
102
|
onBarTariffClick({ item, type: barOptionsType, label: activeLabel })
|
103
103
|
"
|
104
104
|
>
|
105
|
-
<
|
106
|
-
:name="barOptionsType === 'add' ? 'add_icon' : 'delete'"
|
107
|
-
size="14px"
|
108
|
-
/>
|
105
|
+
<AddIcon />
|
109
106
|
<bar-item-text>{{ item.name }}</bar-item-text>
|
110
107
|
</bar-item-container>
|
111
108
|
</bar-options-container>
|
@@ -115,6 +112,7 @@
|
|
115
112
|
<script>
|
116
113
|
import styled from 'vue3-styled-components'
|
117
114
|
import handleSVG from '../../assets/svgIcons/handle.svg'
|
115
|
+
import add from '../../assets/svgIcons/add_icon.svg'
|
118
116
|
|
119
117
|
import SliderComponent from './Slider'
|
120
118
|
|
@@ -241,6 +239,14 @@ const VerticalLabel = styled.div`
|
|
241
239
|
font-size: 13px;
|
242
240
|
`
|
243
241
|
|
242
|
+
const AddIcon = styled(add)`
|
243
|
+
width: 33px;
|
244
|
+
height: 29px;
|
245
|
+
fill: black
|
246
|
+
margin-left: -17px;
|
247
|
+
margin-top: -10px;
|
248
|
+
`
|
249
|
+
|
244
250
|
const HandleIcon = styled(handleSVG)`
|
245
251
|
width: 13px;
|
246
252
|
min-width: 0;
|
@@ -296,6 +302,7 @@ export default {
|
|
296
302
|
Labels,
|
297
303
|
Ruler,
|
298
304
|
Slider,
|
305
|
+
AddIcon,
|
299
306
|
SubRuler,
|
300
307
|
BarSlider,
|
301
308
|
RulerRule,
|