-
Notifications
You must be signed in to change notification settings - Fork 327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use AG Grid filter types #12072
Use AG Grid filter types #12072
Conversation
🧪 Storybook is successfully deployed!📊 Dashboard:
|
case 'Integer': | ||
case 'Float': | ||
case 'Decimal': | ||
case 'Byte': |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could use isNumericType
toValue: string | ||
fromValue: string | ||
} | ||
//The filter value can be a single value for comparisons such as 'equals' or 'greater than,' a list for 'is in' filtering, or two values that define a range. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could be a doc comment
type FilterAction = | ||
| 'equals' | ||
| 'notEqual' | ||
| 'greaterThan' | ||
| 'greaterThanOrEqual' | ||
| 'lessThan' | ||
| 'lessThanOrEqual' | ||
| 'inRange' | ||
| 'blank' | ||
| 'notBlank' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
type FilterAction = | |
| 'equals' | |
| 'notEqual' | |
| 'greaterThan' | |
| 'greaterThanOrEqual' | |
| 'lessThan' | |
| 'lessThanOrEqual' | |
| 'inRange' | |
| 'blank' | |
| 'notBlank' | |
type FilterAction = keyof typeof ActionMap |
Pull Request Description
Important Notes
Checklist
Please ensure that the following checklist has been satisfied before submitting the PR:
Scala,
Java,
TypeScript,
and
Rust
style guides. In case you are using a language not listed above, follow the Rust style guide.
or the Snowflake database integration, a run of the Extra Tests has been scheduled.