-
Notifications
You must be signed in to change notification settings - Fork 9
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
Refactor Select to new Combobox component #593
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #593 +/- ##
==========================================
+ Coverage 98.71% 98.74% +0.02%
==========================================
Files 525 535 +10
Lines 4452 4850 +398
Branches 687 782 +95
==========================================
+ Hits 4395 4789 +394
- Misses 57 60 +3
- Partials 0 1 +1 ☔ View full report in Codecov by Sentry. |
#621 - Basic Combobox
#764 - Inline Combobox
Due to the large number of issues for the
Select
component, I'm refactoring it to the newCombobox
component.This new Combobox component is built using the new
useCombobox
downshift hook instead of the<Downshift />
componentSelect
currently uses.The idea is to use extensive jest tests to cover all scenarios and currently open bugs.
This refactoring should address:
Migration
The
Select
component will be kept in the codebase allowing users to gradually change fromSelect
toCombobox
component.