-
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
refactor!: update MSCB overlay to not extend vaadin-overlay #7002
Conversation
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
@@ -3,7 +3,6 @@ | |||
* Copyright (c) 2021 - 2023 Vaadin Ltd. | |||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | |||
*/ | |||
import '@vaadin/overlay/theme/lumo/vaadin-overlay.js'; |
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.
This theme import was added to overlay based components in #3888 but it's no longer needed: from now on, vaadin-overlay
doesn't get defined when importing vaadin-multi-select-combo-box
.
@@ -3,7 +3,6 @@ | |||
* Copyright (c) 2021 - 2023 Vaadin Ltd. | |||
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ | |||
*/ | |||
import '@vaadin/overlay/theme/material/vaadin-overlay.js'; |
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.
Same as above, this import it's no longer needed as the component does not define vaadin-overlay
.
This ticket/PR has been released with Vaadin 24.4.0.alpha1 and is also targeting the upcoming stable 24.4.0 version. |
Description
Same as #6134 but for
vaadin-multi-select-combo-box
.Part of #5718
Updated
vaadin-multi-select-combo-box-overlay
to align with thevaadin-combo-box-overlay
.As a result, this component no longer imports
vaadin-overlay
so it doesn't get defined.Type of change