()
| 685 | } |
| 686 | |
| 687 | private updateValue() { |
| 688 | this.noUpdate = true; |
| 689 | |
| 690 | const { valA, valB } = this; |
| 691 | this.value = !this.dualKnobs |
| 692 | ? valA |
| 693 | : { |
| 694 | lower: Math.min(valA, valB), |
| 695 | upper: Math.max(valA, valB), |
| 696 | }; |
| 697 | |
| 698 | this.noUpdate = false; |
| 699 | } |
| 700 | |
| 701 | private onBlur = () => { |
| 702 | if (this.hasFocus) { |