(model, value)
| 517 | } |
| 518 | |
| 519 | update_selected(model, value) { |
| 520 | this.selected_indices = value; |
| 521 | this.apply_styles(); |
| 522 | } |
| 523 | |
| 524 | update_hovered(model, value) { |
| 525 | this.hovered_index = value === null ? value : [value]; |
nothing calls this directly
no test coverage detected