Skip to content

Releases: UI5/webcomponents

v0.31.18

20 Sep 14:26

Choose a tag to compare

v0.31.18 Pre-release
Pre-release

Change Log

All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.

0.31.18 (2021-09-20)

Bug Fixes

Features

  • ui5-card: add "ariaLevel" property (5eca9d5), closes #3712
  • ui5-upload-collection: add "accessibleName" property (#3917) (7cb8e04), closes #3768

v0.31.17

13 Sep 07:37

Choose a tag to compare

v0.31.17 Pre-release
Pre-release

Change Log

All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.

0.31.17 (2021-09-13)

Bug Fixes

  • ui5-avatar, ui5-icon: attach onclick handler based on interactive property (#3742) (e61f46f)
  • ui5-badge: update parameters for color-scheme="8" (#3814) (3ea8cad)
  • ui5-dialog: correctly restore body scrolling on ESC (#3696) (983af6a), closes #3690
  • ui5-li: add "Selected" text to item's accessible name (#3853) (d73bba1)
  • ui5-li-groupheader: change role option (#3869) (b6219c7)
  • ui5-li: add accessible name to single select radio button (#3842) (eda250f)

Features

  • ui5-calendar: support secondary calendar type (#3634) (3d04792)
  • ui5-view-settings-dialog: introduce filter section (#3616) (89e07b1)

v0.31.16

26 Aug 16:31

Choose a tag to compare

v0.31.16 Pre-release
Pre-release

Change Log

All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.

0.31.16 (2021-08-26)

Bug Fixes

Features

v0.33.0

11 Aug 07:59

Choose a tag to compare

v0.33.0 Pre-release
Pre-release

Change Log

All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.

0.33.0 (2021-08-11)

The release is based on RC.15.
See the RC.15 changelog to find what components, features and BREAKING CHANGES are introduced.

v0.31.15

10 Aug 06:51

Choose a tag to compare

v0.31.15 Pre-release
Pre-release

Change Log

All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.

0.31.15 (2021-08-10)

Bug Fixes

Features

datePicker.addEventListener('change', function(e) {
	// Prevent setting value and valueState
	e.preventDefault();

       // Check the available event details
     
	e.detail.value // the value typed or selected by the user
	e.detail.valid =  // "true or false", indicates  if the date value is valid or not, based on the date format, min-date and max-date props, etc.
	
	// Set the value and the valueState
	datePicker.value = e.detail.value;
	datePicker.valueState = // "Error or None", based on internal logic or based on the e.detail.valid event parameter
});
  • ui5-responsive-popover: add prevent initial focus parameter to opeen method (#3595) (1eb7206), closes #3473`
responsivePopover.open(event.target, true /*prevent initial focus */);
  • ui5-segmented-button-item: introduce new component to serve as child of SegmentedButton (#3258) (d9f5ce3), closes #3191 #3191
<ui5-segmented-button>
   <ui5-segmentedbutton-item pressed>One</ui5-segmentedbutton-item>
   <ui5-segmentedbutton-item>Two</ui5-segmentedbutton-item>
   <ui5-segmentedbutton-item>Three</ui5-segmentedbutton-item>
</ui5-segmented-button>
<ui5-view-settings-dialog id="vsd">
		<ui5-li slot="sortItems">Name</ui5-li>
		<ui5-li slot="sortItems">Position</ui5-li>
		<ui5-li slot="sortItems">Company</ui5-li>
		<ui5-li slot="sortItems">Department</ui5-li>
	</ui5-view-settings-dialog>

	<script>
		btnOpenDialog.addEventListener("click", function () {
			vsd.open();
		});
		vsd.addEventListener("confirm", function(evt) {
			alert("OK button clicked, returned info is: " + JSON.stringify(evt.detail));
		});
	</script>

Note: in the master and RC.15 versions we use the "show()" method to show the ViewSettingsDialog, as all popus methods have been renamed to show (previously open) and showAt(previously openBy).

But, in 0.31 we still use open and openBy (these breaking changes are not downported), that's why to show the ViewSettingsDialog we use open.

BREAKING_CHANGES

  • ui5-segmented-button: rename tag name (#3345) (b3b42f6)
    The SegmentedButton's tag name has been changed to ui5-segmented-button.

  • ui5-segmented-button-item: introduce new component to serve as child of SegmentedButton (#3258) (d9f5ce3), closes #3191 #3191
    The SegmentedButton no longer accepts ToggleButton, you have to use the newly created component, called SegmentedButtonItem as follows:

<ui5-segmented-button>
   <ui5-segmentedbutton-item pressed>One</ui5-segmentedbutton-item>
   <ui5-segmentedbutton-item>Two</ui5-segmentedbutton-item>
   <ui5-segmentedbutton-item>Three</ui5-segmentedbutton-item>
</ui5-segmented-button>

v1.0.0-rc.15

04 Aug 13:01

Choose a tag to compare

Change Log

All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.

1.0.0-rc.15 (2021-07-23)

New Components

  • ui5-barcode-scanner-dialog: introduce new component (#3523) (196a590)
  • ui5-breadcrumbs: introduce new component (#3489) (6dbc2a0)
  • ui5-illustrated-message: introduce new component (#3376) (2dff1f4)

New Package

  • icons-business-suite: introduce new package of icons #3461

Features

  • a11y: introduce "accessibleName" property for multiple components (#3449) (f4f5864)
  • a11y: introduce "accessibleNameRef" property for multiple components (#3442) (42d3ed5), closes #3107
  • ui5-badge: apply latest Fiori 3 design (#3389) (a58a1a4)
  • ui5-busy-indicator: add "delay" property (#3419) (cc8acc7)
  • ui5-button: introduce "Attention" type (#3481) (2c9393c), closes #3446
  • ui5-carousel: add "hidePageIndicator" property (#3268) (e13a4c9), closes #3158
  • ui5-checkbox: add "indeterminate" state (#3309) (42a1326), closes #3217
  • ui5-combobox: enable setting value programatically (#3253) (d85561a)
  • ui5-combobox: add suggestions grouping (#3469) (5e3f391), closes #3371
  • ui5-dialog: add keyboard support for "draggable" and "resizable" (#3483) (8580fd8)
  • ui5-input: introduce new "SuggestionGroupItem" (#3248) (39ccf7b)
  • ui5-page: implement responsive paddings (#3412) (b720393)
  • ui5-segmented-button-item: introduce new component (#3258) (9bd9ce4), closes #3191 #3191
  • ui5-select: move focus to option upon typing (#3538) (4657395)
  • ui5-switch: add "design" property (#3257) (998be76), closes #3107
  • ui5-table: add "Single" and "Multi" selection (#2848) (cc31280)
  • ui5-table-group-row: introduce new component (#3470) (d5ab16a), closes #3319
  • ui5-timeline: introduce "layout" property (#3520) (b28e104)
  • ui5-wizard: support auto focus when step is changed (#3310) (70f5563)
  • framework: introduce InvisibleMessage util (#3192) (0a33c40)
  • framework: expose dist paths as root paths via package.json export field (#3274) (bd34a5e)
  • framework: support sap-* config URL params (#3138) (5d9cdb9), closes #3114

BREAKING CHANGES

  • a11y: deprecate "aria-label" support in favour of "accessible-name" (#3449) (f4f5864)
    • The support of "aria-label" has been deprecated in favor of new property "accessibleName" for the following components: Button, Wizard, WizardStep, ComboBox, DatePicker, Dialog, Input, List, Panel, Popover, Popup, RatingIndicator, Select, StepInput and TextArea.
    • The support of "aria-label" has been removed for the following components: Card, CheckBox and Link.
<ui5-date-picker accessible-name="Hello World"></ui5-date-picker>
  • a11y: deprecate "aria-labelledby" support in favour of "accessible-name-ref" (#3442) (42d3ed5), closes #3107
    • The support for "aria-labelledby" have been deprecated in favour of new property "accessibleNameRef" for the following components: ComboBox, DatePicker, Input, List, Rating Indicator, Select, StepInput, TextArea, WizardStep.
    • The support for "aria-labelledby"` has been removed for the following component: Button, Card and CheckBox.
<ui5-label id="infoText">info text</ui5-label>
<ui5-date-picker  accessible-name-ref="infoText"></ui5-date-picker>
  • all list items: rename "info" and "infoState" properties (#3259) (ca42531), closes #3107
    StandardListItem's "info" and "infoState" properties have been renamed to "additionalText" and "additionalTextState".
    SuggestionItem's "info" and "infoState" properties have been renamed to "additionalText" and "additionalTextState".
    TreeItem's: "info" and "infoState" properties have been renamed to "additionalText" and "additionalTextState".
  • ui5-avatar: rename "backgroundColor" property to "colorScheme" (#3237) (a3a3a11)
    The property "backgroundColor" has been renamed to "colorScheme".
  • ui5-avatar: implement default slot for image (#3237) (9646c3e)
    The properties "image" and "imageFitType" have been deprecated in favour of default slot:
<ui5-avatar>
	<img src="./avatar.jpg" style="object-fit: cover;">
</ui5-avatar>
  • ui5-avatar-group: deprecate "avatarSize" property (#3107) (fd60e90)
    The property "avatarSize" property has been deprecated. You can set the "size" property to every avatar that you pass in the default slot.
  • ui5-bar: replace "middleContent" slot with the default slot (#3107) (e235d7d)
    The middleContent slot is deprecated in favour of default slot.
  • ui5-busy-indicator: change tag name (#3107) (d43de85)
    The component tag name is renamed from "ui5-busyindicator" to "ui5-busy-indicator".
  • ui5-button: remove "iconSize" property (#3107) (ff9d7dd)
    The "iconSize" property has been removed.
  • ui5-card: refactor API (#3107) (86f0333)
    The Card's "header", "subheading", "status", "headerInteractive" properties, "action" and "avatar" slots, and "header-...
Read more

v0.31.14

03 Aug 09:09

Choose a tag to compare

v0.31.14 Pre-release
Pre-release

Change Log

All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.

0.31.14 (2021-08-03)

Bug Fixes

  • ui5-dialog: fix text selection on chrome (#3532) (c44c23f), closes #3510
  • ui5-input: fire change on the initial tab press after suggestion is selected (#3514) (b3cd01b), closes #3496

Features

v0.31.13

26 Jul 09:02

Choose a tag to compare

v0.31.13 Pre-release
Pre-release

Change Log

All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.

0.31.13 (2021-07-26)

Bug Fixes

v0.31.12

02 Jul 08:22

Choose a tag to compare

v0.31.12 Pre-release
Pre-release

Change Log

All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.

0.31.12 (2021-07-02)

Bug Fixes

  • ui5-step-input: fire input event once when value is deleted (#3474) (46f54f8), closes #3457

Features

BREAKING CHANGES

  • ui5-combobox: filter value property is removed (#3253)

v0.29.20

02 Jul 09:40

Choose a tag to compare

v0.29.20 Pre-release
Pre-release

Change Log

All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.

0.29.20 (2021-07-02)

Bug Fixes

  • ui5-step-input: fire input event once when value is deleted (#3474) (2bcb78b), closes #3457

Features