()
| 424 | */ |
| 425 | @Watch('value') |
| 426 | protected async valueChanged() { |
| 427 | const { value } = this; |
| 428 | |
| 429 | if (this.hasValue()) { |
| 430 | this.processValue(value); |
| 431 | } |
| 432 | |
| 433 | this.emitStyle(); |
| 434 | this.ionValueChange.emit({ value }); |
| 435 | } |
| 436 | |
| 437 | /** |
| 438 | * If `true`, a header will be shown above the calendar |
nothing calls this directly
no test coverage detected