Skip to content

Commit f0450dc

Browse files
author
pipeline
committed
v32.2.4 is released
1 parent d0e7ecf commit f0450dc

File tree

648 files changed

+3477
-677
lines changed

Some content is hidden

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

648 files changed

+3477
-677
lines changed

controls/barcodegenerator/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 32.2.3 (2026-02-05)
6-
75
### Barcode
86

97
#### Bug Fixes

controls/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+
## 32.2.3 (2026-02-05)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I803798` - Resolved an issue where TreeView value selection failed and console error occurred when node ID contained space or hash (#) characters.
12+
513
## 32.1.23 (2026-01-13)
614

715
### Common

controls/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-base",
3-
"version": "32.1.24",
3+
"version": "32.2.3",
44
"description": "A common package of Essential JS 2 base libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/base/src/component.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ export abstract class Component<ElementType extends HTMLElement> extends Base<El
144144
/**
145145
* Returns the persistence data for component
146146
*
147+
* @private
147148
* @returns {any} ?
148149
*/
149150
public getLocalData(): any {
@@ -157,6 +158,7 @@ export abstract class Component<ElementType extends HTMLElement> extends Base<El
157158
/**
158159
* Adding unload event to persist data when enable persistence true
159160
*
161+
* @private
160162
* @returns {void}
161163
*/
162164
public attachUnloadEvent(): void {
@@ -166,6 +168,7 @@ export abstract class Component<ElementType extends HTMLElement> extends Base<El
166168
/**
167169
* Handling unload event to persist data when enable persistence true
168170
*
171+
* @private
169172
* @returns {void}
170173
*/
171174
public handleUnload(): void {
@@ -174,6 +177,7 @@ export abstract class Component<ElementType extends HTMLElement> extends Base<El
174177
/**
175178
* Removing unload event to persist data when enable persistence true
176179
*
180+
* @private
177181
* @returns {void}
178182
*/
179183
public detachUnloadEvent(): void {

controls/blockeditor/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
## [Unreleased]
44

5-
## 32.2.3 (2026-02-05)
6-
75
### Block Editor
86

97
#### Bug Fixes
108

11-
- Now the issues with table block row/column copy and undo redo actions has been resolved.
9+
- Now the issues with table block row/column copy and undo redo actions has been resolved.
10+
11+
- `#I805718` - Now the issue with the Console error occurs when clicking over the code block in BlockEditor component has been resolved.

controls/blockeditor/spec/managers/event-manager.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ describe('Event Manager - keyboard, mouse, selection, and block change behaviors
106106
const contentElement2 = blockElement2.querySelector('.e-block-content') as HTMLElement;
107107
editor.blockManager.setFocusToBlock(blockElement1);
108108

109+
setCursorPosition(getBlockContentElement(blockElement2), 0);
109110
blockElement2.dispatchEvent(new MouseEvent('mouseup', { bubbles: true }));
110111
expect(editor.blockManager.currentFocusedBlock.id).toBe(blockElement2.id);
111112
// DOM neighbors around focused block

controls/blockeditor/spec/renderer/table.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ describe('Table Block', () => {
686686
const lastBlock = domHelpers.query(editorElement, 'tbody tr:last-child td[role="gridcell"] .e-block');
687687
editor.blockManager.setFocusToBlock(lastBlock);
688688
const cellBlock = domHelpers.query(editorElement, 'tbody tr:first-child td[role="gridcell"] .e-block');
689-
cellBlock.dispatchEvent(new MouseEvent('mouseup', { bubbles: true }));
689+
cellBlock.dispatchEvent(new MouseEvent('mousedown', { bubbles: true }));
690690
// Expect editor to consider this block focused
691691
expect(editor.blockManager.currentFocusedBlock.id === cellBlock.id).toBe(true);
692692
done();

controls/blockeditor/src/block-manager/actions/event.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ export class EventAction {
121121
if (this.parent.readOnly || ((mouseEvent.target as HTMLElement).tagName === 'TD')) { return; }
122122
const range: Range = getSelectedRange();
123123
const startContainerParent: HTMLElement = range ? getParentElement(range.startContainer) : null;
124-
const blockElement: HTMLElement = (((startContainerParent.closest('.' + constants.BLOCK_CLS)) as HTMLElement) ||
125-
(mouseEvent.target as HTMLElement).closest('.' + constants.BLOCK_CLS) as HTMLElement);
124+
const target: HTMLElement = (startContainerParent || mouseEvent.target) as HTMLElement;
125+
const blockElement: HTMLElement = target.closest('.' + constants.BLOCK_CLS) as HTMLElement;
126126
if (blockElement && (this.parent.currentFocusedBlock !== blockElement)) {
127127
this.parent.togglePlaceholder(this.parent.currentFocusedBlock, false);
128128
this.parent.setFocusToBlock(blockElement);

controls/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 32.2.3 (2026-02-05)
6-
75
### Chart
86

97
#### Bug Fixes

controls/data/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 32.2.3 (2026-02-05)
6-
75
### DataManager
86

97
#### Bug Fixes

0 commit comments

Comments
 (0)