Skip to content

Commit b69b3dc

Browse files
author
pipeline
committed
v18.1.45 is released
1 parent f66c91c commit b69b3dc

File tree

274 files changed

+2718
-433
lines changed

Some content is hidden

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

274 files changed

+2718
-433
lines changed

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 18.1.44 (2020-04-14)
5+
## 18.1.45 (2020-04-21)
66

77
### Common
88

99
#### Bug Fixes
1010

11+
- `I269260` - Resolved Spreadsheet cells directive is not rendering properly issue.
1112
- Resolved components not get rendered when we disable IVY in angular 9.
13+
14+
## 18.1.43 (2020-04-07)
15+
16+
### Common
17+
18+
#### Bug Fixes
19+
1220
- `I269775,I151936` - Resolved Grid aggregates directive is not rendering properly issue.
1321

1422
## 18.1.36-beta (2020-03-19)

components/base/dist/ej2-angular-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-angular-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-angular-base.es2015.js

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

components/base/dist/es6/ej2-angular-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-angular-base.es5.js

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

components/base/dist/es6/ej2-angular-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/angularbase.js

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ window.sf.angularbase = (function (exports) {
99
function applyMixins(derivedClass, baseClass) {
1010
baseClass.forEach(function (baseClass) {
1111
Object.getOwnPropertyNames(baseClass.prototype).forEach(function (name) {
12-
// if (!derivedClass.prototype.hasOwnProperty(name) || baseClass.prototype.constructor.name === 'FormBase') {
13-
derivedClass.prototype[name] = baseClass.prototype[name];
14-
// }
12+
if (!derivedClass.prototype.hasOwnProperty(name) || baseClass.prototype.constructor.name === 'FormBase') {
13+
derivedClass.prototype[name] = baseClass.prototype[name];
14+
}
1515
});
1616
});
1717
}
@@ -474,6 +474,16 @@ var ComponentBase = /** @class */ (function () {
474474
var tag = tagObject.instance.list[h].tags[i];
475475
var childObj = sf.base.getValue('child' + tag.substring(0, 1).toUpperCase() + tag.substring(1), tagObject.instance.list[h]);
476476
if (childObj) {
477+
var innerchildObj = tagObject.instance.list[h]['child' + tag.substring(0, 1).toUpperCase() + tag.substring(1)];
478+
if (innerchildObj) {
479+
for (var j = 0; j < innerchildObj.list.length; j++) {
480+
var innerTag = innerchildObj.list[0].tags[0];
481+
if (innerTag) {
482+
var innerchildTag = sf.base.getValue('child' + innerTag.substring(0, 1).toUpperCase() + innerTag.substring(1), innerchildObj.list[j]);
483+
innerchildObj.list[j].tagObjects.push({ instance: innerchildTag, name: innerTag });
484+
}
485+
}
486+
}
477487
tagObject.instance.list[h].tagObjects.push({ instance: childObj, name: tag });
478488
}
479489
}

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

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

components/base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-base",
3-
"version": "18.1.36",
3+
"version": "18.1.43",
44
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/base/src/component-base.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,16 @@ export class ComponentBase<T> {
207207
let tag = tagObject.instance.list[h].tags[i];
208208
let childObj = getValue('child' + tag.substring(0, 1).toUpperCase() + tag.substring(1), tagObject.instance.list[h]);
209209
if (childObj) {
210+
let innerchildObj = tagObject.instance.list[h]['child' + tag.substring(0, 1).toUpperCase() + tag.substring(1)];
211+
if (innerchildObj) {
212+
for (let j = 0; j < innerchildObj.list.length; j++) {
213+
let innerTag = innerchildObj.list[0].tags[0];
214+
if (innerTag) {
215+
let innerchildTag = getValue('child' + innerTag.substring(0, 1).toUpperCase() + innerTag.substring(1), innerchildObj.list[j]);
216+
innerchildObj.list[j].tagObjects.push({ instance: innerchildTag, name: innerTag });
217+
}
218+
}
219+
}
210220
tagObject.instance.list[h].tagObjects.push({ instance: childObj, name: tag });
211221
}
212222
}

components/base/src/util.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import { EventEmitter } from '@angular/core';
77
export function applyMixins(derivedClass: any, baseClass: any[]): void {
88
baseClass.forEach(baseClass => {
99
Object.getOwnPropertyNames(baseClass.prototype).forEach(name => {
10-
// if (!derivedClass.prototype.hasOwnProperty(name) || baseClass.prototype.constructor.name === 'FormBase') {
10+
if (!derivedClass.prototype.hasOwnProperty(name) || baseClass.prototype.constructor.name === 'FormBase') {
1111
derivedClass.prototype[name] = baseClass.prototype[name];
12-
// }
12+
}
1313
});
1414
});
1515
}

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 18.1.44 (2020-04-14)
5+
## 18.1.43 (2020-04-07)
66

77
### Radio Button
88

components/buttons/dist/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 18.1.44 (2020-04-14)
5+
## 18.1.43 (2020-04-07)
66

77
### Radio Button
88

components/buttons/dist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-buttons",
3-
"version": "18.1.36",
3+
"version": "18.1.43",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
22
Object.defineProperty(exports, "__esModule", { value: true });
33
exports.pkgName = '@syncfusion/ej2-angular-buttons';
4-
exports.pkgVer = '^18.1.36';
4+
exports.pkgVer = '^18.1.43';
55
exports.moduleName = 'ButtonModule, CheckBoxModule, RadioButtonModule, SwitchModule, ChipListModule';
6-
exports.themeVer = '~18.1.36';
6+
exports.themeVer = '~18.1.43';
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const pkgName = '@syncfusion/ej2-angular-buttons';
2-
export const pkgVer = '^18.1.36';
2+
export const pkgVer = '^18.1.43';
33
export const moduleName = 'ButtonModule, CheckBoxModule, RadioButtonModule, SwitchModule, ChipListModule';
4-
export const themeVer = '~18.1.36';
4+
export const themeVer = '~18.1.43';

components/buttons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-buttons",
3-
"version": "18.1.36",
3+
"version": "18.1.43",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const pkgName = '@syncfusion/ej2-angular-buttons';
2-
export const pkgVer = '^18.1.36';
2+
export const pkgVer = '^18.1.43';
33
export const moduleName = 'ButtonModule, CheckBoxModule, RadioButtonModule, SwitchModule, ChipListModule';
4-
export const themeVer = '~18.1.36';
4+
export const themeVer = '~18.1.43';

components/calendars/dist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-calendars",
3-
"version": "18.1.43",
3+
"version": "18.1.44",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
22
Object.defineProperty(exports, "__esModule", { value: true });
33
exports.pkgName = '@syncfusion/ej2-angular-calendars';
4-
exports.pkgVer = '^18.1.43';
4+
exports.pkgVer = '^18.1.44';
55
exports.moduleName = 'CalendarModule, DatePickerModule, TimePickerModule, DateRangePickerModule, DateTimePickerModule';
6-
exports.themeVer = '~18.1.43';
6+
exports.themeVer = '~18.1.44';
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const pkgName = '@syncfusion/ej2-angular-calendars';
2-
export const pkgVer = '^18.1.43';
2+
export const pkgVer = '^18.1.44';
33
export const moduleName = 'CalendarModule, DatePickerModule, TimePickerModule, DateRangePickerModule, DateTimePickerModule';
4-
export const themeVer = '~18.1.43';
4+
export const themeVer = '~18.1.44';

components/calendars/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-calendars",
3-
"version": "18.1.43",
3+
"version": "18.1.44",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const pkgName = '@syncfusion/ej2-angular-calendars';
2-
export const pkgVer = '^18.1.43';
2+
export const pkgVer = '^18.1.44';
33
export const moduleName = 'CalendarModule, DatePickerModule, TimePickerModule, DateRangePickerModule, DateTimePickerModule';
4-
export const themeVer = '~18.1.43';
4+
export const themeVer = '~18.1.44';

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.45 (2020-04-21)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#271540` - Chart zooming maintained while switch chart type from column to polar issue fixed.
12+
- `#270524` - chart is broken when use `dir="rtl"` to the body tag issue fixed.
13+
- `#270548` - While enabling scrollbar half of marker gets hidden issue fixed.
14+
- `#271515` - Column chart is now working fine with column width is zero.
15+
516
## 18.1.44 (2020-04-14)
617

718
### Chart
819

920
#### Bug Fixes
1021

11-
- `#269131` - Y Axis labels overlapped with the grid lines issue has been fixed.
12-
- `#268698` - Legend click event argument null issue has been fixed.
22+
- `#255275` - While disabling some series console error occurs issue has been fixed.
1323

1424
### Accumulation chart
1525

components/charts/dist/@syncfusion/ej2-angular-charts.es5.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/charts/dist/@syncfusion/ej2-angular-charts.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/charts/dist/@syncfusion/ej2-angular-charts.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/charts/dist/@syncfusion/ej2-angular-charts.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/charts/dist/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.45 (2020-04-21)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#271540` - Chart zooming maintained while switch chart type from column to polar issue fixed.
12+
- `#270524` - chart is broken when use `dir="rtl"` to the body tag issue fixed.
13+
- `#270548` - While enabling scrollbar half of marker gets hidden issue fixed.
14+
- `#271515` - Column chart is now working fine with column width is zero.
15+
516
## 18.1.44 (2020-04-14)
617

718
### Chart
819

920
#### Bug Fixes
1021

11-
- `#269131` - Y Axis labels overlapped with the grid lines issue has been fixed.
12-
- `#268698` - Legend click event argument null issue has been fixed.
22+
- `#255275` - While disabling some series console error occurs issue has been fixed.
1323

1424
### Accumulation chart
1525

0 commit comments

Comments
 (0)