-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Combobox skeleton #20185
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
Combobox skeleton #20185
Conversation
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.
LGTM
Add the "merge ready" label when you're ready
selector: 'ng-template[cdkComboboxPanel]', | ||
exportAs: 'cdkComboboxPanel', | ||
host: { | ||
'role': 'combobox' |
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.
The panel here wouldn't be the element w/ role="combobox"
, it would be the trigger.
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.
Yeah that shouldn't have been there my mistake.
'role': 'combobox' | ||
} | ||
}) | ||
export class CdkComboboxPanel<V = unknown> { |
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'd probably prefer to use T
as the template type here (and elsewhere)
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.
Noted.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Created the skeleton for the combobox directive in cdk-experimental. Also added combobox to code owners.