@syncfusion/ej2-dropdowns 25.1.41 → 25.2.3

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.
@@ -2406,6 +2406,7 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
2406
2406
  }
2407
2407
  if (this.getModuleName() === 'listbox') {
2408
2408
  this.updateActionCompleteData(li, item, isListboxEmpty ? null : index);
2409
+ isListboxEmpty = true;
2409
2410
  }
2410
2411
  else {
2411
2412
  this.updateActionCompleteData(li, item, index);
@@ -2453,7 +2454,7 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
2453
2454
  }
2454
2455
  }
2455
2456
  else {
2456
- if (this.liCollections[index]) {
2457
+ if (this.liCollections[index] && this.liCollections[index].parentNode) {
2457
2458
  this.liCollections[index].parentNode.insertBefore(liCollections[i], this.liCollections[index]);
2458
2459
  }
2459
2460
  else {
@@ -14887,6 +14888,7 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
14887
14888
  var textValues = this.text != null && this.text != "" ? this.text + ',' + temp : temp;
14888
14889
  data += temp + delimiterChar + ' ';
14889
14890
  text.push(textValues);
14891
+ hiddenElementContent += "<option selected value=\"" + valueItem + "\">" + index + "</option>";
14890
14892
  break;
14891
14893
  }
14892
14894
  else {