| 71 | const operations = ["=", "<", ">", "<=", ">="]; |
| 72 | |
| 73 | export interface ValueSearchRef { |
| 74 | getSearchParameters: () => { value: number | null; operation: string | null }; |
| 75 | clear: () => void; |
| 76 | } |
| 77 | |
| 78 | const ValueSearch = forwardRef<ValueSearchRef, ValueSearchProps>( |
| 79 | ({ valueType }, ref) => { |
nothing calls this directly
no outgoing calls
no test coverage detected