@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
|
@@ -29155,6 +29155,10 @@ var Filter$1 = /** @__PURE__ @class */ (function () {
|
|
|
29155
29155
|
if (this.parent.treeGrid.filterSettings.type === 'Menu') {
|
|
29156
29156
|
element.querySelector('.e-valid-input').focus();
|
|
29157
29157
|
}
|
|
29158
|
+
if (this.parent.treeGrid.filterSettings.type === 'Excel') {
|
|
29159
|
+
var inputElement = document.querySelector('.e-searchinput');
|
|
29160
|
+
inputElement.focus();
|
|
29161
|
+
}
|
|
29158
29162
|
};
|
|
29159
29163
|
Filter$$1.prototype.removeEventListener = function () {
|
|
29160
29164
|
if (this.parent.isDestroyed) {
|