@syncfusion/ej2-dropdowns 27.2.4 → 27.2.5

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.
@@ -2083,7 +2083,13 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
2083
2083
  var oldUlElement = this.list.querySelector('.e-list-parent');
2084
2084
  var virtualUlElement = this.list.querySelector('.e-virtual-ddl-content');
2085
2085
  if ((listData.length >= this.virtualizedItemsCount && oldUlElement && virtualUlElement) || (oldUlElement && virtualUlElement && this.isAllowFiltering) || (oldUlElement && virtualUlElement && this.getModuleName() === 'autocomplete')) {
2086
- virtualUlElement.replaceChild(ulElement, oldUlElement);
2086
+ if (this.getModuleName() === 'multiselect' && this.isCheckBoxSelection && this.appendUncheckList && this.list && this.list.querySelector('.e-active')) {
2087
+ virtualUlElement.appendChild(ulElement);
2088
+ isCheckBoxUpdate = true;
2089
+ }
2090
+ else {
2091
+ virtualUlElement.replaceChild(ulElement, oldUlElement);
2092
+ }
2087
2093
  var reOrderList = this.list.querySelectorAll('.e-reorder');
2088
2094
  if (this.list.querySelector('.e-virtual-ddl-content') && reOrderList && reOrderList.length > 0 && !isCheckBoxUpdate) {
2089
2095
  this.list.querySelector('.e-virtual-ddl-content').removeChild(reOrderList[0]);
@@ -7346,7 +7352,7 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
7346
7352
  }
7347
7353
  else {
7348
7354
  if (!isNullOrUndefined(this.element.id)) {
7349
- this.inputEle = this.createElement('input', { attrs: { role: 'textbox', type: 'text', id: this.element.id } });
7355
+ this.inputEle = this.createElement('input', { attrs: { role: 'textbox', type: 'text', id: this.element.id + '_textbox' } });
7350
7356
  }
7351
7357
  else {
7352
7358
  this.inputEle = this.createElement('input', { attrs: { role: 'textbox', type: 'text' } });
@@ -8591,6 +8597,9 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
8591
8597
  var id = this.value[0].toString();
8592
8598
  if (this.treeObj.selectedNodes[0] !== id) {
8593
8599
  setValue('selectedNodes', [id], this.treeObj);
8600
+ if (this.fields.dataSource instanceof DataManager) {
8601
+ this.updateSelectedValues();
8602
+ }
8594
8603
  }
8595
8604
  }
8596
8605
  else {
@@ -15537,6 +15546,7 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
15537
15546
  MultiSelect.prototype.clearAll = function (e) {
15538
15547
  if (this.enabled && !this.readonly) {
15539
15548
  var temp = void 0;
15549
+ this.setDynValue = false;
15540
15550
  if (this.value && this.value.length > 0) {
15541
15551
  if (this.allowFiltering) {
15542
15552
  this.refreshListItems(null);