@webitel/ui-sdk 3.2.91 → 3.2.93
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/dist/ui-sdk.common.js +15 -15
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.umd.js +15 -15
- package/dist/ui-sdk.umd.js.map +1 -1
- package/dist/ui-sdk.umd.min.js +1 -1
- package/dist/ui-sdk.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/wt-slider/wt-slider.vue +2 -2
- package/src/components/organisms/wt-stepper/wt-stepper.vue +4 -0
package/package.json
CHANGED
|
@@ -20,11 +20,11 @@ and swapping height/width of this component in order to have the correct output.
|
|
|
20
20
|
'wt-slider--disabled': disabled,
|
|
21
21
|
'wt-slider--vertical': vertical,
|
|
22
22
|
}"
|
|
23
|
-
:style="{ height: verticalHeight }"
|
|
23
|
+
:style="{ height: vertical && verticalHeight }"
|
|
24
24
|
class="wt-slider"
|
|
25
25
|
>
|
|
26
26
|
<div
|
|
27
|
-
:style="{ width: verticalHeight }"
|
|
27
|
+
:style="{ width: !vertical && verticalHeight }"
|
|
28
28
|
class="wt-slider__wrapper"
|
|
29
29
|
>
|
|
30
30
|
<!-- The row above is needed in order to set correct component width when slider is vertical -->
|