()
| 722 | } |
| 723 | |
| 724 | _updateMinMax(): void { |
| 725 | const sibling = this.getSibling(); |
| 726 | if (!sibling) { |
| 727 | return; |
| 728 | } |
| 729 | if (this._isEndThumb) { |
| 730 | this.min = Math.max(this._slider.min, sibling.value); |
| 731 | this.max = this._slider.max; |
| 732 | } else { |
| 733 | this.min = this._slider.min; |
| 734 | this.max = Math.min(this._slider.max, sibling.value); |
| 735 | } |
| 736 | } |
| 737 | |
| 738 | override _updateWidthActive(): void { |
| 739 | const minWidth = this._slider._rippleRadius * 2 - this._slider._inputPadding * 2; |
no test coverage detected