Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🤖 I have created a release beep boop
0.50.0 (2024-04-11)
⚠ BREAKING CHANGES
@sbb-esta/lyne-components
have changed from extension-less to including the extension (e.g.@sbb-esta/lyne-components/button
to@sbb-esta/lyne-components/button.js
).sbb-dialog
component now needs the dedicated inner elementssbb-dialog-title
,sbb-dialog-content
, andsbb-dialog-actions
. Use these components to respectively provide a title, a content and, optionally, a footer with an action group. Moreover, the full-screen variant (which occurred when no title was provided to the dialog) has been removed. To achieve a full-screen overlay, please use the newsbb-overlay
component. As a migration help, consider the following example. Old:<sbb-dialog title-content="Title"><p>Dialog content.</p><sbb-action-group slot="action-group">...</sbb-action-group></sbb-dialog>
. New:<sbb-dialog><sbb-dialog-title>Title</sbb-dialog-title><sbb-dialog-content><p>Dialog content</p></sbb-dialog-content><sbb-dialog-actions>...</sbb-dialog-actions></sbb-dialog>
. Previously, a full-screen dialog was displayed if no title was provided to the dialog component:<sbb-dialog><p>Dialog content.</p></sbb-dialog>
. To achieve the same, it is now mandatory to use thesbb-overlay
component:<sbb-overlay><p>Overlay content.</p></sbb-overlay>
.--sbb-form-field-height
has been renamed to--sbb-form-field-min-height
.Features
<sbb-form-field>
(#2506) (f8316f0), closes #2497sbb-overlay
component from dialog (#2477) (5ea4fb7), closes #2476 #2470Bug Fixes
Code Refactoring
This PR was generated with Release Please. See documentation.