@syncfusion/ej2-dropdowns 26.1.39 → 26.1.40

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.
@@ -4466,6 +4466,7 @@ let DropDownList = class DropDownList extends DropDownBase {
4466
4466
  this.isDataFetched = false;
4467
4467
  if (this.isFiltering()) {
4468
4468
  this.checkAndResetCache();
4469
+ this.isRequesting = false;
4469
4470
  const eventArgs = {
4470
4471
  preventDefaultAction: false,
4471
4472
  text: this.filterInput.value,
@@ -8654,6 +8655,10 @@ let DropDownTree = class DropDownTree extends Component {
8654
8655
  this.isReverseUpdate = false;
8655
8656
  }
8656
8657
  }
8658
+ if (this.isValueChange && !this.changeOnBlur) {
8659
+ this.triggerChangeEvent(this.keyEventArgs);
8660
+ this.isValueChange = false;
8661
+ }
8657
8662
  }
8658
8663
  beforeCheck(args) {
8659
8664
  if (args.isInteracted) {
@@ -11064,6 +11069,7 @@ let AutoComplete = class AutoComplete extends ComboBox {
11064
11069
  }
11065
11070
  this.isSelected = false;
11066
11071
  this.activeIndex = null;
11072
+ this.isRequesting = false;
11067
11073
  const eventArgs = {
11068
11074
  preventDefaultAction: false,
11069
11075
  text: this.filterInput.value,
@@ -14691,6 +14697,7 @@ let MultiSelect = class MultiSelect extends DropDownBase {
14691
14697
  this.isRemoteSelection = true;
14692
14698
  }
14693
14699
  this.checkAndResetCache();
14700
+ this.isRequesting = false;
14694
14701
  const eventArgs = {
14695
14702
  preventDefaultAction: false,
14696
14703
  text: this.targetElement(),
@@ -20721,7 +20728,7 @@ let Mention = class Mention extends DropDownBase {
20721
20728
  }
20722
20729
  this.isTyped = e.code !== 'Enter' && e.code !== 'Space' && e.code !== 'ArrowDown' && e.code !== 'ArrowUp' ? true : false;
20723
20730
  const isRteImage = document.activeElement.parentElement && document.activeElement.parentElement.querySelector('.e-rte-image') ? true : false;
20724
- if (document.activeElement != this.inputElement && isRteImage) {
20731
+ if (document.activeElement != this.inputElement && !isRteImage) {
20725
20732
  this.inputElement.focus();
20726
20733
  }
20727
20734
  if (this.isContentEditable(this.inputElement)) {