@syncfusion/ej2-richtexteditor 20.1.52 → 20.1.55

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 : 20.1.52
3
+ * version : 20.1.55
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-richtexteditor@*",
3
- "_id": "@syncfusion/ej2-richtexteditor@20.1.51",
3
+ "_id": "@syncfusion/ej2-richtexteditor@20.1.52",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-bcIISkRgLWZVdsUIfFPqPrFMSGKxvgZmaNVU5xbKp0kVkMKtUJAouugs0PG1pnqX5AE7JihxTWbXzbBfKqPOqQ==",
5
+ "_integrity": "sha512-nOAMnG7anB1iGGM7QEUNtVJWJZsgXvSJgbgRJSAsy/vcqq1wlR5zJCUTEfffxQLTwKOvU+N0dGrIx7egVFSmWg==",
6
6
  "_location": "/@syncfusion/ej2-richtexteditor",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -26,8 +26,8 @@
26
26
  "/@syncfusion/ej2-react-richtexteditor",
27
27
  "/@syncfusion/ej2-vue-richtexteditor"
28
28
  ],
29
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-richtexteditor/-/ej2-richtexteditor-20.1.51.tgz",
30
- "_shasum": "750c5f70b543df06b6138fef3e932de46991d2c2",
29
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-richtexteditor/-/ej2-richtexteditor-20.1.52.tgz",
30
+ "_shasum": "7c14ec83053987edf6e41f7968ad52aab5812e9f",
31
31
  "_spec": "@syncfusion/ej2-richtexteditor@*",
32
32
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
33
33
  "author": {
@@ -38,13 +38,13 @@
38
38
  },
39
39
  "bundleDependencies": false,
40
40
  "dependencies": {
41
- "@syncfusion/ej2-base": "~20.1.50",
42
- "@syncfusion/ej2-buttons": "~20.1.52",
43
- "@syncfusion/ej2-filemanager": "~20.1.52",
44
- "@syncfusion/ej2-inputs": "~20.1.48",
45
- "@syncfusion/ej2-navigations": "~20.1.51",
46
- "@syncfusion/ej2-popups": "~20.1.47",
47
- "@syncfusion/ej2-splitbuttons": "~20.1.47"
41
+ "@syncfusion/ej2-base": "~20.1.55",
42
+ "@syncfusion/ej2-buttons": "~20.1.55",
43
+ "@syncfusion/ej2-filemanager": "~20.1.55",
44
+ "@syncfusion/ej2-inputs": "~20.1.55",
45
+ "@syncfusion/ej2-navigations": "~20.1.55",
46
+ "@syncfusion/ej2-popups": "~20.1.55",
47
+ "@syncfusion/ej2-splitbuttons": "~20.1.55"
48
48
  },
49
49
  "deprecated": false,
50
50
  "description": "Essential JS 2 RichTextEditor component",
@@ -70,6 +70,6 @@
70
70
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
71
71
  },
72
72
  "typings": "index.d.ts",
73
- "version": "20.1.52",
73
+ "version": "20.1.55",
74
74
  "sideEffects": false
75
75
  }
@@ -766,7 +766,8 @@ var Table = /** @class */ (function () {
766
766
  var tableWidth = parseInt(getComputedStyle(_this.curTable).width, 10);
767
767
  var tableHeight = parseInt(getComputedStyle(_this.curTable).height, 10);
768
768
  var paddingSize = +getComputedStyle(_this.contentModule.getEditPanel()).paddingRight.match(/\d/g).join('');
769
- var rteWidth = _this.contentModule.getEditPanel().offsetWidth - paddingSize * 2;
769
+ var rteWidth = _this.contentModule.getEditPanel().offsetWidth - (_this.contentModule.getEditPanel().offsetWidth -
770
+ _this.contentModule.getEditPanel().clientWidth) - paddingSize * 2;
770
771
  if (_this.resizeBtnStat.column) {
771
772
  var cellColl = _this.curTable.rows[_this.calMaxCol(_this.curTable)].cells;
772
773
  var width = parseFloat(_this.columnEle.offsetWidth.toString());
@@ -807,7 +808,7 @@ var Table = /** @class */ (function () {
807
808
  EventHandler.remove(_this.contentModule.getEditPanel(), 'mouseover', _this.resizeHelper);
808
809
  }
809
810
  var widthType = _this.curTable.style.width.indexOf('%') > -1;
810
- _this.curTable.style.width = widthType && !_this.curTable.closest('TD') ? _this.convertPixelToPercentage(tableWidth + mouseX, rteWidth) + '%'
811
+ _this.curTable.style.width = widthType ? _this.convertPixelToPercentage(tableWidth + mouseX, rteWidth) + '%'
811
812
  : tableWidth + mouseX + 'px';
812
813
  _this.curTable.style.height = tableHeight + mouseY + 'px';
813
814
  tableReBox.classList.add('e-rbox-select');