This commit is contained in:
pipeline 2024-05-21 03:47:07 +00:00
Родитель 621f5bd047
Коммит 64c0d015cb
41 изменённых файлов: 390 добавлений и 37 удалений

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)
### Barcode

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-base",
"version": "25.2.3",
"version": "25.2.4",
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -0,0 +1,183 @@
# Release Notes Guidelines
This section contains guidelines on naming files, sections and other document elements.
> **If there is no changes in product, you don't need to mention that in Release Notes.**
## Encoding Format
All Release Notes files should be saved in **Encoding in UTF-8 (Without BOM)** format. You can use Notepad++ to verify the encoding.
![Encoding.png](https://bitbucket.org/repo/j57Gz9/images/2199960455-Encoding.png)
## Release Notes Folder Hierarchy
* Platform [Folder]
* ----ReleaseNotes [Folder]
* --------v13.3.x.x [Folder]
* ------------Control1.md
* ------------Control2.md
* ------------Control3.md
* --------v13.4.x.x [Folder]
* ------------Control1.md
* ------------Control2.md
* ------------Control3.md
### How to write Release Notes?
* Each release markdown files should reside under corresponding version folder in their platform.
* Each product release notes should be created in separate file name.
* File name should be same as the product name.
> **NOTE**: Please do not add any Front Matter information in Release Notes files.
## Markdown File Structure
Each markdown file should have following items.
* Control Name
* Features
* Bug fixes
* Braking Changes
* Known Issues
> Do not add any front matter(triple dashed line) in this markdown.
### Control Name
Control Name should be with prefix `##`. This will be rendered as `H2` in html file.
#### Syntax
```
## <Control-Name>
```
#### Example
```
## ejAccrodion
```
### Features
* Each features should be written in unordered list.
* Feature header should have id in the following format `<control-name>-features`. All characters in **id should be written in lower case.**
#### Syntax
```
### Features
{:#<control-name>-features}
* \#1 - Feature Info
* \#2 - Feature Info
* \#3 - Feature Info
```
#### Example
```
### Features
{:#ejaccordion-features}
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
```
> **NOTE:**
> * In markdown `#` used to represent headers.
> * By default it will be converted as HTML headers.
> * To display the `#` in html, please use escape sequences [See above example].
### Bug Fixes
* Each bug fix should be written in unordered list.
* Bug fixes header should have id in the following format `<control-name>-bug-fixes`. All characters in **id should be written in lower case.**
#### Syntax
```
### Bug fixes
{:#<control-name-in-lower-case>-bug-fixes}
* \#1 - Bug Fix
* \#2 - Bug Fix
* \#3 - Bug Fix
```
#### Example
```
### Bug Fixes
{:#ejaccordion-bug-fixes}
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
```
> **NOTE:**
> * In markdown `#` used to represent headers.
> * By default it will be converted as HTML headers.
> * To display the `#` in html, please use escape sequences [See above example].
### Breaking Changes
* Each breaking changes should be written in unordered list.
* Breaking changes header should have id in the following format `<control-name>-breaking-changes`. All characters in **id should be written in lower case.**
```
### Breaking Changes
{:#<control-name>-breaking-changes}
* * Breaking Change 1
* * Breaking Change 2
* * Breaking Change 3
```
#### Example
```
### Breaking Changes
{:#ejaccordion-breaking-changes}
* Now, Circular series end angle will not be adjusted based on the start angle, so the output will be like semi-circle instead of full circle. In order to render the complete circular series with customized start angle, you have to add the start angle value to end angle property now. This break will occur only if you have specified startAngle already
```
> **NOTE:**
> * In markdown `#` used to represent headers.
> * By default it will be converted as HTML headers.
> * To display the `#` in html, please use escape sequences [See above example].
## Incidents and Forums in Release notes
We can represent the Incident ID with I and F for forums in release notes MD files
#### Example
```
## ChromelessWindow
### Bug Fixes
{:#chromelesswindow-bug-fixes}
* \#I336220 - When using `ShowDialog` on a `RibbonWindow`, a `NullReferenceException` will no longer occur.
* \#F166385 - The gap between the bottom of the window and the `TaskBar` is now properly maintained.
```
This is published in the page : https://help.syncfusion.com/wpf/release-notes/v19.3.0.43?type=all#chromelesswindow
## Commit
Same workflow for User Guide applicable to this repository. All the changes needs to be committed in `development` branch.
## Preview Changes
All the changes will be included with User Guide automation and published in Staging Documentation machine.
<http://115.249.201.211:9090>

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-buttons",
"version": "25.2.3",
"version": "25.2.4",
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 25.2.5 (2024-05-21)
### TimePicker
#### Bug Fixes
- `#I587516` - Fixed an issue where the timepicker `prevValue` property was holding the current selected value instead of the previous value.
## 25.1.40 (2024-04-16)
### DatePicker

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-calendars",
"version": "25.2.3",
"version": "25.2.4",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,8 +2,32 @@
## [Unreleased]
## 25.2.5 (2024-05-21)
### Accumulation Chart
#### Bug Fixes
- `#I580553` - Accessibility issues are resolved, and now the score has become stable.
### Chart
#### Bug Fixes
- `#I581265` - Now, the Stacking Bar chart has been exported as a CSV file, and the CSV contains the appropriate data.
## 25.2.4 (2024-05-14)
### Chart
#### Bug Fixes
- `#I585297` - Tooltips in polar and radar series now render properly without console errors.
- `#I532022` - Now, axis labels will render properly without any cutting off.
- `#I585033` - Now, datetime annotations render properly.
## 25.2.3 (2024-05-08)
### Accumulation Chart
#### Bug Fixes

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-charts",
"version": "25.1.42",
"version": "25.2.4",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,15 @@
## [Unreleased]
## 25.2.5 (2024-05-21)
### Diagram
#### Bug Fixes
- `#I577994` - Now, After zooming and exporting the HTML content, the scroll Padding values are considered.
- `#I586462` - Now, undo redo working properly after editing swimlane child nodes annotation.
## 25.2.4 (2024-05-14)
### Diagram

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-diagrams",
"version": "25.2.3",
"version": "25.2.4",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,19 @@
## [Unreleased]
## 25.2.5 (2024-05-21)
### DocumentEditor
#### Bug Fixes
- `#I584933` - Resolved the Manage Styles is missing from the DocumentEditor.
- `#I585396` - Resolved the odd cursor behaviour with superscript and subscript.
- `#I583968` - Resolved the insert field issue when local paste is enabled.
- `#I587711` - Resolved the spellcheck change all does not work on document opening case.
- `#I586658` - Resolved the backspace issue while deleting list item.
- `#I585406` - Resolved the spellcheck annotation disappears issue when cursor is in range.
## 25.2.4 (2024-05-14)
### DocumentEditor

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-documenteditor",
"version": "25.2.3",
"version": "25.2.4",
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,8 +2,33 @@
## [Unreleased]
## 25.2.5 (2024-05-21)
### DropDownTree
- `#I586376` - Trigger the "select" event instantly after the item selection in Dropdown Tree popup.
### MultiSelect
#### Bug Fixes
- `#I188132` - Fixed an issue where the 'for' attribute was not being added to the label element of MultiSelect.
### DropDownList
#### Bug Fixes
- `#I583651` - Fixed the issue with the header remaining fixed on the page after scrolling while using dropdown with grouping on a scrollable page.
- `#I583092` - Fixed an issue where the dropdownlist did not retrieve the proper index when dynamically updating the datasource with an index.
## 25.2.4 (2024-05-14)
### MultiSelect
#### Bug Fixes
- `#I583683` - Resolved issue with allow object binding property causing errors when binding fields as integers
### DropDownTree
#### Bug Fixes
@ -15,6 +40,7 @@
#### Bug Fixes
- `#I580648` - Issue with "The dropdownlist not retrieving the proper index when grouping with allow filtering" has been resolved.
- `#I581080` - Fixed the issue with the dropdownlist index value not updating in component instances.
- `#I581098` - Fixed issue where aria-controls was not maintained when popup was in closed state.
## 25.2.3 (2024-05-08)

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-dropdowns",
"version": "25.2.3",
"version": "25.2.4",
"description": "Essential JS 2 DropDown Components for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -159,6 +159,9 @@ export let AutoCompleteComponent: DefineVueComponent<AutoCompleteModel> = vueDe
hideSpinner(): void {
return this.ej2Instances.hideSpinner();
},
removeAllChildren(element: any): void {
return this.ej2Instances.removeAllChildren(element);
},
requiredModules(): Object[] {
return this.ej2Instances.requiredModules();
},
@ -196,6 +199,7 @@ export type AutoCompleteComponent = typeof ComponentBase & {
getItems(): Object[];
hidePopup(e?: Object | Object | Object): void;
hideSpinner(): void;
removeAllChildren(element: any): void;
requiredModules(): Object[];
showPopup(e?: Object | Object | Object): void;
showSpinner(): void

Просмотреть файл

@ -159,6 +159,9 @@ export let ComboBoxComponent: DefineVueComponent<ComboBoxModel> = vueDefineComp
hideSpinner(): void {
return this.ej2Instances.hideSpinner();
},
removeAllChildren(element: any): void {
return this.ej2Instances.removeAllChildren(element);
},
requiredModules(): Object[] {
return this.ej2Instances.requiredModules();
},
@ -196,6 +199,7 @@ export type ComboBoxComponent = typeof ComponentBase & {
getItems(): Object[];
hidePopup(e?: Object | Object | Object): void;
hideSpinner(): void;
removeAllChildren(element: any): void;
requiredModules(): Object[];
showPopup(e?: Object | Object | Object): void;
showSpinner(): void

Просмотреть файл

@ -159,6 +159,9 @@ export let DropDownListComponent: DefineVueComponent<DropDownListModel> = vueDe
hideSpinner(): void {
return this.ej2Instances.hideSpinner();
},
removeAllChildren(element: any): void {
return this.ej2Instances.removeAllChildren(element);
},
requiredModules(): Object[] {
return this.ej2Instances.requiredModules();
},
@ -196,6 +199,7 @@ export type DropDownListComponent = typeof ComponentBase & {
getItems(): Object[];
hidePopup(e?: Object | Object | Object): void;
hideSpinner(): void;
removeAllChildren(element: any): void;
requiredModules(): Object[];
showPopup(e?: Object | Object | Object): void;
showSpinner(): void

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)
### FileManager

Просмотреть файл

@ -2,19 +2,18 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)
### GanttChart
#### Bug fixes
- `#I583075` - Duration is not calculated properly issue has been fixed.
- `#I578781` - Delay in update of multiple dependency task issue has been fixed.
- `#I574986` - Console error occurs while adding segments via dialog in Gantt issue has been fixed.
- `#I585348` - Record gets disappeared when adding new record in last page issue has been fixed.
- `#I565931` - Taskbar render outside the grid line and bottom tier misalign issue has been fixed.
- `#F187977` - The script error caused by multiple resources assigned to a single task issue has been resolved.
- `#I580459` - When Germany `timezone` use, alignment issue occurs in weekend highlight and taskbar issue has been fixed.
- `#I586588` - Event markers are hidden behind the taskbar in PDF exported file issue has been fixed.
- `#I586588` - Console error throws while merging two segments with duration of one day issue has been fixed.
- `#I463798` - Parent date changes when Unscheduled task is added issue has been fixed.
- `#I582983` - The issue about date miscalculation when dragging the taskbar with timeline virtualization has been fixed.
- `#I586588` - Console error throws while merging two segments with duration of one day issue has been fixed.
## 25.2.3 (2024-05-08)

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-gantt",
"version": "25.2.3",
"version": "25.2.4",
"description": "Essential JS 2 Gantt Component for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,19 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)
### Grid
#### Bug fixes
- `#I582334` - Resolved the issue where the page orientation Landscape throws script error while pdf export.
- `#I584344` - Localization not applied on grid's group expand icons issue was resolved.
- `#I586600` - Resolved the issue where the Interface `BeforeDataBoundArgs` mismatches the actual event arguments.
- `#I587235` - Resolved the issue where the `INVALID FORMAT` console warning documentation reference link not found issue.
- `#I587421` - Resolved the duplicate ID accessibility issue occurring when using multiple data grids with column chooser on the same page.
## 25.2.3 (2024-05-08)
### Grid

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-grids",
"version": "25.1.42",
"version": "25.2.3",
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)
### Image Editor

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.1.37 (2024-03-26)
### DashboardLayout

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-layouts",
"version": "25.1.35",
"version": "25.2.3",
"description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)
### ListView

Просмотреть файл

@ -14,12 +14,33 @@
## [Unreleased]
## 25.2.5 (2024-05-21)
### Maps
#### Bug fixes
- `#I585591` - When setting different sizes for the Maps, the `latitude` and `longitude` values from the `tooltipRender` event will now be proper.
- `#I584215` - Markers will now be rendered properly when the left mouse click is on hold and mouse wheel action is performed.
- `#I584211` - Markers will now be in proper position when the panning action is performed in the Maps when the marker animation is in progress.
## 25.2.4 (2024-05-14)
### Maps
#### Bug Fixes
- `#I583752` - Legends for the markers will now maintain the toggled state when zoomed in or out.
- `#I584887` - Exceptions will no longer be thrown when toggling the legend by enabling the `removeDuplicateLegend` property in the Maps.
- `#I584215` - Panning will now work properly when the Maps is zoomed to the maximum level using keyboard interaction.
## 25.2.3 (2024-05-08)
### Maps
#### Bug Fixes
- `#I561947` - The duration of the tooltip in the Maps on the mobile device can be changed using the `duration` property in `tooltipSettings`. When the value is set to **0**, the tooltip will not be removed.
- `#I580579` - Script errors will no longer be thrown when the markers in the Maps are disabled.
## 25.1.41 (2024-04-23)

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-maps",
"version": "25.1.41",
"version": "25.2.4",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)
### ContextMenu

Просмотреть файл

@ -2,14 +2,31 @@
## [Unreleased]
## 25.2.5 (2024-05-21)
### PDF Viewer
#### Bug Fixes
- `#I577813` - Now, the document is loading properly without any script errors when a value has already been included in the session storage by default.
- `#I583019` - Now, the annotation collection and action collection will match in multiple undo.
- `#I582982` - Now, the Undo does not retains the deleted annotation in annotation collection.
- `#I580839`, `#I580793` - Now, the extra page is not appeared in the print preview when print the provided document.
- `#I582676` - Now, the annotation order in the comment panel does not change when adding new annotations in the standalone PDF Viewer.
- `#I586052` - Now, able to use markup annotations over shape annotations.
- `#I586408` - Now, the form field ID is not missing in `FormFieldResizerArgs` event.
- `#I583890` - Now, the Edit and Delete option will get disabled when use isCommentLock
- `#I582388` - Now, the form field tab order is working properly for the customer-provided document.
- `#I577318`, `#I577549` - Now, the `deleteFormField` method is working properly for the non-render pages.
## 25.2.4 (2024-05-14)
### PDF Viewer
#### Bug Fixes
- `#I575320`- Now, the Form Fields data does not wrongly appear when exporting.
- `#I583505`- Now, the Export annotations is properly working when drawing the annotation outside page boundaries.
- `#I575320` - Now, the Form Fields data does not wrongly appear when exporting.
- `#I583505` - Now, the Export annotations is properly working when drawing the annotation outside page boundaries.
- `#I581452` - Now, the form field background and border color are set to transparent properly.
- `#I585089` - Now, the annotation selector is properly removed when undoing annotations in select mode.

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-pdfviewer",
"version": "25.2.3",
"version": "25.2.4",
"description": "Essential JS 2 PDF viewer Component for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,15 @@
## [Unreleased]
## 25.2.5 (2024-05-21)
### Pivot Table
#### Bug fixes
- `#F187958` - After disabling the defer layout update via check box option, defer layout update elements will be properly rendered when refreshing the pivot table component.
- `#F188052` - Empty string members will now be properly filtered when virtualization is enabled in the pivot table.
## 25.2.4 (2024-05-14)
### Pivot Table

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-pivotview",
"version": "25.2.3",
"version": "25.2.4",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)
### QueryBuilder

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 25.2.5 (2024-05-21)
### Ribbon
#### Bug Fixes
- `#I585010` - Now setting the ribbon ID dynamically using `htmlAttributes` breaks the UI with ribbon mode switching has been resolved.
## 25.1.41 (2024-04-23)
### Ribbon

Просмотреть файл

@ -2,6 +2,16 @@
## [Unreleased]
## 25.2.5 (2024-05-21)
### RichTextEditor
#### Bug Fixes
- `#I582303` - Now, the Tab key press on selected paragraph works properly in RichTextEditor.
- `#F56019` - Now, pressing the enter key when the cursor is at the end of the empty list creates a new tag based on the `enterKey` property.
- `#F186874` - Now, the background and font color popup's collision will function correctly upon initial click.
## 25.2.4 (2024-05-14)
### RichTextEditor
@ -12,6 +22,9 @@
- `#I581468` - Now, improved the alignment of the pasted images and table content from the new outlook.
- `I566845` - Now, when pasting images from `FSNotes`, the image is uploaded properly to the server in the Rich Text Editor.
- `I564770` - Now, the list type is applied properly to both the parent and the nest list while applying indents in the Rich Text Editor.
- `#I583830` - Now, the `tab` key is working properly after inserting the mention list in the Rich Text Editor.
- `#I562280` - Now, alignment and indentation work properly when the `enterKey` property is configured as `BR`.
- `#I584679` - Now, when the Refresh method is working properly, RichTextEditor is properly refreshed in the initial rendering.
## 25.1.42 (2024-04-30)
@ -78,7 +91,6 @@
- `#I558265` - Now, when changing the formats using the toolbar in RichTextEditor, the cursor position is placed properly.
- `#I564770` - Now, using indents on a numbered or bulleted list in RichTextEditor, it works properly.
- `#I568007`, `#I568175` - Now, the Table Quick toolbar items are aligned properly in the Tailwind theme.
- `#F186874` - Now, the background and font color popup's collision will function correctly upon initial click.
## 25.1.35 (2024-03-15)

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-richtexteditor",
"version": "25.2.3",
"version": "25.2.4",
"description": "Essential JS 2 RichTextEditor component for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)
### Schedule

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)
### ButtonGroup

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-spreadsheet",
"version": "25.2.3",
"version": "25.2.4",
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)
### Tree Grid