mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-07 02:10:03 +00:00
Introduce is any of
and is none of
filters
This commit is contained in:
parent
6cd0d63bb4
commit
0a4e5f938d
20 changed files with 822 additions and 26 deletions
web-frontend/modules/database
|
@ -50,6 +50,8 @@ import {
|
|||
IsEvenAndWholeViewFilterType,
|
||||
SingleSelectEqualViewFilterType,
|
||||
SingleSelectNotEqualViewFilterType,
|
||||
SingleSelectIsAnyOfViewFilterType,
|
||||
SingleSelectIsNoneOfViewFilterType,
|
||||
BooleanViewFilterType,
|
||||
EmptyViewFilterType,
|
||||
NotEmptyViewFilterType,
|
||||
|
@ -410,6 +412,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