-
Notifications
You must be signed in to change notification settings - Fork 0
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
Dropdown: render proper border when dropdown gets clicked #130
base: beta
Are you sure you want to change the base?
Conversation
Reviewer's Guide by SourceryThis PR introduces a fix to the dropdown border rendering issue and enhances the dropdown component with a new "fluid" attribute. It also updates the documentation to reflect these changes. Class diagram for dropdown component changesclassDiagram
class AuroDropdown {
+Boolean fluid
+display: inline-block
+handleClick()
+handleFocusLoss()
}
class AuroFloatingUI {
+handleClick()
+handleFocusLoss()
+handleEvent(event)
}
AuroDropdown --|> AuroFloatingUI
note for AuroDropdown "New fluid attribute added
Default display set to inline-block"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
2ff889f
to
9b3b7ae
Compare
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.
Hey @sun-mota - I've reviewed your changes - here's some feedback:
Overall Comments:
- The PR description mentions a new 'fluid' attribute but there are no related code changes in the diff. Please either update the PR description to match the actual changes or add the missing implementation for the 'fluid' attribute.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
9b3b7ae
to
174fc8f
Compare
f8017c5
to
31b7a76
Compare
31b7a76
to
6d2c44c
Compare
Alaska Airlines Pull Request
Before Submitting this pull request:
Development
sectionnote: all pull requests require at least one linked ticket
Ready For Review
, all ticket's linked underDevelopment
must have their status changed toReady For Review
as wellBy submitting this Pull Request, I confirm that my contribution is made under the terms of the Apache 2.0 license and I have performed a self-review of my own update.
Summary by Sourcery
Update dropdown styles to render a proper border when the dropdown is clicked or active, and ensure the dropdown retains focus when clicked.
Bug Fixes:
Enhancements: