wave-ui 1.45.3 → 1.45.4
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/wave-ui.es.js
CHANGED
|
@@ -2605,7 +2605,7 @@ const __vue2_script$u = {
|
|
|
2605
2605
|
return listeners;
|
|
2606
2606
|
},
|
|
2607
2607
|
hasValue() {
|
|
2608
|
-
return this.inputValue || ["date", "time"].includes(this.type) || this.type === "number" && this.inputNumberError || this.type === "file" && this.inputFiles.length;
|
|
2608
|
+
return this.inputValue !== void 0 || ["date", "time"].includes(this.type) || this.type === "number" && this.inputNumberError || this.type === "file" && this.inputFiles.length;
|
|
2609
2609
|
},
|
|
2610
2610
|
hasLabel() {
|
|
2611
2611
|
return this.label || this.$slots.default;
|
|
@@ -5282,7 +5282,7 @@ const __vue2_script$b = {
|
|
|
5282
5282
|
return listeners;
|
|
5283
5283
|
},
|
|
5284
5284
|
hasValue() {
|
|
5285
|
-
return this.inputValue;
|
|
5285
|
+
return this.inputValue !== void 0;
|
|
5286
5286
|
},
|
|
5287
5287
|
hasLabel() {
|
|
5288
5288
|
return this.label || this.$slots.default;
|