@eturnity/eturnity_reusable_components 7.4.4-EPDM-7260.17 → 7.4.4-EPDM-7260.19
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
@@ -67,10 +67,10 @@
|
|
67
67
|
@deactivated="onDeactivateBar()"
|
68
68
|
>
|
69
69
|
<template #mr>
|
70
|
-
<HandleIcon
|
70
|
+
<HandleIcon />
|
71
71
|
</template>
|
72
72
|
<template #ml>
|
73
|
-
<HandleIcon
|
73
|
+
<HandleIcon />
|
74
74
|
</template>
|
75
75
|
</Slider>
|
76
76
|
</SliderWrapper>
|
@@ -114,9 +114,9 @@
|
|
114
114
|
|
115
115
|
<script>
|
116
116
|
import styled from 'vue3-styled-components'
|
117
|
+
import handleSVG from '../../assets/svgIcons/handle.svg'
|
117
118
|
|
118
119
|
import SliderComponent from './Slider'
|
119
|
-
import Icon from '../icon'
|
120
120
|
|
121
121
|
const wrapperAttrs = { width: String, height: String }
|
122
122
|
const SliderWrapper = styled('div', wrapperAttrs)`
|
@@ -128,7 +128,7 @@ const SliderWrapper = styled('div', wrapperAttrs)`
|
|
128
128
|
|
129
129
|
const sliderAttrs = { color: String, draggable: Boolean }
|
130
130
|
const Slider = styled(SliderComponent, sliderAttrs)`
|
131
|
-
cursor: ${(props) => (props.draggable ? 'pointer' : '
|
131
|
+
cursor: ${(props) => (props.draggable ? 'pointer' : 'not-allowed')};
|
132
132
|
opacity: 0.7;
|
133
133
|
display: flex;
|
134
134
|
justify-content: space-between;
|
@@ -241,8 +241,8 @@ const VerticalLabel = styled.div`
|
|
241
241
|
font-size: 13px;
|
242
242
|
`
|
243
243
|
|
244
|
-
const HandleIcon = styled(
|
245
|
-
width:
|
244
|
+
const HandleIcon = styled(handleSVG)`
|
245
|
+
width: 13px;
|
246
246
|
min-width: 0;
|
247
247
|
margin: -6px;
|
248
248
|
`
|
@@ -309,8 +309,7 @@ export default {
|
|
309
309
|
RangeSliderContainer,
|
310
310
|
BarOptionsContainer,
|
311
311
|
BarItemContainer,
|
312
|
-
BarItemText
|
313
|
-
Icon
|
312
|
+
BarItemText
|
314
313
|
},
|
315
314
|
data() {
|
316
315
|
return {
|