matcha-components 20.54.0 → 20.56.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.
|
@@ -9307,7 +9307,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImpor
|
|
|
9307
9307
|
class MatchaSliderComponent {
|
|
9308
9308
|
set highValue(val) {
|
|
9309
9309
|
this._highValue = val;
|
|
9310
|
-
if (val !== null && val !== undefined) {
|
|
9310
|
+
if (val !== null && val !== undefined && val !== 0) {
|
|
9311
9311
|
this.isRangeInternal = true;
|
|
9312
9312
|
}
|
|
9313
9313
|
}
|
|
@@ -9431,7 +9431,7 @@ class MatchaSliderComponent {
|
|
|
9431
9431
|
this.cancelAnimationFrame();
|
|
9432
9432
|
}
|
|
9433
9433
|
initializeValues() {
|
|
9434
|
-
if (this.isRange && this.
|
|
9434
|
+
if (this.isRange && this._highValue === 0) {
|
|
9435
9435
|
this.highValue = this.mergedOptions.ceil;
|
|
9436
9436
|
}
|
|
9437
9437
|
}
|