@syncfusion/ej2-gantt 23.1.43 → 23.1.44
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/CHANGELOG.md +8 -0
- package/dist/ej2-gantt.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +4 -0
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +4 -0
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/gantt/actions/filter.js +4 -0
|
@@ -28596,6 +28596,10 @@ class Filter$1 {
|
|
|
28596
28596
|
if (this.parent.treeGrid.filterSettings.type === 'Menu') {
|
|
28597
28597
|
element.querySelector('.e-valid-input').focus();
|
|
28598
28598
|
}
|
|
28599
|
+
if (this.parent.treeGrid.filterSettings.type === 'Excel') {
|
|
28600
|
+
var inputElement = document.querySelector('.e-searchinput');
|
|
28601
|
+
inputElement.focus();
|
|
28602
|
+
}
|
|
28599
28603
|
}
|
|
28600
28604
|
removeEventListener() {
|
|
28601
28605
|
if (this.parent.isDestroyed) {
|