Merge commit

This commit is contained in:
Dean 2024-09-02 09:02:28 +01:00
parent 590130a166
commit df038417b5
1 changed files with 10 additions and 0 deletions

View File

@ -161,3 +161,13 @@ export const TypeIconMap = {
export const OptionColours = [...new Array(12).keys()].map(idx => {
return `hsla(${((idx + 1) * 222) % 360}, 90%, 75%, 0.3)`
})
export const FilterOperator = {
ANY: "any",
ALL: "all",
}
export const OnEmptyFilter = {
RETURN_ALL: "all",
RETURN_NONE: "none",
}