Skip to content

Commit 328e31b

Browse files
author
pipeline
committed
v28.2.5 is released
1 parent e164e51 commit 328e31b

File tree

46 files changed

+197
-43
lines changed

Some content is hidden

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

46 files changed

+197
-43
lines changed

Diff for: components/barcodegenerator/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 28.2.4 (2025-02-04)
5+
## 28.2.5 (2025-02-11)
66

77
### Barcode
88

Diff for: components/buttons/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 28.2.4 (2025-02-04)
5+
## 28.2.5 (2025-02-11)
66

77
### Switch
88

Diff for: components/calendars/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 28.2.4 (2025-02-04)
5+
## 28.2.5 (2025-02-11)
66

77
### DatePicker
88

Diff for: components/charts/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 28.2.5 (2025-02-11)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I687354` - The chart with the primary and secondary axes is now working properly even when no series is bound.
12+
513
## 28.2.4 (2025-02-04)
614

715
### Chart

Diff for: components/charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-charts",
3-
"version": "28.2.3",
3+
"version": "28.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",

Diff for: components/circulargauge/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## [Unreleased]
66

7-
## 28.2.4 (2025-02-04)
7+
## 28.2.5 (2025-02-11)
88

99
### Circular Gauge
1010

Diff for: components/diagrams/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-diagrams",
3-
"version": "28.1.39",
3+
"version": "28.2.3",
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",

Diff for: components/diagrams/src/diagram/diagram.component.ts

-8
Original file line numberDiff line numberDiff line change
@@ -269,9 +269,6 @@ export let DiagramComponent: DefineVueComponent<DiagramModel> = vueDefineCompon
269269
getParentId(id: string): string {
270270
return this.ej2Instances.getParentId(id);
271271
},
272-
getPathData(key: string): Object[] {
273-
return this.ej2Instances.getPathData(key);
274-
},
275272
getTool(action: string): Object {
276273
return this.ej2Instances.getTool(action);
277274
},
@@ -386,9 +383,6 @@ export let DiagramComponent: DefineVueComponent<DiagramModel> = vueDefineCompon
386383
setActiveLayer(layerName: string): void {
387384
return this.ej2Instances.setActiveLayer(layerName);
388385
},
389-
setPathData(key: string, data: Object[]): void {
390-
return this.ej2Instances.setPathData(key, data);
391-
},
392386
setStackLimit(stackLimit: number): void {
393387
return this.ej2Instances.setStackLimit(stackLimit);
394388
},
@@ -497,7 +491,6 @@ export type DiagramComponent = typeof ComponentBase & {
497491
getNodeObject(id: string): Object;
498492
getObject(name: string): Object;
499493
getParentId(id: string): string;
500-
getPathData(key: string): Object[];
501494
getTool(action: string): Object;
502495
group(): void;
503496
hideTooltip(obj: Object | Object): void;
@@ -536,7 +529,6 @@ export type DiagramComponent = typeof ComponentBase & {
536529
sendLayerBackward(layerName: string): void;
537530
sendToBack(): void;
538531
setActiveLayer(layerName: string): void;
539-
setPathData(key: string, data: Object[]): void;
540532
setStackLimit(stackLimit: number): void;
541533
showTooltip(obj: Object | Object): void;
542534
startGroupAction(): void;

Diff for: components/documenteditor/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
## [Unreleased]
44

5+
## 28.2.5 (2025-02-11)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I683467` - Improved performance by optimizing bookmark manipulation during text insertion.
12+
- `#I684634` - Fixed an issue where focus moved to the document editor when selecting a tracked revision.
13+
- `#I684435` - Resolved a freezing issue when accepting all tracked changes.
14+
- `#I686056` - Fixed an issue where the background color was not updating properly in the properties pane.
15+
- `#I679707` - Corrected the continuation of page numbers after restarting page numbering.
16+
- `#I680995` - Fixed font rendering issues when applying the theme font to text.
17+
- `#I687189` - Resolved caret height inconsistencies in collaborative editing.
18+
- `#I682585` - Fixed incorrect list indentation when performing an undo action.
19+
- `#F195801` - Resolved an issue where the content change event was triggered twice when applying a paragraph style.
20+
521
## 28.2.4 (2025-02-04)
622

