@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.
@@ -4577,6 +4577,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
4577
4577
  this.isDataFetched = false;
4578
4578
  if (this.isFiltering()) {
4579
4579
  this.checkAndResetCache();
4580
+ this.isRequesting = false;
4580
4581
  var eventArgs_1 = {
4581
4582
  preventDefaultAction: false,
4582
4583
  text: this.filterInput.value,
@@ -8833,6 +8834,10 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
8833
8834
  this.isReverseUpdate = false;
8834
8835
  }
8835
8836
  }
8837
+ if (this.isValueChange && !this.changeOnBlur) {
8838
+ this.triggerChangeEvent(this.keyEventArgs);
8839
+ this.isValueChange = false;
8840
+ }
8836
8841
  };
8837
8842
  DropDownTree.prototype.beforeCheck = function (args) {
8838
8843
  if (args.isInteracted) {
@@ -11282,6 +11287,7 @@ var AutoComplete = /** @__PURE__ @class */ (function (_super) {
11282
11287
  }
11283
11288
  this.isSelected = false;
11284
11289
  this.activeIndex = null;
11290
+ this.isRequesting = false;
11285
11291
  var eventArgs = {
11286
11292
  preventDefaultAction: false,
11287
11293
  text: this.filterInput.value,
@@ -14945,6 +14951,7 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
14945
14951
  this.isRemoteSelection = true;
14946
14952
  }
14947
14953
  this.checkAndResetCache();
14954
+ this.isRequesting = false;
14948
14955
  var eventArgs_1 = {
14949
14956
  preventDefaultAction: false,
14950
14957
  text: this.targetElement(),
@@ -21071,7 +21078,7 @@ var Mention = /** @__PURE__ @class */ (function (_super) {
21071
21078
  }
21072
21079
  this.isTyped = e.code !== 'Enter' && e.code !== 'Space' && e.code !== 'ArrowDown' && e.code !== 'ArrowUp' ? true : false;
21073
21080
  var isRteImage = document.activeElement.parentElement && document.activeElement.parentElement.querySelector('.e-rte-image') ? true : false;
21074
- if (document.activeElement != this.inputElement && isRteImage) {
21081
+ if (document.activeElement != this.inputElement && !isRteImage) {
21075
21082
  this.inputElement.focus();
21076
21083
  }
21077
21084
  if (this.isContentEditable(this.inputElement)) {