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.
- package/dist/types/plugin.d.ts +1 -1
- package/dist/wave-ui.cjs.js +1 -1
- package/dist/wave-ui.css +1 -1
- package/dist/wave-ui.es.js +3 -3
- package/dist/wave-ui.umd.js +1 -1
- package/package.json +31 -21
- package/src/wave-ui/components/w-accordion/item.vue +1 -1
- package/src/wave-ui/components/w-alert.vue +1 -1
- package/src/wave-ui/components/w-autocomplete.vue +4 -4
- package/src/wave-ui/components/w-button/button.vue +1 -1
- package/src/wave-ui/components/w-checkbox.vue +2 -2
- package/src/wave-ui/components/w-menu.vue +1 -1
- package/src/wave-ui/components/w-table.vue +5 -5
- package/src/wave-ui/components/w-tag.vue +7 -7
- package/src/wave-ui/components/w-tooltip.vue +1 -1
- package/src/wave-ui/scss/_base.scss +22 -14
- package/src/wave-ui/scss/_colors.scss +12 -9
- package/src/wave-ui/scss/_layout.scss +2 -0
- package/src/wave-ui/scss/_transitions.scss +2 -0
- package/src/wave-ui/scss/_typography.scss +2 -0
- package/src/wave-ui/scss/index.scss +6 -18
- package/src/wave-ui/scss/variables/_index.scss +2 -0
- package/src/wave-ui/scss/{_mixins.scss → variables/_mixins.scss} +13 -12
- package/src/wave-ui/scss/{_variables.scss → variables/_variables.scss} +30 -35
package/dist/wave-ui.es.js
CHANGED
|
@@ -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] || "
|
|
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] || "
|
|
7771
|
+
"--w-tooltip-bg-color": this.$waveui.colors[this.bgColor] || "var(--w-base-bg-color)"
|
|
7772
7772
|
};
|
|
7773
7773
|
},
|
|
7774
7774
|
activatorEventHandlers() {
|