(props)
| 58 | private selectInput: RefObject<HTMLInputElement>; |
| 59 | |
| 60 | constructor(props) { |
| 61 | super(props); |
| 62 | this.contextView = useContextView({ |
| 63 | shadowOutline: false, |
| 64 | }); |
| 65 | this.state = this.getDefaultState(this.props); |
| 66 | this.selectElm = React.createRef(); |
| 67 | this.selectInput = React.createRef(); |
| 68 | } |
| 69 | |
| 70 | static getDerivedStateFromProps(props, state) { |
| 71 | if (props.value !== state.value) { |
nothing calls this directly
no test coverage detected