@syncfusion/ej2-inplace-editor 23.1.36 → 23.1.40
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 +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +1 -1
- 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 +14 -13
- package/src/inplace-editor/base/inplace-editor.js +1 -1
- package/tslint.json +111 -0
|
@@ -787,7 +787,7 @@ let InPlaceEditor = class InPlaceEditor extends Component {
|
|
|
787
787
|
if (this.isTemplate) {
|
|
788
788
|
return;
|
|
789
789
|
}
|
|
790
|
-
this.isExtModule ? this.notify(setFocus, {}) : this.componentObj.element.focus();
|
|
790
|
+
this.isExtModule ? this.notify(setFocus, {}) : this.componentObj.getModuleName() === 'dropdownlist' ? this.componentObj.focusIn() : this.componentObj.element.focus();
|
|
791
791
|
}
|
|
792
792
|
removeEditor(isBlazorDestroy) {
|
|
793
793
|
if (isBlazor() && !this.isStringTemplate) {
|