Skip to content

v49.3.0

Choose a tag to compare

@siemens-element-bot siemens-element-bot released this 25 Mar 08:32
· 125 commits to main since this release

49.3.0 (2026-03-25)

Features

  • card: add support for card-outline (2ef16f9)
  • dashboards-ng: extend module-federation version range to include v21 (e669f31)
  • navbar-vertical: allow to customize search debounce time (fe05c29)
  • side-panel: extract status actions into new component (f796850)

Bug Fixes

  • form: align col-form-label with form-control and form-check (bd1e763)
  • form: prevent feedback icon from disappearing on hover in readonly inputs (52a3441)
  • header-dropdown: use correct icon size for checked item (047ded0)
  • side-panel: use correct spacing in collapse mode (5c1fd2b)

DEPRECATIONS

  • side-panel: The input SiSidePanelContentComponent.statusActions should no longer be used.
    Use the new <si-side-panel-actions> instead:

    <si-side-panel-content>
      <si-side-panel-actions>
          <button
            type="button"
            si-side-panel-action
            icon="element-alarm-background-filled"
            iconColor="status-danger"
            stackedIcon="element-alarm-tick"
            stackedIconColor="text-body"
            (click)="action()"
          >
            Action
          </button>
      </si-side-panel-actions>
    </si-side-panel-content>