v25.2.4 is released
This commit is contained in:
Родитель
ea2d1b0e49
Коммит
adcf77b49c
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Barcode
|
||||
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### common
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I573637` - Resolved `ng for` data binding not working properly in Array Directives.
|
||||
|
||||
## 25.1.37 (2024-03-26)
|
||||
|
||||
### 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>
|
|
@ -21,7 +21,7 @@ export function compile(templateEle: AngularElementType, helper?: Object):
|
|||
/* istanbul ignore next */
|
||||
let conRef: ViewContainerRef = contRef ? contRef : component.viewContainerRef;
|
||||
let viewRef: EmbeddedViewRef<Object> = conRef.createEmbeddedView(templateEle as TemplateRef<Object>, context);
|
||||
if (/EJS-MENTION|EJS-DROPDOWNLIST/.test(getValue('currentInstance.element.nodeName', conRef))) {
|
||||
if (/EJS-MENTION|EJS-DROPDOWNLIST/.test(getValue('currentInstance.element.nodeName', conRef)) || /E-TABITEM/.test(getValue('element.nativeElement.nodeName', conRef))) {
|
||||
viewRef.detectChanges();
|
||||
} else {
|
||||
viewRef.markForCheck();
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Checkbox
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- The issue with "Script error thrown in CheckBox `unWireEvents` method" has been resolved.
|
||||
|
||||
## 25.1.39 (2024-04-09)
|
||||
|
||||
### Checkbox
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-buttons",
|
||||
"version": "25.1.39",
|
||||
"version": "25.2.3",
|
||||
"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,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### TimePicker
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I576599` - Issue with "When enabling mask PM value is not updated" has been resolved.
|
||||
|
||||
## 25.1.40 (2024-04-16)
|
||||
|
||||
### DatePicker
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-calendars",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-charts",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"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": "25.1.35",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 CircularGauge Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,18 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Diagram
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I579409` - Now, the connectors updated properly in complex hierarchical tree while performing expand and collapse.
|
||||
- `#I582187` - Now, the order commands working properly when we set zIndex at initial rendering.
|
||||
- `#I585972` - Now, the overview rectangle updated properly while double clicking the overview canvas.
|
||||
- `#F186044` - Now, the fill color for phases applied properly while adding phases at runtime.
|
||||
- `#I52018` - Now, While SwimLane dragged from palette and deletion does not throw console exception.
|
||||
|
||||
## 25.1.42 (2024-04-30)
|
||||
|
||||
### Diagram
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-diagrams",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"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,17 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### DocumentEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#F187485` - Resolved the issue of Form Field dialog always pops up upon double clicking anywhere within the word document.
|
||||
- `#I575901` - Resolved the table divided to next page.
|
||||
- `#I560985` - Resolved table cell split issue in the attached document.
|
||||
- `#F187818` - Resolved the document collapse issue while undoing.
|
||||
|
||||
## 25.1.42 (2024-04-30)
|
||||
|
||||
### DocumentEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-documenteditor",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"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,28 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 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
|
||||
|
||||
- `#I585791` - Resolved the SelectAll checkbox uncheck issue after closing and opening the Dropdown Tree component.
|
||||
|
||||
### DropDownList
|
||||
|
||||
#### 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)
|
||||
|
||||
### ListBox
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-dropdowns",
|
||||
"version": "25.1.41",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 DropDown Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-filemanager",
|
||||
"version": "25.1.40",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 FileManager Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,16 +2,26 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### GanttChart
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I570803` - Tree Grid and Gantt chart side was not synchronized issue has been fixed.
|
||||
- `#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.
|
||||
|
||||
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
|
||||
- `#I570803` - Tree Grid and Gantt chart side was not synchronized issue has been fixed.
|
||||
|
||||
## 25.1.42 (2024-04-30)
|
||||
|
||||
### GanttChart
|
||||
|
@ -25,6 +35,7 @@
|
|||
- `#I576290` - Dialog edit not working properly for multiple dependency issue has been fixed.
|
||||
- `#I577597` - `queryTaskbarInfo` event using style is not applied when resource view in collapsed state in tasks issue has been fixed.
|
||||
|
||||
- `#I574986` - Console error occurs while adding segments via dialog in Gantt issue has been fixed.
|
||||
- `#I578380` - When using tooltip template, an exception is thrown issue has been fixed.
|
||||
- `#I577597` - `queryTaskbarInfo` event using style is not applied when resource view in collapsed state in tasks issue has been fixed.
|
||||
- `#I576290` - Dialog edit not working properly for multiple dependency issue has been fixed.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-gantt",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 Gantt Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-heatmap",
|
||||
"version": "25.1.35",
|
||||
"version": "25.2.3",
|
||||
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Image Editor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I587459` - The issue with "Image size increased" has been resolved.
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
|
||||
### Image Editor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-image-editor",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 ImageEditor for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -261,19 +261,3 @@ The In-place Editor component is used to edit and update the input value dynamic
|
|||
- **Globalization** - Provides right to left and localization support.
|
||||
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### In-place Editor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I540657` - Fixed issue where the PasteCleanupSettings feature was not working properly when the type was set to 'RTE'.
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### In-place Editor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I540657` - Fixed issue where the PasteCleanupSettings feature was not working properly when the type was set to 'RTE'.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-inplace-editor",
|
||||
"version": "24.2.7",
|
||||
"version": "25.2.3",
|
||||
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-inputs",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"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": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"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",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-layouts",
|
||||
"version": "25.1.37",
|
||||
"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 Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
## 25.1.40 (2024-04-16)
|
||||
|
||||
### LinearGauge
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-lineargauge",
|
||||
"version": "25.1.35",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 LinearGauge Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
## 25.1.41 (2024-04-23)
|
||||
|
||||
### ListView
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-lists",
|
||||
"version": "25.1.39",
|
||||
"version": "25.2.3",
|
||||
"description": "The listview control allows you to select an item or multiple items from a list-like interface and represents the data in interactive hierarchical structure across different layouts or views. for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Maps
|
||||
|
||||
|
|
|
@ -2,13 +2,28 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Menu
|
||||
### ContextMenu
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I582079` - The issue with "Context Menu position issue occurs when using multilevel submenus" has been resolved.
|
||||
- `#I582079` - The issue with "context menu position issue occurs when using multilevel submenus" has been resolved.
|
||||
- `#F187892` - The issue with "context menu overlapping when using a touch screen device" has been resolved.
|
||||
|
||||
### Tab
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I584878` - An issue with `selectedItem` was not working properly while changing the tab items dynamically has been resolved.
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
|
||||
### ContextMenu
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I580119` - The issue with "context menu item text is too large causing it to override the next item" has been resolved.
|
||||
|
||||
## 25.1.42 (2024-04-30)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-navigations",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"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": "25.1.35",
|
||||
"version": "25.2.3",
|
||||
"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,17 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 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.
|
||||
- `#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.
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
|
||||
### PDF Viewer
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pdfviewer",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 PDF viewer Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Pivot Table
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I583180` - The member editor dialog will now be properly closed without any script errors when the cancel button is clicked.
|
||||
- `#F187973` - The pivot table will now be properly rendered while dynamically updating the data source with the grouping bar enabled.
|
||||
- `#I588151` - Value sorting will now work properly after disabling the "enableSorting" property with an OLAP data source.
|
||||
|
||||
## 25.1.42 (2024-04-30)
|
||||
|
||||
### Pivot Table
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pivotview",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"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",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-popups",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"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": "25.1.35",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 ProgressBar Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### QueryBuilder
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I585876` - Removing the isLocked property from query builder rules when the rule/group is not locked / unlocked.
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
|
||||
### QueryBuilder
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-querybuilder",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 QueryBuilder for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
## 25.1.41 (2024-04-23)
|
||||
|
||||
### Ribbon
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-ribbon",
|
||||
"version": "25.1.35",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,17 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### RichTextEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I579605` - Now, the editor scrolls to the cursor position after pasting content into the editor.
|
||||
- `#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.
|
||||
|
||||
## 25.1.42 (2024-04-30)
|
||||
|
||||
### RichTextEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-richtexteditor",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 RichTextEditor component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,12 +2,32 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I539772` - Appointment drag and drop issue in iPad is fixed.
|
||||
- `#I522699` - The issue with touch scrolling through appointments, which was caused by interference from the drag and drop and resize feature, has been resolved in touch devices. Drag and resize operations are only enabled after a tap-hold action.
|
||||
- `#I583762` - The issue with `refreshTemplates` caused alignment issues in date header has been resolved.
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I582520` - The issue with `scrollToResource` not working in the month view has been resolved.
|
||||
|
||||
- `#I528774` - The `eventTemplate` causing memory leak on date navigation has been fixed.
|
||||
|
||||
## 25.1.42 (2024-04-30)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I583674` - An issue where the text for today button was not displayed in the toolbar has been fixed.
|
||||
|
||||
- `#I577108` - An issue with `quickInfotemplates` is not being properly destroyed has been fixed.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-schedule",
|
||||
"version": "25.1.41",
|
||||
"version": "25.2.3",
|
||||
"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,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### ButtonGroup
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Issue in "box shadow correction while clicking single or multiple selection mode buttons" has been resolved.
|
||||
|
||||
## 25.1.38 (2024-04-02)
|
||||
|
||||
### DropDownButton
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-splitbuttons",
|
||||
"version": "25.1.38",
|
||||
"version": "25.2.3",
|
||||
"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,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Spreadsheet
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I575250` - Issue with "unable to save the spreadsheet data as an excel file when the sheet name contains brackets and includes a chart within it" has been resolved.
|
||||
|
||||
## 25.2.3 (2024-05-08)
|
||||
|
||||
### Spreadsheet
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-spreadsheet",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"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",
|
||||
|
|
|
@ -2,6 +2,23 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 25.2.4 (2024-05-14)
|
||||
|
||||
### Tree Grid
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I585348` - Record gets disappeared when adding new record in last page issue has been fixed.
|
||||
- `#I575018` - Resolved `frozenColumns` with virtualization leads to missing records on scrolling.
|
||||
- `#F187800` - Resolved exception on passing the `collpaseRow` and `expandRow` method without parameters.
|
||||
- `#F53252` - Fixed issue where newly added row to the bottom was indented to the selected child record.
|
||||
- `#F53285` - Fixed issue where server request was not updated properly during export with filtering and sorting action in remote data.
|
||||
- `#F53846` - Fixed issue where unnecessary requests were being sent for custom local data source during excel export in remote data sample.
|
||||
- `#F53930` - Fixed a script error that occurred when navigating through cells using the keyboard after updating the state in the treegrid.
|
||||
- `#F54026` - Fixed a bug where a warning message was being thrown after injecting freeze modules when frozen was enabled.
|
||||
|
||||
- `#F187800` - Resolved exception on passing the `collpaseRow` and `expandRow` method without parameters.
|
||||
|
||||
## 25.1.42 (2024-04-30)
|
||||
|
||||
### Tree Grid
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-treegrid",
|
||||
"version": "25.1.42",
|
||||
"version": "25.2.3",
|
||||
"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": "25.1.35",
|
||||
"version": "25.2.3",
|
||||
"description": "Essential JS 2 TreeMap Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Загрузка…
Ссылка в новой задаче