Skip to content

Commit fad7717

Browse files
author
pipeline
committed
v19.2.59 is released
1 parent 4d49874 commit fad7717

Some content is hidden

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

41 files changed

+201
-51
lines changed

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.2.57 (2021-08-24)
5+
## 19.2.59 (2021-08-31)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `I338378` Resolved get reference of `ElementRef` not accessible in complex directives.
12+
13+
## 19.2.51 (2021-08-03)
614

715
### Common
816

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.2.48",
3+
"version": "19.2.55",
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/complex-array-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export class ComplexBase<T> {
5757
if (this.directivePropList) {
5858
for (let k: number = 0; k < this.directivePropList.length; k++) {
5959
let dirPropName: string = this.directivePropList[k];
60-
if (propList.indexOf(dirPropName) !== -1) {
60+
if (propList.indexOf(dirPropName) !== -1 && getValue(dirPropName, this)) {
6161
setValue(dirPropName, getValue(dirPropName, this), this.propCollection);
6262
}
6363
}

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.2.59 (2021-08-31)
6+
7+
### Chart
8+
9+
- `#I340170` - Resolved console error thrown on mouse move after removing the chart.
10+
- Accumulation chart explode is now working properly.
11+
- `339227` - Logarithmic axis is now working fine for data value below 1.
12+
513
## 19.2.57 (2021-08-24)
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": "19.2.56",
3+
"version": "19.2.57",
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.2.57 (2021-08-24)
8+
## 19.2.59 (2021-08-31)
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.2.59 (2021-08-31)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I339487` - The issue "The connector drawing object does not snap to near by port" has been fixed.
12+
513
## 19.2.57 (2021-08-24)
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.2.56",
3+
"version": "19.2.57",
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: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,34 @@
22

33
## [Unreleased]
44

5+
## 19.2.59 (2021-08-31)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I339105` - Resolved the number formatting color change issue.
12+
- `#I340265` - Text form field default value is preserved in word export.
13+
- `#I336632` - Style names are now properly listed in the drop down.
14+
- `#I338027` - Track changes close icon is now positioned properly in RTL mode.
15+
- `#I337566` - Resolved the table empty paragraph rendering issue.
16+
517
## 19.2.57 (2021-08-24)
618

719
### Document Editor
820

921
#### Bug Fixes
1022

11-
`#I335857` - Resolved the after spacing preservation issue in copy paste.
12-
`#I335107` - Resolved the table rendering issue.
13-
`#I334046` - Optimized the spell check by page service call in optimized spell check mode.
14-
`#I330165`, `#I327647`, `#I324515`, `#I338278` - Resolved the issues in comment delete and history operation.
15-
`#I336315` - Resolved the tab issue for the text with floating table.
16-
`#I319206` - Resolved issue with horizontal line shape rendering.
17-
`#F167416` - Line spacing is now preserved properly in server side export.
18-
`#I337720` - Resolved the localization in Document Editor.
19-
`#I335145`, `#I337499` - Resolved the text measuring issue when HTML and Body tag contains styles.
23+
- `#I335857` - Resolved the after spacing preservation issue in copy paste.
24+
- `#I335107` - Resolved the table rendering issue.
25+
- `#I336632` - Resolved the next style hierarchy issue.
26+
- `#I334046` - Optimized the spell check by page service call in optimized spell check mode.
27+
- `#I330165`, `#I327647`, `#I324515`, `#I338278` - Resolved the issues in comment delete and history operation.
28+
- `#I336315` - Resolved the tab issue for the text with floating table.
29+
- `#I319206` - Resolved issue with horizontal line shape rendering.
30+
- `#F167416` - Line spacing is now preserved properly in server side export.
31+
- `#I337720` - Resolved the localization in Document Editor.
32+
- `#I335145`, `#I337499` - Resolved the text measuring issue when HTML and Body tag contains styles.
2033

2134
## 19.2.56 (2021-08-17)
2235

@@ -26,7 +39,7 @@
2639

2740
- `#I337569` - Resolved the table relayout issue for the document with compatibility mode.
2841
- `#I331349` - Resolved the text content clipping issue.
29-
- `#I336632` - Resolved the next style hierarchy issue .
42+
- `#I336632` - Resolved the next style hierarchy issue.
3043

3144
## 19.2.55 (2021-08-11)
3245

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.2.56",
3+
"version": "19.2.57",
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.2.57 (2021-08-24)
6-
7-
### MultiSelect
8-
9-
#### Bug Fixes
10-
11-
- `#I338226` - Issue with "popup does not shows the list items when click on the input before data gets fetch" has been resolved.
12-
135
## 19.2.55 (2021-08-11)
146

157
### ListBox
@@ -1958,6 +1950,14 @@ DropDownList component contains a list of predefined values from which a single
19581950
- **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.
19591951

19601952

1953+
## 19.2.57 (2021-08-24)
1954+
1955+
### MultiSelect
1956+
1957+
#### Bug Fixes
1958+
1959+
- `#I338226` - Issue with "popup does not shows the list items when click on the input before data gets fetch" has been resolved.
1960+
19611961
## 19.2.46 (2021-07-06)
19621962

19631963
### DropDownList

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.2.56",
3+
"version": "19.2.57",
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.2.57 (2021-08-24)
5+
## 19.2.59 (2021-08-31)
66

77
### File Manager
88

components/gantt/CHANGELOG.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,34 @@
22

33
## [Unreleased]
44

5+
## 19.2.59 (2021-08-31)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `#339434` - Issue in tooltip has been resolved.
12+
13+
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
14+
515
## 19.2.57 (2021-08-24)
616

717
### Gantt
818

919
#### Bug Fixes
1020

21+
- `#339511` - Issue in maintaining resource selection has been resolved.
22+
- `#338206` - Cleared warnings thrown in Firefox browser.
23+
24+
## 19.2.56 (2021-08-17)
25+
26+
### Gantt
27+
28+
#### Bug Fixes
29+
1130
- `#338587` - Issue in assigning empty data to datasource has been resolved.
1231
- `#335677` - Issue in `expandAtLevel` and `collapseAtLevel` method with virtual scrolling has been resolved.
1332

14-
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
15-
1633
## 19.2.55 (2021-08-11)
1734

1835
### Gantt

components/gantt/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-gantt",
3-
"version": "19.2.55",
3+
"version": "19.2.57",
44
"description": "Essential JS 2 Gantt Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/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.2.59 (2021-08-31)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#F167458` - `enablePersistence` was not maintained when routing to another page is resolved.
12+
- `#I339406` - Filtering array of values on date column by `filterByColum`, issue has been fixed.
13+
- `#F168110` - Filter operation is not cleared while clicking the clear button with immediate mode, issue has been fixed.
14+
515
## 19.2.57 (2021-08-24)
616

717
### Grid

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.2.56",
3+
"version": "19.2.57",
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/inputs/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.2.59 (2021-08-31)
6+
7+
### Uploader
8+
9+
#### Bug Fixes
10+
11+
- `#F165287` - Issue with "files are not uploaded in the sequential upload while retrying the failed duplicate files" has been resolved.
12+
513
## 19.2.48 (2021-07-20)
614

715
### Range Slider

components/kanban/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.2.57 (2021-08-24)
5+
## 19.2.59 (2021-08-31)
66

77
### Kanban
88

components/layouts/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.2.57 (2021-08-24)
5+
## 19.2.59 (2021-08-31)
66

77
### Dashboard Layout
88

components/lineargauge/CHANGELOG.md

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

1212
## [Unreleased]
1313

14-
## 19.2.57 (2021-08-24)
14+
## 19.2.59 (2021-08-31)
1515

1616
### LinearGauge
1717

components/lists/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.2.57 (2021-08-24)
5+
## 19.2.59 (2021-08-31)
66

77
### ListView
88

components/maps/CHANGELOG.md

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

1212
## [Unreleased]
1313

14+
## 19.2.59 (2021-08-31)
15+
16+
### Maps
17+
18+
#### Bug Fixes
19+
20+
- `#I339811` - The zoom factor set by the `zoomToCoordinates` method is now correct.
21+
- `#I338403` - When the navigation lines are rendered outside the map area, the marker templates will now be rendered properly.
22+
- `#I339617` - The color and toggle visibility will now work properly when the legend is rendered for markers.
23+
1424
## 19.1.59 (2021-05-04)
1525

1626
### Maps

components/navigations/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.2.57 (2021-08-24)
5+
## 19.2.59 (2021-08-31)
6+
7+
### Tab
8+
9+
#### Bug Fixes
10+
11+
- `#I339402` - An issue with the tab `visible` property is not working on the initial load has been fixed.
12+
13+
## 19.2.56 (2021-08-17)
614

715
### Sidebar
816

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.2.55",
3+
"version": "19.2.56",
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/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.2.56",
3+
"version": "19.2.57",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 19.2.57 (2021-08-24)
5+
## 19.2.59 (2021-08-31)
66

77
### Pivot Table
88

components/popups/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.2.57 (2021-08-24)
5+
## 19.2.59 (2021-08-31)
6+
7+
### Dialog
8+
9+
#### Bug Fixes
10+
11+
- `#I337211` - The issue with "Styles are not properly removed from the body, when open and close the fullscreen `non-modal` dialog" has been resolved.
12+
- `#I339787` - The issue with "Dialog `overlay` element is not removed properly from the DOM" has been resolved.
13+
14+
## 19.2.56 (2021-08-17)
615

716
### Tooltip
817

0 commit comments

Comments
 (0)