Skip to content

Commit c0bf265

Browse files
author
pipeline
committed
v25.2.6 is released
1 parent 169b1c5 commit c0bf265

37 files changed

+202
-33
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-
## 25.2.5 (2024-05-21)
5+
## 25.2.6 (2024-05-28)
66

77
### Barcode
88

components/base/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+
## 25.2.6 (2024-05-28)
6+
7+
### common
8+
9+
#### Bug Fixes
10+
11+
- `#I52921` - Resolved `ngAfterViewChecked` triggered infinite time for array base directives property change.
12+
513
## 25.2.4 (2024-05-14)
614

715
### common

components/base/package.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-base",
3-
"version": "25.2.4",
3+
"version": "25.2.6",
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",
@@ -20,7 +20,6 @@
2020
"@syncfusion/ej2-icons": "*"
2121
},
2222
"devDependencies": {
23-
"@angular-devkit/schematics": "0.7.2",
2423
"@angular/common": "2.2.1 - 4.10.0",
2524
"@angular/compiler": "2.2.1 - 4.10.0",
2625
"@angular/core": "2.2.1 - 4.10.0",
@@ -29,23 +28,23 @@
2928
"@angular/platform-browser": "2.2.1 - 4.10.0",
3029
"@angular/platform-browser-dynamic": "2.2.1 - 4.10.0",
3130
"@angular/router": "2.2.1 - 4.10.0",
32-
"@schematics/angular": "0.7.2",
33-
"@syncfusion/ej2-staging": "^1.0.1",
3431
"@types/chai": "^3.4.28",
3532
"@types/core-js": "0.9.39",
3633
"@types/jasmine": "2.8.22",
3734
"@types/jasmine-ajax": "^3.1.27",
3835
"@types/node": "^6.0.46",
3936
"@types/requirejs": "^2.1.26",
40-
"core-js": "^3.4.8",
4137
"es6-module-loader": "^0.17.11",
4238
"karma-systemjs": "^0.16.0",
43-
"reflect-metadata": "^0.1.9",
44-
"rxjs": "^6.5.4",
45-
"rxjs-compat": "^6.5.4",
4639
"systemjs": "^0.19.40",
4740
"systemjs-plugin-babel": "0.0.17",
41+
"@angular-devkit/schematics": "0.7.2",
42+
"@schematics/angular": "0.7.2",
4843
"zone.js": "^0.10.2",
44+
"core-js": "^3.4.8",
45+
"reflect-metadata": "^0.1.9",
46+
"rxjs": "^6.5.4",
47+
"rxjs-compat": "^6.5.4",
4948
"es6-promise": "^3.2.1",
5049
"gulp": "^3.9.1",
5150
"gulp-sass": "^3.1.0",

components/base/src/component-base.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ export class ComponentBase<T> {
312312
} else {
313313
/* istanbul ignore next */
314314
let hasDiffLength = false;
315-
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || (/diagram|DashboardLayout|chart/.test(tempAfterContentThis.getModuleName()))) {
315+
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || (/diagram|DashboardLayout/.test(tempAfterContentThis.getModuleName()))) {
316316
tempAfterContentThis[tagObject.name] = tagObject.instance.list;
317317
hasDiffLength = true;
318318
}
@@ -339,7 +339,7 @@ export class ComponentBase<T> {
339339
}
340340
list.isUpdated = true;
341341
}
342-
if (/grid/.test(tempAfterContentThis.getModuleName()) && hasDiffLength) {
342+
if ((/grid/.test(tempAfterContentThis.getModuleName()) && hasDiffLength) || /chart/.test(tempAfterContentThis.getModuleName())) {
343343
propObj[tagObject.name] = tagObject.instance.getProperties();
344344
tempAfterContentThis.setProperties(propObj, tagObject.instance.isInitChanges);
345345
}

components/buttons/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+
## 25.2.6 (2024-05-28)
6+
7+
### Switch
8+
9+
#### Bug Fixes
10+
11+
- `#593165` - The issue with "`tabindex HtmlAttributes` property is not properly set on the switch input element." has been resolved.
12+
513
## 25.2.4 (2024-05-14)
614

715
### Checkbox

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

33
## [Unreleased]
44

5+
## 25.2.6 (2024-05-28)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I592273` - An empty tooltip will no longer be displayed when the cancel argument is enabled in the shared tooltip event.
12+
513
## 25.2.5 (2024-05-21)
614

715
### Accumulation 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": "25.2.4",
3+
"version": "25.2.5",
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/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": "25.2.4",
3+
"version": "25.2.5",
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: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## 25.2.6 (2024-05-28)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I588344` - Resolved the content overlapping issue when editing multi column document.
12+
- `#I586107` - Resolved the script error when inserting image.
13+
- `#I585401` - Resolved the tab anchor issue in ruler when right clicking on it.
14+
- `#I586654` - Resolved the strange indentation behaviour when editing list item.
15+
516
## 25.2.5 (2024-05-21)
617

718
### DocumentEditor

0 commit comments

Comments
 (0)