Skip to content

Commit d393c5c

Browse files
author
pipeline
committed
v19.1.65 is released
1 parent ed8f722 commit d393c5c

File tree

36 files changed

+172
-62
lines changed

36 files changed

+172
-62
lines changed

components/barcodegenerator/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.1.64 (2021-05-19)
5+
## 19.1.65 (2021-05-25)
66

77
### Barcode
88

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.1.65 (2021-05-25)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `I327789` - Resolved Angular 6 compatibility issue.
12+
- `I325467` - Resolved script error when binding `async` data to the directive.
13+
514
## 19.1.64 (2021-05-19)
615

716
### 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": "19.1.63",
3+
"version": "19.1.64",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export class ComponentBase<T> {
271271
complexTemplates = complexTemplates.filter((val: string): boolean => {
272272
return /Ref$/i.test(val);
273273
});
274-
if (Object.keys(curChild.properties).length !== 0 && /chart/.test(tempAfterContentThis.getModuleName())){
274+
if (curChild.properties && Object.keys(curChild.properties).length !== 0 && /chart/.test(tempAfterContentThis.getModuleName())){
275275
for (let complexPropName of complexTemplates) {
276276
complexPropName = complexPropName.replace(/Ref/, '');
277277
curChild.properties[complexPropName] = !curChild.properties[complexPropName] ?

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.1.64 (2021-05-19)
6-
7-
### DateRangePicker
8-
9-
#### Bug Fixes
10-
11-
- `#I325926` - Issue with "custom range popup shows always in the presets popup while rendering the component with preset range as date time value and selecting any presets range from popup" has been resolved.
12-
135
## 18.4.34 (2021-01-12)
146

157
### DateTimePicker
@@ -1197,6 +1189,14 @@ TimePicker component is the pre-filled dropdown list with the time values 12/24
11971189
- **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.
11981190

11991191

1192+
## 19.1.64 (2021-05-19)
1193+
1194+
### DateRangePicker
1195+
1196+
#### Bug Fixes
1197+
1198+
- `#I325926` - Issue with "custom range popup shows always in the presets popup while rendering the component with preset range as date time value and selecting any presets range from popup" has been resolved.
1199+
12001200
## 19.1.55 (2021-04-06)
12011201

12021202
### 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.63",
3+
"version": "19.1.64",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 19.1.64 (2021-05-19)
5+
## 19.1.65 (2021-05-25)
66

77
### Chart
88

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.1.64 (2021-05-19)
8+
## 19.1.65 (2021-05-25)
99

1010
### CircularGauge
1111

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+
## 19.1.65 (2021-05-25)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I327071` - the issue "When node is placed at the bottom position of the diagram component the tooltip position is rendered wrongly" issue has been fixed.
12+
513
## 19.1.64 (2021-05-19)
614

715
### Diagram

components/diagrams/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-diagrams",
3-
"version": "19.1.63",
3+
"version": "19.1.64",
44
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)