wave-ui 1.53.1 → 1.53.2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wave-ui",
3
- "version": "1.53.1",
3
+ "version": "1.53.2",
4
4
  "description": "An emerging UI framework for Vue.js (2 & 3) with only the bright side. :sunny:",
5
5
  "author": "Antoni Andre <antoniandre.web@gmail.com>",
6
6
  "main": "./dist/wave-ui.umd.js",
@@ -185,7 +185,6 @@ export default {
185
185
  const linesCount = (this.$refs.textarea.scrollHeight - this.paddingY) / this.lineHeight
186
186
  const height = Math.max(linesCount, this.rows) * this.lineHeight + this.paddingY
187
187
  this.$refs.textarea.style.height = height + 'px'
188
- console.log('recomputing height', height)
189
188
  },
190
189
  getLineHeight () {
191
190
  const computedStyles = window.getComputedStyle(this.$refs.textarea, null)