Skip to content

Commit 0ec80e1

Browse files
author
pipeline
committed
v16.4.53 is released
1 parent 6e2738c commit 0ec80e1

File tree

199 files changed

+4109
-258
lines changed

Some content is hidden

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

199 files changed

+4109
-258
lines changed

components/buttons/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 16.4.53 (2019-02-13)
6+
7+
### Button
8+
9+
#### Bug Fixes
10+
11+
- Flat button text is not visible in bootstrap theme issue is fixed.
12+
513
## 16.4.40-beta (2018-12-10)
614

715
### Chips

components/buttons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-buttons",
3-
"version": "16.4.47",
3+
"version": "16.4.52",
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",
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const pkgName = '@syncfusion/ej2-angular-buttons';
2-
export const pkgVer = '^16.4.47';
2+
export const pkgVer = '^16.4.52';
33
export const moduleName = 'ButtonModule, CheckBoxModule, RadioButtonModule, SwitchModule, ChipListModule';
4-
export const themeVer = '~16.4.47';
4+
export const themeVer = '~16.4.52';

components/calendars/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
## [Unreleased]
44

5+
## 16.4.53 (2019-02-13)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- Fixed the form validation class `ng-dirty` issue in Angular forms.
12+
13+
### DateRangePicker
14+
15+
#### Bug Fixes
16+
17+
- Fixed the form validation class `ng-dirty` issue in Angular forms.
18+
19+
### DateTimePicker
20+
21+
#### Bug Fixes
22+
23+
- Fixed the form validation class `ng-dirty` issue in Angular forms.
24+
25+
### TimePicker
26+
27+
#### Bug Fixes
28+
29+
- Fixed the form validation class `ng-dirty` issue in Angular forms.
30+
531
## 16.4.52 (2019-02-05)
632

733
### Calendar

components/calendars/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-calendars",
3-
"version": "16.4.48",
3+
"version": "16.4.52",
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",
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const pkgName = '@syncfusion/ej2-angular-calendars';
2-
export const pkgVer = '^16.4.48';
2+
export const pkgVer = '^16.4.52';
33
export const moduleName = 'CalendarModule, DatePickerModule, TimePickerModule, DateRangePickerModule, DateTimePickerModule';
4-
export const themeVer = '~16.4.48';
4+
export const themeVer = '~16.4.52';

components/charts/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

33
## [Unreleased]
44

5+
## 16.4.53 (2019-02-13)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- Data bind issues in series properties fixed.
12+
- Memory increasing while refreshing the chart for long period of time with time interval datasource change issue fixed.
13+
- Scrollbar with huge data performance lack has been fixed.
14+
15+
## 17.1.1-beta (2019-01-29)
16+
17+
### Sparkline
18+
19+
#### New Features
20+
21+
- Provided right to left rendering support for Sparkline.
22+
23+
### Chart
24+
25+
#### New Features
26+
27+
- Stacking Line series type has been added to the chart.
28+
- 100% Stacking Line series type has been added to the chart.
29+
530
## 16.4.48 (2019-01-22)
631

732
### Chart

components/charts/dist/ej2-angular-charts.umd.min.js

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

components/charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-charts",
3-
"version": "16.4.48",
3+
"version": "16.4.52",
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",
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export const pkgName = '@syncfusion/ej2-angular-charts';
2-
export const pkgVer = '^16.4.48';
2+
export const pkgVer = '^16.4.52';
33
export const moduleName = 'ChartModule, AccumulationChartModule, RangeNavigatorModule, SparklineModule, SmithchartModule, StockChartModule';
4-
export const themeVer = '~16.4.48';
4+
export const themeVer = '~16.4.52';

components/charts/src/accumulation-chart/accumulationchart.component.ts

+54-9
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,60 @@ export class AccumulationChartComponent extends AccumulationChart implements ICo
4040
super();
4141
this.element = this.ngEle.nativeElement;
4242
this.injectedModules = this.injectedModules || [];
43-
try{ this.injectedModules.push(this.injector.get('ChartsPieSeries')); }catch {}
44-
try{ this.injectedModules.push(this.injector.get('ChartsFunnelSeries')); }catch {}
45-
try{ this.injectedModules.push(this.injector.get('ChartsPyramidSeries')); }catch {}
46-
try{ this.injectedModules.push(this.injector.get('ChartsAccumulationTooltip')); }catch {}
47-
try{ this.injectedModules.push(this.injector.get('ChartsAccumulationLegend')); }catch {}
48-
try{ this.injectedModules.push(this.injector.get('ChartsAccumulationSelection')); }catch {}
49-
try{ this.injectedModules.push(this.injector.get('ChartsAccumulationDataLabel')); }catch {}
50-
try{ this.injectedModules.push(this.injector.get('ChartsAccumulationAnnotation')); }catch {}
51-
try{ this.injectedModules.push(this.injector.get('ChartsExport')); }catch {}
43+
try {
44+
let mod = this.injector.get('ChartsPieSeries');
45+
if(this.injectedModules.indexOf(mod) === -1) {
46+
this.injectedModules.push(mod)
47+
}
48+
} catch { }
49+
try {
50+
let mod = this.injector.get('ChartsFunnelSeries');
51+
if(this.injectedModules.indexOf(mod) === -1) {
52+
this.injectedModules.push(mod)
53+
}
54+
} catch { }
55+
try {
56+
let mod = this.injector.get('ChartsPyramidSeries');
57+
if(this.injectedModules.indexOf(mod) === -1) {
58+
this.injectedModules.push(mod)
59+
}
60+
} catch { }
61+
try {
62+
let mod = this.injector.get('ChartsAccumulationTooltip');
63+
if(this.injectedModules.indexOf(mod) === -1) {
64+
this.injectedModules.push(mod)
65+
}
66+
} catch { }
67+
try {
68+
let mod = this.injector.get('ChartsAccumulationLegend');
69+
if(this.injectedModules.indexOf(mod) === -1) {
70+
this.injectedModules.push(mod)
71+
}
72+
} catch { }
73+
try {
74+
let mod = this.injector.get('ChartsAccumulationSelection');
75+
if(this.injectedModules.indexOf(mod) === -1) {
76+
this.injectedModules.push(mod)
77+
}
78+
} catch { }
79+
try {
80+
let mod = this.injector.get('ChartsAccumulationDataLabel');
81+
if(this.injectedModules.indexOf(mod) === -1) {
82+
this.injectedModules.push(mod)
83+
}
84+
} catch { }
85+
try {
86+
let mod = this.injector.get('ChartsAccumulationAnnotation');
87+
if(this.injectedModules.indexOf(mod) === -1) {
88+
this.injectedModules.push(mod)
89+
}
90+
} catch { }
91+
try {
92+
let mod = this.injector.get('ChartsExport');
93+
if(this.injectedModules.indexOf(mod) === -1) {
94+
this.injectedModules.push(mod)
95+
}
96+
} catch { }
5297

5398
this.registerEvents(outputs);
5499
this.addTwoWay.call(this, twoWays);

0 commit comments

Comments
 (0)