* Emits an `ionChange` event. * * This API should be called for user committed changes. * This API should not be used for external value changes.
()
| 488 | * This API should not be used for external value changes. |
| 489 | */ |
| 490 | private emitValueChange() { |
| 491 | this.value = this.ensureValueInBounds(this.value); |
| 492 | this.ionChange.emit({ value: this.value }); |
| 493 | } |
| 494 | |
| 495 | /** |
| 496 | * The value should be updated on touch end or |