Skip to content

Commit 01b5c83

Browse files
author
pipeline
committed
v31.2.15 is released
1 parent 2b99ee7 commit 01b5c83

File tree

134 files changed

+1305
-279
lines changed

Some content is hidden

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

134 files changed

+1305
-279
lines changed

controls/base/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-
## 31.2.12 (2025-11-18)
5+
## 31.2.15 (2025-11-25)
66

77
### Common
88

controls/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-
## 31.2.12 (2025-11-18)
5+
## 31.2.15 (2025-11-25)
66

77
### DatePicker
88

controls/charts/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-
## 31.2.12 (2025-11-18)
5+
## 31.2.15 (2025-11-25)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I784564` - The chart is now updated properly after removing the multilevel label.
12+
13+
## 31.2.7 (2025-11-25)
614

715
### Chart
816

controls/charts/src/chart/chart.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2677,6 +2677,7 @@ export class Chart extends Component<HTMLElement> implements INotifyPropertyChan
26772677
}
26782678
for (let i: number = 0, len: number = axes.length; i < len; i++) {
26792679
axis = <Axis>axes[i as number]; axis.series = [];
2680+
axis.multiLevelLabelHeight = 0;
26802681
axis.labels = []; axis.indexLabels = {};
26812682
axis.orientation = (i === 0 && this.visibleSeries.length === 0) ? (this.requireInvertedAxis ? 'Vertical' : 'Horizontal') :
26822683
(i === 1 && this.visibleSeries.length === 0) ? (this.requireInvertedAxis ? 'Horizontal' : 'Vertical') : axis.orientation;

controls/data/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-
## 31.2.12 (2025-11-18)
5+
## 31.2.15 (2025-11-25)
66

77
### DataManager
88

controls/diagrams/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+
## 31.2.15 (2025-11-25)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I781706` - Align commands will now execute correctly inside swimlane elements.
12+
513
## 31.2.12 (2025-11-18)
614

715
### Diagram

controls/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-diagrams",
3-
"version": "31.2.10",
3+
"version": "31.2.12",
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.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/diagrams/src/diagram/interaction/container-interaction.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { isBlazor } from '@syncfusion/ej2-base';
22
import { BpmnShapeModel, NodeModel, SwimLaneModel } from '../objects/node-model';
3-
import { Node, SwimLane } from '../objects/node';
3+
import { Node, SwimLane, Lane } from '../objects/node';
44
import { Diagram } from '../diagram';
55
import { ConnectorModel } from '../objects/connector-model';
66
import { Connector } from '../objects/connector';
@@ -430,9 +430,10 @@ export function addChildToContainer(diagram: Diagram, parent: NodeModel, node: N
430430
for (let i: number = 0; i < lanes.length; i++) {
431431
if ((container as Node).isLane && currentParentId === lanes[parseInt(i.toString(), 10)].id) {
432432
// eslint-disable-next-line
433-
if (!((node as any).parentObj instanceof Diagram)) {
433+
if ((node as any).parentObj instanceof Diagram || ((node as any).parentObj instanceof Lane)) {
434434
// eslint-disable-next-line
435435
(node as any).parentObj = lanes[parseInt(i.toString(), 10)];
436+
(node as any).propName = 'children';
436437
}
437438
// 878719: Resolve ESLint errors
438439
// eslint-disable-next-line no-prototype-builtins

controls/documenteditor/CHANGELOG.md

Lines changed: 55 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,37 @@
22

33
## [Unreleased]
44

5-
## 31.2.12 (2025-11-18)
5+
## 31.2.15 (2025-11-25)
66

77
### DocumentEditor
88

99
#### Bug Fixes
1010

11-
`#I776220` - Table fill color was not applied correctly.
12-
`#I778750` - Alignment, line spacing, and font settings were not preserved.
13-
`#I770477` - Cell width became incorrect after merging cells.
14-
`#I783704` - Find pane did not open with the Ctrl + F shortcut.
1511
`#I779496` - Fixed a script error that occurred when deleting content inside a table cell.
16-
`#I775650` - "No Color" highlight option now shows the pointer cursor like other buttons.
12+
`#I773785` - Resolved an issue where inline editing did not work for Date or Number form fields.
13+
`#I777100` - Resolved an issue where updating a checkbox form field did not navigate to the corresponding position.
14+
15+
## 31.2.12 (2025-11-18)
16+
17+
### DocumentEditor
18+
19+
#### Bug Fixes
20+
21+
`#I776220` - Fixed an issue where the table fill color was not applied correctly.
22+
`#I778750` - Resolved loss of alignment, line spacing, and font settings.
23+
`#I770477` - Corrected cell width after merge operations.
24+
`#I783704` - Ctrl+F now opens the Find pane as expected.
25+
`#I775650` - “No Color” highlight option now shows a pointer cursor like other buttons.
1726
`#I783047` - Corrected superscript formatting when typing a comma.
1827
`#I770706` - Undo now restores the original bullet-point formatting.
19-
`#I774637` - Spell-check suggestions were not displayed properly.
20-
`#I779125` - Resolved script error when exporting the document as DOCX.
28+
`#I774637` - Spell-check suggestions now display properly.
29+
`#I779125` - Resolved a script error during DOCX export.
2130
`#I773853` - The `showRevisions` property now works correctly in protected documents.
22-
`#I763990` - Footnotes were undefined when serializing a document.
31+
`#I763990` - Resolved an issue where footnotes were undefined during serialization.
2332
`#I781625` - Resolved selection issues with nested bookmarks when using the `navigateToNextEditingRegion` API.
24-
`#I780167` - Reduced lag during text insertion and backspacing.
25-
`#I776105` - Prevented image clipping when "Exactly" line spacing is applied.
26-
`#I778204` - Cursor is now visible in an empty editable region.
33+
`#I780167` - Improved responsiveness during text insertion and backspacing.
34+
`#I776105` - Images no longer clip when Exactly line spacing is applied.
35+
`#I778204` - The cursor is now visible in empty editable regions.
2736

2837
## 31.2.10 (2025-11-13)
2938

@@ -2218,17 +2227,17 @@
22182227
- `#I340121` - Resolved the issue with rendering elbow connector as line connector.
22192228
- `#I339453` - Resolved the issue with rendering a fixed width table.
22202229
- `#I341119` - Resolved the overlapping issue for image with top and bottom wrapping inside table.
2221-
- `#I339602` Track changes is now updated properly in header and footer.
2222-
- `#I341964`, `#I342165` RTL text is now arranged properly when copy/paste.
2223-
- `#I339714` Footnote order is now updated properly.
2230+
- `#I339602` - Track changes is now updated properly in header and footer.
2231+
- `#I341964`, `#I342165` - RTL text is now arranged properly when copy/paste.
2232+
- `#I339714` - Footnote order is now updated properly.
22242233
- `#I339973` - Table is now preserved properly in the exported Word document.
2225-
- `#I340795` Field is now copied properly.
2226-
- `#I339872` Page number in footer is now updated properly.
2227-
- `#I339576`, `#F168072` Resolved the issue in applying page orientation with the section break.
2228-
- `#I339027` Resolved the script error in saving document with tracked changes in header/footer.
2229-
- `#I340532` Html elements are now properly disposed.
2230-
- `#F168319` Resolved the ViewChange event binding issue in Document Editor component.
2231-
- `#I341375` Resolved the undo/redo issue in comment editing operations.
2234+
- `#I340795` - Field is now copied properly.
2235+
- `#I339872` - Page number in footer is now updated properly.
2236+
- `#I339576`, `#F168072` - Resolved the issue in applying page orientation with the section break.
2237+
- `#I339027` - Resolved the script error in saving document with tracked changes in header/footer.
2238+
- `#I340532` - Html elements are now properly disposed.
2239+
- `#F168319` - Resolved the ViewChange event binding issue in Document Editor component.
2240+
- `#I341375` - Resolved the undo/redo issue in comment editing operations.
22322241

22332242
#### New Features
22342243

@@ -2308,18 +2317,18 @@
23082317
- `#I340121` - Resolved the issue with elbow connector rendering as line connector.
23092318
- `#I339453` - Resolved the rendering issue in fixed table width case.
23102319
- `#I341119` - Resolved the image with top and bottom wrapping overlapping issue with table.
2311-
- `#I339602` Track changes is now updated properly in header and footer.
2312-
- `#I341964`, `#I342165` Resolved the text rearrange issue in copy/paste of RTL text.
2313-
- `#I339714` Footnote order is now updated properly.
2320+
- `#I339602` - Track changes is now updated properly in header and footer.
2321+
- `#I341964`, `#I342165` - Resolved the text rearrange issue in copy/paste of RTL text.
2322+
- `#I339714` - Footnote order is now updated properly.
23142323
- `#I339973` - Table serialization issue in word export is resolved.
2315-
- `#I340795` Issue with copying field is resolved.
2316-
- `#I339872` Page number is footer is now updated properly.
2317-
- `#I339576`, `#F168072` Resolved the issue in applying page orientation with the section break.
2318-
- `#I339027` Resolved the script error in saving tracked content in header/footer.
2319-
- `#I340532` Html elements are nor properly disposed.
2320-
- `#F168319` Resolved the ViewChange event binding issue in Document Editor component.
2321-
- `#I341375` Resolved the history issue in comment operations.
2322-
- `#I341840` Resolved the table rendering issue.
2324+
- `#I340795` - Issue with copying field is resolved.
2325+
- `#I339872` - Page number is footer is now updated properly.
2326+
- `#I339576`, `#F168072` - Resolved the issue in applying page orientation with the section break.
2327+
- `#I339027` - Resolved the script error in saving tracked content in header/footer.
2328+
- `#I340532` - Html elements are nor properly disposed.
2329+
- `#F168319` - Resolved the ViewChange event binding issue in Document Editor component.
2330+
- `#I341375` - Resolved the history issue in comment operations.
2331+
- `#I341840` - Resolved the table rendering issue.
23232332

23242333
#### New Features
23252334

@@ -2393,18 +2402,18 @@
23932402

23942403
#### Bug Fixes
23952404

2396-
- `#I339602` Track changes is now updated properly in header and footer.
2397-
- `#I341964`, `#I342165` Resolved the text rearrange issue in copy/paste of RTL text.
2398-
- `#I339714` Footnote order is now updated properly.
2405+
- `#I339602` - Track changes is now updated properly in header and footer.
2406+
- `#I341964`, `#I342165` - Resolved the text rearrange issue in copy/paste of RTL text.
2407+
- `#I339714` - Footnote order is now updated properly.
23992408
- `#I339973` - Table serialization issue in word export is resolved.
2400-
- `#I340795` Issue with copying field is resolved.
2401-
- `#I339872` Page number is footer is now updated properly.
2402-
- `#I339576`, `#F168072` Resolved the issue in applying page orientation with the section break.
2403-
- `#I339027` Resolved the script error in saving tracked content in header/footer.
2404-
- `#I340532` Html elements are now properly disposed.
2405-
- `#F168319` Resolved the ViewChange event binding issue in Document Editor component
2406-
- `#I340643`, `#I341375` Resolved the history issue in comment operations
2407-
- `#I341840` Resolved the table rendering issue.
2409+
- `#I340795` - Issue with copying field is resolved.
2410+
- `#I339872` - Page number is footer is now updated properly.
2411+
- `#I339576`, `#F168072` - Resolved the issue in applying page orientation with the section break.
2412+
- `#I339027` - Resolved the script error in saving tracked content in header/footer.
2413+
- `#I340532` - Html elements are now properly disposed.
2414+
- `#F168319` - Resolved the ViewChange event binding issue in Document Editor component
2415+
- `#I340643`, `#I341375` - Resolved the history issue in comment operations
2416+
- `#I341840` - Resolved the table rendering issue.
24082417

24092418
#### New Features
24102419

@@ -2482,8 +2491,8 @@
24822491
#### New Features
24832492

24842493
- `#I256210`, `#F150773`, `#I295055`, `#I295551`, `#I324037`, `#I326715` - Added support for Widow/Orphan control, Keep with next and Keep lines together properties.
2485-
- `#I298019`, `#I307321`, `#F160804`, `#F164217`, `#F164872` Improved the accuracy of text size measurements such as to match Microsoft Word pagination for most Word documents.
2486-
- `#I243246`, `#I249594`, `#I287633`, `#I295055`, `#I295549`, `#I299657`, `#I308408`, `#I326567` Added support to preserve tables with position properties.
2494+
- `#I298019`, `#I307321`, `#F160804`, `#F164217`, `#F164872` - Improved the accuracy of text size measurements such as to match Microsoft Word pagination for most Word documents.
2495+
- `#I243246`, `#I249594`, `#I287633`, `#I295055`, `#I295549`, `#I299657`, `#I308408`, `#I326567` - Added support to preserve tables with position properties.
24872496
- Added option to directly convert DocIO's WordDocument to SFDT and vice-versa in .NET and Java server-side library.
24882497
- Added Word-to-SFDT conversion in Java server-side library.
24892498
- Added new spell checker library for Java.

controls/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-documenteditor",
3-
"version": "31.2.5",
3+
"version": "31.2.12",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs.",
55
"keywords": [
66
"ej2",

0 commit comments

Comments
 (0)