@syncfusion/ej2-dropdowns 33.2.10 → 33.2.12

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.
@@ -6119,7 +6119,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
6119
6119
  }, 5);
6120
6120
  }
6121
6121
  attributes(_this.targetElement(), { 'aria-expanded': 'true', 'aria-owns': _this.element.id + '_popup', 'aria-controls': _this.element.id });
6122
- if (_this.getModuleName() !== 'dropdownlist' && _this.list.classList.contains('e-nodata')) {
6122
+ if (_this.list.classList.contains('e-nodata')) {
6123
6123
  attributes(_this.targetElement(), { 'aria-activedescendant': 'no-record' });
6124
6124
  _this.popupContentElement.setAttribute('role', 'status');
6125
6125
  _this.popupContentElement.setAttribute('id', 'no-record');
@@ -7289,6 +7289,9 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
7289
7289
  }
7290
7290
  break;
7291
7291
  case 'value':
7292
+ if (this_1.isAngular && closest(this_1.inputElement, 'form') && oldProp.value === newProp.value) {
7293
+ this_1.preventChange = true;
7294
+ }
7292
7295
  if (this_1.fields.disabled) {
7293
7296
  newProp.value = newProp.value != null && !this_1.isDisableItemValue(newProp.value) ? newProp.value : null;
7294
7297
  }
@@ -16107,7 +16110,9 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
16107
16110
  element.setAttribute('aria-hidden', 'true');
16108
16111
  var chipTitle = element.getAttribute('title');
16109
16112
  if (chipTitle && this.chipAnnouncerLiveRegion) {
16110
- var announcement = chipTitle + " focused. Press Backspace to remove";
16113
+ var announcement = chipTitle.length > 500
16114
+ ? 'Chip focused. Press Backspace to remove'
16115
+ : chipTitle + " focused. Press Backspace to remove";
16111
16116
  this.chipAnnouncerLiveRegion.textContent = announcement;
16112
16117
  }
16113
16118
  if (!isNullOrUndefined(this.inputElement) && element.id) {