()
| 794 | } |
| 795 | |
| 796 | private _updateSibling(): void { |
| 797 | const sibling = this.getSibling(); |
| 798 | if (!sibling) { |
| 799 | return; |
| 800 | } |
| 801 | sibling._updateMinMax(); |
| 802 | if (this._isActive) { |
| 803 | sibling._updateWidthActive(); |
| 804 | } else { |
| 805 | sibling._updateWidthInactive(); |
| 806 | } |
| 807 | } |
| 808 | |
| 809 | /** |
| 810 | * Sets the input's value. |
no test coverage detected