mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-30 07:10:03 +00:00
Merge branch '1472-categorical-filter-is-any-of-is-none-of' into 'develop'
Introduce `is any of` and `is none of` filters Closes #1472, #1979, #1978, and #2102 See merge request baserow/baserow!2223
This commit is contained in:
commit
017e093221
20 changed files with 822 additions and 26 deletions
web-frontend/modules/database
|
@ -49,6 +49,8 @@ import {
|
|||
IsEvenAndWholeViewFilterType,
|
||||
SingleSelectEqualViewFilterType,
|
||||
SingleSelectNotEqualViewFilterType,
|
||||
SingleSelectIsAnyOfViewFilterType,
|
||||
SingleSelectIsNoneOfViewFilterType,
|
||||
BooleanViewFilterType,
|
||||
EmptyViewFilterType,
|
||||
NotEmptyViewFilterType,
|
||||
|
@ -409,6 +411,15 @@ export default (context) => {
|
|||
'viewFilter',
|
||||
new SingleSelectNotEqualViewFilterType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewFilter',
|
||||
new SingleSelectIsAnyOfViewFilterType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewFilter',
|
||||
new SingleSelectIsNoneOfViewFilterType(context)
|
||||
)
|
||||
|
||||
app.$registry.register('viewFilter', new BooleanViewFilterType(context))
|
||||
app.$registry.register('viewFilter', new LinkRowHasFilterType(context))
|
||||
app.$registry.register('viewFilter', new LinkRowHasNotFilterType(context))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue