@syncfusion/ej2-inplace-editor 23.1.36 → 23.1.41
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/.eslintrc.json +26 -2
- package/dist/ej2-inplace-editor.min.js +3 -3
- package/dist/ej2-inplace-editor.umd.min.js +3 -3
- package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js +3 -3
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +3 -3
- package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
- package/dist/global/ej2-inplace-editor.min.js +3 -3
- package/dist/global/ej2-inplace-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +15 -14
- package/src/inplace-editor/base/inplace-editor.js +3 -3
- package/styles/bootstrap4.css +32 -2
- package/styles/inplace-editor/bootstrap4.css +32 -2
- package/tslint.json +111 -0
|
@@ -824,7 +824,7 @@ var InPlaceEditor = /** @__PURE__ @class */ (function (_super) {
|
|
|
824
824
|
if (this.isTemplate) {
|
|
825
825
|
return;
|
|
826
826
|
}
|
|
827
|
-
this.isExtModule ? this.notify(setFocus, {}) : this.componentObj.element.focus();
|
|
827
|
+
this.isExtModule ? this.notify(setFocus, {}) : this.componentObj.getModuleName() === 'dropdownlist' ? this.componentObj.focusIn() : this.componentObj.element.focus();
|
|
828
828
|
};
|
|
829
829
|
InPlaceEditor.prototype.removeEditor = function (isBlazorDestroy) {
|
|
830
830
|
if (isBlazor() && !this.isStringTemplate) {
|
|
@@ -900,7 +900,7 @@ var InPlaceEditor = /** @__PURE__ @class */ (function (_super) {
|
|
|
900
900
|
this.submitBtn = undefined;
|
|
901
901
|
}
|
|
902
902
|
if (!isNullOrUndefined(this.cancelBtn)) {
|
|
903
|
-
EventHandler.remove(this.cancelBtn.element, '
|
|
903
|
+
EventHandler.remove(this.cancelBtn.element, 'mousedown', this.cancelBtnClick);
|
|
904
904
|
EventHandler.remove(this.cancelBtn.element, 'keydown', this.btnKeyDownHandler);
|
|
905
905
|
this.cancelBtn.destroy();
|
|
906
906
|
this.cancelBtn = undefined;
|
|
@@ -1191,7 +1191,7 @@ var InPlaceEditor = /** @__PURE__ @class */ (function (_super) {
|
|
|
1191
1191
|
EventHandler.add(this.submitBtn.element, 'keydown', this.btnKeyDownHandler, this);
|
|
1192
1192
|
}
|
|
1193
1193
|
if (!isNullOrUndefined(this.cancelBtn)) {
|
|
1194
|
-
EventHandler.add(this.cancelBtn.element, '
|
|
1194
|
+
EventHandler.add(this.cancelBtn.element, 'mousedown', this.cancelBtnClick, this);
|
|
1195
1195
|
EventHandler.add(this.cancelBtn.element, 'keydown', this.btnKeyDownHandler, this);
|
|
1196
1196
|
}
|
|
1197
1197
|
};
|