Skip to content

Commit ec9d091

Browse files
author
pipeline
committed
v28.2.4 is released
1 parent d08063b commit ec9d091

File tree

143 files changed

+2772
-382
lines changed

Some content is hidden

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

143 files changed

+2772
-382
lines changed

controls/barcodegenerator/CHANGELOG.md

+1-1
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

controls/buttons/CHANGELOG.md

+1-1
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

controls/calendars/CHANGELOG.md

+1-1
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

controls/charts/CHANGELOG.md

+8
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

controls/charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-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.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/charts/spec/chart/series/bar-series.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ describe('Chart Control', () => {
759759
let element: HTMLElement = document.getElementById('container_Series_0_DataLabel_5');
760760
expect(element.children[0].innerHTML).toBe('6000 : -40');
761761
expect(element.style.backgroundColor).toBe('red');
762-
expect(element.style.color).toBe('white');
762+
expect(element.style.color).toBe('');
763763
done();
764764
};
765765
chartObj.series[0].marker.dataLabel.template = '<div>${point.x} : ${point.y}</div>';
@@ -771,7 +771,7 @@ describe('Chart Control', () => {
771771
let element: HTMLElement = document.getElementById('container_Series_0_DataLabel_5');
772772
expect(element.children[0].innerHTML).toBe('80');
773773
expect(element.style.backgroundColor).toBe('red');
774-
expect(element.style.color).toBe('white');
774+
expect(element.style.color).toBe('');
775775
done();
776776
};
777777
chartObj.series[0].marker.dataLabel.template = '#template';

controls/charts/spec/chart/series/range-column-series.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ describe('Chart', () => {
703703
let element: HTMLElement = document.getElementById('container_Series_0_DataLabel_5');
704704
expect(element.children[0].innerHTML).toBe('34 : -22');
705705
expect(element.style.backgroundColor).toBe('transparent');
706-
expect(element.style.color).toBe('black');
706+
expect(element.style.color).toBe('');
707707
done();
708708
};
709709
chartObj.series[0].marker.dataLabel.template = '<div>${point.high} : ${point.low}</div>';
@@ -715,7 +715,7 @@ describe('Chart', () => {
715715
let element: HTMLElement = document.getElementById('container_Series_0_DataLabel_5');
716716
expect(element.children[0].innerHTML).toBe('80');
717717
expect(element.style.backgroundColor).toBe('transparent');
718-
expect(element.style.color).toBe('black');
718+
expect(element.style.color).toBe('');
719719
done();
720720
};
721721
chartObj.series[0].marker.dataLabel.template = '#template';

controls/charts/src/chart/series/data-label.ts

-4
Original file line numberDiff line numberDiff line change
@@ -380,12 +380,8 @@ export class DataLabel {
380380
}
381381
childElement.style.left = ((this.chart.chartAreaType === 'PolarRadar' ? 0 : series.clipRect.x) + rect.x - clipWidth) + 'px';
382382
childElement.style.top = ((this.chart.chartAreaType === 'PolarRadar' ? 0 : series.clipRect.y) + rect.y + clipHeight) + 'px';
383-
const backgroundColor: string = this.fontBackground === 'transparent' ? (this.chart.theme.indexOf('Dark') > -1 ? 'black' : 'white') : this.fontBackground;
384-
const rgbValue: ColorValue = convertHexToColor(colorNameToHex(backgroundColor));
385383
const vAxis: Axis = series.chart.requireInvertedAxis ? series.xAxis : series.yAxis;
386384
const hAxis: Axis = series.chart.requireInvertedAxis ? series.yAxis : series.xAxis;
387-
childElement.style.color = dataLabel.font.color || (this.chart.theme === 'Bootstrap5' ? '#212529' : this.chart.theme === 'Bootstrap5Dark' ? '#DEE2E6' :
388-
((Math.round((rgbValue.r * 299 + rgbValue.g * 587 + rgbValue.b * 114) / 1000)) >= 128 ? 'black' : 'white'));
389385
if (childElement.childElementCount && !isOverlap && (!isCollide(rect, this.chart.dataLabelCollections, clip) ||
390386
dataLabel.labelIntersectAction === 'None') && (series.seriesType !== 'XY' || point.yValue === undefined ||
391387
withIn(point.yValue, series.yAxis.visibleRange) || (series.type.indexOf('Stacking') > -1) ||

controls/charts/src/common/utils/export.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,9 @@ export class ExportUtils {
331331
document.pageSettings.orientation = orientation;
332332
const exactWidth: number = (pdfDefaultWidth < width[i as number]) ? (width[i as number] + margin.left + margin.right) :
333333
pdfDefaultWidth;
334-
const exactHeight: number = orientation === 0 ? (width[i as number] + margin.left + margin.right) :
335-
(pdfDefaultHeight < height[i as number]) ? (height[i as number] + margin.top + margin.bottom) : pdfDefaultHeight;
334+
const exactHeight: number = (orientation === 0 && pdfDefaultHeight > height[i as number]) ?
335+
(width[i as number] + margin.left + margin.right) : (pdfDefaultHeight < height[i as number]) ?
336+
(height[i as number] + margin.top + margin.bottom) : pdfDefaultHeight;
336337
if (header !== undefined) {
337338
const font: PdfStandardFont = new PdfStandardFont(1, header.fontSize || 15);
338339
const pdfHeader: PdfPageTemplateElement = new PdfPageTemplateElement(exactWidth, 30);

controls/data/CHANGELOG.md

+1-1
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
### DataManager
88

controls/diagrams/CHANGELOG.md

+1-1
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
### Diagram
88

controls/documenteditor/CHANGELOG.md

+13
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

controls/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-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.",
55
"keywords": [
66
"ej2",

controls/documenteditor/src/document-editor/implementation/editor-history/base-history-info.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,10 @@ export class BaseHistoryInfo {
688688
this.owner.selectionModule.select(this.selectionEnd, this.selectionEnd);
689689
this.undoRevisionForElements(insertTextPosition, endTextPosition, deletedNodes[deletedNodes.length - 1] as string);
690690
}
691-
this.removedNodes.push(deletedNodes[deletedNodes.length - 1] as string);
691+
let id: string = deletedNodes[deletedNodes.length - 1] as string;
692+
if (this.removedNodes.indexOf(id) === -1) {
693+
this.removedNodes.push(id);
694+
}
692695
deletedNodes = [];
693696
}
694697
if (this.action === 'Uppercase') {
@@ -1137,6 +1140,9 @@ export class BaseHistoryInfo {
11371140
skipinsert = true;
11381141
if (!isNullOrUndefined(this.owner.selectionModule.start.paragraph.nextRenderedWidget) && this.owner.selectionModule.start.paragraph.nextRenderedWidget instanceof TableWidget) {
11391142
skipinsert = false;
1143+
} else if (this.action === 'BackSpace' && deletedNodes.length == 2 && lastNode instanceof ParagraphWidget && lastNode.isEmpty() && deletedNodes[1] instanceof ParagraphWidget && (deletedNodes[1] as ParagraphWidget).isEmpty()) {
1144+
//When selecting the paramark and give backspace then adding two paragraph. So skipping it.
1145+
skipinsert = false;
11401146
}
11411147
}
11421148
if (lastNode instanceof ParagraphWidget && this.owner.selectionModule.start.offset > 0 && !skipinsert) {

0 commit comments

Comments
 (0)