-
Notifications
You must be signed in to change notification settings - Fork 5
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/mf navigation #17
Feat/mf navigation #17
Conversation
<mf-nav-item>Option 1</mf-nav-item> | ||
<mf-nav-item highlight>Highlighted</mf-nav-item> | ||
<mf-nav-item disabled>Disabled</mf-nav-item> | ||
<mf-nav-item loading>Loading</mf-nav-item> |
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.
let's put a comment to review aria-busy
https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-busy
<slot name="suffix" part="suffix" class="nav-item__suffix"></slot> | ||
|
||
<span part="subnav-icon" class="nav-item__chevron"> | ||
<sl-icon name=${isRtl ? 'chevron-down' : 'chevron-down'} library="system" aria-hidden="true"></sl-icon> |
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.
maybe we don't need control for rtl
const isSubnavExpanded = this.subnavController.isExpanded(); | ||
|
||
return html` | ||
<a |
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.
not sure I would use anchor as a root element, just put a note in the code to review 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.
Review the comments and merge, we will cover more in detail later
No description provided.