@ui5/webcomponents 0.31.26 → 0.31.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.31.27](https://github.com/SAP/ui5-webcomponents/compare/v0.31.25...v0.31.27) (2021-12-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **ui5-message-strip:** make speech output more comprehensive ([e3fe05f](https://github.com/SAP/ui5-webcomponents/commit/e3fe05f)), closes [#4416](https://github.com/SAP/ui5-webcomponents/issues/4416)
12
+ * **ui5-textarea:** Calc properly TextArea's size for showExceeds property ([#4152](https://github.com/SAP/ui5-webcomponents/issues/4152)) ([#4417](https://github.com/SAP/ui5-webcomponents/issues/4417)) ([58e9249](https://github.com/SAP/ui5-webcomponents/commit/58e9249))
13
+
14
+
15
+ ### Features
16
+
17
+ * **ui5-segmented-button:** accessibleName property implemented ([#4418](https://github.com/SAP/ui5-webcomponents/issues/4418)) ([5cb963e](https://github.com/SAP/ui5-webcomponents/commit/5cb963e)), closes [#4000](https://github.com/SAP/ui5-webcomponents/issues/4000)
18
+
19
+
20
+
21
+
22
+
6
23
  ## [0.31.26](https://github.com/SAP/ui5-webcomponents/compare/v0.31.25...v0.31.26) (2021-12-06)
7
24
 
8
25
 
@@ -22,7 +22,20 @@ const metadata = {
22
22
  tag: "ui5-segmented-button",
23
23
  altTag: "ui5-segmentedbutton",
24
24
  languageAware: true,
25
- properties: /** @lends sap.ui.webcomponents.main.SegmentedButton.prototype */ {},
25
+ properties: /** @lends sap.ui.webcomponents.main.SegmentedButton.prototype */ {
26
+ /**
27
+ * Sets the accessible aria name of the component.
28
+ *
29
+ * @type {String}
30
+ * @defaultvalue: ""
31
+ * @public
32
+ * @since 0.31.26
33
+ */
34
+ accessibleName: {
35
+ type: String,
36
+ defaultValue: undefined,
37
+ },
38
+ },
26
39
  managedSlots: true,
27
40
  slots: /** @lends sap.ui.webcomponents.main.SegmentedButton.prototype */ {
28
41