Skip to content

Commit e8c5aaa

Browse files
author
pipeline
committed
v17.1.41 is released
1 parent a3b6432 commit e8c5aaa

15 files changed

+32
-22
lines changed

controls/inplaceeditor/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
- Toolbar fails to render properly in `RichTextEditor` In-Place Editor when `afterOpen` is set, that issue has been fixed.
1212
- Not able to hide the close icon issue has been fixed.
13+
- Change event doesn't trigger, when `RichTextEditor` blurs that issue has been fixed.
1314

1415
## 16.4.53 (2019-02-13)
1516

@@ -41,6 +42,7 @@
4142
- `space` key action issue is fixed with clicking save and cancel buttons.
4243
- Value persistence issue with `multi-select` when doing cancel action after removing selected item.
4344
- Double-Click issue in IOS device is fixed.
45+
- `Invalid background value` warning thrown in `In-place Editor`, that issue has been fixed.
4446

4547
## 16.4.40-beta (2018-12-10)
4648

controls/inplaceeditor/dist/global/ej2-inplace-editor.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/inplaceeditor/dist/global/ej2-inplace-editor.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/inplaceeditor/styles/inplace-editor/_theme.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
.e-btn-save.e-icon-btn,
5656
.e-btn-cancel.e-icon-btn {
57-
background: $editor-btn-bg;
57+
background-color: $editor-btn-bg;
5858
border: $editor-btn-border;
5959
box-shadow: $editor-btn-box-shadow;
6060

@@ -63,17 +63,17 @@
6363
}
6464

6565
&:hover {
66-
background: $editor-btn-hover-bg;
66+
background-color: $editor-btn-hover-bg;
6767
border: $editor-btn-hover-border;
6868
}
6969

7070
&:focus {
71-
background: $editor-btn-focus-bg;
71+
background-color: $editor-btn-focus-bg;
7272
border: $editor-btn-focus-border;
7373
}
7474

7575
&:active {
76-
background: $editor-btn-active-bg;
76+
background-color: $editor-btn-active-bg;
7777
border: $editor-btn-active-border;
7878
}
7979

controls/richtexteditor/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88

99
#### Bug Fixes
1010

11+
- Change event doesn't trigger, when RichTextEditor blurs inside of `In-place Editor` that issue has been fixed.
12+
13+
## 17.1.40 (2019-04-09)
14+
15+
### RichTextEditor
16+
17+
#### Bug Fixes
18+
1119
- Insert image functionality of `RichTextEditor` is not working when render with `File Upload`, that issue has been fixed.
1220

1321
## 17.1.32-beta (2019-03-13)

controls/richtexteditor/dist/ej2-richtexteditor.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/richtexteditor/dist/ej2-richtexteditor.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/richtexteditor/dist/es6/ej2-richtexteditor.es2015.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14632,9 +14632,6 @@ let RichTextEditor = class RichTextEditor extends Component {
1463214632
*/
1463314633
this.isBlur = true;
1463414634
this.needsID = true;
14635-
this.onBlurHandler = this.blurHandler.bind(this);
14636-
this.onFocusHandler = this.focusHandler.bind(this);
14637-
this.onResizeHandler = this.resizeHandler.bind(this);
1463814635
}
1463914636
/**
1464014637
* To provide the array of modules needed for component rendering
@@ -14700,6 +14697,9 @@ let RichTextEditor = class RichTextEditor extends Component {
1470014697
* @private
1470114698
*/
1470214699
preRender() {
14700+
this.onBlurHandler = this.blurHandler.bind(this);
14701+
this.onFocusHandler = this.focusHandler.bind(this);
14702+
this.onResizeHandler = this.resizeHandler.bind(this);
1470314703
this.clickPoints = { clientX: 0, clientY: 0 };
1470414704
this.initialValue = this.value;
1470514705
this.serviceLocator = new ServiceLocator;

controls/richtexteditor/dist/es6/ej2-richtexteditor.es2015.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/richtexteditor/dist/es6/ej2-richtexteditor.es5.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14854,9 +14854,6 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
1485414854
*/
1485514855
_this.isBlur = true;
1485614856
_this.needsID = true;
14857-
_this.onBlurHandler = _this.blurHandler.bind(_this);
14858-
_this.onFocusHandler = _this.focusHandler.bind(_this);
14859-
_this.onResizeHandler = _this.resizeHandler.bind(_this);
1486014857
return _this;
1486114858
}
1486214859
/**
@@ -14923,6 +14920,9 @@ var RichTextEditor = /** @__PURE__ @class */ (function (_super) {
1492314920
* @private
1492414921
*/
1492514922
RichTextEditor.prototype.preRender = function () {
14923+
this.onBlurHandler = this.blurHandler.bind(this);
14924+
this.onFocusHandler = this.focusHandler.bind(this);
14925+
this.onResizeHandler = this.resizeHandler.bind(this);
1492614926
this.clickPoints = { clientX: 0, clientY: 0 };
1492714927
this.initialValue = this.value;
1492814928
this.serviceLocator = new ServiceLocator;

0 commit comments

Comments
 (0)