Skip to content

Commit 1f4b4e4

Browse files
author
pipeline
committed
v29.1.38 is released
1 parent afd393a commit 1f4b4e4

File tree

130 files changed

+1748
-887
lines changed

Some content is hidden

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

130 files changed

+1748
-887
lines changed

controls/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-
## 29.1.37 (2025-04-08)
5+
## 29.1.38 (2025-04-15)
66

77
### Barcode
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-
## 29.1.37 (2025-04-08)
5+
## 29.1.38 (2025-04-15)
66

77
### DatePicker
88

controls/charts/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-
## 29.1.37 (2025-04-08)
5+
## 29.1.38 (2025-04-15)
66

77
### 3DChart
88

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-
## 29.1.37 (2025-04-08)
5+
## 29.1.38 (2025-04-15)
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+
## 29.1.38 (2025-04-15)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I706720` - Added localization support for `SearchResults` and `noItemsToDisplay` texts in the symbol palette.
12+
513
## 29.1.37 (2025-04-08)
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": "29.1.35",
3+
"version": "29.1.37",
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/tool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ export class SelectTool extends ToolBase {
407407
const arrayNodes: (NodeModel | ConnectorModel | AnnotationModel)[] = this.commandHandler.getSelectedObject();
408408
if (!this.commandHandler.hasSelection() || !args.info || !args.info.ctrlKey) {
409409
// 948882: Improper Selection Behavior When Node Drag Constraint is Disabled
410-
if (button !== 2) {
410+
if (button !== 2 || !arrayNodes.some((obj: NodeModel | ConnectorModel | AnnotationModel) => obj === args.source)) {
411411
this.commandHandler.clearSelection(args.source === null ? true : false);
412412
if (this.action === 'LabelSelect') {
413413
this.commandHandler.labelSelect(args.source, args.sourceWrapper, arrayNodes);

controls/diagrams/src/symbol-palette/symbol-palette.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,8 @@ export class SymbolPalette extends Component<HTMLElement> implements INotifyProp
685685
*/
686686
private defaultLocale(): Object
687687
{
688-
return{ SearchShapes: 'Search Shapes'};
688+
//EJ2-949570 - Add Localization Support for "SearchResults" and "No Items To Display"
689+
return { SearchShapes: 'Search Shapes', SearchResults: 'Search Results', NoItemsToDisplay: 'No Items To Display' };
689690
}
690691
/**
691692
* Renders the rulers.
@@ -2229,7 +2230,8 @@ export class SymbolPalette extends Component<HTMLElement> implements INotifyProp
22292230
}
22302231
} else if (value !== '') {
22312232
const emptyDiv: HTMLElement = createHtmlElement('div', { 'id': 'EmptyDiv', 'style': 'text-align:center;font-style:italic' });
2232-
emptyDiv.innerHTML = 'No Items To Display';
2233+
//EJ2-949570 - Add Localization Support for "SearchResults" and "No Items To Display"
2234+
emptyDiv.innerHTML = this.l10n.getConstant('NoItemsToDisplay');
22332235
element.appendChild(emptyDiv);
22342236
} else {
22352237
const element: HTMLElement = document.getElementById('iconSearch');
@@ -2248,7 +2250,9 @@ export class SymbolPalette extends Component<HTMLElement> implements INotifyProp
22482250
paletteDiv = createHtmlElement('div', { 'id': 'SearchPalette', 'style': 'display:none;overflow:auto;' });
22492251
this.element.appendChild(paletteDiv);
22502252
const paletteCollection: AccordionItemModel = {
2251-
header: 'Search Results', expanded: true,
2253+
//EJ2-949570 - Add Localization Support for "SearchResults" and "No Items To Display"
2254+
header: this.l10n.getConstant('SearchResults'),
2255+
expanded: true,
22522256
content: '#SearchPalette'
22532257
};
22542258
this.accordionElement.addItem(paletteCollection, 0);

controls/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 29.1.38 (2025-04-15)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I699159` - Fixed the issue where indent was decreasing incorrectly in a list for the entire selection.
12+
- `#I699123` - Fixed the issue with applying numbering and bullet lists.
13+
- `#I703013` - Fixed the issue where the paragraph mark was not included when inserting a bookmark.
14+
- `#I700209` - Fixed the issue where inserting a nested content control only inserted text instead of another content control.
15+
- `#I702581` - Fixed the content control border rendering issue when the paragraph had an indent.
16+
- `#I706170` - Fixed the content overlapping issue with the previous page footer during paragraph deletion.
17+
- `#I705530` - Fixed the rendering issue of double underlines for spell check inside table cell.
18+
519
## 29.1.37 (2025-04-08)
620

721
### DocumentEditor

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": "29.1.35",
3+
"version": "29.1.37",
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)