Skip to content

Commit 3618e88

Browse files
author
pipeline
committed
v17.4.40 is released
1 parent 98d26f6 commit 3618e88

File tree

285 files changed

+12053
-6598
lines changed

Some content is hidden

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

285 files changed

+12053
-6598
lines changed

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.40 (2019-12-24)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- Resolved `accordion` control rendering issue while using `Ajax`.
12+
513
## 17.4.39 (2019-12-17)
614

715
### Common

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: 2 additions & 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.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: 2 additions & 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.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/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": "17.2.48",
3+
"version": "17.4.39",
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/complex-array-base.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ export class ArrayBase<T> {
148148
// tslint:disable-next-line
149149
let keys: any = Object.keys(this.list[i].propCollection);
150150
for (let j: number = 0; j < keys.length; j++) {
151-
if (this.list[i].propCollection[keys[j]].constructor.name === 'TemplateRef_') {
151+
if (this.list[i].propCollection[keys[j]] &&
152+
this.list[i].propCollection[keys[j]].constructor.name === 'TemplateRef_') {
152153
isSourceChanged = true;
153154
break;
154155
}

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": "17.2.48",
3+
"version": "17.4.39",
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 = '^17.2.48';
4+
exports.pkgVer = '^17.4.39';
55
exports.moduleName = 'ButtonModule, CheckBoxModule, RadioButtonModule, SwitchModule, ChipListModule';
6-
exports.themeVer = '~17.2.48';
6+
exports.themeVer = '~17.4.39';
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 = '^17.2.48';
2+
export const pkgVer = '^17.4.39';
33
export const moduleName = 'ButtonModule, CheckBoxModule, RadioButtonModule, SwitchModule, ChipListModule';
4-
export const themeVer = '~17.2.48';
4+
export const themeVer = '~17.4.39';

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": "17.2.48",
3+
"version": "17.4.39",
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 = '^17.2.48';
2+
export const pkgVer = '^17.4.39';
33
export const moduleName = 'ButtonModule, CheckBoxModule, RadioButtonModule, SwitchModule, ChipListModule';
4-
export const themeVer = '~17.2.48';
4+
export const themeVer = '~17.4.39';

components/calendars/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 17.4.40 (2019-12-24)
6+
7+
### DateRangePicker
8+
9+
#### Bug Fixes
10+
11+
- Issue with "popup not opened by using alt + down key while enabling JAWS" has been resolved.
12+
13+
### DateTimePicker
14+
15+
#### Bug Fixes
16+
17+
- `#257448` - Issue with "timepicker popup not destroyed while destroy the datetimepicker on close event" has been resolved.
18+
519
## 17.4.39 (2019-12-17)
620

721
### DateRangePicker

components/calendars/dist/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 17.4.40 (2019-12-24)
6+
7+
### DateRangePicker
8+
9+
#### Bug Fixes
10+
11+
- Issue with "popup not opened by using alt + down key while enabling JAWS" has been resolved.
12+
13+
### DateTimePicker
14+
15+
#### Bug Fixes
16+
17+
- `#257448` - Issue with "timepicker popup not destroyed while destroy the datetimepicker on close event" has been resolved.
18+
519
## 17.4.39 (2019-12-17)
620

721
### DateRangePicker

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": "17.2.48",
3+
"version": "17.4.39",
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 = '^17.2.48';
4+
exports.pkgVer = '^17.4.39';
55
exports.moduleName = 'CalendarModule, DatePickerModule, TimePickerModule, DateRangePickerModule, DateTimePickerModule';
6-
exports.themeVer = '~17.2.48';
6+
exports.themeVer = '~17.4.39';
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 = '^17.2.48';
2+
export const pkgVer = '^17.4.39';
33
export const moduleName = 'CalendarModule, DatePickerModule, TimePickerModule, DateRangePickerModule, DateTimePickerModule';
4-
export const themeVer = '~17.2.48';
4+
export const themeVer = '~17.4.39';

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": "17.2.48",
3+
"version": "17.4.39",
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 = '^17.2.48';
2+
export const pkgVer = '^17.4.39';
33
export const moduleName = 'CalendarModule, DatePickerModule, TimePickerModule, DateRangePickerModule, DateTimePickerModule';
4-
export const themeVer = '~17.2.48';
4+
export const themeVer = '~17.4.39';

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.40 (2019-12-24)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#257935` - Axis labels rotated at 90 degree alignment issue now fixed.
12+
513
## 17.4.39 (2019-12-17)
614

715
### RangeNavigator

components/charts/dist/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.40 (2019-12-24)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#257935` - Axis labels rotated at 90 degree alignment issue now fixed.
12+
513
## 17.4.39 (2019-12-17)
614

715
### RangeNavigator

components/charts/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-charts",
3-
"version": "17.4.1",
3+
"version": "17.4.39",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. 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-charts';
4-
exports.pkgVer = '^17.4.1';
4+
exports.pkgVer = '^17.4.39';
55
exports.moduleName = 'ChartModule, AccumulationChartModule, RangeNavigatorModule, SparklineModule, SmithchartModule, StockChartModule, BulletChartModule';
6-
exports.themeVer = '~17.4.1';
6+
exports.themeVer = '~17.4.39';
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-charts';
2-
export const pkgVer = '^17.4.1';
2+
export const pkgVer = '^17.4.39';
33
export const moduleName = 'ChartModule, AccumulationChartModule, RangeNavigatorModule, SparklineModule, SmithchartModule, StockChartModule, BulletChartModule';
4-
export const themeVer = '~17.4.1';
4+
export const themeVer = '~17.4.39';

components/charts/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-charts",
3-
"version": "17.4.1",
3+
"version": "17.4.39",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. 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-charts';
2-
export const pkgVer = '^17.4.1';
2+
export const pkgVer = '^17.4.39';
33
export const moduleName = 'ChartModule, AccumulationChartModule, RangeNavigatorModule, SparklineModule, SmithchartModule, StockChartModule, BulletChartModule';
4-
export const themeVer = '~17.4.1';
4+
export const themeVer = '~17.4.39';

components/circulargauge/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-circulargauge",
3-
"version": "17.2.48",
3+
"version": "17.4.39",
44
"description": "Essential JS 2 CircularGauge Components 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-circulargauge';
4-
exports.pkgVer = '^17.2.48';
4+
exports.pkgVer = '^17.4.39';
55
exports.moduleName = 'CircularGaugeModule';
6-
exports.themeVer = '~17.2.48';
6+
exports.themeVer = '~17.4.39';
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-circulargauge';
2-
export const pkgVer = '^17.2.48';
2+
export const pkgVer = '^17.4.39';
33
export const moduleName = 'CircularGaugeModule';
4-
export const themeVer = '~17.2.48';
4+
export const themeVer = '~17.4.39';

components/circulargauge/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-circulargauge",
3-
"version": "17.2.48",
3+
"version": "17.4.39",
44
"description": "Essential JS 2 CircularGauge Components 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-circulargauge';
2-
export const pkgVer = '^17.2.48';
2+
export const pkgVer = '^17.4.39';
33
export const moduleName = 'CircularGaugeModule';
4-
export const themeVer = '~17.2.48';
4+
export const themeVer = '~17.4.39';

components/diagrams/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.40 (2019-12-24)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#258522` - The issue with the connector that is not attached to the node when we draw a connector at the edge of the port has been fixed.
12+
513
## 17.4.39 (2019-12-17)
614

715
### Diagram

0 commit comments

Comments
 (0)