@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
|
@@ -8577,9 +8577,6 @@ let DropDownTree = class DropDownTree extends Component {
|
|
|
8577
8577
|
if (formElement) {
|
|
8578
8578
|
EventHandler.add(formElement, 'reset', this.resetValueHandler, this);
|
|
8579
8579
|
}
|
|
8580
|
-
if (this.keyboardModule && typeof this.keyboardModule.destroy === 'function') {
|
|
8581
|
-
this.keyboardModule.destroy();
|
|
8582
|
-
}
|
|
8583
8580
|
this.keyboardModule = new KeyboardEvents(this.inputWrapper, {
|
|
8584
8581
|
keyAction: this.keyActionHandler.bind(this),
|
|
8585
8582
|
keyConfigs: this.keyConfigs,
|
|
@@ -8587,9 +8584,6 @@ let DropDownTree = class DropDownTree extends Component {
|
|
|
8587
8584
|
});
|
|
8588
8585
|
}
|
|
8589
8586
|
wireTreeEvents() {
|
|
8590
|
-
if (this.keyboardModule && typeof this.keyboardModule.destroy === 'function') {
|
|
8591
|
-
this.keyboardModule.destroy();
|
|
8592
|
-
}
|
|
8593
8587
|
this.keyboardModule = new KeyboardEvents(this.tree, {
|
|
8594
8588
|
keyAction: this.treeAction.bind(this),
|
|
8595
8589
|
keyConfigs: this.keyConfigs,
|