feat(native-filters): add search all filter options (#14710)

* feat(native-filters): add search all filter options

* add tests

* fix default value

* implement ILIKE operator

* rebump packages

* fix test

* address comments

* fix state changes coming from application

* fix debouncer
This commit is contained in:
Ville Brofeldt
2021-05-24 16:33:59 +03:00
committed by GitHub
parent 8484ee653f
commit e9657afe4b
18 changed files with 593 additions and 402 deletions

View File

@@ -206,6 +206,7 @@ class FilterOperator(str, Enum):
GREATER_THAN_OR_EQUALS = ">="
LESS_THAN_OR_EQUALS = "<="
LIKE = "LIKE"
ILIKE = "ILIKE"
IS_NULL = "IS NULL"
IS_NOT_NULL = "IS NOT NULL"
IN = "IN" # pylint: disable=invalid-name