@syncfusion/ej2-dropdowns 33.2.8 → 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.
@@ -5991,7 +5991,7 @@ let DropDownList = class DropDownList extends DropDownBase {
5991
5991
  }, 5);
5992
5992
  }
5993
5993
  attributes(this.targetElement(), { 'aria-expanded': 'true', 'aria-owns': this.element.id + '_popup', 'aria-controls': this.element.id });
5994
- if (this.getModuleName() !== 'dropdownlist' && this.list.classList.contains('e-nodata')) {
5994
+ if (this.list.classList.contains('e-nodata')) {
5995
5995
  attributes(this.targetElement(), { 'aria-activedescendant': 'no-record' });
5996
5996
  this.popupContentElement.setAttribute('role', 'status');
5997
5997
  this.popupContentElement.setAttribute('id', 'no-record');
@@ -7153,6 +7153,9 @@ let DropDownList = class DropDownList extends DropDownBase {
7153
7153
  }
7154
7154
  break;
7155
7155
  case 'value':
7156
+ if (this.isAngular && closest(this.inputElement, 'form') && oldProp.value === newProp.value) {
7157
+ this.preventChange = true;
7158
+ }
7156
7159
  if (this.fields.disabled) {
7157
7160
  newProp.value = newProp.value != null && !this.isDisableItemValue(newProp.value) ? newProp.value : null;
7158
7161
  }
@@ -15596,7 +15599,7 @@ let MultiSelect = class MultiSelect extends DropDownBase {
15596
15599
  else {
15597
15600
  const listUl = this.list && this.list.querySelector('ul');
15598
15601
  const isFullList = this.isReact && this.itemTemplate && listUl != null &&
15599
- listUl.querySelectorAll('.e-list-item').length === this.mainData.length;
15602
+ listUl.querySelectorAll('.e-list-item').length === this.mainData.length && !this.groupTemplate;
15600
15603
  this.onActionComplete(isFullList ? listUl : list, this.mainData);
15601
15604
  }
15602
15605
  this.focusAtLastListItem(data);
@@ -15841,7 +15844,9 @@ let MultiSelect = class MultiSelect extends DropDownBase {
15841
15844
  element.setAttribute('aria-hidden', 'true');
15842
15845
  const chipTitle = element.getAttribute('title');
15843
15846
  if (chipTitle && this.chipAnnouncerLiveRegion) {
15844
- const announcement = `${chipTitle} focused. Press Backspace to remove`;
15847
+ const announcement = chipTitle.length > 500
15848
+ ? 'Chip focused. Press Backspace to remove'
15849
+ : `${chipTitle} focused. Press Backspace to remove`;
15845
15850
  this.chipAnnouncerLiveRegion.textContent = announcement;
15846
15851
  }
15847
15852
  if (!isNullOrUndefined(this.inputElement) && element.id) {