Updates all value indicator UIs in the slider.
()
| 763 | |
| 764 | /** Updates all value indicator UIs in the slider. */ |
| 765 | private _updateValueIndicatorUIs(): void { |
| 766 | const eInput = this._getInput(_MatThumb.END); |
| 767 | const sInput = this._getInput(_MatThumb.START); |
| 768 | |
| 769 | if (eInput) { |
| 770 | this._updateValueIndicatorUI(eInput); |
| 771 | } |
| 772 | if (sInput) { |
| 773 | this._updateValueIndicatorUI(sInput); |
| 774 | } |
| 775 | } |
| 776 | |
| 777 | // Update Tick Mark Track Width |
| 778 | // |
no test coverage detected