Skip to content

Commit 4c23039

Browse files
author
pipeline
committed
v29.2.5 is released
1 parent 1379be4 commit 4c23039

34 files changed

+176
-24
lines changed

src/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5+
### Switch
6+
7+
#### Bug Fixes
8+
9+
- `#I959152` - Fixed the issue of the click event being triggered twice when placing a switch within a label tag. Additionally, resolved a script error that occurred when placing the switch within a dialog.
10+
511
## 29.1.33 (2025-03-25)
612

713
### Chip

src/buttons/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-buttons",
3-
"version": "29.1.33",
3+
"version": "29.2.4",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5+
### DatePicker
6+
7+
#### Bug Fixes
8+
9+
- `#I711579` - Fixed an issue where the DatePicker popup did not close on mobile devices when clicking outside of it.
10+
511
## 29.1.40 (2025-04-29)
612

713
### DateRangePicker

src/calendars/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-calendars",
3-
"version": "29.1.40",
3+
"version": "29.2.4",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/charts/CHANGELOG.md

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

55
### Chart
66

7+
#### Features
8+
9+
- `#I668455` - Provided support for setting offset values for labels in category axes.
10+
11+
#### Bug Fixes
12+
13+
- `#I722486` - Chart empty point mode now works properly in ASP.NET MVC Chart.
14+
- `#I725935` - Console error no longer occurs when toggling combination line and stacked area series.
15+
16+
## 29.2.4 (2025-05-14)
17+
18+
### Chart
19+
720
#### Bug Fixes
821

922
- `#F67379` - Now the opacity updates properly on the data point after the tooltip fades out.

src/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": "29.1.41",
3+
"version": "29.2.4",
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",

src/charts/src/chart/axes.directive.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';
44
import { StripLinesDirective } from './striplines.directive';
55
import { MultiLevelLabelsDirective } from './multilevellabels.directive';
66

7-
let input: string[] = ['border', 'coefficient', 'columnIndex', 'crossesAt', 'crossesInAxis', 'crosshairTooltip', 'description', 'desiredIntervals', 'edgeLabelPlacement', 'enableAutoIntervalOnZooming', 'enableScrollbarOnZooming', 'enableTrim', 'enableWrap', 'interval', 'intervalType', 'isIndexed', 'isInversed', 'labelFormat', 'labelIntersectAction', 'labelPadding', 'labelPlacement', 'labelPosition', 'labelRotation', 'labelStyle', 'lineBreakAlignment', 'lineStyle', 'logBase', 'majorGridLines', 'majorTickLines', 'maximum', 'maximumLabelWidth', 'maximumLabels', 'minimum', 'minorGridLines', 'minorTickLines', 'minorTicksPerInterval', 'multiLevelLabels', 'name', 'opposedPosition', 'placeNextToAxisLine', 'plotOffset', 'plotOffsetBottom', 'plotOffsetLeft', 'plotOffsetRight', 'plotOffsetTop', 'rangePadding', 'rowIndex', 'scrollbarSettings', 'skeleton', 'skeletonType', 'span', 'startAngle', 'startFromZero', 'stripLines', 'tabIndex', 'tickPosition', 'title', 'titlePadding', 'titleRotation', 'titleStyle', 'valueType', 'visible', 'zoomFactor', 'zoomPosition'];
7+
let input: string[] = ['border', 'coefficient', 'columnIndex', 'crossesAt', 'crossesInAxis', 'crosshairTooltip', 'description', 'desiredIntervals', 'edgeLabelPlacement', 'enableAutoIntervalOnZooming', 'enableScrollbarOnZooming', 'enableTrim', 'enableWrap', 'interval', 'intervalOffset', 'intervalType', 'isIndexed', 'isInversed', 'labelFormat', 'labelIntersectAction', 'labelPadding', 'labelPlacement', 'labelPosition', 'labelRotation', 'labelStyle', 'lineBreakAlignment', 'lineStyle', 'logBase', 'majorGridLines', 'majorTickLines', 'maximum', 'maximumLabelWidth', 'maximumLabels', 'minimum', 'minorGridLines', 'minorTickLines', 'minorTicksPerInterval', 'multiLevelLabels', 'name', 'opposedPosition', 'placeNextToAxisLine', 'plotOffset', 'plotOffsetBottom', 'plotOffsetLeft', 'plotOffsetRight', 'plotOffsetTop', 'rangePadding', 'rowIndex', 'scrollbarSettings', 'skeleton', 'skeletonType', 'span', 'startAngle', 'startFromZero', 'stripLines', 'tabIndex', 'tickPosition', 'title', 'titlePadding', 'titleRotation', 'titleStyle', 'valueType', 'visible', 'zoomFactor', 'zoomPosition'];
88
let outputs: string[] = [];
99
/**
1010
* Axis Directive
@@ -103,6 +103,12 @@ export class AxisDirective extends ComplexBase<AxisDirective> {
103103
* @aspdefaultvalueignore
104104
*/
105105
public interval: any;
106+
/**
107+
* Specifies an offset value that determines where the first label appears on the category axis.
108+
* This helps control the alignment of axis labels by shifting the starting position.
109+
* @default null
110+
*/
111+
public intervalOffset: any;
106112
/**
107113
* The `intervalType` property defines how the intervals on a date-time axis are calculated and displayed.
108114
* Available options are:

src/diagrams/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22

33
## [Unreleased]
44

5+
## 29.2.4 (2025-05-14)
6+
57
### Diagram
68

79
#### Bug Fixes
810

9-
- `#I952617` - Connectors in the layout will now render with the correct appearance when a specific type is explicitly defined in the `getConnectorDefaults` function.
11+
- `#I713407` - Connectors in the layout will now render with the correct appearance when a specific type is explicitly defined in the `getConnectorDefaults` function.
1012
- `#F196439` - Independent nodes in complex hierarchical trees will now render without overlapping other nodes.
1113
- `#I700206` - Now connectors will not overlap nodes of varying size in layout.
1214
- `#I713490` - Now the nodes will have property defined in `getNodeDefaults` on performing undo and redo.

src/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-angular-diagrams",
3-
"version": "29.1.41",
3+
"version": "29.2.4",
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. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/documenteditor/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@
66

77
#### Bug Fixes
88

9+
- `#I710210` - Fixed the issue with bookmark navigation in the editor.
10+
- `#I715670` - Addressed the problem where the `LinkToPrevious` property for header and footer table widgets was not updating correctly.
11+
- `#I713244` - Fixed the scrollbar not updating properly in the Document Editor when using Web Layout.
12+
- `#I710185` - Resolved the issue where pasted content inside a table was not tracked correctly.
13+
- `#I724703` - Fixed the issue with incorrect list numbering when pasting content.
14+
15+
## 29.2.4 (2025-05-14)
16+
17+
### DocumentEditor
18+
19+
#### Bug Fixes
20+
921
- `#I709841`,`#I722525` - Improved editing performance when spell check is enabled.
1022
- `#I716525` - Fixed performance issues related to bookmark manipulation during editing operations.
1123
- `#I715428` - Resolved a script error that occurred when loading SFDT without injecting the editor module.

0 commit comments

Comments
 (0)