Skip to content

Commit e2ba3b8

Browse files
author
pipeline
committed
v18.2.44 is released
1 parent 035b690 commit e2ba3b8

File tree

191 files changed

+962
-759
lines changed

Some content is hidden

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

191 files changed

+962
-759
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@
4040
Check the license detail [here](https://github.com/syncfusion/ej2-vue-ui-components/blob/master/license).
4141
## Changelog
4242
Check the changelog [here](https://ej2.syncfusion.com/vue/documentation/release-notes?utm_source=npm&utm_campaign=ej2-vue-ui-components)
43-
© Copyright 2018 Syncfusion, Inc. All Rights Reserved.
43+
© Copyright 2020 Syncfusion, Inc. All Rights Reserved.
4444
The Syncfusion Essential Studio license and copyright applies to this distribution.

components/base/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
## [Unreleased]
44

5-
## 18.1.59 (2020-06-23)
5+
## 18.2.44 (2020-07-07)
66

77
### Common
88

99
#### Bug Fixes
1010

11-
- `I262885` - Resolved the memory leak issue.
11+
- Resolved property change called after a certain timeout issue,
1212

1313
## 17.4.47 (2020-02-05)
1414

components/base/dist/ej2-vue-base.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.

components/base/dist/ej2-vue-base.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.

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

Lines changed: 2 additions & 5 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 5 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ var ComponentBase = /** @class */ (function (_super) {
4444
};
4545
ComponentBase.prototype.mounted = function () {
4646
this.ej2Instances.isVue = true;
47-
this.$el.style.visibility = '';
4847
this.ej2Instances.appendTo(this.$el);
4948
};
5049
ComponentBase.prototype.getInjectedServices = function () {
@@ -73,10 +72,7 @@ var ComponentBase = /** @class */ (function (_super) {
7372
}
7473
};
7574
ComponentBase.prototype.beforeDestroy = function () {
76-
var tempBeforeDestroyThis = this;
77-
tempBeforeDestroyThis.ej2Instances.destroy();
78-
tempBeforeDestroyThis.$el.style.visibility = 'hidden';
79-
tempBeforeDestroyThis = null;
75+
this.ej2Instances.destroy();
8076
};
8177
ComponentBase.prototype.bindProperties = function () {
8278
var options = {};
@@ -231,6 +227,7 @@ function EJcomponentFactory(Component, options) {
231227
(options.props || (options.props = {}))[prop] = {};
232228
(options.watch || (options.watch = {}))[prop] = function (newVal) {
233229
this.ej2Instances[prop] = newVal;
230+
this.dataBind();
234231
};
235232
};
236233
for (var _i = 0, _a = options.props; _i < _a.length; _i++) {
@@ -353,6 +350,7 @@ exports.compile = compile;
353350
return exports;
354351

355352
});
353+
sfBlazor.libs.push("vuebase")
356354
sfBlazor.loadDependencies(["vue","base"], () => {
357355
sf.vuebase = sf.vuebase({});
358356
});

0 commit comments

Comments
 (0)