(info: string | ISearchProps['validationInfo'])
| 105 | } |
| 106 | |
| 107 | public setValidateInfo(info: string | ISearchProps['validationInfo']) { |
| 108 | this.setState({ |
| 109 | validationInfo: |
| 110 | typeof info === 'string' |
| 111 | ? { |
| 112 | type: 'info', |
| 113 | text: info, |
| 114 | } |
| 115 | : info, |
| 116 | }); |
| 117 | } |
| 118 | |
| 119 | public setSearchValue(value?: string) { |
| 120 | this.setState({ |
no test coverage detected