Skip to content

Commit 0fa052d

Browse files
author
pipeline
committed
v19.4.40 is released
1 parent b1858f5 commit 0fa052d

File tree

34 files changed

+125
-40
lines changed

34 files changed

+125
-40
lines changed

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 19.4.40 (2021-12-28)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `I343317` - Improved performance for `complex directives` larger data binding.
12+
- `I354304` - Resolved grid `editsetting` template not working in angular 7 with deploy mode.
13+
514
## 19.3.59 (2021-12-14)
615

716
### Common

components/base/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@ Check the license detail [here](https://github.com/syncfusion/ej2-angular-ui-com
8484

8585
Check the changelog [here](https://ej2.syncfusion.com/angular/documentation/release-notes?utm_source=npm&utm_campaign=ej2-angular-base)
8686

87-
© Copyright 2019 Syncfusion, Inc. All Rights Reserved.
87+
© Copyright 2021 Syncfusion, Inc. All Rights Reserved.
8888
The Syncfusion Essential Studio license and copyright applies to this distribution.

components/base/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-base",
3-
"version": "19.7.0",
3+
"version": "19.4.38",
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",
@@ -74,4 +74,4 @@
7474
"test": "gulp test"
7575
},
7676
"typings": "index.d.ts"
77-
}
77+
}

components/base/src/complex-array-base.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,6 @@ export class ArrayBase<T> {
211211
this.list[i].propCollection.dataSource = this.list[i].dataSource;
212212
this.list[i].hasChanges = true;
213213
}
214-
isSourceChanged = (JSON.stringify(this.list[i].propCollection.dataSource) !==
215-
JSON.stringify(childrenDataSource[i].propCollection.dataSource));
216214
}
217215
}
218216
}

components/base/src/component-base.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,13 @@ export class ComponentBase<T> {
120120
}
121121

122122
let complexTemplates: string[] = Object.keys(tempOnThis);
123+
for (let i = 0; i < complexTemplates.length; i++) {
124+
var compProp = getValue(complexTemplates[i], tempOnThis);
125+
if (typeof compProp === 'object' && compProp.elementRef && complexTemplates[i].indexOf('_') !== -1 && complexTemplates[i].indexOf('Ref') === -1) {
126+
setValue(complexTemplates[i] + 'Ref', compProp, tempOnThis);
127+
}
128+
}
129+
complexTemplates = Object.keys(tempOnThis);
123130
complexTemplates = complexTemplates.filter((val: string): boolean => {
124131
return /Ref$/i.test(val) && /\_/i.test(val);
125132
});

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-
## 19.4.38 (2021-12-17)
5+
## 19.4.40 (2021-12-28)
66

77
### Chips
88

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.25.3",
3+
"version": "19.4.38",
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 19.4.40 (2021-12-28)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I357152` - Legend highlight and selection is now working properly.
12+
513
## 19.4.38 (2021-12-17)
614

715
### Chart

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": "1.158.0",
3+
"version": "19.4.38",
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",

components/circulargauge/CHANGELOG.md

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

66
## [Unreleased]
77

8-
## 19.4.38 (2021-12-17)
8+
## 19.4.40 (2021-12-28)
99

1010
### CircularGauge
1111

0 commit comments

Comments
 (0)