@webitel/ui-sdk 2.0.5-2 → 2.0.5-3
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 +1115 -1093
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.umd.js +1115 -1093
- package/dist/ui-sdk.umd.js.map +1 -1
- package/dist/ui-sdk.umd.min.js +2 -2
- package/dist/ui-sdk.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/wt-input/wt-input.vue +2 -1
package/package.json
CHANGED
|
@@ -217,7 +217,8 @@ export default {
|
|
|
217
217
|
this.inputType = this.isPasswordVisible ? 'text' : 'password';
|
|
218
218
|
},
|
|
219
219
|
|
|
220
|
-
updateInputPaddings() {
|
|
220
|
+
async updateInputPaddings() {
|
|
221
|
+
await this.$nextTick();
|
|
221
222
|
// cant test this thing cause vue test utils doesnt render elements width :/
|
|
222
223
|
const afterWrapperWidth = this.$refs['after-wrapper'].offsetWidth;
|
|
223
224
|
const inputEl = this.$refs['wt-input'];
|