@syncfusion/ej2-dropdowns 30.1.39 → 30.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.
@@ -13802,6 +13802,7 @@ let MultiSelect = class MultiSelect extends DropDownBase {
13802
13802
  tempData[0] = (typeof customData === 'boolean') ?
13803
13803
  (tempData[0] === 'true' ? true : (tempData[0] === 'false' ? false : tempData[0])) : tempData[0];
13804
13804
  this.resetList(tempData, field);
13805
+ this.focusAtLastListItem(value);
13805
13806
  }
13806
13807
  }
13807
13808
  else if (this.listData && this.mainData && !dataChecks && this.allowCustomValue) {
@@ -15162,6 +15163,7 @@ let MultiSelect = class MultiSelect extends DropDownBase {
15162
15163
  }
15163
15164
  else {
15164
15165
  this.setFloatLabelType();
15166
+ Input.createSpanElement(this.overAllWrapper, this.createElement);
15165
15167
  }
15166
15168
  this.expandTextbox();
15167
15169
  }
@@ -19987,6 +19989,9 @@ let ListBox = ListBox_1 = class ListBox extends DropDownBase {
19987
19989
  this.unSelectAllText = l10nSelect.getConstant('unSelectAllText');
19988
19990
  this.popupWrapper = this.list;
19989
19991
  this.checkBoxSelectionModule.checkAllParent = null;
19992
+ if (this.filterParent) {
19993
+ this.filterParent = null;
19994
+ }
19990
19995
  this.notify('selectAll', {});
19991
19996
  }
19992
19997
  }
@@ -20056,6 +20061,9 @@ let ListBox = ListBox_1 = class ListBox extends DropDownBase {
20056
20061
  this.tBListBox = getComponent(document.getElementById(scope), this.getModuleName());
20057
20062
  this.tBListBox.updateToolBarState();
20058
20063
  }
20064
+ else if (this.refreshing) {
20065
+ this.updateToolBarState();
20066
+ }
20059
20067
  }
20060
20068
  createButtons(toolElem) {
20061
20069
  let btn;
@@ -21062,7 +21070,6 @@ let ListBox = ListBox_1 = class ListBox extends DropDownBase {
21062
21070
  }
21063
21071
  this.inputString = this.filterInput.value;
21064
21072
  this.filterWireEvents();
21065
- this.ulElement.style.setProperty('height', 'calc(100% - ' + (this.filterParent.offsetHeight) + 'px)', 'important');
21066
21073
  return filterInputObj;
21067
21074
  }
21068
21075
  }