Skip to content

Commit 4113f40

Browse files
author
pipeline
committed
v19.1.56 is released
1 parent 5d7e827 commit 4113f40

Some content is hidden

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

49 files changed

+324
-63
lines changed

components/barcodegenerator/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+
## 19.1.56 (2021-04-13)
6+
7+
### Barcode
8+
9+
#### Bug Fixes
10+
11+
- `#316606` - "Text alignment was not proper with UPCA type barcode" issue has been fixed.
12+
513
## 18.4.30 (2020-12-17)
614

715
### Barcode

components/barcodegenerator/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-barcode-generator",
3-
"version": "18.4.2",
3+
"version": "19.1.54",
44
"description": "Barcode generator component is a pure JavaScript library which will convert a string to Barcode and show it to the user. This supports major 1D and 2D barcodes including coda bar, code 128, QR Code. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.1.55 (2021-04-06)
5+
## 19.1.56 (2021-04-13)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `I313360` - Resolved `NgFor dynamic proprty` change not working for `tab` component.
12+
13+
## 19.1.54 (2021-03-30)
614

715
### Common
816

@@ -19,6 +27,14 @@
1927

2028
- `I312916,I316685` - Resolved script error When resetting form controls to non-null values, if the elements are no longer in the DOM.
2129

30+
## 18.4.46 (2021-03-02)
31+
32+
### Common
33+
34+
#### Bug Fixes
35+
36+
- `I306436` - Resolved `dynamic property` change not working for complex directives.
37+
2238
## 18.4.44 (2021-02-23)
2339

2440
### Common

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.42",
3+
"version": "19.1.54",
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: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -271,11 +271,12 @@ export class ComponentBase<T> {
271271
complexTemplates = complexTemplates.filter((val: string): boolean => {
272272
return /Ref$/i.test(val);
273273
});
274-
for (let complexPropName of complexTemplates) {
275-
complexPropName = complexPropName.replace(/Ref/, '');
276-
curChild.properties[complexPropName] = Object.keys(curChild.properties).length != 0 &&
277-
!curChild.properties[complexPropName] ?
278-
curChild.propCollection[complexPropName] : curChild.properties[complexPropName];
274+
if (Object.keys(curChild.properties).length !== 0 && /chart/.test(tempAfterContentThis.getModuleName())){
275+
for (let complexPropName of complexTemplates) {
276+
complexPropName = complexPropName.replace(/Ref/, '');
277+
curChild.properties[complexPropName] = !curChild.properties[complexPropName] ?
278+
curChild.propCollection[complexPropName] : curChild.properties[complexPropName];
279+
}
279280
}
280281
if (!isUndefined(curChild) && !isUndefined(curChild.setProperties)) {
281282
if (/diagram|DashboardLayout/.test(tempAfterContentThis.getModuleName())) {

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.2.44",
3+
"version": "19.1.54",
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",

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.1.55 (2021-04-06)
6-
7-
### DatePicker
8-
9-
#### Bug Fixes
10-
11-
- `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
12-
13-
### DateRangePicker
14-
15-
#### Bug Fixes
16-
17-
- `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
18-
19-
### DateTimePicker
20-
21-
#### Bug Fixes
22-
23-
- `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
24-
255
## 18.4.34 (2021-01-12)
266

277
### DateTimePicker
@@ -1209,6 +1189,26 @@ TimePicker component is the pre-filled dropdown list with the time values 12/24
12091189
- **Accessibility** - Provided with built-in accessibility support which helps to access all the TimePicker component features through the keyboard, screen readers, or other assistive technology devices.
12101190

12111191

1192+
## 19.1.55 (2021-04-06)
1193+
1194+
### DatePicker
1195+
1196+
#### Bug Fixes
1197+
1198+
- `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
1199+
1200+
### DateRangePicker
1201+
1202+
#### Bug Fixes
1203+
1204+
- `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
1205+
1206+
### DateTimePicker
1207+
1208+
#### Bug Fixes
1209+
1210+
- `#319099` - Issue with "dirty and pristine is not updated properly while performing the disable and reset the form simultaneously" has been resolved.
1211+
12121212
## 18.4.43 (2021-02-16)
12131213

12141214
### DatePicker

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": "19.1.54",
3+
"version": "19.1.55",
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",

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.1.55 (2021-04-06)
5+
## 19.1.56 (2021-04-13)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#310867` - 100% Stacking area is now working properly on browser resize.
12+
- `#318354` - Scrollbar issue for bar type series is resolved.
13+
- `#319835` - Normal distribution line in histogram series is rendering properly.
14+
15+
### Bullet chart
16+
17+
#### Bug Fixes
18+
19+
- `#318856` - Label for the negative data is now rendering properly.
20+
21+
## 19.1.54 (2021-03-30)
622

723
### Chart
824

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.2.48",
3+
"version": "19.1.54",
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",

0 commit comments

Comments
 (0)