Skip to content

Commit 9208d52

Browse files
author
pipeline
committed
v18.4.30 is released
1 parent 8ab7a6d commit 9208d52

File tree

865 files changed

+109206
-36381
lines changed

Some content is hidden

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

865 files changed

+109206
-36381
lines changed

controls/base/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 18.3.51 (2020-11-24)
5+
## 18.3.52 (2020-12-01)
6+
7+
### Common
8+
9+
#### New Features
10+
11+
- Provided version based state persistence support.
612

713
### Common
814

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

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

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

Lines changed: 15 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/es6/ej2-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.

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

Lines changed: 15 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/base/dist/es6/ej2-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.

controls/base/dist/global/blazor/base.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5635,8 +5635,8 @@ var Base = /** @class */ (function () {
56355635
}
56365636
newChanges = newChanges ? newChanges : {};
56375637
extend(this.bulkChanges, {}, newChanges, true);
5638-
if (this.allowServerDataBinding) {
5639-
var sfBlazor = 'sfBlazor';
5638+
var sfBlazor = 'sfBlazor';
5639+
if (this.allowServerDataBinding && window[sfBlazor].updateModel) {
56405640
window[sfBlazor].updateModel(this);
56415641
this.bulkChanges = {};
56425642
}
@@ -7065,6 +7065,19 @@ var Component = /** @class */ (function (_super) {
70657065
return this.element;
70667066
}
70677067
};
7068+
/**
7069+
* Returns the persistence data for component
7070+
*/
7071+
//tslint:disable:no-any
7072+
Component.prototype.getLocalData = function () {
7073+
var eleId = this.getModuleName() + this.element.id;
7074+
if (exports.versionBasedStatePersistence) {
7075+
return window.localStorage.getItem(eleId + this.ej2StatePersistenceVersion);
7076+
}
7077+
else {
7078+
return window.localStorage.getItem(eleId);
7079+
}
7080+
};
70687081
/**
70697082
* Appends the control within the given HTML element
70707083
* @param {string | HTMLElement} selector - Target element where control needs to be appended

controls/base/dist/global/ej2-base.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/base/dist/global/ej2-base.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.

0 commit comments

Comments
 (0)