-
Notifications
You must be signed in to change notification settings - Fork 83
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
fix: add missing export for SelectListBox element class #7925
Conversation
Am I right in my assumption that this export exists because it's a slotted component? Because then |
ad95df0
to
ec3316f
Compare
Quality Gate passedIssues Measures |
I think it's mainly because users can create |
Description
When changing
vaadin-select-list-box
to not extendvaadin-list-box
I added the export to the.d.ts
file.However, the corresponding JS class isn't exported, unlike
SelectItem
and e.g.ContextMenuListBox
.Added the export to make importing the component possible and align with other similar components.
Type of change