Skip to content

Commit bcfc80c

Browse files
author
pipeline
committed
v21.2.3 is released
1 parent 23544cf commit bcfc80c

Some content is hidden

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

43 files changed

+253
-31
lines changed

components/buttons/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-
## 21.1.41 (2023-04-18)
5+
## 21.2.3 (2023-05-03)
6+
7+
### Switch
8+
9+
#### Bug Fixes
10+
11+
- `#I456259` - provided the `role` attribute support to `htmlAttributes` property of switch component.
12+
13+
## 21.1.37 (2023-03-29)
614

715
### Checkbox
816

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.58.0",
3+
"version": "21.1.37",
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/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": "21.1.38",
3+
"version": "21.1.41",
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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
## [Unreleased]
44

5+
## 21.2.3 (2023-05-03)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I452421` - Fixed an issue where a dotted line was showing up for line charts while exporting through PhantomJS.
12+
- `#I451960` - Resolved an issue where the datalabel border was getting added while exporting using PhantomJS.
13+
- `#I452091` - Resolved an issue where line charts were not being rendered while exporting using PhantomJS.
14+
- `#I455206` - Fixed an issue where the DataLabel was not visible despite there being enough space to display it.
15+
- `#I452148` - `MultipleRows` in labelIntersectAction property is now working properly.
16+
- `#I456533` - Fixed an issue where the tick line was visible even if there was no axis label for it.
17+
- `#F181431` - Fixed the issue where chart width was not changing on print.
18+
19+
#### New Features
20+
21+
- `#I451521` - Provided support for dashArray in series border for Pie chart.
22+
- `#I360879` - Provided support to disable marker explode in shared tooltip.
23+
524
## 21.1.41 (2023-04-18)
625

726
### 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": "21.1.39",
3+
"version": "21.1.41",
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/charts/src/accumulation-chart/series.directive.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';
33
import { Template } from '@syncfusion/ej2-angular-base';
44

55

6-
let input: string[] = ['animation', 'border', 'dataLabel', 'dataSource', 'emptyPointSettings', 'enableTooltip', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'gapRatio', 'groupMode', 'groupTo', 'height', 'innerRadius', 'legendImageUrl', 'legendShape', 'name', 'neckHeight', 'neckWidth', 'opacity', 'palettes', 'pointColorMapping', 'pyramidMode', 'query', 'radius', 'selectionStyle', 'startAngle', 'tooltipMappingName', 'type', 'visible', 'width', 'xName', 'yName'];
6+
let input: string[] = ['animation', 'border', 'dashArray', 'dataLabel', 'dataSource', 'emptyPointSettings', 'enableTooltip', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'gapRatio', 'groupMode', 'groupTo', 'height', 'innerRadius', 'legendImageUrl', 'legendShape', 'name', 'neckHeight', 'neckWidth', 'opacity', 'palettes', 'pointColorMapping', 'pyramidMode', 'query', 'radius', 'selectionStyle', 'startAngle', 'tooltipMappingName', 'type', 'visible', 'width', 'xName', 'yName'];
77
let outputs: string[] = [];
88
/**
99
* AccumulationSeries Directive
@@ -39,6 +39,11 @@ export class AccumulationSeriesDirective extends ComplexBase<AccumulationSeriesD
3939
* Options for customizing the border of the series.
4040
*/
4141
public border: any;
42+
/**
43+
* Defines the pattern of dashes and gaps to the series border.
44+
* @default '0'
45+
*/
46+
public dashArray: any;
4247
/**
4348
* The data label for the series.
4449
*/