723
### DocumentEditor

Diff for: components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-documenteditor",
3-
"version": "28.2.3",
3+
"version": "28.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",

Diff for: components/dropdowns/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22

33
## [Unreleased]
44

5+
## 28.2.5 (2025-02-11)
6+
7+
### ComboBox
8+
9+
#### Bug Fixes
10+
11+
- `#I685229` - Fixed the issue where an extra space appears when using the allowResize with height properties.
12+
13+
### DropDownTree
14+
15+
#### Bug Fixes
16+
17+
- `#I684184` - An issue when using value property as two way binding and selecting a filtered node has been resolved.
18+
19+
- `#I681976` - An issue with value property when updating a data source dynamically in Dropdown Tree component has been resolved.
20+
21+
- `#I682748` - An issue Tab focus occurs when navigating a disabled Dropdown Tree component has been resolved.
22+
23+
- `#I682703` - An Focusing issues in Dropdown Tree component when `showSelectAll` property is true has been resolved.
24+
525
## 28.2.4 (2025-02-04)
626

727
### DropDownTree

Diff for: components/dropdowns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-dropdowns",
3-
"version": "28.2.3",
3+
"version": "28.2.4",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/filemanager/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,29 @@
22

33
## [Unreleased]
44

5+
## 28.2.5 (2025-02-11)
6+
7+
### FileManager
8+
9+
#### Bug Fixes
10+
11+
- `#I676641` - The issue with the details View column and selection when dynamically changing the view in the File Manager component has been resolved.
12+
- `#I681088`, `#FB628089` - Provided `enableMenuItems` API method support to enable the menu items in the File Manager component.
13+
514
## 28.2.4 (2025-02-04)
615

716
### FileManager
817

918
#### Bug Fixes
1019

20+
- `#I682491` - Resolved the issue with the flat data in the FileManager component, where the "This folder is empty" message still appeared after clearing the search input.
21+
22+
## 28.2.3 (2025-01-29)
23+
24+
### FileManager
25+
26+
#### Bug Fixes
27+
1128
- `#I677561` - The issue with the File Manager component's details view related to date formatting has been resolved.
1229

1330
## 28.1.39 (2024-01-14)

