@syncfusion/ej2-inplace-editor 23.1.40 → 23.2.4
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-inplace-editor.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js +2 -2
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +2 -2
- package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
- package/dist/global/ej2-inplace-editor.min.js +2 -2
- package/dist/global/ej2-inplace-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +17 -17
- package/src/inplace-editor/base/inplace-editor.js +2 -2
- package/styles/bootstrap-dark.css +5 -0
- package/styles/bootstrap4.css +32 -2
- package/styles/bootstrap5-dark.css +2 -1
- package/styles/bootstrap5.css +2 -1
- package/styles/fabric-dark.css +5 -0
- package/styles/fluent-dark.css +19 -1
- package/styles/fluent.css +19 -1
- package/styles/highcontrast.css +5 -0
- package/styles/inplace-editor/bootstrap-dark.css +5 -0
- package/styles/inplace-editor/bootstrap4.css +32 -2
- package/styles/inplace-editor/bootstrap5-dark.css +2 -1
- package/styles/inplace-editor/bootstrap5.css +2 -1
- package/styles/inplace-editor/fabric-dark.css +5 -0
- package/styles/inplace-editor/fluent-dark.css +19 -1
- package/styles/inplace-editor/fluent.css +19 -1
- package/styles/inplace-editor/highcontrast.css +5 -0
- package/styles/inplace-editor/tailwind-dark.css +2 -1
- package/styles/inplace-editor/tailwind.css +2 -1
- package/styles/tailwind-dark.css +2 -1
- package/styles/tailwind.css +2 -1
|
@@ -863,7 +863,7 @@ let InPlaceEditor = class InPlaceEditor extends Component {
|
|
|
863
863
|
this.submitBtn = undefined;
|
|
864
864
|
}
|
|
865
865
|
if (!isNullOrUndefined(this.cancelBtn)) {
|
|
866
|
-
EventHandler.remove(this.cancelBtn.element, '
|
|
866
|
+
EventHandler.remove(this.cancelBtn.element, 'mousedown', this.cancelBtnClick);
|
|
867
867
|
EventHandler.remove(this.cancelBtn.element, 'keydown', this.btnKeyDownHandler);
|
|
868
868
|
this.cancelBtn.destroy();
|
|
869
869
|
this.cancelBtn = undefined;
|
|
@@ -1150,7 +1150,7 @@ let InPlaceEditor = class InPlaceEditor extends Component {
|
|
|
1150
1150
|
EventHandler.add(this.submitBtn.element, 'keydown', this.btnKeyDownHandler, this);
|
|
1151
1151
|
}
|
|
1152
1152
|
if (!isNullOrUndefined(this.cancelBtn)) {
|
|
1153
|
-
EventHandler.add(this.cancelBtn.element, '
|
|
1153
|
+
EventHandler.add(this.cancelBtn.element, 'mousedown', this.cancelBtnClick, this);
|
|
1154
1154
|
EventHandler.add(this.cancelBtn.element, 'keydown', this.btnKeyDownHandler, this);
|
|
1155
1155
|
}
|
|
1156
1156
|
}
|