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
- ui5-link: wrap text by default (#9006) (1924b54)
- ui5-radio-button: wrap text by default (#9117) (b8d7bac)
Features
- ui5-menu-item: add endContent slot (dc3cfde), closes #6350
- ui5-select: introduced 'popover' part (#9120) (3c03e17), closes #4503
- ui5-time-picker: introduce
openandcloseevents (#9093) (bf2d0aa)
BREAKING CHANGES
- ui5-radio-button:
wrapping-typeproperty default value has changed fromNonetoNormal.
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-typeproperty default value has changed fromNonetoNormal.
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 -->