@ui5/webcomponents 1.2.2 → 1.2.3

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,17 @@
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
+ ## [1.2.3](https://github.com/SAP/ui5-webcomponents/compare/v1.2.2...v1.2.3) (2022-03-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **ui5-date-picker:** remove aria-expanded attribute ([#4866](https://github.com/SAP/ui5-webcomponents/issues/4866)) ([b62a0e9](https://github.com/SAP/ui5-webcomponents/commit/b62a0e9)), closes [#4865](https://github.com/SAP/ui5-webcomponents/issues/4865)
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.2.2](https://github.com/SAP/ui5-webcomponents/compare/v1.2.1...v1.2.2) (2022-03-22)
7
18
 
8
19
 
@@ -677,7 +677,6 @@ class DatePicker extends DateComponentBase {
677
677
  "ariaHasPopup": HasPopup.Grid,
678
678
  "ariaAutoComplete": "none",
679
679
  "ariaControls": `${this._id}-responsive-popover`,
680
- "ariaExpanded": this.isOpen(),
681
680
  "ariaRequired": this.required,
682
681
  "ariaLabel": getEffectiveAriaLabelText(this),
683
682
  };
@@ -150,9 +150,7 @@ class TimePicker extends TimePickerBase {
150
150
  "ariaRoledescription": this.dateAriaDescription,
151
151
  "ariaHasPopup": "dialog",
152
152
  "ariaAutoComplete": "none",
153
- "role": "combobox",
154
153
  "ariaControls": `${this._id}-responsive-popover`,
155
- "ariaExpanded": this.isOpen(),
156
154
  };
157
155
  }
158
156
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "UI5 Web Components: webcomponents.main",
5
5
  "ui5": {
6
6
  "webComponentsPackage": true
@@ -42,14 +42,14 @@
42
42
  "directory": "packages/main"
43
43
  },
44
44
  "dependencies": {
45
- "@ui5/webcomponents-base": "1.2.2",
46
- "@ui5/webcomponents-icons": "1.2.2",
47
- "@ui5/webcomponents-ie11": "1.2.2",
48
- "@ui5/webcomponents-localization": "1.2.2",
49
- "@ui5/webcomponents-theming": "1.2.2"
45
+ "@ui5/webcomponents-base": "1.2.3",
46
+ "@ui5/webcomponents-icons": "1.2.3",
47
+ "@ui5/webcomponents-ie11": "1.2.3",
48
+ "@ui5/webcomponents-localization": "1.2.3",
49
+ "@ui5/webcomponents-theming": "1.2.3"
50
50
  },
51
51
  "devDependencies": {
52
- "@ui5/webcomponents-tools": "1.2.2",
52
+ "@ui5/webcomponents-tools": "1.2.3",
53
53
  "chromedriver": "99.0.0"
54
54
  }
55
- }
55
+ }
package/src/DatePicker.js CHANGED
@@ -677,7 +677,6 @@ class DatePicker extends DateComponentBase {
677
677
  "ariaHasPopup": HasPopup.Grid,
678
678
  "ariaAutoComplete": "none",
679
679
  "ariaControls": `${this._id}-responsive-popover`,
680
- "ariaExpanded": this.isOpen(),
681
680
  "ariaRequired": this.required,
682
681
  "ariaLabel": getEffectiveAriaLabelText(this),
683
682
  };
package/src/TimePicker.js CHANGED
@@ -150,9 +150,7 @@ class TimePicker extends TimePickerBase {
150
150
  "ariaRoledescription": this.dateAriaDescription,
151
151
  "ariaHasPopup": "dialog",
152
152
  "ariaAutoComplete": "none",
153
- "role": "combobox",
154
153
  "ariaControls": `${this._id}-responsive-popover`,
155
- "ariaExpanded": this.isOpen(),
156
154
  };
157
155
  }
158
156