@syncfusion/ej2-dropdowns 20.2.44 → 20.2.45

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 20.2.44
3
+ * version : 20.2.45
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-dropdowns@*",
3
- "_id": "@syncfusion/ej2-dropdowns@20.2.43",
3
+ "_id": "@syncfusion/ej2-dropdowns@20.2.44",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-eDYUh1Aox6DSh/TiiHU2bjPmp0O5LR2W86+tL/vVUEI7GbD5ZXzwjcK414jM5Pu3pckoUoXdjqyU1qVoibjBJw==",
5
+ "_integrity": "sha512-9vBBwKyg05ryfJg3bUB7aH40XTZxWrD/MIeososkx/tyMhpabbE6pl0UkqMJ/CL/jQD79YL/IIZkTNf0QSnqLw==",
6
6
  "_location": "/@syncfusion/ej2-dropdowns",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -33,8 +33,8 @@
33
33
  "/@syncfusion/ej2-spreadsheet",
34
34
  "/@syncfusion/ej2-vue-dropdowns"
35
35
  ],
36
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-20.2.43.tgz",
37
- "_shasum": "de78f32afa49d61a4cc323357712c7cc81c46eb2",
36
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-20.2.44.tgz",
37
+ "_shasum": "9f2bd56c148399001eb94aa89a169c1d08b544eb",
38
38
  "_spec": "@syncfusion/ej2-dropdowns@*",
39
39
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
40
40
  "author": {
@@ -42,12 +42,12 @@
42
42
  },
43
43
  "bundleDependencies": false,
44
44
  "dependencies": {
45
- "@syncfusion/ej2-base": "~20.2.43",
46
- "@syncfusion/ej2-data": "~20.2.43",
47
- "@syncfusion/ej2-inputs": "~20.2.44",
48
- "@syncfusion/ej2-lists": "~20.2.43",
49
- "@syncfusion/ej2-navigations": "~20.2.44",
50
- "@syncfusion/ej2-popups": "~20.2.43"
45
+ "@syncfusion/ej2-base": "~20.2.45",
46
+ "@syncfusion/ej2-data": "~20.2.45",
47
+ "@syncfusion/ej2-inputs": "~20.2.45",
48
+ "@syncfusion/ej2-lists": "~20.2.45",
49
+ "@syncfusion/ej2-navigations": "~20.2.45",
50
+ "@syncfusion/ej2-popups": "~20.2.45"
51
51
  },
52
52
  "deprecated": false,
53
53
  "description": "Essential JS 2 DropDown Components",
@@ -72,6 +72,6 @@
72
72
  "module": "./index.js",
73
73
  "name": "@syncfusion/ej2-dropdowns",
74
74
  "typings": "index.d.ts",
75
- "version": "20.2.44",
75
+ "version": "20.2.45",
76
76
  "sideEffects": false
77
77
  }
@@ -2043,14 +2043,14 @@ var DropDownList = /** @class */ (function (_super) {
2043
2043
  if (this.element.tagName === 'INPUT') {
2044
2044
  this.inputElement = this.element;
2045
2045
  if (isNullOrUndefined(this.inputElement.getAttribute('role'))) {
2046
- this.inputElement.setAttribute('role', 'textbox');
2046
+ this.inputElement.setAttribute('role', 'combobox');
2047
2047
  }
2048
2048
  if (isNullOrUndefined(this.inputElement.getAttribute('type'))) {
2049
2049
  this.inputElement.setAttribute('type', 'text');
2050
2050
  }
2051
2051
  }
2052
2052
  else {
2053
- this.inputElement = this.createElement('input', { attrs: { role: 'textbox', type: 'text' } });
2053
+ this.inputElement = this.createElement('input', { attrs: { role: 'combobox', type: 'text' } });
2054
2054
  if (this.element.tagName !== this.getNgDirective()) {
2055
2055
  this.element.style.display = 'none';
2056
2056
  }
@@ -2099,6 +2099,9 @@ var DropDownList = /** @class */ (function (_super) {
2099
2099
  attributes(this.targetElement(), this.getAriaAttributes());
2100
2100
  this.updateDataAttribute(this.htmlAttributes);
2101
2101
  this.setHTMLAttributes();
2102
+ if (this.targetElement() === this.inputElement) {
2103
+ this.element.removeAttribute('aria-labelledby');
2104
+ }
2102
2105
  if (this.value !== null || this.activeIndex !== null || this.text !== null) {
2103
2106
  this.initValue();
2104
2107
  }
@@ -3790,7 +3790,6 @@ var MultiSelect = /** @class */ (function (_super) {
3790
3790
  });
3791
3791
  if (this.mode === 'Default' || this.mode === 'Box') {
3792
3792
  this.inputElement.setAttribute('aria-describedby', this.chipCollectionWrapper.id);
3793
- this.inputElement.setAttribute('aria-labelledby', this.chipCollectionWrapper.id);
3794
3793
  }
3795
3794
  if (this.element.tagName !== this.getNgDirective()) {
3796
3795
  this.element.style.display = 'none';