wave-ui 1.53.0 → 1.53.1

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.
@@ -5690,6 +5690,7 @@ const __vue2_script$b = {
5690
5690
  const linesCount = (this.$refs.textarea.scrollHeight - this.paddingY) / this.lineHeight;
5691
5691
  const height = Math.max(linesCount, this.rows) * this.lineHeight + this.paddingY;
5692
5692
  this.$refs.textarea.style.height = height + "px";
5693
+ console.log("recomputing height", height);
5693
5694
  },
5694
5695
  getLineHeight() {
5695
5696
  const computedStyles2 = window.getComputedStyle(this.$refs.textarea, null);
@@ -5707,7 +5708,7 @@ const __vue2_script$b = {
5707
5708
  watch: {
5708
5709
  value(value) {
5709
5710
  this.inputValue = value;
5710
- this.computeHeight();
5711
+ this.$nextTick(this.computeHeight);
5711
5712
  },
5712
5713
  resizable(value) {
5713
5714
  if (value)
@@ -6337,9 +6338,8 @@ function __vue2_injectStyles(context) {
6337
6338
  var wTransitionTwist = /* @__PURE__ */ function() {
6338
6339
  return __component__.exports;
6339
6340
  }();
6340
- var components = /* @__PURE__ */ Object.freeze({
6341
+ var components = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
6341
6342
  __proto__: null,
6342
- [Symbol.toStringTag]: "Module",
6343
6343
  WAccordion: wAccordion,
6344
6344
  WAlert: wAlert,
6345
6345
  WApp: wApp,
@@ -6390,7 +6390,7 @@ var components = /* @__PURE__ */ Object.freeze({
6390
6390
  WTransitionSlide: wTransitionSlide,
6391
6391
  WTransitionSlideFade: wTransitionSlideFade,
6392
6392
  WTransitionTwist: wTransitionTwist
6393
- });
6393
+ }, Symbol.toStringTag, { value: "Module" }));
6394
6394
  const install = WaveUI.install;
6395
6395
  WaveUI.install = (Vue2, options = {}) => install.call(WaveUI, Vue2, __spreadValues({ components }, options));
6396
6396
  if (typeof window !== "undefined" && window.Vue)