Skip to content

Commit c223306

Browse files
author
pipeline
committed
v25.1.37 is released
1 parent 4093d6d commit c223306

Some content is hidden

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

55 files changed

+309
-280
lines changed

components/barcodegenerator/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 25.1.35 (2024-03-15)
5+
## 25.1.37 (2024-03-26)
66

77
### Barcode
88

components/base/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I558315` - Resolved the `chart` directives property changes not working.
12+
- `#I561506` - Resolved the `grid` with `column` pipe translate not working properly.
13+
514
## 24.1.41 (2023-12-18)
615

716
### Common

components/base/releasenotes/README.md

-183
This file was deleted.

components/base/src/component-base.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,10 @@ export class ComponentBase<T> {
311311
tempAfterContentThis.setProperties(propObj, tagObject.instance.isInitChanges);
312312
} else {
313313
/* istanbul ignore next */
314-
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || (/diagram|DashboardLayout/.test(tempAfterContentThis.getModuleName()))) {
314+
let hasDiffLength = false;
315+
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || (/diagram|DashboardLayout|chart/.test(tempAfterContentThis.getModuleName()))) {
315316
tempAfterContentThis[tagObject.name] = tagObject.instance.list;
317+
hasDiffLength = true;
316318
}
317319
for (let list of tagObject.instance.list) {
318320
let curIndex: number = tagObject.instance.list.indexOf(list);
@@ -337,7 +339,7 @@ export class ComponentBase<T> {
337339
}
338340
list.isUpdated = true;
339341
}
340-
if (/grid/.test(tempAfterContentThis.getModuleName())) {
342+
if (/grid/.test(tempAfterContentThis.getModuleName()) && hasDiffLength) {
341343
propObj[tagObject.name] = tagObject.instance.getProperties();
342344
tempAfterContentThis.setProperties(propObj, tagObject.instance.isInitChanges);
343345
}

components/buttons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-buttons",
3-
"version": "18.64.1",
3+
"version": "25.1.35",
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/charts/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### AccumulationChart
8+
9+
#### Bug Fixes
10+
11+
- `#I564804` - Now, the `textWrap` property in the legend is working properly.
12+
13+
### Chart
14+
15+
#### Bug Fixes
16+
17+
- `#I528508` - The tooltip template div is now added based on the series count, and it renders properly.
18+
- `#I563227` - Now, datalabel does not take the y value in place of a null value, and it renders properly.
19+
- `#I562333` - Now, annotations are rendered corresponding to their series point while enabling the `isIndexed` property
20+
- `#I566633` - Now, the first axis label is properly displayed on the x-axis.
21+
522
## 25.1.35 (2024-03-15)
623

724
### Chart

components/charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-charts",
3-
"version": "20.22.1",
3+
"version": "25.1.35",
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/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-circulargauge",
3-
"version": "16.42.4",
3+
"version": "25.1.35",
44
"description": "Essential JS 2 CircularGauge Components for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I555965` - Now, the overview updated properly without any shadows while dragging html nodes.
12+
- `#I562959` - Now, drawing connector from group node port works properly.
13+
514
## 25.1.35 (2024-03-15)
615

716
### Diagram

components/diagrams/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-diagrams",
3-
"version": "19.18.0",
3+
"version": "25.1.35",
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

+23
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I545513` - Added the preservation support for table style property in Document editor.
12+
- `#I548396` - Resolved the page number not refreshed issue while delete page.
13+
- `#I549835` - Resolved the document lagging issue.
14+
- `#I553758` - Resolved the editing issue in the attached document, which contains a chart.
15+
- `#I556874` - Resolved the script error issue when performing undo action on table.
16+
- `#I558460` - Resolved the tab rendering issue in the attached document.
17+
- `#I558529` - Resolved the form field editing issue in read only mode.
18+
- `#I558289` - Resolved the list numbering issue.
19+
- `#I558259` - Resolved the content formatting issue when removing hyperlink.
20+
- `#I559197` - Resolved the drag and drop issue.
21+
- `#I559912` - Resolved the image removed issue when selecting an image and perform enter action.
22+
- `#I561716` - Resolved the duplicate image string added to sfdt issue while drag and drop.
23+
- `#I561052` - Resolved the cursor position issue in mobile mode.
24+
- `#I563837` - Resolved the table overlapping issue in the attached document.
25+
- `#F186648` - Resolved the script error issue while opening a attached document.
26+
- `#F186745` - Resolved the table splitting issue in the merge cell.
27+
528
## 25.1.35 (2024-03-15)
629

730
### DocumentEditor

components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-documenteditor",
3-
"version": "19.92.0",
3+
"version": "25.1.35",
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

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### MultiSelect
8+
9+
#### Bug Fixes
10+
11+
- `#I560783` - Fixed issue where clearing the searched value would automatically select another value.
12+
- `#I524283` - Fixed issue where popup was not aligned properly when opening on top of the component.
13+
- `#I565659` - Fixed an issue in Multiselect Checkbox mode where the height of the dropdown input would change when selecting and unselecting items.
14+
515
## 25.1.35 (2024-03-15)
616

717
### ComboBox

components/dropdowns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-dropdowns",
3-
"version": "18.66.23",
3+
"version": "25.1.35",
44
"description": "Essential JS 2 DropDown Components for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### FileManager
8+
9+
#### Bug Fixes
10+
11+
- `#I561123` - The issue with being unable to sort the header columns using keyboard interaction has been resolved.
12+
513
## 25.1.35 (2024-03-15)
614

715
### FileManager

components/filemanager/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-filemanager",
3-
"version": "18.28.1",
3+
"version": "25.1.35",
44
"description": "Essential JS 2 FileManager Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)