components/charts/src/chart/indicators.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
5858
public dPeriod: any;
5959
/**
6060
* Defines the pattern of dashes and gaps to stroke the lines in `Line` type series.
61-
* @default '0'
61+
* @default ''
6262
*/
6363
public dashArray: any;
6464
/**

components/charts/src/chart/series.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export class SeriesDirective extends ComplexBase<SeriesDirective> {
141141
public cornerRadius: any;
142142
/**
143143
* Defines the pattern of dashes and gaps to stroke the lines in `Line` type series.
144-
* @default '0'
144+
* @default ''
145145
*/
146146
public dashArray: any;
147147
/**

components/charts/src/chart/trendlines.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class TrendlineDirective extends ComplexBase<TrendlineDirective> {
4646
public backwardForecast: any;
4747
/**
4848
* Defines the pattern of dashes and gaps to stroke.
49-
* @default '0'
49+
* @default ''
5050
*/
5151
public dashArray: any;
5252
/**

components/charts/src/stock-chart/trendlines.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class StockChartTrendlineDirective extends ComplexBase<StockChartTrendlin
4747
public backwardForecast: any;
4848
/**
4949
* Defines the pattern of dashes and gaps to stroke.
50-
* @default '0'
50+
* @default ''
5151
*/
5252
public dashArray: any;
5353
/**

components/diagrams/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.2.3 (2023-05-03)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I451762` - Now, the flip mode port is working for all nodes.
12+
- `#I449574` - Now, the performance of the diagram is improved while rendering large number of nodes and connectors.
13+
- `#I454253` - Now, fill color for bpmn transaction subprocess is applied properly.
14+
- `#I455551` - Now, history change event does not get triggered while clicking swimlane header for second time.
15+
516
## 21.1.39 (2023-04-11)
617

718
### Diagram

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.2.3 (2023-05-03)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#SF-446881` - Using getFormFieldNames() methods, now form fields are retrieved in order.
12+
- `#F181200` - Resolved Script error thrown when attempting to delete a checkbox form field.
13+
- `#SF-448155` - Resolved the position issue while resizing table.
14+
- `#FB42313`- Resolved Table Merge Cell & Insert Column bug.
15+
- `#SF-449967` - Resolved the problem with the loading of the document.
16+
517
## 21.1.41 (2023-04-18)
618

719
### Document Editor

components/documenteditor/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Syncfusion provides a predefined [Word Processor server docker image](https://hu
1313
</p>
1414

1515
<p align="center">
16-
![Angular Word Processor Component](https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/angular/angular-word-processor.png)
16+
<img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/angular/angular-word-processor.png" alt="Angular Word Processor Component">
1717
</p>
1818

1919
<p align="center">

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": "21.1.39",
3+
"version": "21.1.41",
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 21.2.3 (2023-05-03)
6+
7+
### ListBox
8+
9+
#### Bug Fixes
10+
11+
- `#I453746` - Issue with "selectItems doesn't remove the existing selections in the listbox" has been resolved.
12+
513
## 21.1.41 (2023-04-18)
614

715
### ListBox

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

33
## [Unreleased]
44

5+
## 21.2.3 (2023-05-03)
6+
7+
### File Manager
8+
9+
#### Bug fixes
10+
11+
- `#I439193` - The data disappears in the DetailsView when dynamically setting columns in the File Manager component has been resolved.
12+
513
## 21.1.41 (2023-04-18)
614

715
### File Manager

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

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.2.3 (2023-05-03)
6+
7+
### Gantt Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I441205` - Two spinner appears while performing action issue has been fixed.
12+
- -`#I451257`- No proper template for manual milestone parent.
13+
- `#I443041` - Gantt react performance rendering issue during initial load has been fixed.
14+
15+
### Gantt
16+
17+
#### Bug Fixes
18+
19+
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
20+
521
## 21.1.41 (2023-04-18)
622

723
### Gantt Chart
@@ -16,11 +32,8 @@
1632
- -`#I449674`- Cannot split task when the taskbar is rendered to one day.
1733
- `#I449757` - Taskbar width rendered incorrectly issue has been fixed.
1834

19-
### Gantt
20-
21-
#### Bug Fixes
35+
-`I449864`- Holiday label is not visible when we don't set height.
2236

23-
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
2437

2538
## 21.1.38 (2023-04-04)
2639

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": "21.1.38",
3+
"version": "21.1.41",
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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
## [Unreleased]
44

5+
## 21.2.3 (2023-05-03)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#I432845` - Fixed the issue where `Lazylaod` grouping with aggregates was not exported properly in Angular and React platforms.
12+
- `#F181415` - Fixed the issue where the typing for `filterbeforeopen` event of `FilterMenu` was not set properly.
13+
- `#I450047` - Performance degradation on infinite scrolling with column templates has been fixed.
14+
- `#I455291` - The issue of being unable to edit a newly added row when the dataSource is empty and infinite scrolling is enabled has been resolved.
15+
16+
## 21.1.41 (2023-04-18)
17+
18+
### Grid
19+
20+
#### Bug Fixes
21+
22+
- `#I442797` - The issue of an error occurring when hovering over the search option on a filter dropdown has been resolved and fixed.
23+
- `#I452425` - The row selection is not working properly when virtualisation is enabled and an odd number is set as the page size has been resolved.
24+
- `#I455150` - The issue with the script error while opening the custom filter template in the grid filter menu feature has been resolved.
25+
- `#I451761` - Script error being thrown when copying an empty Grid has been resolved.
26+
- `#I453134` - The last edited cell is now correctly saved when the tab key is pressed from the last row cell, even when `allowAdding` is set to `false` in batch edit mode.
27+
528
## 21.1.39 (2023-04-11)
629

730
### 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": "21.1.39",
3+
"version": "21.1.41",
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/heatmap/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-
## 21.1.41 (2023-04-18)
5+
## 21.2.3 (2023-05-03)
66

77
### Heatmap
88

components/imageeditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.2.3 (2023-05-03)
6+
7+
### Image Editor
8+
9+
#### Bug Fixes
10+
11+
- Issue with "Flaggable Enum not working properly in ASPCORE" has been resolved.
12+
13+
## 21.1.41 (2023-04-18)
14+
15+
### Image Editor
16+
17+
#### Bug Fixes
18+
19+
- Issue with "GetImageData method returns low resolution data" has been resolved.
20+
521
## 21.1.39 (2023-04-11)
622

723
### Image Editor

components/imageeditor/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-image-editor",
3-
"version": "21.1.39",
3+
"version": "21.1.41",
44
"description": "Essential JS 2 ImageEditor for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inputs/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+
## 21.2.3 (2023-05-03)
6+
7+
### NumericTextBox
8+
9+
#### Bug Fixes
10+
11+
- `#F181652` - The issue of "ng model value not being updated properly when we use min and max value" has been resolved.
12+
- `#I455470` - The issue of "Numeric textbox name attribute not being updated with respect to the ID value in Angular" has been resolved
13+
514
## 21.1.38 (2023-04-04)
615

716
### Range Slider

components/lists/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-lists",
3-
"version": "21.1.39",
3+
"version": "21.1.41",
44
"description": "The listview control allows you to select an item or multiple items from a list-like interface and represents the data in interactive hierarchical structure across different layouts or views. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/maps/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-maps",
3-
"version": "21.1.38",
3+
"version": "21.1.41",
44
"description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)