()
| 149 | } |
| 150 | |
| 151 | select() { |
| 152 | const group = this.inputs.activeItem()?.group(); |
| 153 | |
| 154 | if (!group?.multi()) { |
| 155 | group?.inputs.items().forEach(i => this.listBehavior.deselect(i)); |
| 156 | } |
| 157 | |
| 158 | this.listBehavior.toggle(); |
| 159 | } |
| 160 | |
| 161 | constructor(readonly inputs: ToolbarInputs<V>) { |
| 162 | this.orientation = inputs.orientation; |
no test coverage detected