MCPcopy Create free account
hub / github.com/ionic-team/ionic-framework / updateValue

Method updateValue

core/src/components/range/range.tsx:687–699  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers 2

RangeClass · 0.95
updateMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected