Is your feature request related to a problem? Please describe.
value={true} => does not control field.value 🔴
defaultValue={true} => does not control field.value 🔴
Describe the solution you'd like
- be able to control the filter from props
- be able to make it like a NullableBooleanInput where developer can decide (doable with controlled input)
false -> filter is off (undefined value)
- or
true -> filter is off (undefined value)
This is extremely helpful in contexts where database does not have default value on field, so there is a mix of falsy values (null/false/'') in records (less likely on null/true, but it's possible too)
Thanks!