* Returns the minimum translateX position allowed for this slider input's visual thumb. * @docs-private
()
| 629 | * @docs-private |
| 630 | */ |
| 631 | getMinPos(): number { |
| 632 | const sibling = this.getSibling(); |
| 633 | if (!this._isLeftThumb && sibling) { |
| 634 | return sibling.translateX; |
| 635 | } |
| 636 | return this._tickMarkOffset; |
| 637 | } |
| 638 | |
| 639 | /** |
| 640 | * Returns the maximum translateX position allowed for this slider input's visual thumb. |