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.

src/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-angular-documenteditor",
3-
"version": "29.1.41",
3+
"version": "29.2.4",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/dropdowns/CHANGELOG.md

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

33
## [Unreleased]
44

5+
### DropDownTree
6+
7+
#### Bug Fixes
8+
9+
- `#I712180` - Enhanced the node selection behavior in the `TreeView` component by introducing a new property `checkOnClick`, which provides control over node interaction. This is enabled by default in Dropdown Tree, so that the checkbox will be checked on either clicking node text or checkbox.
10+
11+
### DropdownList
12+
13+
#### Bug Fixes
14+
15+
- `#I715148` - Fixed an issue where group template fails to render properly after selecting value.
16+
- `#I716996` - Fixed an issue where the popup did not open correctly after simultaneously pressing the space key and clicking on a dropdown list.
17+
18+
## 29.2.4 (2025-05-14)
19+
520
### ComboBox
621

722
#### Bug Fixes

src/dropdowns/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-dropdowns",
3-
"version": "29.1.41",
3+
"version": "29.2.4",
44
"description": "Essential JS 2 DropDown Components for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/gantt/CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,34 @@
66

77
#### Bug fixes
88

9+
- `#I719807` - Parent record reverted to previous state, but child record does not while performing Undo action issue has been fixed.
10+
- `#I721574` - Localization not applied to Gantt Chart though `locale` property is defined issue has been fixed.
11+
- `#I647637` - Fixed an issue where the `showWeekend` property did not function correctly during taskbar drag and drop operations in different time zones.
12+
- `#I718712` - Resolved the issue where dependency arrows were incorrectly positioned on the grid side during PDF exports.
13+
14+
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
15+
16+
## 29.2.4 (2025-05-14)
17+
18+
### GanttChart
19+
20+
#### Bug fixes
21+
922
- `#I196662` - Fixed an issue where the `rowSelected` event returned an incorrect target argument when the `TaskName` column was focused.
1023
- `#I705462` -Resolved an issue where milestone addition failed when using `UrlAdaptor` and the server modified the `TaskID`. Previously, new task IDs were generated based on the collection length, which caused conflicts with server-assigned IDs. Now, IDs are generated sequentially (like SQL auto-increment) to ensure consistency and avoid duplication.
1124
- `#I649480` - Addressed the issue where disabling `updateOffsetOnTaskbarEdit` did not stop automatic successor task movement. Now, successors only update when offsets or dependencies are explicitly adjusted, aligning with Microsoft Project behaviour.
1225
- `#I709648` - Fixed incorrect `actionComplete` event firing when `args.cancel` was set to true in `actionBegin` for `beforeSave`, and when no actual changes occurred during cell editing.
1326
- `#I647637` - Resolved an issue where taskbars were not fully exported in PDF format when the `showWeekend` property was set to false.
1427

15-
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
28+
- `#I196662` - Fixed an issue where the `rowSelected` event returned an incorrect target argument when the `TaskName` column was focused.
29+
- `#I709648` - Fixed incorrect `actionComplete` event firing when `args.cancel` was set to true in `actionBegin` for `beforeSave`, and when no actual changes occurred during cell editing.
1630

1731
#### Feature
1832

