@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
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 30.1.
|
|
3
|
+
* version : 30.1.40
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-dropdowns",
|
|
3
|
-
"version": "30.1.
|
|
3
|
+
"version": "30.1.40",
|
|
4
4
|
"description": "Essential JS 2 DropDown Components",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"es2015": "./dist/es6/ej2-dropdowns.es5.js",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@syncfusion/ej2-base": "~30.1.38",
|
|
12
|
-
"@syncfusion/ej2-data": "~30.1.
|
|
13
|
-
"@syncfusion/ej2-inputs": "~30.1.
|
|
12
|
+
"@syncfusion/ej2-data": "~30.1.40",
|
|
13
|
+
"@syncfusion/ej2-inputs": "~30.1.40",
|
|
14
14
|
"@syncfusion/ej2-lists": "~30.1.37",
|
|
15
15
|
"@syncfusion/ej2-navigations": "~30.1.39",
|
|
16
16
|
"@syncfusion/ej2-notifications": "~30.1.37",
|
|
17
|
-
"@syncfusion/ej2-popups": "~30.1.
|
|
17
|
+
"@syncfusion/ej2-popups": "~30.1.40"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {},
|
|
20
20
|
"keywords": [
|
package/src/list-box/list-box.js
CHANGED
|
@@ -194,6 +194,9 @@ var ListBox = /** @class */ (function (_super) {
|
|
|
194
194
|
this.unSelectAllText = l10nSelect.getConstant('unSelectAllText');
|
|
195
195
|
this.popupWrapper = this.list;
|
|
196
196
|
this.checkBoxSelectionModule.checkAllParent = null;
|
|
197
|
+
if (this.filterParent) {
|
|
198
|
+
this.filterParent = null;
|
|
199
|
+
}
|
|
197
200
|
this.notify('selectAll', {});
|
|
198
201
|
}
|
|
199
202
|
};
|
|
@@ -264,6 +267,9 @@ var ListBox = /** @class */ (function (_super) {
|
|
|
264
267
|
this.tBListBox = getComponent(document.getElementById(scope), this.getModuleName());
|
|
265
268
|
this.tBListBox.updateToolBarState();
|
|
266
269
|
}
|
|
270
|
+
else if (this.refreshing) {
|
|
271
|
+
this.updateToolBarState();
|
|
272
|
+
}
|
|
267
273
|
};
|
|
268
274
|
ListBox.prototype.createButtons = function (toolElem) {
|
|
269
275
|
var _this = this;
|
|
@@ -1289,7 +1295,6 @@ var ListBox = /** @class */ (function (_super) {
|
|
|
1289
1295
|
}
|
|
1290
1296
|
this.inputString = this.filterInput.value;
|
|
1291
1297
|
this.filterWireEvents();
|
|
1292
|
-
this.ulElement.style.setProperty('height', 'calc(100% - ' + (this.filterParent.offsetHeight) + 'px)', 'important');
|
|
1293
1298
|
return filterInputObj;
|
|
1294
1299
|
}
|
|
1295
1300
|
};
|
|
@@ -1178,6 +1178,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1178
1178
|
tempData[0] = (typeof customData === 'boolean') ?
|
|
1179
1179
|
(tempData[0] === 'true' ? true : (tempData[0] === 'false' ? false : tempData[0])) : tempData[0];
|
|
1180
1180
|
this.resetList(tempData, field);
|
|
1181
|
+
this.focusAtLastListItem(value);
|
|
1181
1182
|
}
|
|
1182
1183
|
}
|
|
1183
1184
|
else if (this.listData && this.mainData && !dataChecks && this.allowCustomValue) {
|
|
@@ -2548,6 +2549,7 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
2548
2549
|
}
|
|
2549
2550
|
else {
|
|
2550
2551
|
this.setFloatLabelType();
|
|
2552
|
+
Input.createSpanElement(this.overAllWrapper, this.createElement);
|
|
2551
2553
|
}
|
|
2552
2554
|
this.expandTextbox();
|
|
2553
2555
|
};
|