Skip to content

Releases: SAP/ui5-webcomponents

v1.24.5

18 Jun 09:47
Compare
Choose a tag to compare

1.24.5 (2024-06-18)

Bug Fixes

v2.0.0-rc.6

17 Jun 15:33
Compare
Choose a tag to compare
v2.0.0-rc.6 Pre-release
Pre-release

2.0.0-rc.6 (2024-06-17)

New components

Features

  • ui5-link: introduce icon and endIcon properties (#9036) (06318cb)
  • ui5-toolbar: design property added (#9147) (dc3dfe0)

Bug Fixes

  • framework: set dataTransfer.effectAllowed only for UI5 elements (#9136) (28f6a2d)
  • ui5-barcode-scanner-dialog: properly fire 'close' event (#9193) (db099f1), closes #9177
  • ui5-busy-indicator: add block layer (#9208) (ba4ddb3), closes #9079
  • ui5-button: fix tab chaining in lists (#9148) (9fdf617)
  • ui5-carousel: selected state is added to item (#9184) (ced0f35)
  • ui5-date-picker: adjust unstable tests (#9223) (3b049c8), closes #9033
  • ui5-date-picker: provide accessible name to the popover (#8693) (26dee35), closes #8598
  • ui5-dialog: fix focusing when dialog is open from OpenUI5 dialog (#9183) (d067e13)
  • ui5-file-uploader: apply focus properly from inside of a popover (#9162) (2283e9e), closes #9090
  • ui5-li-notification: enhance accessibility (#9192) (cc34cea), closes #9161
  • ui5-list-item: move styles back from shadow DOM element to :host (#9155) (68cdd20)
  • ui5-list: adjust failing test (#9191) (55e477c), closes #9173
  • ui5-multi-combobox: correct lint error (#9157) (55cd3aa)
  • ui5-notification-list: change host to display:block (#9139) (efb4791)
  • ui5-segmented-button-item: add padding to icon when item is not in icon-only mode (#9180) (a3fd241), closes #9172
  • ui5-shellbar: add tooltip for shellbar items (#9143) (c39c18a)
  • ui5-side-navigation: group name is announced one time by screen … (#9207) (4f18dfd)
  • ui5-special-date: respect format-pattern (#9086) (105c311)
  • ui5-step-input: check for inner input before using value (#9212) (1b9fb61)
  • ui5-tree-item: ensure correct cursor style (#9152) (d196583), closes #9146

Code Refactoring

BREAKING CHANGES

  • ui5-checkbox: wrapping-type property default value has changed from None to Normal.
    Before:
<ui5-checkbox text=Some very very very very long text"></ui5-checkbox><!-- would truncate the text if there is not enough space -->

Now:

<ui5-checkbox text=Some very very very very long text"></ui5-checkbox> <!-- would let the text wrap if there is not enough space -->

Related to #8461, #7887

  • ui5-side-navigation-item: the wholeItemToggleAble poperty of ui5-side-navigation-item is now remomoved.
    The functionality of clicking the whole item to show/hide the sub items (if present) will
    be introduced soon with new property name and enhanced accessibility and keyboard handling.
  • ui5-tag: wrapping-type property default value has changed from None to Normal. Before:
<ui5-tag>In Process</ui5-tag><!-- would truncate the text if there is not enough space -->

Now:

<ui5-tag>In Process</ui5-tag><!-- would let the text wrap if there is not enough space -->

Related to #8461

  • ui5-li, ui5-li-custom: StandardListItem has been renamed to ListItemStandard, and CustomListItem has been renamed to ListItemCustom.
    If you previously imported the classes as follows:
import StandardListItem from "@ui5/webcomponents/StandardListItem.js";
import CustomListItem from "@ui5/webcomponents/CustomListItem.js";

now you must change imports to:

import ListItemStandard from "@ui5/webcomponents/ListItemStandard.js";
import ListItemCustom from "@ui5/webcomponents/ListItemCustom.js";

Related to: #8461

v2.0.0-rc.5

06 Jun 13:20
Compare
Choose a tag to compare
v2.0.0-rc.5 Pre-release
Pre-release

2.0.0-rc.5 (2024-06-06)

Bug Fixes

  • ui5-button: adjust screen reader announcement order (#8997) (2d9a16b)
  • ui5-calendar: adjust accessibility semantics (#9102) (06891a1), closes #9068 #9069
  • ui5-combobox: fix grouping sample (#9085) (2c160d3)
  • ui5-date: remove circular dependency (#9137) (9c8d12e)
  • ui5-input, ui5-combobox, ui5-multi-combobox: prevent native input autocomplete (#9130) (5d8dbbd)
  • ui5-notification-list: improved accessibility (#9070) (5e62d4a)
  • ui5-option-custom: show focus outline (#9101) (bf8366e)
  • ui5-popup: initialFocus won't work if 'autofocus' is set (#8956) (2c9f775)
  • ui5-popup: remove popup from the tab chain (#8955) (aedcdb9), closes #9094
  • ui5-shellbar: improved samples accessibility (#8847) (7563e7d), closes #8821

Code Refactoring

Features

BREAKING CHANGES

  • ui5-radio-button: wrapping-type property default value has changed from None to Normal.
    Before:
<ui5-radio-button text="Option A with long long text"></ui5-radio-button>
<!-- would truncate the text if there is not enough space -->

Now:

<ui5-radio-button text="Option A with long long text"></ui5-radio-button>
<!-- would let the text wrap if there is not enough space -->

Related to #8461

  • ui5-link: wrapping-type property default value has changed from None to Normal.
    Before:
<ui5-link>some very very very long link</ui5-link> <!-- would truncate the text if there is not enough space -->

Now:

<ui5-link>some very very very long link</ui5-link> <!-- would let the text wrap if there is not enough space -->

v1.24.4

31 May 13:10
Compare
Choose a tag to compare

1.24.4 (2024-05-31)

Bug Fixes

v2.0.0-rc.4

29 May 16:09
Compare
Choose a tag to compare
v2.0.0-rc.4 Pre-release
Pre-release

2.0.0-rc.4 (2024-05-29)

Bug Fixes

  • register runtime in SSR usage (#9013) (54db283)
  • ui5-*: Make setAnimationMode() properly change modes (#8965) (9f5d276), closes #8964
  • ui5-button: add keyboard shortcut to cancel the button's action (c2d9c85), closes #6782
  • ui5-button: adjust ui5-button menu button samples to use open/opener (974ff8c)
  • ui5-button: remove tabindex from disabled button (#8957) (041f573), closes #8852
  • ui5-calendar-legend: align visual design to meet WCAG 2.2 requirements (0860a3e)
  • ui5-calendar: change the show month/year private event names (#8960) (c981459), closes #8893
  • ui5-calendar: respect component level calendarType in week calculation (#8971) (69b8003)
  • ui5-calendar: switch to two column layout on Islamic or Persian secondary calendar type (#8453) (1b172eb)
  • ui5-date-picker: adjust failing tests (#9039) (7232039), closes #9033 #9034
  • ui5-date-picker: display initial view properly (#8910) (e570031), closes #8893
  • ui5-datetime-picker: change dateformat to datetime instance (#9024) (e5051ea)
  • ui5-illustrated-mesasge: update subtitle color (#8986) (c9a5120), closes #8984
  • ui5-multi-input: delete selected value on BACKSPACE (#8982) (d773532)
  • ui5-multiinput: restore and adjust unit tests (#8933) (70dc2a6)
  • ui5-notification-list: fix keyboard issues (#9040) (f1c0635)
  • ui5-notification: implement keyboard navigation spec (#8975) (d68c883)
  • ui5-panel: fix failing tests (#9044) (aeb7d42)
  • ui5-popover: correct placement in RTL direction (#9009) (36fa85e)
  • ui5-popover: fix auto close when click on iframe inside a shadow root (#8961) (5c2f5f6)
  • ui5-popover: fix infinite open/show loop (#9055) (a142caf), closes #9031
  • ui5-popover: prevent runtime error when opener is outside the viewport (#9017) (9212aa8)
  • ui5-responsive-popover: fix initially focused input going out of the viewport on iPhone (#8945) (7ff177c)
  • ui5-segmented-button-item: align sizes to spec (#8972) (0eefe5f), closes #7357
  • ui5-select: popover scrolls to typed item (#9053) (70bbd7f), closes #8987
  • ui5-side-navigation-item: "selected" is no longer announced on every focused item (#9008) (8cd3f83)
  • ui5-side-navigation-item: click event is no longer fired twice (#8944) (0dd36ca)
  • ui5-side-navigation: menu in collapsed mode width is not longer stretched unnecessary (#8940) (30c0530)
  • ui5-side-navigation: overflow menu items are now displayed (#8948) (bcb3008)
  • ui5-tag: add colors for Quartz high contrast themes for Set 2 (#8952) (92b3cf8)
  • ui5-time-picker: remove box shadow (#8951) (7c7170d), closes #8932

Code Refactoring

Features

  • ui5-*: integrate element internals in input components ([#8685](https:/...
Read more

v1.24.3

14 May 07:16
Compare
Choose a tag to compare

1.24.3 (2024-05-14)

Bug Fixes

v1.24.2

13 May 09:59
Compare
Choose a tag to compare

Version Bump

  • No changes since 1.24.1 - version bump to sync versions between packages in the mono repository.

v1.24.1

13 May 09:28
Compare
Choose a tag to compare

1.24.1 (2024-05-13)

Bug Fixes

  • framework: Custom setter works when defined in base class and does not include HTMLElement props (#8793) (9eb7325), closes #8718 #8643
  • ui5-calendar, ui5-daterange-picker: align range selection styling with vd specification (#8732) (10fd95e), closes #8585
  • ui5-calendar: switch to two column layout on Islamic or Persian secondary calendar type (#8943) (be342e7), closes #8453
  • ui5-dialog: state icon no longer shrinks when title is too long (#8851) (06774ea), closes #8762
  • ui5-file-uploader: adjust drop area (#8828) (cc7256a), closes #8572
  • ui5-illustrated-message: typo in the UnsuccessfulAuth name (#8882) (bedbee1), closes #8873
  • ui5-link: remove unnecessary transparent border (#8830) (b0d4dd5), closes #8512
  • ui5-menu: adjust active menu item text color (#8782) (0cf06f1), closes #8681
  • ui5-multi-combobox: remove value state header on validation reset (#8836) (ae490b6), closes #8586
  • ui5-multi-input: focus tokens on BACKSPACE for inputs of type 'Number' and 'Email' (#8897) (1461847), closes #8586
  • ui5-multi-input: prevent double value state message on nMore open (#8655) (4f98408), closes #8638 #8586
  • ui5-popover: fix popover going out of the viewport (#8865) (e59ac60), closes #8580
  • ui5-progress-indicator: removed redundant z-index (#8798) (812163c), closes #8303
  • ui5-responsive-popover: fix dialog initial focus (#8859) (58d65bc)
  • ui5-select-menu: prevent popover event bubbling (#8802) (897825d), closes #8500
  • ui5-select: options are now properly focused (#8741) (4a61819), closes #8308
  • ui5-shellbar: assistant icon color fixed (#8746) (ae0e430)
  • ui5-side-navigation: import overflow icon (#8861) (6bd9e39), closes #8242
  • ui5-side-navigation: replace items and fixedItems union type with SideNavigationItemBase (#8862) (c542aae)
  • ui5-split-button: add correct opacity when disabled (#8781) (96f0343), closes #8615
  • ui5-step-input: align the input vertically (#8783) (50f63b4), closes #8667
  • ui5-step-input: remove value rounding, apply value-state (#8927) (3528a3c), closes #8293
  • ui5-time-picker: fix buttons announcements in value help dialog (#8880) (d811a4c), closes #8848
  • ui5-toolbar: prevent closing of overflow on interaction (#8936) (184175b), closes #8924
  • ui5-tree-item-custom: improved key handling (#8733) (2592f58), closes #7566
  • ui5-upload-collection: correct drag and drop text and icon color (#8863) (c208132), closes #8616

v2.0.0-rc.3

10 May 07:04
Compare
Choose a tag to compare
v2.0.0-rc.3 Pre-release
Pre-release

2.0.0-rc.3 (2024-05-10)

Bug Fixes

  • ui5-cb-item: return the DOM reference of the list item (#8872) (2553213), closes #8841
  • ui5-dialog: state icon no longer shrinks when title is too long (#8839) (9b7fa49)
  • ui5-file-uploader: adjust drop area (56bcab5), closes #8572
  • ui5-illustrated-message: typo in the UnsuccessfulAuth name (#8873) (b64d76f)
  • ui5-link: remove unnecessary transparent border (aa27032), closes #8512
  • ui5-multi-combobox: correct unstable tests (#8867) (b2d004b)
  • ui5-multi-combobox: remove value state header on validation reset (#8832) (5cad77b), closes #8674
  • ui5-multi-input: focus tokens on BACKSPACE for inputs of type 'Number' and 'Email' (#8866) (7b5645d), closes #8712
  • ui5-progress-indicator: removed redundant z-index (#8797) (4763637), closes #8303
  • ui5-split-button: restrict height manipulation from outside wrapper (#8780) (691c68e)
  • ui5-step-input: remove value rounding, apply value-state (#8293) (0c0aa1d)
  • ui5-tabcontainer: avoid multiple selected tabs when there is no explicit selection (#8808) (ae8d969)
  • ui5-tab: focus() now works if tab is currently displayed in the overflow (#8796) (52c3ea8)
  • ui5-time-picker: fix buttons announcements in value help dialog (#8848) (d5f25fb)
  • ui5-toolbar: prevent closing of overflow on interaction (#8924) (9fb21bf)

chore

Code Refactoring

Read more

v2.0.0-rc.2

18 Apr 08:06
Compare
Choose a tag to compare
v2.0.0-rc.2 Pre-release
Pre-release

2.0.0-rc.2 (2024-04-18)

Bug Fixes

  • u5-dialog: soft keyboard is correctly opened on iOS devices (#8583) (6cf1d74)
  • ui5-calendar, ui5-daterange-picker: align range selection styling with vd specification (#8585) (d4f0e0e)
  • ui5-menu-item: apply scoping to internal Icon (#8751) (ce55755)
  • ui5-popover: fix popover going out of the viewport (#8735) (bca8f2a)
  • ui5-progress-indicator: hidden value design (#8545) (bf094d3)
  • ui5-responsive-popover: fix dialog initial focus (#8774) (27b522f)
  • ui5-shellbar: aligned specs (#8694) (c5ec720)
  • ui5-shellbar: assistant icon color fixed (#8713) (e501ac8)
  • ui5-side-navigation: import overflow icon (#8736) (8bc1bb4)
  • ui5-side-navigation: replace items and fixedItems union type with SideNavigationItemBase (#8740) (b589486)
  • ui5-split-button: add correct opacity when disabled (#8738) (399144e), closes #8615
  • ui5-tabcontainer: prevent endless resizing when moving after last overflow item (#8725) (c33ba40)
  • ui5-tabcontainer: replace default slot union type with interface (#8734) (ac6b44f)

Code Refactoring

  • ui5-multi-combobox: rename property allowCustomValues to noValidation (#8765) (bb27acb)
  • ui5-textarea: rename property growingMaxLines to growingMaxRows (#8756) (3fd33ab), closes #8461

Features

BREAKING CHANGES

  • ui5-multi-combobox: The allowCustomValues property have been renamed to noValidation.
    If you have previously used the allowCustomValues property
    <ui5-multi-combobox allow-custom-values></ui5-multi-combobox>
    Now use noValidation instead:
    <ui5-multi-combobox no-validation></ui5-multi-combobox>

Related to: #8461

  • ui5-textarea: The growingMaxLines property have been renamed to growingMaxRows.