-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
feat(dashboard): BulkEditor Boolean cell behaviour #8418
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
6 Skipped Deployments
|
|
@shahednasser I have added the |
What
Changes to the Boolean cell
Changes to scroll behaviour
Changes to how selection and dragSelection is calculated
useEffect
's that were used to update the selection / drag selection on updates toanchor
,rangeEnd
, anddragEnd
have been removed in favour of utils that a cell can call to check if it is in either selection.Clean up of query selector use
useGridQueryTool
has been added that exposes a couple of utils for getting a cell container or cell input HTML element.Other
prop-types
dependency to project. This should prevent an error being thrown about the dependency missing when running the dashboard in development. This is might temporary, as the current FocusTrap solution is not perfect and needs to be improved. Not sure yet, if the desired effect can be achieved withfocus-trap-react
, but if not we will remove the dependency andprop-types
.Closes CC-268