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",

components/documenteditor/CHANGELOG.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,33 @@
22

33
## [Unreleased]
44

5+
## 19.1.65 (2021-05-25)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I325554` - Resolved the script error in multiple document pasted as SFDT.
12+
- `#I327626` - Footnote is rendered now.
13+
- `#I326000` - Resolved the document rendering issue.
14+
- `#I327097` - Resolved the script error in square wrapping style.
15+
- `#I327458` - Text overlapping issue is resolved.
16+
- `#I327647` - Issue with comment removal is resolved.
17+
- `#I322560` - Resolved the page content duplication issue.
18+
- `#I322560` - Resolved the font size parsing issue.
19+
- `#I323423` - Footnote is rendering issue is resolved.
20+
- `#I325920` - Selection behaviour is handled for moving outside the control.
21+
- `#I323608` - Textbox with fill color is rendered.
22+
523
## 19.1.64 (2021-05-19)
624

725
### Document Editor
826

927
#### Bug Fixes
1028

11-
- `I325681` - Resolved the textbox border rendering issue.
12-
- `I323059` - Resolved the script error when ignore action in spelling dialog.
13-
- `I323423` - Resolved the footnote moving issue to next page.
29+
- `#I325681` - Resolved the textbox border rendering issue.
30+
- `#I323059` - Resolved the script error when ignore action in spelling dialog.
31+
- `#I323423` - Resolved the footnote moving issue to next page.
1432
- `#I324169` - Resolved opacity issue in toolbar item.
1533
- `#I322560`, `#I323516` - Script error in the top and bottom layout is resolved.
1634
- `#I323824` - Resolved the document corruption issue in MS Office 2007.

components/documenteditor/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-documenteditor",
3-
"version": "19.1.63",
3+
"version": "19.1.64",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/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-
### DropDownList
8-
9-
#### Bug Fixes
10-
11-
- `#I323861` - Issue with "popup does not shows the proper list items on filtering dropdown while closing the popup before data gets fetched and open the popup again" has been resolved.
12-
135
## 19.1.59 (2021-05-04)
146

157
### ListBox
@@ -1864,6 +1856,14 @@ DropDownList component contains a list of predefined values from which a single
18641856
- **Accessibility** - Provided with built-in accessibility support which helps to access all the DropDownList component features through the keyboard, screen readers, or other assistive technology devices.
18651857

18661858

1859+
## 19.1.64 (2021-05-19)
1860+
1861+
### DropDownList
1862+
1863+
#### Bug Fixes
1864+
1865+
- `#I323861` - Issue with "popup does not shows the proper list items on filtering dropdown while closing the popup before data gets fetched and open the popup again" has been resolved.
1866+
18671867
## 19.1.58 (2021-04-27)
18681868

18691869
### MultiSelect

components/dropdowns/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-dropdowns",
3-
"version": "19.1.63",
3+
"version": "19.1.64",
44
"description": "Essential JS 2 DropDown Components for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/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
### File Manager
88

components/gantt/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
### Gantt
88

components/grids/CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,27 @@
22

33
## [Unreleased]
44

5+
## 19.1.65 (2021-05-25)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#I326169` - Column chooser `popup` closing issue has been fixed.
12+
- `#I327972` - Script error issue has been fixed while using anchor tag in header template.
13+
- `#I312347` - The selected row is not properly displayed in viewport when `virtualization` is enabled issue has been fixed.
14+
- `#I328013` - Autofill editing functionality issue has been fixed.
15+
- `#I327316` - Default value as null is not working in numeric column is fixed.
16+
- `#I327294` - Batch edit disregards null value in numeric column is fixed.
17+
518
## 19.1.64 (2021-05-19)
619

720
### Grid
821

922
#### Bug Fixes
1023

1124
- `#I323987` - Wrong batch changes while editing date column has been fixed.
12-
- `#I326727` - `minwidth` issue with detail template has been fixed.
25+
- `#I325763` - `minwidth` issue with detail template has been fixed.
1326
- `#I325707` - When enable detail template and `rowDragAndDrop`, aggregate cells alignment issue has been fixed.
1427
- `#I323588` - Provided `beforeOpenAdaptiveDialog` event to listen the adaptive sort and filter dialog open action.
1528
- `#I323268` - Provided public methods `showAdaptiveFilterDialog` and `showAdaptiveSortDialog` to open the virtual row mode filter and sort dialog in adaptive horizontal mode.

components/grids/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-grids",
3-
"version": "19.1.63",
3+
"version": "19.1.64",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inplaceeditor/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
### In-place Editor
88

components/kanban/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+
### Kanban
8+
9+
#### Bug Fixes
10+
11+
- `#I287435` - The issue with "number type `keyField` arguments not supported on `showColumn`, `hideColumn`, `updateCard` and `getColumnData` public method" has been resolved.
12+
513
## 19.1.63 (2021-05-13)
614

715
### Kanban

components/lists/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+
### Common
8+
9+
#### Bug Fixes
10+
11+
- Sortable helper element issue resolved.
12+
513
## 19.1.56 (2021-04-13)
614

715
### ListView

components/navigations/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.63 (2021-05-13)
66

77
### Accordion
88

components/navigations/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-navigations",
3-
"version": "19.1.59",
3+
"version": "19.1.63",
44
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/notifications/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
### Toast
88

components/pdfviewer/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-pdfviewer",
3-
"version": "19.1.59",
3+
"version": "19.1.64",
44
"description": "Essential JS 2 PDF viewer Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/pivotview/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 19.1.65 (2021-05-25)
6+
7+
### Pivot Table
8+
9+
#### Bug Fixes
10+
11+
- `#327239` - The issue on excluding fields has been fixed.
12+
- `#326340` - The font style of the pivot chart tooltip can now be customized.
13+
- `#325094` - The number formatting can now be applied in the drill-through grid.
14+
515
## 19.1.59 (2021-05-04)
616

717
### Pivot Table

0 commit comments

Comments
 (0)