wave-ui 3.17.3 → 3.18.0

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.
@@ -1802,7 +1802,7 @@ const At = {
1802
1802
  };
1803
1803
  return {
1804
1804
  ...this.$attrs,
1805
- onClick: !this.disabled && (e ? t : this.$attrs.onClick)
1805
+ onClick: !this.disabled && !this.loading && (e ? t : this.$attrs.onClick)
1806
1806
  };
1807
1807
  },
1808
1808
  size() {
@@ -4488,7 +4488,7 @@ const al = {
4488
4488
  left: this.detachableCoords.left && `${~~this.detachableCoords.left}px` || null,
4489
4489
  minWidth: this.minWidth && this.menuMinWidth || null,
4490
4490
  maxWidth: this.maxWidth && this.menuMaxWidth || null,
4491
- "--w-menu-bg-color": this.arrow && (this.$waveui.colors[this.bgColor] || "rgb(var(--w-base-bg-color-rgb))")
4491
+ "--w-menu-bg-color": this.arrow && (this.$waveui.colors[this.bgColor] || "var(--w-base-bg-color)")
4492
4492
  };
4493
4493
  },
4494
4494
  activatorEventHandlers() {
@@ -7768,7 +7768,7 @@ const Ao = {
7768
7768
  zIndex: this.zIndex || this.zIndex === 0 || null,
7769
7769
  top: this.detachableCoords.top && `${~~this.detachableCoords.top}px` || null,
7770
7770
  left: this.detachableCoords.left && `${~~this.detachableCoords.left}px` || null,
7771
- "--w-tooltip-bg-color": this.$waveui.colors[this.bgColor] || "rgb(var(--w-base-bg-color-rgb))"
7771
+ "--w-tooltip-bg-color": this.$waveui.colors[this.bgColor] || "var(--w-base-bg-color)"
7772
7772
  };
7773
7773
  },
7774
7774
  activatorEventHandlers() {