(event?: any)
| 480 | } |
| 481 | } |
| 482 | public onInput(event?: any) { |
| 483 | if (this.props.onInput) { |
| 484 | this.props.onInput(event); |
| 485 | } |
| 486 | if (this.props.placeholder) { |
| 487 | this.updatePlaceholder(); |
| 488 | } |
| 489 | } |
| 490 | public onFocus(event: any) { |
| 491 | if (this.props.onFocus) { |
| 492 | this.props.onFocus(event, this.editor); |
nothing calls this directly
no test coverage detected