@syncfusion/ej2-dropdowns 28.1.37 → 28.1.38

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.
@@ -1861,7 +1861,17 @@ var DropDownBase = /** @__PURE__ @class */ (function (_super) {
1861
1861
  var liCollections = listElement.querySelectorAll('.' + dropDownBaseClasses.li);
1862
1862
  for (var index = 0; index < liCollections.length; index++) {
1863
1863
  if (JSON.parse(JSON.stringify(this.listData[index]))[this.fields.disabled]) {
1864
- this.disableListItem(liCollections[index]);
1864
+ if (!isNullOrUndefined(this.fields.groupBy)) {
1865
+ var item = this.listData[index];
1866
+ var value = getValue((this.fields.value ? this.fields.value : 'value'), item);
1867
+ var li = listElement.querySelector('li[data-value="' + value + '"]');
1868
+ if (!isNullOrUndefined(li)) {
1869
+ this.disableListItem(li);
1870
+ }
1871
+ }
1872
+ else {
1873
+ this.disableListItem(liCollections[index]);
1874
+ }
1865
1875
  }
1866
1876
  }
1867
1877
  }
@@ -5593,7 +5603,7 @@ var DropDownList = /** @__PURE__ @class */ (function (_super) {
5593
5603
  _this.destroyPopup();
5594
5604
  }
5595
5605
  });
5596
- if (_this.allowResize) {
5606
+ if (_this.allowResize && (_this.getModuleName() !== 'dropdownlist' || !(Browser.isDevice && _this.isDeviceFullScreen && _this.allowFiltering))) {
5597
5607
  var resizePaddingBottom = 16;
5598
5608
  // Create the resizer div
5599
5609
  _this.resizer = _this.createElement('div', {
@@ -7802,6 +7812,9 @@ var DropDownTree = /** @__PURE__ @class */ (function (_super) {
7802
7812
  }
7803
7813
  _this.treeObj.fields = _this.getTreeFields(fields);
7804
7814
  _this.treeObj.dataBind();
7815
+ if (_this.popupObj) {
7816
+ _this.popupObj.refreshPosition();
7817
+ }
7805
7818
  if (_this.hasTemplate && _this.portals && _this.treeObj.portals) {
7806
7819
  for (var i = 0; i < _this.treeObj.portals.length; i++) {
7807
7820
  if (_this.portals.indexOf(_this.treeObj.portals[i]) === -1) {