-
Notifications
You must be signed in to change notification settings - Fork 160
style(drop-down): Adding classes for different density types #5036
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
Merged
Merged
Changes from 13 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
837815b
style(drop-down): Aadding classes for different density types
71b22d1
Fix padding and lint error
8882007
Merge branch '7.2.x' into add-density-to-drop-down_7.2.x
simeonoff 05214fc
style(drop-down): Aadding classes for different density types
4eb64c5
Fix padding and lint error
1a46cc9
Fix lint errors and padding
818671e
Update padding and height to match the spec
5fa559f
style(drop-down/combo): Update the height to match the newly updated …
fb11597
style(drop-down/combo): Fix misspelling
31bc2f6
Merge branch '7.2.x' into add-density-to-drop-down_7.2.x
simeonoff 273014f
Merge branch '7.2.x' into add-density-to-drop-down_7.2.x
ViktorSlavov 60cfb7e
feat(drop-down): implement density handling in DD, Combo, Select, #5034
ViktorSlavov 4f3635f
test(select): fix failing tests, #5034
ViktorSlavov 6b40fbb
Merge branch '7.2.x' into add-density-to-drop-down_7.2.x
wnvko 8d04f20
docs(*): update README.md, CHANGELOG.md with drop-down display densit…
ViktorSlavov fb40637
test(drop-down): add tests for Display Density to Combo & Drop-Down s…
ViktorSlavov bdca07f
chore(*): properly extend DisplayDensity in interface; clarify positi…
ViktorSlavov bec7cb0
chore(*): remove static prop from tests
ViktorSlavov 4fddb35
test(drop-down): remove unnecessary test, #1663
ViktorSlavov 811e2e9
Merge branch '7.2.x' into add-density-to-drop-down_7.2.x
simeonoff 5615063
Merge branch '7.2.x' into add-density-to-drop-down_7.2.x
Lipata File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
drop down could update its items display density via hidden input. This way items will not know about drop down. Other possible solution is to use some service to update display density of the items.
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.
I believe this would be better left for another PR - in order for the drop-down item to not know about it's parent, the remaining selection logic and the
allowItemFocus
handling inside of the drop-down-item component will have to be abstracted in a service as well