@designcrowd/fe-shared-lib 1.1.5-rte-haider-10 → 1.1.5-rte-ast-12
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/public/css/tailwind-brandCrowd.css +4 -0
- package/public/css/tailwind-brandPage.css +4 -0
- package/public/css/tailwind-crazyDomains.css +4 -0
- package/public/css/tailwind-designCom.css +4 -0
- package/public/css/tailwind-designCrowd.css +4 -0
- package/src/atoms/components/Slider/Slider.vue +5 -1
package/package.json
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
:value="sliderValue"
|
|
30
30
|
type="text"
|
|
31
31
|
:step="step"
|
|
32
|
-
class="tw-rounded-r tw-rounded-l tw-py-2 tw-bg-white tw-text-grayscale-600 tw-box-border tw-w-full tw-text-base tw-px-4 tw-border tw-border-solid focus:tw-outline-none tw-transition-colors tw-duration-300 tw-ease-out tw-shadow-inner"
|
|
32
|
+
class="input-slider tw-rounded-r tw-rounded-l tw-py-2 tw-bg-white tw-text-grayscale-600 tw-box-border tw-w-full tw-text-base tw-px-4 tw-border tw-border-solid focus:tw-outline-none tw-transition-colors tw-duration-300 tw-ease-out tw-shadow-inner"
|
|
33
33
|
@input.stop="setInput"
|
|
34
34
|
@blur.stop="checkLimit"
|
|
35
35
|
@keydown.down="limitToMinimum"
|
|
@@ -156,6 +156,10 @@ export default {
|
|
|
156
156
|
this.sliderValue = v;
|
|
157
157
|
},
|
|
158
158
|
},
|
|
159
|
+
beforeUnmount() {
|
|
160
|
+
console.log('is this unmounting');
|
|
161
|
+
this.checkLimit(this.sliderValue);
|
|
162
|
+
},
|
|
159
163
|
methods: {
|
|
160
164
|
focus() {
|
|
161
165
|
this.$refs.inputSlider.focus();
|