@syncfusion/ej2-inplace-editor 19.3.53 → 19.4.52

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 19.3.53
3
+ * version : 19.4.52
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-inplace-editor@*",
3
- "_id": "@syncfusion/ej2-inplace-editor@19.3.45",
3
+ "_id": "@syncfusion/ej2-inplace-editor@19.3.56",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-L2vkGgJndn9lqwjuqbZNXXu/2Um33KFgOp9pD8DOB+jvSIaXEB5by4eo5NU7e11ALuwbnBfI3enAr/88dF1psQ==",
5
+ "_integrity": "sha512-dfGFzohh7efdqL/eTMbICJIkPatIKhkVKDaIglvYnzNXgbYjMBu5c+FWi9gwO7pKX324q17919txfeTUoJ5GkQ==",
6
6
  "_location": "/@syncfusion/ej2-inplace-editor",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -24,8 +24,8 @@
24
24
  "/@syncfusion/ej2-react-inplace-editor",
25
25
  "/@syncfusion/ej2-vue-inplace-editor"
26
26
  ],
27
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-inplace-editor/-/ej2-inplace-editor-19.3.45.tgz",
28
- "_shasum": "d18f06127c802948e34436098a4819abad0579b8",
27
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-inplace-editor/-/ej2-inplace-editor-19.3.56.tgz",
28
+ "_shasum": "05f7fd26bd00b9cf26fdb15b256e8488f504fd29",
29
29
  "_spec": "@syncfusion/ej2-inplace-editor@*",
30
30
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
31
31
  "author": {
@@ -36,17 +36,17 @@
36
36
  },
37
37
  "bundleDependencies": false,
38
38
  "dependencies": {
39
- "@syncfusion/ej2-base": "~19.3.53",
40
- "@syncfusion/ej2-buttons": "~19.3.53",
41
- "@syncfusion/ej2-calendars": "~19.3.53",
42
- "@syncfusion/ej2-data": "~19.3.53",
43
- "@syncfusion/ej2-dropdowns": "~19.3.53",
44
- "@syncfusion/ej2-inputs": "~19.3.53",
45
- "@syncfusion/ej2-lists": "~19.3.53",
46
- "@syncfusion/ej2-navigations": "~19.3.53",
47
- "@syncfusion/ej2-popups": "~19.3.53",
48
- "@syncfusion/ej2-richtexteditor": "~19.3.53",
49
- "@syncfusion/ej2-splitbuttons": "~19.3.53"
39
+ "@syncfusion/ej2-base": "~19.4.52",
40
+ "@syncfusion/ej2-buttons": "~19.4.52",
41
+ "@syncfusion/ej2-calendars": "~19.4.52",
42
+ "@syncfusion/ej2-data": "~19.4.52",
43
+ "@syncfusion/ej2-dropdowns": "~19.4.52",
44
+ "@syncfusion/ej2-inputs": "~19.4.52",
45
+ "@syncfusion/ej2-lists": "~19.4.52",
46
+ "@syncfusion/ej2-navigations": "~19.4.52",
47
+ "@syncfusion/ej2-popups": "~19.4.52",
48
+ "@syncfusion/ej2-richtexteditor": "~19.4.52",
49
+ "@syncfusion/ej2-splitbuttons": "~19.4.52"
50
50
  },
51
51
  "deprecated": false,
52
52
  "description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server.",
@@ -69,6 +69,6 @@
69
69
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
70
70
  },
71
71
  "typings": "index.d.ts",
72
- "version": "19.3.53",
72
+ "version": "19.4.52",
73
73
  "sideEffects": false
74
74
  }
@@ -1116,9 +1116,10 @@ var InPlaceEditor = /** @class */ (function (_super) {
1116
1116
  });
1117
1117
  };
1118
1118
  InPlaceEditor.prototype.enterKeyDownHandler = function (e) {
1119
- if (!closest(e.target, '.' + classes.INPUT + ' .e-richtexteditor')) {
1119
+ if (!closest(e.target, '.' + classes.INPUT + ' .e-richtexteditor') && (!e.currentTarget.getElementsByTagName("textarea")[0])) {
1120
1120
  if ((e.keyCode === 13 && e.which === 13) && closest(e.target, '.' + classes.INPUT)) {
1121
1121
  this.save();
1122
+ this.trigger('submitClick', e);
1122
1123
  }
1123
1124
  else if (e.keyCode === 27 && e.which === 27) {
1124
1125
  this.cancelHandler('cancel');
@@ -63,6 +63,7 @@
63
63
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
64
64
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
65
65
  background: transparent;
66
+ color: inherit;
66
67
  }
67
68
 
68
69
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -63,6 +63,7 @@
63
63
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
64
64
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
65
65
  background: transparent;
66
+ color: inherit;
66
67
  }
67
68
 
68
69
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -63,6 +63,7 @@
63
63
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
64
64
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
65
65
  background: transparent;
66
+ color: inherit;
66
67
  }
67
68
 
68
69
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -63,6 +63,7 @@
63
63
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
64
64
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
65
65
  background: transparent;
66
+ color: inherit;
66
67
  }
67
68
 
68
69
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],