Diff for: components/filemanager/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-filemanager",
3-
"version": "28.1.39",
3+
"version": "28.2.4",
44
"description": "Essential JS 2 FileManager Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/filemanager/src/file-manager/filemanager.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,9 @@ export let FileManagerComponent: DefineVueComponent<FileManagerModel> = vueDefi
117117
downloadFiles(ids?: string[]): void {
118118
return this.ej2Instances.downloadFiles(ids);
119119
},
120+
enableMenuItems(items: string[]): void {
121+
return this.ej2Instances.enableMenuItems(items);
122+
},
120123
enableToolbarItems(items: string[]): void {
121124
return this.ej2Instances.enableToolbarItems(items);
122125
},
@@ -180,6 +183,7 @@ export type FileManagerComponent = typeof ComponentBase & {
180183
disableMenuItems(items: string[]): void;
181184
disableToolbarItems(items: string[]): void;
182185
downloadFiles(ids?: string[]): void;
186+
enableMenuItems(items: string[]): void;
183187
enableToolbarItems(items: string[]): void;
184188
filterFiles(filterData?: Object): void;
185189
getMenuItemIndex(item: string): number;

Diff for: components/gantt/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
## [Unreleased]
44

5+
## 28.2.5 (2025-02-11)
6+
7+
### GanttChart
8+
9+
#### Bug fixes
10+
11+
- `#I678529` - When row drag and drop is used, the issue where modified records were not updating properly in the actionComplete event has been fixed.
12+
- `#I683525` - Resolved a script error that occurred during cell editing of the Resource field when the resource collection was modified through column editing.
13+
14+
## 28.2.4 (2025-02-04)
15+
16+
### GanttChart
17+
18+
#### Bug fixes
19+
20+
- `#I678529` - Fixed issues where the Work column value was not updating correctly when one resource unit was set to 0 and another to 100. Additionally, resolved an issue in Fixed Duration mapping, where the Work value did not update to 0 when the resource unit was set to 0.
21+
- `#I682615`,`#I684467` - Duration updated incorrectly while updating record via method issue has been fixed.
22+
- `#I674922` - Taskbar Drag Issues When Overlapping on the Same Date issue has been fixed.
23+
24+
- `#I682615`,`#I684467` - Duration updated incorrectly while updating record via method issue has been fixed.
25+
526
## 28.2.3 (2025-01-29)
627

728
### GanttChart

Diff for: components/gantt/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-gantt",
3-
"version": "28.2.3",
3+
"version": "28.2.4",
44
"description": "Essential JS 2 Gantt Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/grids/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
## [Unreleased]
44

5+
## 28.2.5 (2025-02-11)
6+
7+
### Grid
8+
9+
#### Bug fixes
10+
11+
- `#I679470` - The issue of the missing focus border on grid cells after adding rows has been resolved.
12+
- `#I679056` - The problem of a script error occurring when updating the dataSource with a frozen column and the `All` option in the pager dropdown has been resolved.
13+
- `#I682856` - Resolved an issue where pressing `ESC` or the cancel button in the toolbar did not properly restore a row after editing.
14+
- `#I687968` - Fixed an issue where virtual scrolling did not function correctly when frozen columns were enabled.
15+
- `#I679046` - Resolved an issue where infinite scrolling not loading correctly in Firefox at specific resolutions.
16+
- `#I682690` - The issue where the `DropDownList popup` does not opening with `Alt + Down Arrow` in the Grid for remote data binding has been resolved.
17+
518
## 28.2.4 (2025-02-04)
619

720
### Grid

Diff for: components/grids/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-grids",
3-
"version": "28.2.3",
3+
"version": "28.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",

Diff for: components/heatmap/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-heatmap",
3-
"version": "28.1.33",
3+
"version": "28.2.3",
44
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/imageeditor/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 28.2.4 (2025-02-04)
5+
## 28.1.41 (2025-01-21)
66

77
### Image Editor
88

Diff for: components/imageeditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-image-editor",
3-
"version": "28.1.39",
3+
"version": "28.2.3",
44
"description": "Essential JS 2 ImageEditor for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/inputs/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 28.2.4 (2025-02-04)
5+
## 28.2.3 (2025-01-29)
66

77
### Form Validator
88

Diff for: components/inputs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-inputs",
3-
"version": "28.1.41",
3+
"version": "28.2.3",
44
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/interactivechat/CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
## [Unreleased]
44

5-
## 28.2.4 (2025-02-04)
5+
## 28.2.5 (2025-02-11)
6+
7+
### AI AssistView
8+
9+
#### Bug Fixes
10+
11+
- `#I686430` - Now the issue with scrollbar position when loaded initially using the `messageTemplate` and `loadOnDemand` property enabled has been resolved.
12+
13+
## 28.1.41 (2025-01-21)
614

715
### AI AssistView
816

Diff for: components/interactivechat/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-interactive-chat",
3-
"version": "28.1.33",
3+
"version": "28.2.3",
44
"description": "Essential JS 2 Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

Diff for: components/layouts/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 28.2.4 (2025-02-04)
5+
## 28.2.5 (2025-02-11)
66

77
### Dashboard Layout
88

Diff for: components/lists/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 28.2.4 (2025-02-04)
5+
## 28.2.5 (2025-02-11)
66

77
### ListView
88

Diff for: components/maps/CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,16 @@
1010

1111
## [Unreleased]
1212

13-
## 28.2.4 (2025-02-04)
13+
## 28.2.5 (2025-02-11)
14+
15+
### Maps
16+
17+
#### Bug fixes
18+
19+
- `#I681991` - Now, the marker will not be translated for the maximum zoomed-out layers.
20+
- `#I686422` - Now, the marker cluster expands properly when clicked.
21+
22+
## 28.2.3 (2025-01-29)
1423

1524
### Maps
1625

Diff for: components/maps/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-maps",
3-
"version": "28.1.38",
3+
"version": "28.2.3",
44
"description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)