(search)
| 10004 | this.props = props; |
| 10005 | } |
| 10006 | select(search) { |
| 10007 | return new Promise((resolve, reject)=>{ |
| 10008 | this.dataScope.select(search); |
| 10009 | this.props.onDataChanged(DataLayoutChange.same); |
| 10010 | resolve(); |
| 10011 | }); |
| 10012 | } |
| 10013 | deselect() { |
| 10014 | return new Promise((resolve, reject)=>{ |
| 10015 | this.dataScope.deselect(); |
nothing calls this directly
no test coverage detected