Skip to content

Commit 688871e

Browse files
author
pipeline
committed
v28.2.4 is released
1 parent 372c80d commit 688871e

File tree

45 files changed

+192
-37
lines changed

Some content is hidden

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

45 files changed

+192
-37
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-
## 28.2.3 (2025-01-29)
5+
## 28.2.4 (2025-02-04)
66

77
### Barcode
88

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.17.0",
3+
"version": "28.2.3",
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,12 +186,12 @@ export class ComponentBase<T> {
186186
// Refer Link: https://github.com/angular/angular/issues/6005
187187
const appendToComponent: any = (tempAfterViewThis: any) => {
188188
/* istanbul ignore else */
189-
if (typeof window !== 'undefined' && tempAfterViewThis.element || tempAfterViewThis.getModuleName().includes('btn')) {
189+
if (typeof window !== 'undefined' && tempAfterViewThis.element) {
190190
tempAfterViewThis.appendTo(tempAfterViewThis.element);
191191
tempAfterViewThis.ngEle.nativeElement.style.visibility = '';
192192
}
193193
};
194-
if (!ngtempRef) {
194+
if (!ngtempRef || !tempAfterViewThis.getModuleName().includes('btn')) {
195195
setTimeout(() => {
196196
appendToComponent(tempAfterViewThis);
197197
});

components/buttons/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-
## 28.2.3 (2025-01-29)
5+
## 28.2.4 (2025-02-04)
66

77
### Switch
88

components/calendars/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-
## 28.2.3 (2025-01-29)
5+
## 28.2.4 (2025-02-04)
66

77
### DatePicker
88

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+
## 28.2.4 (2025-02-04)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I681285` - Chart performance has been optimized when using the data label template.
12+
513
## 28.2.3 (2025-01-29)
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": "28.1.41",
3+
"version": "28.2.3",
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
@@ -4,7 +4,7 @@
44

55
## [Unreleased]
66

7-
## 28.2.3 (2025-01-29)
7+
## 28.2.4 (2025-02-04)
88

99
### Circular Gauge
1010

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 28.2.4 (2025-02-04)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I680965` - Fixed document corruption when opening a client-side exported DOCX in Microsoft Word.
12+
- `#I681505` - Fixed issues with programmatically added comment replies and text range selection in the Document Editor.
13+
- `#I684705` - Fixed wavy underline rendering issue for non-misspelled words when pressing backspace.
14+
- `#I680849` - Fixed missing split cell content when a row spans multiple pages.
15+
- `#I667699` - Fixed missing content in shapes after copying and pasting the entire content, followed by server-side DOCX export.
16+
- `#I678996`, `#I678997`, `#I678999` - Fixed script errors when accepting track changes in list paragraphs and table paragraphs.
17+
518
## 28.1.39 (2024-01-14)
619

720
### DocumentEditor

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": "28.1.39",
3+
"version": "28.2.3",
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",

0 commit comments

Comments
 (0)