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