Skip to content

Commit 8003f1f

Browse files
author
pipeline
committed
v18.3.50 is released
1 parent 6438b82 commit 8003f1f

File tree

72 files changed

+260
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+260
-67
lines changed

components/base/CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
## [Unreleased]
44

5-
## 18.3.48 (2020-11-11)
5+
## 18.3.50 (2020-11-17)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `I295845` - Resolved the warning while running test cases
12+
13+
## 18.3.40 (2020-10-13)
614

715
### Common
816

components/base/dist/ej2-vue-base.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/ej2-vue-base.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-vue-base.es2015.js

+8-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-vue-base.es2015.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-vue-base.es5.js

+8-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-vue-base.es5.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/global/blazor/vuebase.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,11 @@ var ComponentBase = /** @class */ (function (_super) {
6464
ComponentBase.prototype.updated = function () {
6565
if (this.hasChildDirective) {
6666
var childKey = {};
67-
this.fetchChildPropValues(childKey);
67+
if (this.fetchChildPropValues) {
68+
this.fetchChildPropValues(childKey);
69+
}
6870
var curChildDir = JSON.stringify(childKey);
69-
if (this.childDirObjects !== curChildDir) {
71+
if (this.childDirObjects !== curChildDir && this.assignValueToWrapper) {
7072
this.childDirObjects = curChildDir;
7173
this.assignValueToWrapper(childKey, false);
7274
}
@@ -86,7 +88,7 @@ var ComponentBase = /** @class */ (function (_super) {
8688
options[prop] = this[prop];
8789
}
8890
}
89-
if (this.hasChildDirective) {
91+
if (this.hasChildDirective && this.fetchChildPropValues) {
9092
this.fetchChildPropValues(options);
9193
}
9294
if (this.hasInjectedModules) {
@@ -100,7 +102,9 @@ var ComponentBase = /** @class */ (function (_super) {
100102
}
101103
this.ej2Instances.injectedModules = prevModule;
102104
}
103-
this.assignValueToWrapper(options);
105+
if (this.assignValueToWrapper) {
106+
this.assignValueToWrapper(options);
107+
}
104108
};
105109
ComponentBase.prototype.assignValueToWrapper = function (option, silent) {
106110
this.ej2Instances.setProperties(sf.base.extend({}, {}, option, true), sf.base.isNullOrUndefined(silent) ? true : silent);

0 commit comments

Comments
 (0)