1933
- `#I489078`, `#I647637` - Introduced the `showWeekend` property to enhance Gantt timeline clarity. When `showWeekend` set to false, weekend cells are excluded from both the timeline and PDF export, allowing users to focus on working days and task-relevant timelines. This feature can be explored in the updated interactive [demo](https://ej2.syncfusion.com/javascript/demos/#/tailwind3/gantt/work-week).
2034

35+
- `#I489078`, `#I647637` - Introduced the `showWeekend` property to enhance Gantt timeline clarity. When `showWeekend` set to false, weekend cells are excluded from both the timeline and PDF export, allowing users to focus on working days and task-relevant timelines. This feature can be explored in the updated interactive [demo](https://ej2.syncfusion.com/angular/demos/#/tailwind3/gantt/work-week).
36+
2137
## 29.1.41 (2025-05-06)
2238

2339
### GanttChart

src/gantt/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-gantt",
3-
"version": "29.1.41",
3+
"version": "29.2.4",
44
"description": "Essential JS 2 Gantt Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/grids/CHANGELOG.md

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

77
#### Bug Fixes
88

9+
- `#I719879` - Fixed an issue where inserting multiple new rows in batch editing and pressing the Update button caused focus to incorrectly return to a cell input with validation errors.
10+
- `#I720056` - In `ResetOnRowClick` mode, fixed an issue where using `SHIFT + click` on checkbox selected only a single row instead of a range of rows.
11+
- `#I726231` – Resolved a script error that occurred when changing the operator in `the filter menu popup` for a date time column.
12+
13+
## 29.2.4 (2025-05-14)
14+
15+
### Grid
16+
17+
#### Bug Fixes
18+
919
- `#I715931` - The issue with filtering a hidden column while using `column virtualization` through the `filterByColumn` method has been fixed.
1020
- `#I713440` – The issue where an incorrect group query was added while filtering a `ForeignKey` column in the Grid using the `ODataV4Adaptor` has been resolved.
1121
- `#I707868` - Resolved an issue where persistence was not retained correctly when using `setCulture`.

src/grids/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-grids",
3-
"version": "29.1.41",
3+
"version": "29.2.4",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/imageeditor/CHANGELOG.md

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

55
### Image Editor
66

7+
#### Bug Fixes
8+
9+
- The issue with "Image smoothing not working properly after window resize" has been resolved.
10+
11+
## 29.2.4 (2025-05-14)
12+
13+
### Image Editor
14+
715
#### Features
816

917
- The Image Editor component now supports image smoothing through the new `imageSmoothingEnabled` property. This property allows users to enable or disable the smoothing effect applied to high-resolution images during rendering. When enabled, it improves visual clarity by reducing pixelation with high-quality smoothing. This enhancement ensures sharper image rendering, especially when working with detailed images.

src/imageeditor/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-image-editor",
3-
"version": "29.1.38",
3+
"version": "29.2.4",
44
"description": "Essential JS 2 ImageEditor for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/lineargauge/CHANGELOG.md

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

99
## [Unreleased]
1010

11+
### LinearGauge
12+
13+
#### Bug Fixes
14+
15+
- `#T723906` - Touch scrolling for the Linear Gauge works correctly on touch-enabled devices.
16+
1117
## 18.3.47 (2020-11-05)
1218

1319
### LinearGauge

src/lineargauge/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-lineargauge",
3-
"version": "29.1.33",
3+
"version": "29.2.4",
44
"description": "Essential JS 2 LinearGauge Components for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/navigations/CHANGELOG.md

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

33
## [Unreleased]
44

5+
### ContextMenu
6+
7+
#### Bug Fixes
8+
9+
- `#I725006` - The issue where the ID attribute was missing when template support was enabled in the Context Menu component has been resolved.
10+
11+
- `#I725680` - The issue where item in arguments of the select event was undefined when template support was enabled in the Context Menu component has been resolved.
12+
13+
### TreeView
14+
15+
#### Bug Fixes
16+
17+
- `#I712180` - Enhanced the node selection behavior in the TreeView component by introducing a new property `checkOnClick`, which provides control over node interaction and helps prevent unintended actions during user interactions.
18+
19+
## 29.2.4 (2025-05-14)
20+
521
### Toolbar
622

723
#### Bug Fixes

src/navigations/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-navigations",
3-
"version": "29.1.41",
3+
"version": "29.2.4",
44
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/navigations/src/treeview/treeview.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { TreeView } from '@syncfusion/ej2-navigations';
44
import { Template } from '@syncfusion/ej2-angular-base';
55

66

7-
export const inputs: string[] = ['allowDragAndDrop','allowEditing','allowMultiSelection','allowTextWrap','animation','autoCheck','checkDisabledChildren','checkedNodes','cssClass','disabled','dragArea','enableHtmlSanitizer','enablePersistence','enableRtl','expandOn','expandedNodes','fields','fullRowNavigable','fullRowSelect','loadOnDemand','locale','nodeTemplate','selectedNodes','showCheckBox','sortOrder'];
7+
export const inputs: string[] = ['allowDragAndDrop','allowEditing','allowMultiSelection','allowTextWrap','animation','autoCheck','checkDisabledChildren','checkOnClick','checkedNodes','cssClass','disabled','dragArea','enableHtmlSanitizer','enablePersistence','enableRtl','expandOn','expandedNodes','fields','fullRowNavigable','fullRowSelect','loadOnDemand','locale','nodeTemplate','selectedNodes','showCheckBox','sortOrder'];
88
export const outputs: string[] = ['actionFailure','created','dataBound','dataSourceChanged','destroyed','drawNode','keyPress','nodeChecked','nodeChecking','nodeClicked','nodeCollapsed','nodeCollapsing','nodeDragStart','nodeDragStop','nodeDragging','nodeDropped','nodeEdited','nodeEditing','nodeExpanded','nodeExpanding','nodeSelected','nodeSelecting'];
99
export const twoWays: string[] = [''];
1010

src/pdfviewer/CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,24 @@
66

77
#### Bug Fixes
88

9+
- `#I721515` - Resolved an issue where a script error occurred while scrolling through a customer-provided document.
10+
- `#I719937` - The script error no longer occurs when loading the customer provided document.
11+
- `#I719934` - Resolved an issue where custom fonts were not preserved in the downloaded document for form fields on the server side.
12+
- `#I720572` - Fixed an issue where the `fireFormFieldRemoveEvent` is not triggered when deleting the form fields on non-render pages.
13+
- `#I721617` - Resolved an issue where an undefined exception was thrown while accessing the destination page of child bookmarks in the provided document.
14+
15+
## 29.2.4 (2025-05-14)
16+
17+
### PDF Viewer
18+
19+
#### Bug Fixes
20+
921
- `#I717333` - Fixed an issue where the draw and type signatures were missing in the downloaded document for non-rendered pages when updating it using the `updateFormFieldsValue` method.
1022
- `#I717767` - Resolved an issue where tile rendered documents appeared blurry at minimum zoom levels in server rendering mode.
1123
- `#I643817` - Resolved an issue where calibration was not functioning correctly for measurement annotations.
1224
- `#I715531` - Resolved an issue where hyperlinks were not rendered when `enableTileRendering` was set to true.
1325
- `#I715989` - Resolved an issue where the rectangle annotation was not properly added when the cursor was quickly moved outside the page during drawing.
26+
- `#I714312` , `#I712195` - Improved loading and interaction performance when opening documents containing a more number of form fields.
1427

1528
## 29.1.41 (2025-05-06)
1629

@@ -20,7 +33,6 @@
2033

2134
- `#I712197` - Fixed an issue where the form field value and font size not preserved when downloading the document without form designer module.
2235
- `#I713625` - Resolved an issue where form field data was not retained in the downloaded document without annotation module.
23-
- `#I714312` , `#I712195` - Improved loading and interaction performance when opening documents containing a more number of form fields.
2436

2537
## 29.1.40 (2025-04-29)
2638

src/pdfviewer/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-pdfviewer",
3-
"version": "29.1.41",
3+
"version": "29.2.4",
44
"description": "Essential JS 2 PDF viewer Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/pivotview/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-pivotview",
3-
"version": "29.1.40",
3+
"version": "29.2.4",
44
"description": "The pivot grid, or pivot table, is used to visualize large sets of relational data in a cross-tabular format, similar to an Excel pivot table. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

src/querybuilder/CHANGELOG.md

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

77
#### Bug Fixes
88

9+
- `#I717768` - Resolved an issue where a child group was incorrectly converted to a condition when the parent group's condition was changed to "OR".
10+
- `#I720928` - Resolved an issue where a setRulesFromSql fails on Valid SQL Syntax Without Parentheses in LIKE Clause.
11+
12+
## 29.1.41 (2025-05-06)
13+
14+
### QueryBuilder
15+
16+
#### Bug Fixes
17+
918
- `#I711196` - Fixed an exception that occurs when clearing the value in the custom Dropdown field within the QueryBuilder component
1019
- `#I705752` - Resolved an issue where the rule value was incorrect when switching from the 'in' operator to the 'notin' operator, particularly when the dataSource property was not configured in the Query Builder.
1120

0 commit comments

Comments
 (0)