@syncfusion/ej2-dropdowns 33.1.49 → 33.2.3
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 +0 -6
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +0 -6
- 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 +8 -8
- package/src/drop-down-tree/drop-down-tree.js +0 -6
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 33.
|
|
3
|
+
* version : 33.2.3
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2025. 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": "33.
|
|
3
|
+
"version": "33.2.3",
|
|
4
4
|
"description": "Essential JS 2 DropDown Components",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
"module": "./index.js",
|
|
9
9
|
"es2015": "./dist/es6/ej2-dropdowns.es5.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@syncfusion/ej2-base": "~33.
|
|
12
|
-
"@syncfusion/ej2-data": "~33.
|
|
13
|
-
"@syncfusion/ej2-inputs": "~33.
|
|
14
|
-
"@syncfusion/ej2-lists": "~33.
|
|
15
|
-
"@syncfusion/ej2-navigations": "~33.
|
|
16
|
-
"@syncfusion/ej2-notifications": "~33.
|
|
17
|
-
"@syncfusion/ej2-popups": "~33.
|
|
11
|
+
"@syncfusion/ej2-base": "~33.2.3",
|
|
12
|
+
"@syncfusion/ej2-data": "~33.2.3",
|
|
13
|
+
"@syncfusion/ej2-inputs": "~33.2.3",
|
|
14
|
+
"@syncfusion/ej2-lists": "~33.2.3",
|
|
15
|
+
"@syncfusion/ej2-navigations": "~33.2.3",
|
|
16
|
+
"@syncfusion/ej2-notifications": "~33.2.3",
|
|
17
|
+
"@syncfusion/ej2-popups": "~33.2.3"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {},
|
|
20
20
|
"keywords": [
|
|
@@ -667,9 +667,6 @@ var DropDownTree = /** @class */ (function (_super) {
|
|
|
667
667
|
if (formElement) {
|
|
668
668
|
EventHandler.add(formElement, 'reset', this.resetValueHandler, this);
|
|
669
669
|
}
|
|
670
|
-
if (this.keyboardModule && typeof this.keyboardModule.destroy === 'function') {
|
|
671
|
-
this.keyboardModule.destroy();
|
|
672
|
-
}
|
|
673
670
|
this.keyboardModule = new KeyboardEvents(this.inputWrapper, {
|
|
674
671
|
keyAction: this.keyActionHandler.bind(this),
|
|
675
672
|
keyConfigs: this.keyConfigs,
|
|
@@ -677,9 +674,6 @@ var DropDownTree = /** @class */ (function (_super) {
|
|
|
677
674
|
});
|
|
678
675
|
};
|
|
679
676
|
DropDownTree.prototype.wireTreeEvents = function () {
|
|
680
|
-
if (this.keyboardModule && typeof this.keyboardModule.destroy === 'function') {
|
|
681
|
-
this.keyboardModule.destroy();
|
|
682
|
-
}
|
|
683
677
|
this.keyboardModule = new KeyboardEvents(this.tree, {
|
|
684
678
|
keyAction: this.treeAction.bind(this),
|
|
685
679
|
keyConfigs: this.keyConfigs,
|