Skip to content

Commit f3ff496

Browse files
author
pipeline
committed
v29.2.5 is released
1 parent 08b584c commit f3ff496

File tree

38 files changed

+148
-33
lines changed

38 files changed

+148
-33
lines changed

components/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.2.4 (2025-05-14)
5+
## 29.2.5 (2025-05-21)
66

77
### Barcode
88

components/buttons/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.2.5 (2025-05-21)
6+
7+
### Switch
8+
9+
#### Bug Fixes
10+
11+
- `#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.
12+
513
## 29.1.33 (2025-03-25)
614

715
### Chip

components/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-vue-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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/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-
## 29.2.4 (2025-05-14)
5+
## 29.2.5 (2025-05-21)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I711579` - Fixed an issue where the DatePicker popup did not close on mobile devices when clicking outside of it.
12+
13+
## 29.1.40 (2025-04-29)
614

715
### DateRangePicker
816

components/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-vue-calendars",
3-
"version": "29.1.39",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

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

720
### Chart

components/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-vue-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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#### Bug Fixes
1010

11-
- `#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.
1212
- `#F196439` - Independent nodes in complex hierarchical trees will now render without overlapping other nodes.
1313
- `#I700206` - Now connectors will not overlap nodes of varying size in layout.
1414
- `#I713490` - Now the nodes will have property defined in `getNodeDefaults` on performing undo and redo.

components/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-vue-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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/src/diagram/diagram.component.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,6 @@ export let DiagramComponent: DefineVueComponent<DiagramModel> = vueDefineCompon
173173
bringToFront(): void {
174174
return this.ej2Instances.bringToFront();
175175
},
176-
checkSize(node: Object, sx: number, sy: number): boolean {
177-
return this.ej2Instances.checkSize(node, sx, sy);
178-
},
179176
clear(): void {
180177
return this.ej2Instances.clear();
181178
},
@@ -462,7 +459,6 @@ export type DiagramComponent = typeof ComponentBase & {
462459
bringLayerForward(layerName: string): void;
463460
bringToCenter(bound: Object): void;
464461
bringToFront(): void;
465-
checkSize(node: Object, sx: number, sy: number): boolean;
466462
clear(): void;
467463
clearHistory(): void;
468464
clearSelection(): void;

components/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-vue-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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/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+
## 29.2.5 (2025-05-21)
6+
7+
### DropDownTree
8+
9+
#### Bug Fixes
10+
11+
- `#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.
12+
13+
### DropdownList
14+
15+
#### Bug Fixes
16+
17+
- `#I715148` - Fixed an issue where group template fails to render properly after selecting value.
18+
- `#I716996` - Fixed an issue where the popup did not open correctly after simultaneously pressing the space key and clicking on a dropdown list.
19+
520
## 29.2.4 (2025-05-14)
621

722
### ComboBox

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

components/filemanager/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.2.4 (2025-05-14)
5+
## 29.2.5 (2025-05-21)
66

77
### FileManager
88

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 29.2.5 (2025-05-21)
6+
7+
### GanttChart
8+
9+
#### Bug fixes
10+
11+
- `#I719807` - Parent record reverted to previous state, but child record does not while performing Undo action issue has been fixed.
12+
- `#I721574` - Localization not applied to Gantt Chart though `locale` property is defined issue has been fixed.
13+
- `#I647637` - Fixed an issue where the `showWeekend` property did not function correctly during taskbar drag and drop operations in different time zones.
14+
- `#I718712` - Resolved the issue where dependency arrows were incorrectly positioned on the grid side during PDF exports.
15+
516
## 29.2.4 (2025-05-14)
617

718
### GanttChart

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

components/grids/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 29.2.5 (2025-05-21)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#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.
12+
- `#I720056` - In `ResetOnRowClick` mode, fixed an issue where using `SHIFT + click` on checkbox selected only a single row instead of a range of rows.
13+
- `#I726231` – Resolved a script error that occurred when changing the operator in `the filter menu popup` for a date time column.
14+
515
## 29.2.4 (2025-05-14)
616

717
### Grid

components/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-vue-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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/imageeditor/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.2.4 (2025-05-14)
5+
## 29.2.5 (2025-05-21)
66

77
### Image Editor
88

components/inputs/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.2.4 (2025-05-14)
5+
## 29.2.5 (2025-05-21)
66

77
### ColorPicker
88

components/layouts/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.2.4 (2025-05-14)
5+
## 29.2.5 (2025-05-21)
66

77
### Dashboard Layout
88

components/lineargauge/CHANGELOG.md

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

1111
## [Unreleased]
1212

13+
## 29.2.5 (2025-05-21)
14+
15+
### LinearGauge
16+
17+
#### Bug Fixes
18+
19+
- `#T723906` - Touch scrolling for the Linear Gauge works correctly on touch-enabled devices.
20+
1321
## 18.3.47 (2020-11-05)
1422

1523
### LinearGauge

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

components/lists/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.2.4 (2025-05-14)
5+
## 29.2.5 (2025-05-21)
66

77
### ListBox
88

components/multicolumncombobox/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.2.4 (2025-05-14)
5+
## 29.2.5 (2025-05-21)
66

77
### MultiColumn ComboBox
88

components/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+
## 29.2.5 (2025-05-21)
6+
7+
### ContextMenu
8+
9+
#### Bug Fixes
10+
11+
- `#I725006` - The issue where the ID attribute was missing when template support was enabled in the Context Menu component has been resolved.
12+
13+
- `#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.
14+
15+
### TreeView
16+
17+
#### Bug Fixes
18+
19+
- `#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.
20+
521
## 29.2.4 (2025-05-14)
622

723
### Toolbar

components/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-vue-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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/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 { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
44
import { TreeView, TreeViewModel } from '@syncfusion/ej2-navigations';
55

66

7-
export const properties: string[] = ['isLazyUpdate', 'plugins', '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', 'actionFailure', 'created', 'dataBound', 'dataSourceChanged', 'destroyed', 'drawNode', 'keyPress', 'nodeChecked', 'nodeChecking', 'nodeClicked', 'nodeCollapsed', 'nodeCollapsing', 'nodeDragStart', 'nodeDragStop', 'nodeDragging', 'nodeDropped', 'nodeEdited', 'nodeEditing', 'nodeExpanded', 'nodeExpanding', 'nodeSelected', 'nodeSelecting'];
7+
export const properties: string[] = ['isLazyUpdate', 'plugins', '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', 'actionFailure', 'created', 'dataBound', 'dataSourceChanged', 'destroyed', 'drawNode', 'keyPress', 'nodeChecked', 'nodeChecking', 'nodeClicked', 'nodeCollapsed', 'nodeCollapsing', 'nodeDragStart', 'nodeDragStop', 'nodeDragging', 'nodeDropped', 'nodeEdited', 'nodeEditing', 'nodeExpanded', 'nodeExpanding', 'nodeSelected', 'nodeSelecting'];
88
export const modelProps: string[] = [];
99

1010
export const testProp: any = getProps({props: properties});

components/pdfviewer/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 29.2.5 (2025-05-21)
6+
7+
### PDF Viewer
8+
9+
#### Bug Fixes
10+
11+
- `#I721515` - Resolved an issue where a script error occurred while scrolling through a customer-provided document.
12+
- `#I719937` - The script error no longer occurs when loading the customer provided document.
13+
- `#I719934` - Resolved an issue where custom fonts were not preserved in the downloaded document for form fields on the server side.
14+
- `#I720572` - Fixed an issue where the `fireFormFieldRemoveEvent` is not triggered when deleting the form fields on non-render pages.
15+
- `#I721617` - Resolved an issue where an undefined exception was thrown while accessing the destination page of child bookmarks in the provided document.
16+
517
## 29.2.4 (2025-05-14)
618

719
### PDF Viewer
@@ -13,6 +25,7 @@
1325
- `#I643817` - Resolved an issue where calibration was not functioning correctly for measurement annotations.
1426
- `#I715531` - Resolved an issue where hyperlinks were not rendered when `enableTileRendering` was set to true.
1527
- `#I715989` - Resolved an issue where the rectangle annotation was not properly added when the cursor was quickly moved outside the page during drawing.
28+
- `#I714312` , `#I712195` - Improved loading and interaction performance when opening documents containing a more number of form fields.
1629

1730
## 29.1.41 (2025-05-06)
1831

@@ -22,7 +35,6 @@
2235

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

2739
## 29.1.40 (2025-04-29)
2840

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

components/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-vue-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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/querybuilder/CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22

33
## [Unreleased]
44

5-
## 29.2.4 (2025-05-14)
5+
## 29.2.5 (2025-05-21)
6+
7+
### QueryBuilder
8+
9+
#### Bug Fixes
10+
11+
- `#I717768` - Resolved an issue where a child group was incorrectly converted to a condition when the parent group's condition was changed to "OR".
12+
- `#I720928` - Resolved an issue where a setRulesFromSql fails on Valid SQL Syntax Without Parentheses in LIKE Clause.
13+
14+
## 29.1.41 (2025-05-06)
615

716
### QueryBuilder
817

0 commit comments

Comments
 (0)