* Returns the maximum translateX position allowed for this slider input's visual thumb. * @docs-private
()
| 641 | * @docs-private |
| 642 | */ |
| 643 | getMaxPos(): number { |
| 644 | const sibling = this.getSibling(); |
| 645 | if (this._isLeftThumb && sibling) { |
| 646 | return sibling.translateX; |
| 647 | } |
| 648 | return this._slider._cachedWidth - this._tickMarkOffset; |
| 649 | } |
| 650 | |
| 651 | _setIsLeftThumb(): void { |
| 652 | this._isLeftThumb = |