@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.
- package/dist/ej2-dropdowns.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +8 -1
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +8 -1
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +4 -4
- package/src/list-box/list-box.js +6 -1
- package/src/multi-select/multi-select.js +2 -0
|
@@ -14057,6 +14057,7 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
|
|
|
14057
14057
|
tempData[0] = (typeof customData === 'boolean') ?
|
|
14058
14058
|
(tempData[0] === 'true' ? true : (tempData[0] === 'false' ? false : tempData[0])) : tempData[0];
|
|
14059
14059
|
this.resetList(tempData, field);
|
|
14060
|
+
this.focusAtLastListItem(value);
|
|
14060
14061
|
}
|
|
14061
14062
|
}
|
|
14062
14063
|
else if (this.listData && this.mainData && !dataChecks && this.allowCustomValue) {
|
|
@@ -15425,6 +15426,7 @@ var MultiSelect = /** @__PURE__ @class */ (function (_super) {
|
|
|
15425
15426
|
}
|
|
15426
15427
|
else {
|
|
15427
15428
|
this.setFloatLabelType();
|
|
15429
|
+
Input.createSpanElement(this.overAllWrapper, this.createElement);
|
|
15428
15430
|
}
|
|
15429
15431
|
this.expandTextbox();
|
|
15430
15432
|
};
|
|
@@ -20313,6 +20315,9 @@ var ListBox = /** @__PURE__ @class */ (function (_super) {
|
|
|
20313
20315
|
this.unSelectAllText = l10nSelect.getConstant('unSelectAllText');
|
|
20314
20316
|
this.popupWrapper = this.list;
|
|
20315
20317
|
this.checkBoxSelectionModule.checkAllParent = null;
|
|
20318
|
+
if (this.filterParent) {
|
|
20319
|
+
this.filterParent = null;
|
|
20320
|
+
}
|
|
20316
20321
|
this.notify('selectAll', {});
|
|
20317
20322
|
}
|
|
20318
20323
|
};
|
|
@@ -20383,6 +20388,9 @@ var ListBox = /** @__PURE__ @class */ (function (_super) {
|
|
|
20383
20388
|
this.tBListBox = getComponent(document.getElementById(scope), this.getModuleName());
|
|
20384
20389
|
this.tBListBox.updateToolBarState();
|
|
20385
20390
|
}
|
|
20391
|
+
else if (this.refreshing) {
|
|
20392
|
+
this.updateToolBarState();
|
|
20393
|
+
}
|
|
20386
20394
|
};
|
|
20387
20395
|
ListBox.prototype.createButtons = function (toolElem) {
|
|
20388
20396
|
var _this = this;
|
|
@@ -21408,7 +21416,6 @@ var ListBox = /** @__PURE__ @class */ (function (_super) {
|
|
|
21408
21416
|
}
|
|
21409
21417
|
this.inputString = this.filterInput.value;
|
|
21410
21418
|
this.filterWireEvents();
|
|
21411
|
-
this.ulElement.style.setProperty('height', 'calc(100% - ' + (this.filterParent.offsetHeight) + 'px)', 'important');
|
|
21412
21419
|
return filterInputObj;
|
|
21413
21420
|
}
|
|
21414
21421
|
};
|