v27.1.50 is released
This commit is contained in:
Родитель
7401d20484
Коммит
0b38215565
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Barcode
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-base",
|
||||
"version": "19.17.0",
|
||||
"version": "27.1.48",
|
||||
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -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>
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-buttons",
|
||||
"version": "18.64.1",
|
||||
"version": "27.1.48",
|
||||
"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",
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/bootstrap-dark.scss';
|
||||
@import 'floating-action-button/bootstrap-dark.scss';
|
||||
@import 'speed-dial/bootstrap-dark.scss';
|
||||
@import 'smart-paste-button/bootstrap-dark.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/bootstrap.scss';
|
||||
@import 'floating-action-button/bootstrap.scss';
|
||||
@import 'speed-dial/bootstrap.scss';
|
||||
@import 'smart-paste-button/bootstrap.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/bootstrap4.scss';
|
||||
@import 'floating-action-button/bootstrap4.scss';
|
||||
@import 'speed-dial/bootstrap4.scss';
|
||||
@import 'smart-paste-button/bootstrap4.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/bootstrap5-dark.scss';
|
||||
@import 'floating-action-button/bootstrap5-dark.scss';
|
||||
@import 'speed-dial/bootstrap5-dark.scss';
|
||||
@import 'smart-paste-button/bootstrap5-dark.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/bootstrap5.3.scss';
|
||||
@import 'floating-action-button/bootstrap5.3.scss';
|
||||
@import 'speed-dial/bootstrap5.3.scss';
|
||||
@import 'smart-paste-button/bootstrap5.3.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/bootstrap5.scss';
|
||||
@import 'floating-action-button/bootstrap5.scss';
|
||||
@import 'speed-dial/bootstrap5.scss';
|
||||
@import 'smart-paste-button/bootstrap5.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/fabric-dark.scss';
|
||||
@import 'floating-action-button/fabric-dark.scss';
|
||||
@import 'speed-dial/fabric-dark.scss';
|
||||
@import 'smart-paste-button/fabric-dark.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/fabric.scss';
|
||||
@import 'floating-action-button/fabric.scss';
|
||||
@import 'speed-dial/fabric.scss';
|
||||
@import 'smart-paste-button/fabric.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/fluent-dark.scss';
|
||||
@import 'floating-action-button/fluent-dark.scss';
|
||||
@import 'speed-dial/fluent-dark.scss';
|
||||
@import 'smart-paste-button/fluent-dark.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/fluent.scss';
|
||||
@import 'floating-action-button/fluent.scss';
|
||||
@import 'speed-dial/fluent.scss';
|
||||
@import 'smart-paste-button/fluent.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/fluent2.scss';
|
||||
@import 'floating-action-button/fluent2.scss';
|
||||
@import 'speed-dial/fluent2.scss';
|
||||
@import 'smart-paste-button/fluent2.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/highcontrast-light.scss';
|
||||
@import 'floating-action-button/highcontrast-light.scss';
|
||||
@import 'speed-dial/highcontrast-light.scss';
|
||||
@import 'smart-paste-button/highcontrast-light.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/highcontrast.scss';
|
||||
@import 'floating-action-button/highcontrast.scss';
|
||||
@import 'speed-dial/highcontrast.scss';
|
||||
@import 'smart-paste-button/highcontrast.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/material-dark.scss';
|
||||
@import 'floating-action-button/material-dark.scss';
|
||||
@import 'speed-dial/material-dark.scss';
|
||||
@import 'smart-paste-button/material-dark.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/material.scss';
|
||||
@import 'floating-action-button/material.scss';
|
||||
@import 'speed-dial/material.scss';
|
||||
@import 'smart-paste-button/material.scss';
|
||||
|
|
|
@ -6,4 +6,3 @@
|
|||
@import 'chips/material3-dark.scss';
|
||||
@import 'floating-action-button/material3-dark.scss';
|
||||
@import 'speed-dial/material3-dark.scss';
|
||||
@import 'smart-paste-button/material3-dark.scss';
|
||||
|
|
|
@ -6,4 +6,3 @@
|
|||
@import 'chips/material3.scss';
|
||||
@import 'floating-action-button/material3.scss';
|
||||
@import 'speed-dial/material3.scss';
|
||||
@import 'smart-paste-button/material3.scss';
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/bootstrap-dark.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/bootstrap.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/bootstrap4.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/bootstrap5-dark.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/bootstrap5.3.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/bootstrap5.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/fabric-dark.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/fabric.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/fluent-dark.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/fluent.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/fluent2.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/highcontrast-light.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/highcontrast.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/material-dark.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/material.scss';
|
|
@ -1,2 +0,0 @@
|
|||
@import 'ej2-base/styles/definition/material3-dark.scss';
|
||||
@import 'ej2-buttons/styles/smart-paste-button/material3-dark.scss';
|
|
@ -1,2 +0,0 @@
|
|||
@import 'ej2-base/styles/definition/material3.scss';
|
||||
@import 'ej2-buttons/styles/smart-paste-button/material3.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/tailwind-dark.scss';
|
|
@ -1 +0,0 @@
|
|||
@import 'ej2-buttons/styles/smart-paste-button/tailwind.scss';
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/tailwind-dark.scss';
|
||||
@import 'floating-action-button/tailwind-dark.scss';
|
||||
@import 'speed-dial/tailwind-dark.scss';
|
||||
@import 'smart-paste-button/tailwind-dark.scss';
|
||||
|
|
|
@ -5,4 +5,3 @@
|
|||
@import 'chips/tailwind.scss';
|
||||
@import 'floating-action-button/tailwind.scss';
|
||||
@import 'speed-dial/tailwind.scss';
|
||||
@import 'smart-paste-button/tailwind.scss';
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### DatePicker
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I628537` - Fixed an issue where users were unable to navigate through data cells using the arrow keys while a popup was open.
|
||||
|
||||
## 19.3.46 (2021-10-19)
|
||||
|
||||
### TimePicker
|
||||
|
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Chart
|
||||
|
||||
- `#I631309` - Now, the spline range area chart will handle null values properly.
|
||||
|
||||
### Accumulation Chart
|
||||
|
||||
- `#I630866` - Now, the group separator will work for both the tooltip x-point and the legend text.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### Chart
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-charts",
|
||||
"version": "20.22.1",
|
||||
"version": "27.1.48",
|
||||
"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",
|
||||
|
|
|
@ -4,6 +4,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Circular Gauge
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- The annotations will now render correctly when templates are provided through functions.
|
||||
|
||||
## 25.1.35 (2024-03-15)
|
||||
|
||||
### Circular Gauge
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-circulargauge",
|
||||
"version": "16.42.4",
|
||||
"version": "27.1.48",
|
||||
"description": "Essential JS 2 CircularGauge Components for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Diagram
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I627666` - Now, the layout renders properly without considering boundary constraints.
|
||||
- `#I628018` - Now, Flipping the group node properly rendered and rotation properly worked for the child nodes.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### Diagram
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-diagrams",
|
||||
"version": "19.18.0",
|
||||
"version": "27.1.48",
|
||||
"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,21 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### DocumentEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I623329` - Resolved the Heap memory increasing issue even after destroying the component.
|
||||
- `#I624644` - Improved the performance of rendering border for content control.
|
||||
- `#I627238` - Resolved formatting different when layouting the document.
|
||||
- `#I625566` - Content control with multiple paragraph now exported properly.
|
||||
- `#I626922` - Resolved script error when highlighting edit range.
|
||||
- `#I624612` - Nested table border is not render properly.
|
||||
- `#I627042` - Alert message it now shown properly when opening broken sfdt.
|
||||
- `#I624582` - Formatting now preserved properly when copy/paste content from excel document.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### DocumentEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-documenteditor",
|
||||
"version": "26.2.11",
|
||||
"version": "27.1.48",
|
||||
"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,14 +2,25 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### DropDownTree
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I635384` - Console error on initial rendering of `Dropdown Tree` when setting `checkDisabledChildren` to false with additional htmlAttributes has been resolved.
|
||||
|
||||
### ListBox
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I608662` - Issue with "listbox `RemoveItems` method performance issue occurs while using large number items" has been resolved.
|
||||
- `#I625107` - Issue with "Prevent the default sorting action for custom data from filtering updateData method" has been resolved.
|
||||
- `#I628439` - Issue with "Dual listbox sample move function not working properly with disabled items" has been resolved.
|
||||
- `#I904248` - Issue with "The `removeItems` method not working properly after drag and drop and specific the index value" has been resolved.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### DropDownTree
|
||||
|
||||
#### New Features
|
||||
|
@ -23,6 +34,7 @@
|
|||
- `#I630411` - Facing an console error when all nodes are not selectable while opening the popup in the Dropdown Tree component have been resolved.
|
||||
- `#I624932` - Multiple focus issue when enabled the showSelectAll and allowFiltering properties in the Dropdown Tree component has been resolved.
|
||||
- `#I625088` - The issue with selected field in the Dropdown Tree component has been resolved.
|
||||
- `#I629188` - The issue with SelectAll checkbox being checked after reopening popup following filter action has been resolved.
|
||||
|
||||
## 26.2.11 (2024-08-27)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-dropdowns",
|
||||
"version": "18.66.23",
|
||||
"version": "27.1.48",
|
||||
"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": "18.28.1",
|
||||
"version": "27.1.48",
|
||||
"description": "Essential JS 2 FileManager Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,22 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### GanttChart
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I629988` - Change the event argument action property value while deleting dependency issue has been fixed.
|
||||
- `#I629758` - Console error while deleting last record with undo redo and styles not persists in notes tab in dialog issues has been fixed.
|
||||
- `#I631900` - Script error occurs while deleting last record when undo redo support is enabled issue has been fixed.
|
||||
- `#I625233` - Timeline cell disappeared during `DST` issue has been fixed.
|
||||
- `#I631255` - Incorrect left is updated during `DST` issue has been fixed.
|
||||
- `#I628433` - When adding a dependency to an unscheduled task, an exception is thrown issue has been fixed.
|
||||
- `#I632390` - While collapsing parent custom color applied for child disappeared issue has been fixed.
|
||||
|
||||
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### GanttChart
|
||||
|
@ -12,18 +28,22 @@
|
|||
- `#I885165`,`#F56892`- Provided support for taskbar resizing for manually scheduled parent taskbars [Task Scheduling](https://ej2.syncfusion.com/documentation/gantt/task-scheduling#manually-scheduled-tasks), allowing taskbar resize actions.
|
||||
- `#I885310`,`#F56941`- The Gantt Chart now supports localized text for [Dependency](https://ej2.syncfusion.com/documentation/gantt/task-dependency) types (FS, FF, SF, SS), improving readability and providing greater flexibility for localized applications. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/fluent2/gantt/editing.html).
|
||||
|
||||
- `#I893608`- The [Zooming](https://ej2.syncfusion.com/angular/documentation/gantt/timeline/zooming) feature in the timeline has been enhanced to include touch support and mouse wheel interaction. Users can now perform zoom-in and zoom-out actions by pinching in/out on the chart pane or using the mouse wheel in combination with the 'Ctrl' key. Explore the demo [here](https://ej2.syncfusion.com/angular/demos/#/fluent2/gantt/zooming).
|
||||
- `#I885165`,`#F56892`- Provided support for taskbar resizing for manually scheduled parent taskbars [Task Scheduling](https://ej2.syncfusion.com/angular/documentation/gantt/task-scheduling#manually-scheduled-tasks), allowing taskbar resize actions.
|
||||
- `#I885310`,`#F56941`- The Gantt Chart now supports localized text for [Dependency](https://ej2.syncfusion.com/angular/documentation/gantt/taskdependency) types (FS, FF, SF, SS), improving readability and providing greater flexibility for localized applications. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/fluent2/gantt/editing).
|
||||
|
||||
#### Breaking Changes
|
||||
|
||||
- The behaviour of the [`loadChildOnDemand`](https://ej2.syncfusion.com/documentation/api/gantt/#loadchildondemand) property in the Gantt Chart has been modified. Previously, when this property was set to `true`, both parent and child records were loaded simultaneously. Now, when set to true, parent records will initially be rendered in a collapsed state, with child records being loaded only when the parent row is expanded. Additionally, the default value of `loadChildOnDemand` has been changed from `false` to `true`.
|
||||
|
||||
- The behaviour of the [`loadChildOnDemand`](https://ej2.syncfusion.com/angular/documentation/api/gantt/#loadchildondemand) property in the Gantt Chart has been modified. Previously, when this property was set to `true`, both parent and child records were loaded simultaneously. Now, when set to true, parent records will initially be rendered in a collapsed state, with child records being loaded only when the parent row is expanded. Additionally, the default value of `loadChildOnDemand` has been changed from `false` to `true`.
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I629322` - Edit dialog closes even when the action is cancel issue has been fixed.
|
||||
- `#I629080` - The console error that occurred when changing the view type dynamically with a button click issue has been fixed.
|
||||
- `#I632016` - Console error occurred while connecting `FF` type dependency to duration only tasks issue has been fixed.
|
||||
|
||||
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
||||
|
||||
## 26.1.35 (2024-06-11)
|
||||
|
||||
### GanttChart
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-gantt",
|
||||
"version": "26.1.35",
|
||||
"version": "27.1.48",
|
||||
"description": "Essential JS 2 Gantt Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,25 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Grid
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I625709` - The issue with adding/editing when the grid component is rendered inside the Dialog component has been resolved.
|
||||
- `#I628534` - The problem with the `BatchDelete` and `beforeBatchDelete` event arguments not being correct during bulk delete actions has been resolved.
|
||||
- `#I631245` - The issue with the Cancel Interface in the `beforeDataBound` event arguments has been resolved.
|
||||
- `#FB61172` - The issue with padding being added to the first cell during grid cell selection in the Material 3 theme has been resolved.
|
||||
- `#FB60975` - The issue where the cell was not highlighted when selecting a row using a method in the EJ2 Grid has been resolved.
|
||||
- `#I630248`, `#I631004` - The issue where the `minWidth` was not respected during window resizing has been resolved.
|
||||
- `#I629597` - The issue with excel custom filter with the second empty filter not applied to the grid has been resolved.
|
||||
- `#I631424` - The issue where the `AutoFill` position was not adjusted to corresponding cells when resizing the window has been resolved.
|
||||
- `#I633357` - The issue with vertical expansion when dragging with long names and text wrap enabled has been resolved.
|
||||
- `#I629718` - Grid didn't rendered properly while using the individual scripts has been fixed.
|
||||
- `#I632793` - `getSelectedRecords` is not working properly has been resolved.
|
||||
- `#I628424` - Header indent cell overlapped in a stacked frozen grid with grouped columns is fixed.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### Grid
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-grids",
|
||||
"version": "1.193.11",
|
||||
"version": "27.1.48",
|
||||
"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]
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### HeatMap
|
||||
|
||||
|
|
|
@ -2,6 +2,19 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Image Editor
|
||||
|
||||
#### Features
|
||||
|
||||
- Added new action types 'resize-start' and 'resize-end' to the selectionChanging event. The event triggers 'resize-start' when resizing begins and 'resize-end' when resizing ends.
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I910189` - The issue with "Localization issue in ImageEditor" has been resolved.
|
||||
- `#I629743` - The issue with "zoomed event not triggered for mousewheel zoom" has been resolved.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### ImageEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-image-editor",
|
||||
"version": "26.1.40",
|
||||
"version": "27.1.48",
|
||||
"description": "Essential JS 2 ImageEditor for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-inplace-editor",
|
||||
"version": "21.3.7",
|
||||
"version": "27.1.48",
|
||||
"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",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### ColorPicker
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Issue with "Hovering style for primary button of color picker in bootstrap 5 theme" has been resolved.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### ColorPicker
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-inputs",
|
||||
"version": "18.78.15",
|
||||
"version": "27.1.48",
|
||||
"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",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### AI AssistView
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### ListView
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Maps
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### MultiColumn ComboBox
|
||||
|
||||
|
|
|
@ -2,6 +2,29 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### TreeView
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I628962` - The issue with placing the dragged item between the nodes in the TreeView during the drag and drop action has been resolved.
|
||||
- `#I635384` - Console error on initial rendering of `Dropdown Tree` when setting `checkDisabledChildren` to false with additional `htmlAttributes` has been resolved.
|
||||
|
||||
### ContextMenu
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I897592` - The issue with "Context menu reopens after selecting options quickly" has been resolved.
|
||||
|
||||
### Sidebar
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I629277` - The issue with the close arguments event value showing as null when performing a swipe action in the Sidebar component has been resolved.
|
||||
|
||||
- `#I627602` - An issue with Sidebar component while utilizing multiple sidebars with `closeOnDocumentClick` property has been resolved.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### Tab
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-navigations",
|
||||
"version": "22.42.3",
|
||||
"version": "27.1.48",
|
||||
"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",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Message
|
||||
|
||||
|
|
|
@ -2,6 +2,20 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### PDF Viewer
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I626172` - Now, stamp annotation is saved properly when adding custom Data property.
|
||||
- `#I631717` - Now, Free text author and comment characters are not changed when importing the exported annotation.
|
||||
- `#I632150` - Now, the handwritten signature is properly selected after being added to the PDF viewer on a mobile device.
|
||||
- `#I626892` - Now, the large document opens in `standalone` PDF Viewer.
|
||||
- `#I632511` - Now, the fetch request is not sent if the URL is set to the document path on the Server-Backed PDF Viewer.
|
||||
- `#I632378` - Now, copy paste is working with formfields when `enableFormDesigner` as false.
|
||||
- `#I631207` - Now, the `textmarkup` annotations are not unselected when changing the properties programmatically.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### PDF Viewer
|
||||
|
@ -23,6 +37,11 @@
|
|||
- `#I592524` , `#I598159` - Added support for loading custom fonts in `PDFium` WASM to ensure proper rendering of page content.
|
||||
- `#I340793` , `#I345576` , `#I359942` , `#I379567` , `#I386590` , `#I605421` , `#I607974` - Added support for custom fonts in the `TypeHere` signature and initial fields.
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
- In the Server-backed PDF Viewer, two action methods, `RenderPdfTexts` and `ValidatePassword`, are now required in the controller for proper functionality. This change is necessary because text extraction for PDF documents has been separated by default. Additionally, when importing a new PDF document in the organize window, a protected document validation check must be performed before the import.
|
||||
- **Solution** : To update the `PDFViewerController` file on your server, refer to the framework-specific sample repository available [here](https://github.com/SyncfusionExamples/EJ2-PDFViewer-WebServices/tree/main) for guidance.
|
||||
|
||||
## 26.2.12 (2024-09-03)
|
||||
|
||||
### PDF Viewer
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pdfviewer",
|
||||
"version": "26.1.35",
|
||||
"version": "27.1.48",
|
||||
"description": "Essential JS 2 PDF viewer Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Pivot Table
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- The pivot chart will now render properly when the `displayOption` property is changed dynamically with the toolbar option enabled.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### Pivot Table
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-pivotview",
|
||||
"version": "26.1.35",
|
||||
"version": "27.1.48",
|
||||
"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": "21.6.12",
|
||||
"version": "27.1.48",
|
||||
"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",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### QueryBuilder
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I898205` - Issue with While setting rule value as an empty string the rule was not created in QueryBuilder has been fixed.
|
||||
- `#I594200` - Issue with Script error thrown while filtering the field items of complex data binding in angular has been fixed.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### QueryBuilder
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-querybuilder",
|
||||
"version": "26.1.35",
|
||||
"version": "27.1.48",
|
||||
"description": "Essential JS 2 QueryBuilder for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,22 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### RichTextEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I620537` - Now, In localization, different text are used in alternative text quick toolbar item and alternative text dialog header.
|
||||
|
||||
- `#I623355` - Now, the ordered and unordered lists are now rendered properly in the table when copied and pasted from an MS Word document to the Rich Text Editor.
|
||||
|
||||
- `#I630039` - Now, when formatting is applied to the content, it functions correctly in the Firefox browser.
|
||||
|
||||
- `#I627005` - Now, when the Rich Text Editor is placed inside a list, the list functionality works properly.
|
||||
|
||||
- `#F191200` - Now, when a `blockquote` is applied and the `clearFormat` action is selected, the process correctly removes the `blockquote` and applies the appropriate `p` tags.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### RichTextEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-richtexteditor",
|
||||
"version": "26.1.35",
|
||||
"version": "27.1.48",
|
||||
"description": "Essential JS 2 RichTextEditor component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#FB60159` - An issue where the monthly recurrence appointment was rendered on the wrong date without considering the `StartTimezone` value of the appointment is fixed.
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
|
||||
### Schedule
|
||||
|
@ -19,6 +27,13 @@
|
|||
#### Bug fixes
|
||||
|
||||
- `#I194307` - An issue where the `firstDayOfWeek` property was not working in the year view's specific settings has been fixed.
|
||||
|
||||
## 26.2.14 (2024-09-10)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I621521` - An issue where the tooltip shows the wrong end time value when the start and end of the appointment are the same has been fixed.
|
||||
- `#FB60391` - Deleted recurrence appointment added into the `changedRecords` instead of `deletedRecords` and upon clicking `YES` in the series edit confirmation alert to delete the individual occurrences the deleted records not included in the `deletedRecords` in the `actionBegin` event has been fixed.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-schedule",
|
||||
"version": "22.9.0",
|
||||
"version": "27.1.48",
|
||||
"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,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### DropDownButton
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### Spreadsheet
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-angular-treegrid",
|
||||
"version": "20.12.1",
|
||||
"version": "27.1.48",
|
||||
"description": "Essential JS 2 TreeGrid Component for Angular",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 27.1.48 (2024-09-18)
|
||||
## 27.1.50 (2024-09-24)
|
||||
|
||||
### TreeMap
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче