8000 v29.2.5 is released · syncfusion/ej2-vue-ui-components@f3ff496 · GitHub
[go: up one dir, main page]

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
57A7
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;

0 commit comments

Comments
 (0)
0