-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(filters): add StartsWith/EndsWith (
a*z
) filter combo (#1530)
* feat(filters): add StartsWith/EndsWith (`a*z`) filter combo
- Loading branch information
1 parent
27777ef
commit 51560aa
Showing
8 changed files
with
220 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,38 @@ | ||
export type OperatorString = '' | '<>' | '!=' | '=' | '==' | '>' | '>=' | '<' | '<=' | '*' | 'Custom' | 'a*' | '*z' | 'EQ' | 'GE' | 'GT' | 'NE' | 'LE' | 'LT' | 'IN' | 'NIN' | 'NOT_IN' | 'IN_CONTAINS' | 'NIN_CONTAINS' | 'NOT_IN_CONTAINS' | 'NOT_CONTAINS' | 'Not_Contains' | 'CONTAINS' | 'Contains' | 'EndsWith' | 'StartsWith' | 'RangeInclusive' | 'RangeExclusive' | 'IN_COLLECTION' | 'NOT_IN_COLLECTION'; | ||
export type OperatorString = | ||
| '' | ||
| '<>' | ||
| '!=' | ||
| '=' | ||
| '==' | ||
| '>' | ||
| '>=' | ||
| '<' | ||
| '<=' | ||
| '*' | ||
| 'a*' | ||
| '*z' | ||
| 'a*z' | ||
| 'Custom' | ||
| 'EQ' | ||
| 'GE' | ||
| 'GT' | ||
| 'NE' | ||
| 'LE' | ||
| 'LT' | ||
| 'IN' | ||
| 'NIN' | ||
| 'NOT_IN' | ||
| 'IN_CONTAINS' | ||
| 'NIN_CONTAINS' | ||
| 'NOT_IN_CONTAINS' | ||
| 'NOT_CONTAINS' | ||
| 'Not_Contains' | ||
| 'CONTAINS' | ||
| 'Contains' | ||
| 'EndsWith' | ||
| 'StartsWith' | ||
| 'StartsWithEndsWith' | ||
| 'RangeInclusive' | ||
| 'RangeExclusive' | ||
| 'IN_COLLECTION' | ||
| 'NOT_IN_COLLECTION'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters