v25.1.37 is released
This commit is contained in:
Родитель
4093d6d66e
Коммит
c223306f51
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### Barcode
|
||||
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### Common
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I558315` - Resolved the `chart` directives property changes not working.
|
||||
- `#I561506` - Resolved the `grid` with `column` pipe translate not working properly.
|
||||
|
||||
## 24.1.41 (2023-12-18)
|
||||
|
||||
### Common
|
||||
|
|
|
@ -1,183 +0,0 @@
|
|||
# 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>
|
|
@ -311,8 +311,10 @@ export class ComponentBase<T> {
|
|||
tempAfterContentThis.setProperties(propObj, tagObject.instance.isInitChanges);
|
||||
} else {
|
||||
/* istanbul ignore next */
|
||||
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || (/diagram|DashboardLayout/.test(tempAfterContentThis.getModuleName()))) {
|
||||
let hasDiffLength = false;
|
||||
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || (/diagram|DashboardLayout|chart/.test(tempAfterContentThis.getModuleName()))) {
|
||||
tempAfterContentThis[tagObject.name] = tagObject.instance.list;
|
||||
hasDiffLength = true;
|
||||
}
|
||||
for (let list of tagObject.instance.list) {
|
||||
let curIndex: number = tagObject.instance.list.indexOf(list);
|
||||
|
@ -337,7 +339,7 @@ export class ComponentBase<T> {
|
|||
}
|
||||
list.isUpdated = true;
|
||||
}
|
||||
if (/grid/.test(tempAfterContentThis.getModuleName())) {
|
||||
if (/grid/.test(tempAfterContentThis.getModuleName()) && hasDiffLength) {
|
||||
propObj[tagObject.name] = tagObject.instance.getProperties();
|
||||
tempAfterContentThis.setProperties(propObj, tagObject.instance.isInitChanges);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-buttons",
|
||||
"version": "18.64.1",
|
||||
"version": "25.1.35",
|
||||
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,23 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### AccumulationChart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I564804` - Now, the `textWrap` property in the legend is working properly.
|
||||
|
||||
### Chart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I528508` - The tooltip template div is now added based on the series count, and it renders properly.
|
||||
- `#I563227` - Now, datalabel does not take the y value in place of a null value, and it renders properly.
|
||||
- `#I562333` - Now, annotations are rendered corresponding to their series point while enabling the `isIndexed` property
|
||||
- `#I566633` - Now, the first axis label is properly displayed on the x-axis.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### Chart
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-charts",
|
||||
"version": "20.22.1",
|
||||
"version": "25.1.35",
|
||||
"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",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-circulargauge",
|
||||
"version": "16.42.4",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 CircularGauge Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### Diagram
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I555965` - Now, the overview updated properly without any shadows while dragging html nodes.
|
||||
- `#I562959` - Now, drawing connector from group node port works properly.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### Diagram
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-diagrams",
|
||||
"version": "19.18.0",
|
||||
"version": "25.1.35",
|
||||
"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",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,29 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### DocumentEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I545513` - Added the preservation support for table style property in Document editor.
|
||||
- `#I548396` - Resolved the page number not refreshed issue while delete page.
|
||||
- `#I549835` - Resolved the document lagging issue.
|
||||
- `#I553758` - Resolved the editing issue in the attached document, which contains a chart.
|
||||
- `#I556874` - Resolved the script error issue when performing undo action on table.
|
||||
- `#I558460` - Resolved the tab rendering issue in the attached document.
|
||||
- `#I558529` - Resolved the form field editing issue in read only mode.
|
||||
- `#I558289` - Resolved the list numbering issue.
|
||||
- `#I558259` - Resolved the content formatting issue when removing hyperlink.
|
||||
- `#I559197` - Resolved the drag and drop issue.
|
||||
- `#I559912` - Resolved the image removed issue when selecting an image and perform enter action.
|
||||
- `#I561716` - Resolved the duplicate image string added to sfdt issue while drag and drop.
|
||||
- `#I561052` - Resolved the cursor position issue in mobile mode.
|
||||
- `#I563837` - Resolved the table overlapping issue in the attached document.
|
||||
- `#F186648` - Resolved the script error issue while opening a attached document.
|
||||
- `#F186745` - Resolved the table splitting issue in the merge cell.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### DocumentEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-documenteditor",
|
||||
"version": "19.92.0",
|
||||
"version": "25.1.35",
|
||||
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### MultiSelect
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I560783` - Fixed issue where clearing the searched value would automatically select another value.
|
||||
- `#I524283` - Fixed issue where popup was not aligned properly when opening on top of the component.
|
||||
- `#I565659` - Fixed an issue in Multiselect Checkbox mode where the height of the dropdown input would change when selecting and unselecting items.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### ComboBox
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-dropdowns",
|
||||
"version": "18.66.23",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 DropDown Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### FileManager
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I561123` - The issue with being unable to sort the header columns using keyboard interaction has been resolved.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### FileManager
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-filemanager",
|
||||
"version": "18.28.1",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 FileManager Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,31 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### GanttChart
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#F187206` - The delete action not working in remote data when `timezone` using in sample.
|
||||
- `#I566491` - The exception is thrown when the resource ID mapping is empty issue has been fixed.
|
||||
- `#I565418` - Start date defaulting to incorrect value when remove the start Date in add dialog.
|
||||
- `#I566632` - Duration calculations are incorrect in edit or add dialog in decimals issue has been fixed.
|
||||
- `#I565751` - The chart does not refresh when any record is edited by cell editing issue has been fixed.
|
||||
- `#I566333` - Gantt chart disappeared while insert action with `timlineVirtualization` issue has been fixed.
|
||||
- `#F186355` - Taskbar template not showing in resource view issue has been fixed.
|
||||
- `#I562492` - `actionBegin` arguments miss the last record while dragging issue has been fixed.
|
||||
- `#I556547` - Top and bottom tier shows null when using custom zooming level issue has been fixed.
|
||||
- `#I566539` - Console error occurs while saving data in add dialog box with validation rule issue has been
|
||||
- fixed.
|
||||
- `#I553748` - Timeline dates validated wrongly after cell editing with timeline virtualization enabled issue has been fixed.
|
||||
- `#I565439` - Work calculations are incorrect for parent task in project view issue has been fixed.
|
||||
- `#I553710`,`#I565824` - Weekends are not highlighted while `timlineVirtualization` is enabled issue has been fixed.
|
||||
- `#I565359` - When `allowEditing` is disabled in a resource view, a console error is thrown issue has been fixed.
|
||||
- `#I560166` - The context menu using "add child" for any task, dependency line validation is not working properly.
|
||||
|
||||
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### GanttChart
|
||||
|
@ -12,14 +37,16 @@
|
|||
- `#I561396` - When `hasChildMapping` is enabled `addParams` not working issue has been fixed.
|
||||
- `#I546767` - Split taskbar template not working properly with multiple levels.
|
||||
|
||||
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
||||
|
||||
#### Features
|
||||
|
||||
- `#I468621`,`#I504565`,`#I518180`, `#I523106`,`#I558459` - Provided undo redo support for the actions such as `Edit`, `Add`, `Delete`, `Sorting`, `ColumnReorder`, `ColumnResize`, `Search`, `Filtering`, `ZoomIn`, `ZoomOut`, `ZoomToFit`, `ColumnState`, `Indent`, `Outdent`, `RowDragAndDrop`, `TaskbarDragAndDrop`, `PreviousTimeSpan` and `NextTimeSpan` in Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/gantt/undo-redo.html).
|
||||
- `#I364692` - Provided support for taskbars, task labels, and header templates in the Gantt Chart's PDF Export feature. Please find the documentation link [here](https://ej2.syncfusion.com/documentation/gantt/pdf-export/pdf-export#exporting-with-templates).
|
||||
- `#I522246`,`#I527511`,`#I562591`- Provided [`additionalParams`](https://ej2.syncfusion.com/documentation/api/gantt/addDialogFieldSettingsModel/#additionalParams) API support to customize the Grid and RTE in edit/add dialog. Please find more information [here](https://ej2.syncfusion.com/documentation/gantt/managing-tasks/managing-tasks#customize-tab-elements).
|
||||
|
||||
- `#I468621`,`#I504565`,`#I518180`, `#I523106`,`#I558459` - Provided undo redo support for the actions such as `Edit`, `Add`, `Delete`, `Sorting`, `ColumnReorder`, `ColumnResize`, `Search`, `Filtering`, `ZoomIn`, `ZoomOut`, `ZoomToFit`, `ColumnState`, `Indent`, `Outdent`, `RowDragAndDrop`, `TaskbarDragAndDrop`, `PreviousTimeSpan` and `NextTimeSpan` in Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/gantt/undo-redo.html).
|
||||
- `#I364692` - Provided support for taskbars, task labels, and header templates in the Gantt Chart's PDF Export feature. Please find the documentation link [here](https://ej2.syncfusion.com/angular/documentation/gantt/pdf-export/pdf-export#exporting-with-templates).
|
||||
- `#I522246`,`#I527511`,`#I562591`- Provided [`additionalParams`](https://ej2.syncfusion.com/angular/documentation/api/gantt/addDialogFieldSettingsModel/#additionalParams) API support to customize the Grid and RTE in edit/add dialog. Please find more information [here](https://ej2.syncfusion.com/angular/documentation/gantt/managing-tasks/managing-tasks#customize-tab-elements).
|
||||
|
||||
#### Breaking Changes
|
||||
|
||||
- The default value for taskType will be `fixedUnit`, even when the `work` field is mapped in `taskFields`. Previously, if the `work` field was mapped, its default value internally changed to `fixedWork`, and resource units were calculated accordingly. Now, it's necessary to specify taskType as `fixedWork` at the sample level if the `work` field is mapped in `taskFields`.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-gantt",
|
||||
"version": "24.2.7",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 Gantt Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,22 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### Grid
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I565411` - Resolved the issue where the action complete event was not being triggered in the Infinite Scrolling.
|
||||
- `#I553471` - The issue of misleading text in Grid toolbar search when focus is lost has been resolved.
|
||||
- `#I562553` - The `getRows` method returning undefined for all the rows in the `rowTemplate` feature has been resolved.
|
||||
- `#I559289` - Resolved the issue where the validation message displayed immediately upon opening the dropdown instead of on focus out.
|
||||
- `#I558905` - The issue of white spaces being shown when the virtual scroll grid's height is set in pixels has been resolved.
|
||||
- `#I566680` - Resolved the Hierarchy grid export issue when the child grid's enable filter property is enabled.
|
||||
- `#I540683` - The issue of a script error being thrown when the last column contains auto width and `minWidth` in a Grid with `allowResizing` has been fixed.
|
||||
- `#I558576` - Resolved the issue where the sorting `popup` did not open when clicking the sort icon has been fixed.
|
||||
- `#FB51479` - The issue where the cell was automatically saved when opening the dropdown in Batch edit mode has been fixed.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### Grid
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-grids",
|
||||
"version": "1.193.11",
|
||||
"version": "25.1.35",
|
||||
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### HeatMap
|
||||
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### Image Editor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I565340` - The issue with "Script error thrown when attempting to reopen a base64 URL using a custom toolbar in mobile mode" has been resolved.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### Image Editor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-image-editor",
|
||||
"version": "23.1.39",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 ImageEditor for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### MaskedTextBox
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I561285` - Fixed an issue where focus was being added to the maskedtextbox when running in the Safari browser.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### Signature
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-inputs",
|
||||
"version": "18.78.15",
|
||||
"version": "25.1.35",
|
||||
"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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-kanban",
|
||||
"version": "23.1.36",
|
||||
"version": "25.1.35",
|
||||
"description": "The Kanban board is an efficient way to visualize the workflow at each stage along its path to completion. The most important features available are Swim lane, filtering, and editing. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### DashboardLayout
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I564184` - Resolved the issue with the dynamically added panel not being persisted when `enablePersistence` is enabled in the Dashboard Layout.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### Timeline
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# ej2-angular-layouts
|
||||
|
||||
The layout package contains cards, avatars, splitter and Dashboard Layout components.
|
||||
The layout package contains cards, avatars, splitter, timeline and Dashboard Layout components.
|
||||
|
||||
* The `card` is a small container in which user can show defined content in specific structure.
|
||||
|
||||
|
@ -8,6 +8,8 @@ The layout package contains cards, avatars, splitter and Dashboard Layout compon
|
|||
|
||||
* The `splitter` is container component which used to construct different layouts using multiple and nested panes.
|
||||
|
||||
* The `timeline` is a tool for displaying chronological information effortlessly within your application. It offers a visually compelling and user-friendly experience for showcasing user activities, tracking progress, or narrating historical timelines.
|
||||
|
||||
* The `DashboardLayout` is a grid structured layout component that helps to create a dashboard with panels. Panels hold the UI components and allow resize, reorder, drag-n-drop, remove and add options. This allows users to easily place the components at the desired position within the grid layout.
|
||||
|
||||
![Layout](https://ej2.syncfusion.com/products/images/layout/readme.png)
|
||||
|
@ -40,6 +42,10 @@ Following list of components are available in the package
|
|||
* [Getting Started](https://ej2.syncfusion.com/angular/documentation/splitter/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm)
|
||||
* [View Online Demos](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/splitter/default)
|
||||
|
||||
* [Angular Timeline](https://www.syncfusion.com/angular-ui-components/angular-timeline?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm) - Used to build timelines to showcases user activities, tracking progress, narrating historical timelines, and more.
|
||||
* [Getting Started](https://ej2.syncfusion.com/angular/documentation/timeline/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm)
|
||||
* [View Online Demos](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/timeline/default)
|
||||
|
||||
* [Angular Dashboard Layout](https://www.syncfusion.com/angular-ui-components/angular-dashboard-layout?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm) - Used to build dashboards with panels that holds the UI components and allow resize, reorder, drag-n-drop, remove and add options.
|
||||
* [Getting Started](https://ej2.syncfusion.com/angular/documentation/dashboard-layout/getting-started/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm)
|
||||
* [View Online Demos](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/dashboard-layout/default)
|
||||
|
@ -68,6 +74,7 @@ These components are available in following list of:
|
|||
## Key Features
|
||||
|
||||
* Card
|
||||
|
||||
* [Header](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/card/basic) - Header supports to include title, subtitle along with image.
|
||||
|
||||
* [Images and Title](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/card/reveal) - Support to include images with customizable caption positions in it.
|
||||
|
@ -77,6 +84,7 @@ These components are available in following list of:
|
|||
* [Horizontal Card](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/card/horizontal) - Allows to align card elements horizontally and also allows to stack the content vertically within horizontal alignment.
|
||||
|
||||
* Avatar
|
||||
|
||||
* [Types](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/avatar/default) - Provided `2` types of avatars such as `default` and `circle`.
|
||||
|
||||
* [Sizes](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/avatar/types) - Supports `7` different sizes to adapt the various application scenario.
|
||||
|
@ -88,6 +96,7 @@ These components are available in following list of:
|
|||
* xlarge
|
||||
|
||||
* Splitter
|
||||
|
||||
* [Multiple Panes](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/splitter/default) - Provided an option to configure more than two panes.
|
||||
|
||||
* [Resizable Panes](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/splitter/code-editor-layout) - Supports resizable to adjust its pane size dynamically.
|
||||
|
@ -98,15 +107,27 @@ These components are available in following list of:
|
|||
|
||||
* [Nested Panes](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/splitter/code-editor-layout) - Another splitter can be integrated within panes to create a complex layout.
|
||||
|
||||
* Dashboard Layout
|
||||
|
||||
* [Drag and Drop](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/dashboard-layout/properties.html) - Allows drag and drop of panels at the desired location within the dashboard.
|
||||
* Timeline
|
||||
|
||||
* [Floating](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/dashboard-layout/properties.html) - Floats the panels upward when the dragging option is enabled.
|
||||
* [Orientation](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/timeline/api) - Display items in a horizontal or vertical orientation.
|
||||
|
||||
* [Resizing](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/dashboard-layout/properties.html) - Support to resize the panels in any direction as per the requirement.
|
||||
* [Opposite content](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/timeline/api) - Display additional information opposite to the item content.
|
||||
|
||||
* [Items alignment](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/timeline/api) - Items content and opposite content can be aligned - before, after, alternate, or alternate reverse.
|
||||
|
||||
* [Reverse timeline](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/timeline/api) - Shows the timeline items in the reverse order.
|
||||
|
||||
* [Templates](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/timeline/template) - Customize the default appearance, including styling the dot item, templated content, and more.
|
||||
|
||||
* [MediaQuery](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/dashboard-layout/default.html) - Allows the panels to be stacked when the specified resolution is met.
|
||||
* Dashboard Layout
|
||||
|
||||
* [Drag and Drop](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/dashboard-layout/properties.html) - Allows drag and drop of panels at the desired location within the dashboard.
|
||||
|
||||
* [Floating](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/dashboard-layout/properties.html) - Floats the panels upward when the dragging option is enabled.
|
||||
|
||||
* [Resizing](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/dashboard-layout/properties.html) - Support to resize the panels in any direction as per the requirement.
|
||||
|
||||
* [MediaQuery](https://ej2.syncfusion.com/angular/demos/?utm_source=npm&utm_medium=listing&utm_campaign=angular-layout-npm#/material/dashboard-layout/default.html) - Allows the panels to be stacked when the specified resolution is met.
|
||||
|
||||
## Support
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-layouts",
|
||||
"version": "21.4.6",
|
||||
"version": "25.1.35",
|
||||
"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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-lineargauge",
|
||||
"version": "16.41.0",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 LinearGauge Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### ListBox
|
||||
|
||||
|
|
|
@ -11,6 +11,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### Maps
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I566503` - The shape map in the sublayer is now properly synchronized with the tile images in the base layer when panning the Maps.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### Maps
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-maps",
|
||||
"version": "16.42.7",
|
||||
"version": "25.1.35",
|
||||
"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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,20 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### TreeView
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I570321` - The issue with the focus on first item in TreeView if it is disabled mode has been resolved.
|
||||
|
||||
### Toolbar
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I553624` - An issue with expanded toolbar items not align properly when change the mouse and touch modes has been fixed.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### ContextMenu
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-navigations",
|
||||
"version": "22.42.3",
|
||||
"version": "25.1.35",
|
||||
"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",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-notifications",
|
||||
"version": "21.5.2",
|
||||
"version": "25.1.35",
|
||||
"description": "A package of Essential JS 2 notification components such as Toast and Badge which used to notify important information to end-users. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,25 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### PDF Viewer
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I562878` - Now, the custom data is not missing from deleted annotation properties when initializing settings with custom data.
|
||||
- `#I565199` - Now, the annotation custom data is not missing in `AnnotationSelect` events.
|
||||
- `#I563333` - Now, the comments cannot be edited when the annotation is locked.
|
||||
- `#I874338` - Now, the locked annotations are preserved properly when importing the annotation.
|
||||
- `#I561320` - Now, the undo has restored the programmatically deleted annotations.
|
||||
- `#I566765` - Now, the create and clear buttons are not enabled if the text box is empty in the text signature tab.
|
||||
- `#I564309` - Now, the script error not occurred when dynamically updating toolbar items without annotation module.
|
||||
- `#I564643` - Now, the form fields are rendered properly after deleting it from the customer document.
|
||||
|
||||
#### Features
|
||||
|
||||
- `#I531005` - Now, provided the option to turn off the autocomplete option for comments in the comment panel.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### PDF Viewer
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pdfviewer",
|
||||
"version": "22.16.57",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 PDF viewer Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### PivotTable
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I562279`,`#I565475`,`#I566747` - The pivot table will now be properly displayed after engine export.
|
||||
- `#I566095` - The filter text will now be properly displayed in the OLAP Pivot Table's filter field button.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### PivotTable
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pivotview",
|
||||
"version": "24.1.43",
|
||||
"version": "25.1.35",
|
||||
"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",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,60 +2,6 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### Dialog
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I547853` - Fixed an issue where the dialog was not draggable on mobile devices.
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Dialog
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#F186300` - Fixed an issue where memory was not being released after closing the dialog when the resize property enabled.
|
||||
|
||||
## 24.2.5 (2024-02-13)
|
||||
|
||||
### Tooltip
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I549075` - The issue with positioning when using the container property in the Tooltip component has been resolved.
|
||||
|
||||
### Dialog
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I543788` - Issue with "The NVDA reader is not reading the content of the dialog" has been resolved.
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
|
||||
### Tooltip
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I533557` - The console error that occurs when the parent component containing the Tooltip component is removed from the DOM has been resolved.
|
||||
|
||||
## 24.1.46 (2024-01-17)
|
||||
|
||||
### Tooltip
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I533557` - The console error while assigning a function type value to the `Content` property in the Tooltip component has been resolved.
|
||||
|
||||
## 24.1.44 (2024-01-03)
|
||||
|
||||
### Tooltip
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I531367` - The issue with the Tooltip's incorrect positioning when template content is rendered has been resolved.
|
||||
|
||||
## 21.1.35 (2023-03-23)
|
||||
|
||||
### Tooltip
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-popups",
|
||||
"version": "24.2.8",
|
||||
"version": "25.1.35",
|
||||
"description": "A package of Essential JS 2 popup components such as Dialog and Tooltip that is used to display information or messages in separate pop-ups. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-progressbar",
|
||||
"version": "24.2.5",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 ProgressBar Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### QueryBuilder
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I568017` - Issue with QueryBuilder 'In' or 'Not in' Operator results in value field as empty list when using fieldMode as default mode has been fixed.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### QueryBuilder
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-querybuilder",
|
||||
"version": "18.24.1",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 QueryBuilder for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-ribbon",
|
||||
"version": "21.29.0",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-richtexteditor",
|
||||
"version": "23.1.54",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 RichTextEditor component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I566544` - An issue with `aria-labelledby` accessibility issue in the recurrence editor has been fixed.
|
||||
- `#I549259` - An issue where the weekend dates are rendered in the Agenda view after setting up the `showWeekend` property to `false` has been fixed.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### Schedule
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-schedule",
|
||||
"version": "22.9.0",
|
||||
"version": "25.1.35",
|
||||
"description": "Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,26 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### DropDownButton
|
||||
|
||||
#### Breaking Changes
|
||||
|
||||
- Now, the default value of [`enableHtmlSanitizer`](https://helpej2.syncfusion.com/documentation/api/drop-down-button/#enablehtmlsanitizer) property is true to prevent the XSS attacks in the DropDownButton component.
|
||||
|
||||
### ProgressButton
|
||||
|
||||
#### Breaking Changes
|
||||
|
||||
- Now, the default value of [`enableHtmlSanitizer`](https://helpej2.syncfusion.com/documentation/api/progress-button/#enablehtmlsanitizer) property is true to prevent the XSS attacks in the ProgressButton component.
|
||||
|
||||
### SplitButton
|
||||
|
||||
#### Breaking Changes
|
||||
|
||||
- Now, the default value of [`enableHtmlSanitizer`](https://helpej2.syncfusion.com/documentation/api/split-button/#enablehtmlsanitizer) property is true to prevent the XSS attacks in the SplitButton component.
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### ProgressButton
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-splitbuttons",
|
||||
"version": "24.2.7",
|
||||
"version": "19.16.4",
|
||||
"description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,19 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### Spreadsheet
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I567170` - Issue with "`autofit` does not work properly when a column contains a wrap text cell with a bold style" has been resolved.
|
||||
- `#I566714` - Issue with "list validation is applied to all pasted cells after copying and pasting cells with column validation" has been resolved.
|
||||
- `#I566715` - Issue with "data validation is added to the first row additionally while importing an excel file with data validation applied in `A` column except `A1` cells" has been resolved.
|
||||
- `#I565632` - Issue with "exception is thrown when using the formula as a conditional formatting rule and saving the excel file" has been resolved.
|
||||
- `#I567132` - Issue with "font size is not updated properly when copying and pasting content from an external resource with `em` font size" has been resolved.
|
||||
- `#I564276` - Issue with "blank cells are not filtered properly when using the number filter" has been resolved.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### Spreadsheet
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-spreadsheet",
|
||||
"version": "24.7.0",
|
||||
"version": "25.1.35",
|
||||
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-treegrid",
|
||||
"version": "20.12.1",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 TreeGrid Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-treemap",
|
||||
"version": "16.31.24",
|
||||
"version": "25.1.35",
|
||||
"description": "Essential JS 2 TreeMap Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Загрузка…
Ссылка в новой задаче