()
| 384 | } |
| 385 | |
| 386 | getLocals() { |
| 387 | const locals = super.getLocals(); |
| 388 | locals.options = this.getOptions(); |
| 389 | |
| 390 | [ |
| 391 | "help", |
| 392 | "disabled", |
| 393 | "mode", |
| 394 | "prompt", |
| 395 | "itemStyle", |
| 396 | "isCollapsed", |
| 397 | "onCollapseChange", |
| 398 | "testID" |
| 399 | ].forEach(name => (locals[name] = this.props.options[name])); |
| 400 | |
| 401 | return locals; |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | Select.transformer = nullOption => { |
nothing calls this directly
no test coverage detected