v24.2.8 is released
This commit is contained in:
Родитель
efada3fddb
Коммит
cc7c1fe786
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Barcode
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-base",
|
||||
"version": "24.2.3",
|
||||
"version": "24.2.7",
|
||||
"description": "A common package of Essential JS 2 React base, methods and class definitions",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -0,0 +1,183 @@
|
|||
# Release Notes Guidelines
|
||||
|
||||
This section contains guidelines on naming files, sections and other document elements.
|
||||
|
||||
> **If there is no changes in product, you don't need to mention that in Release Notes.**
|
||||
|
||||
## Encoding Format
|
||||
|
||||
All Release Notes files should be saved in **Encoding in UTF-8 (Without BOM)** format. You can use Notepad++ to verify the encoding.
|
||||
|
||||
![Encoding.png](https://bitbucket.org/repo/j57Gz9/images/2199960455-Encoding.png)
|
||||
|
||||
## Release Notes Folder Hierarchy
|
||||
|
||||
* Platform [Folder]
|
||||
* ----ReleaseNotes [Folder]
|
||||
* --------v13.3.x.x [Folder]
|
||||
* ------------Control1.md
|
||||
* ------------Control2.md
|
||||
* ------------Control3.md
|
||||
* --------v13.4.x.x [Folder]
|
||||
* ------------Control1.md
|
||||
* ------------Control2.md
|
||||
* ------------Control3.md
|
||||
|
||||
### How to write Release Notes?
|
||||
|
||||
* Each release markdown files should reside under corresponding version folder in their platform.
|
||||
* Each product release notes should be created in separate file name.
|
||||
* File name should be same as the product name.
|
||||
|
||||
> **NOTE**: Please do not add any Front Matter information in Release Notes files.
|
||||
|
||||
## Markdown File Structure
|
||||
|
||||
Each markdown file should have following items.
|
||||
|
||||
* Control Name
|
||||
* Features
|
||||
* Bug fixes
|
||||
* Braking Changes
|
||||
* Known Issues
|
||||
|
||||
> Do not add any front matter(triple dashed line) in this markdown.
|
||||
|
||||
### Control Name
|
||||
|
||||
Control Name should be with prefix `##`. This will be rendered as `H2` in html file.
|
||||
|
||||
#### Syntax
|
||||
|
||||
```
|
||||
## <Control-Name>
|
||||
```
|
||||
|
||||
#### Example
|
||||
|
||||
```
|
||||
## ejAccrodion
|
||||
```
|
||||
|
||||
### Features
|
||||
|
||||
* Each features should be written in unordered list.
|
||||
* Feature header should have id in the following format `<control-name>-features`. All characters in **id should be written in lower case.**
|
||||
|
||||
#### Syntax
|
||||
|
||||
```
|
||||
### Features
|
||||
{:#<control-name>-features}
|
||||
|
||||
* \#1 - Feature Info
|
||||
* \#2 - Feature Info
|
||||
* \#3 - Feature Info
|
||||
```
|
||||
|
||||
#### Example
|
||||
|
||||
```
|
||||
### Features
|
||||
{:#ejaccordion-features}
|
||||
|
||||
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
```
|
||||
|
||||
> **NOTE:**
|
||||
> * In markdown `#` used to represent headers.
|
||||
> * By default it will be converted as HTML headers.
|
||||
> * To display the `#` in html, please use escape sequences [See above example].
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Each bug fix should be written in unordered list.
|
||||
* Bug fixes header should have id in the following format `<control-name>-bug-fixes`. All characters in **id should be written in lower case.**
|
||||
|
||||
#### Syntax
|
||||
|
||||
```
|
||||
### Bug fixes
|
||||
{:#<control-name-in-lower-case>-bug-fixes}
|
||||
|
||||
* \#1 - Bug Fix
|
||||
* \#2 - Bug Fix
|
||||
* \#3 - Bug Fix
|
||||
```
|
||||
|
||||
#### Example
|
||||
|
||||
```
|
||||
### Bug Fixes
|
||||
{:#ejaccordion-bug-fixes}
|
||||
|
||||
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
|
||||
```
|
||||
|
||||
> **NOTE:**
|
||||
> * In markdown `#` used to represent headers.
|
||||
> * By default it will be converted as HTML headers.
|
||||
> * To display the `#` in html, please use escape sequences [See above example].
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
* Each breaking changes should be written in unordered list.
|
||||
* Breaking changes header should have id in the following format `<control-name>-breaking-changes`. All characters in **id should be written in lower case.**
|
||||
|
||||
```
|
||||
### Breaking Changes
|
||||
{:#<control-name>-breaking-changes}
|
||||
|
||||
* * Breaking Change 1
|
||||
* * Breaking Change 2
|
||||
* * Breaking Change 3
|
||||
```
|
||||
|
||||
#### Example
|
||||
|
||||
```
|
||||
### Breaking Changes
|
||||
{:#ejaccordion-breaking-changes}
|
||||
|
||||
* Now, Circular series end angle will not be adjusted based on the start angle, so the output will be like semi-circle instead of full circle. In order to render the complete circular series with customized start angle, you have to add the start angle value to end angle property now. This break will occur only if you have specified startAngle already
|
||||
```
|
||||
|
||||
> **NOTE:**
|
||||
> * In markdown `#` used to represent headers.
|
||||
> * By default it will be converted as HTML headers.
|
||||
> * To display the `#` in html, please use escape sequences [See above example].
|
||||
|
||||
## Incidents and Forums in Release notes
|
||||
|
||||
We can represent the Incident ID with I and F for forums in release notes MD files
|
||||
|
||||
#### Example
|
||||
|
||||
|
||||
```
|
||||
## ChromelessWindow
|
||||
|
||||
### Bug Fixes
|
||||
{:#chromelesswindow-bug-fixes}
|
||||
|
||||
* \#I336220 - When using `ShowDialog` on a `RibbonWindow`, a `NullReferenceException` will no longer occur.
|
||||
* \#F166385 - The gap between the bottom of the window and the `TaskBar` is now properly maintained.
|
||||
|
||||
```
|
||||
|
||||
This is published in the page : https://help.syncfusion.com/wpf/release-notes/v19.3.0.43?type=all#chromelesswindow
|
||||
|
||||
|
||||
## Commit
|
||||
|
||||
Same workflow for User Guide applicable to this repository. All the changes needs to be committed in `development` branch.
|
||||
|
||||
## Preview Changes
|
||||
|
||||
All the changes will be included with User Guide automation and published in Staging Documentation machine.
|
||||
|
||||
<http://115.249.201.211:9090>
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-buttons",
|
||||
"version": "24.2.5",
|
||||
"version": "24.2.7",
|
||||
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### DateRangePicker
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I554330` - Fixed an issue where the selected value was not being updated when invalid text was entered into the input field.
|
||||
- `#I553168` - Fixed an issue where setting presets with a specific time would initially work, but changing the preset would reset the time.
|
||||
|
||||
## 24.2.5 (2024-02-13)
|
||||
|
||||
### DatePicker
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Chart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#T553171` - Now the center label is aligned properly when increasing the font size.
|
||||
- `#I548552` - The y-axis now dynamically changes based on the current visible points when zooming.
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### Chart
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-charts",
|
||||
"version": "24.2.5",
|
||||
"version": "24.2.7",
|
||||
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Diagram
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I555649` - Now, the scaling of the BPMN symbols with description is properly rendered.
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### Diagram
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-diagrams",
|
||||
"version": "24.2.5",
|
||||
"version": "24.2.7",
|
||||
"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 React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,23 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### DocumentEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I549317` - Resolved the layouting issue when opening attached document.
|
||||
- `#I541401` - Resolved the indentation rendering issue.
|
||||
- `#I546320` - Resolved the spell checker suggestions not replacing issue.
|
||||
- `#I543922` - Resolved the layouting issue when line spacing type is exactly.
|
||||
- `#I545234` - Resolved the spell check issues in blazor.
|
||||
- `#I555335` - Resolved the character format applying issue when pasting sfdt content.
|
||||
- `#I529782` - Resolved the overlapping issue while opening the attached document.
|
||||
- `#I524548` - Resolved the font family issue in table of content.
|
||||
- `#I547495` - Resolved the column content missing issue.
|
||||
- `#I547296` - Resolved the Arabic content copy pasting issue.
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### DocumentEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-documenteditor",
|
||||
"version": "24.2.5",
|
||||
"version": "24.2.7",
|
||||
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Mention
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I539496` - Fixed an issue where the mentioned value was not being updated to the target element when using mouse interaction.
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### Mention
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-dropdowns",
|
||||
"version": "24.2.6",
|
||||
"version": "24.2.7",
|
||||
"description": "Essential JS 2 DropDown Components for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-filemanager",
|
||||
"version": "24.2.5",
|
||||
"version": "24.2.7",
|
||||
"description": "Essential JS 2 FileManager Component for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,29 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### GanttChart
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I555169` - The scrollbar into view taskbar not working properly issue has been fixed.
|
||||
- `#I556229` - Splitter View is not updating properly while using `setSplitterPosition` issue has been fixed.
|
||||
- `#I553873` - Taskbar not rendered properly when using hour format in `DST` issue has been fixed.
|
||||
- `#I548519` - Timeline start date changed after zooming action issue has been fixed.
|
||||
- `#I548491` - React Gantt crashes when updating parent and changing column from column chooser issue has been fixed.
|
||||
- `#I544198` - Delay in predecessor validation issue has been fixed.
|
||||
- `#I552622` - The enable immutable enabled sample expand icon hide when record add issue has been fixed.
|
||||
- `#I553420` - Editing resource allocation differed from initial rendering.
|
||||
- `#I555214` - Disabling all editing options leads to console error issue has been fixed.
|
||||
- `#I553748` - Editing the task name following the reset of the taskbar start date will lead to the taskbar rendering an incorrect date issue has been fixed.
|
||||
- `#I553710` - Dragging the task following the reset of the parent taskbar start date will lead to get duplicate taskbar issue has been fixed.
|
||||
|
||||
- `#I555169` - The scrollbar into view taskbar not working properly issue has been fixed.
|
||||
- `#I548491`- React Gantt crashes when updating parent and changing column from column chooser issue has been fixed.
|
||||
- `#I553420` - Editing resource allocation differed from initial rendering.
|
||||
- `#I555214` - Disabling all editing options leads to console error issue has been fixed.
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### GanttChart
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-gantt",
|
||||
"version": "24.2.6",
|
||||
"version": "24.2.7",
|
||||
"description": "Essential JS 2 Gantt Component for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,17 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Grid
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I550034` - Resolved an issue where printing is not work properly in grid with aggregation and grouping.
|
||||
- `#I536128` - Horizontal scrollbar appear when set column width to `auto` issue has been resolved.
|
||||
- `#I555494` - Fixed an issue where the `EllipsisWithTooltip` feature does not work correctly.
|
||||
- `#I552236` - The issue of encountering a script error when editing a grid with virtual scrolling and a column without a field name has been fixed.
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### Grid
|
||||
|
@ -11,6 +22,9 @@
|
|||
- `#I547707` - Resolved a script error occurring when collapsing a grouped row along with `virtualization` while the grid is in edited state.
|
||||
- `#FB50079` - Fixed the issue where scrolling with the Up arrow in virtual scroll caused the focus to leave and enter the column header.
|
||||
- `#FB50364` - Fixed an accessibility issue with row checkboxes identified by the Accessibility Insights for Web tool.
|
||||
- `#I549898` - Fixed the issue where the shimmer loader was visible outside of the grid.
|
||||
- `#I525457` - Resolved the issue where navigation through the down arrow key suddenly changed its position to the bottom of the table.
|
||||
- `#I547895` - Fixed the issue where the save action was not performed when clicking outside the dropdown.
|
||||
|
||||
## 24.2.5 (2024-02-13)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-grids",
|
||||
"version": "24.2.5",
|
||||
"version": "24.2.7",
|
||||
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-heatmap",
|
||||
"version": "24.2.6",
|
||||
"version": "24.2.7",
|
||||
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Image Editor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I555243` - The issue with "Text area not applied while using GetImageData method" has been resolved.
|
||||
|
||||
## 24.2.5 (2024-02-13)
|
||||
|
||||
### Image Editor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-inplace-editor",
|
||||
"version": "24.2.4",
|
||||
"version": "24.2.7",
|
||||
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server. for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-inputs",
|
||||
"version": "24.2.6",
|
||||
"version": "24.2.7",
|
||||
"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 React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,12 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### ListView
|
||||
|
||||
- `#I553202` - Included a new method `unselectItem` for deselecting the items instead of using `selectItem` method with empty arguments.
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### ListView
|
||||
|
|
|
@ -18,8 +18,6 @@
|
|||
"es2015": "dist/es6/ej2-react-lists.es2015.js",
|
||||
"readme": "ReadMe.md",
|
||||
"dependencies": {
|
||||
"awesome-typescript-loader": "^3.1.3",
|
||||
"source-map-loader": "^0.2.1",
|
||||
"@syncfusion/ej2-base": "*",
|
||||
"@syncfusion/ej2-react-base": "*",
|
||||
"@syncfusion/ej2-lists": "*"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Maps
|
||||
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### TreeView
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I550140` - Resolved the accessibility issue with TreeView component when rendered with checkbox.
|
||||
- `#F186726` - Resolved the multi selection functionality issue in the TreeView component on Mac device.
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### Tab
|
||||
|
@ -10,12 +19,6 @@
|
|||
|
||||
- `#I523951` - The issue with React's selection of a tab item using the select method, where all tab items were being underlined, has been resolved.
|
||||
|
||||
### TreeView
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I550140` - Resolved the accessibility issue with TreeView component when rendered with checkbox.
|
||||
|
||||
## 24.2.3 (2024-01-31)
|
||||
|
||||
### Menu
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Toast
|
||||
|
||||
|
|
|
@ -2,6 +2,22 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### PDF Viewer
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I550956` - Now, the comments do not overlap when the author name has more characters.
|
||||
- `#I549538` - Now, the selected value and index of the dropdown are updated correctly for dropdown lists that are not selected.
|
||||
- `#I553949` - Now, the check box appearance is properly displayed on iOS devices.
|
||||
- `#I545417` - Now, dynamically show and hide the text search pane is working properly.
|
||||
|
||||
- `#I550956` - Now, comments do not overlap when the author name has more characters.
|
||||
- `#I549538` - Now, the selected value and index of the dropdown are updated correctly for dropdown lists that are not selected.
|
||||
- `#I553949` - Now, the check box appearance is properly displayed on iOS devices.
|
||||
- `#I545417` - Now, dynamically show and hide the text search pane is working properly.
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### PDF Viewer
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-pdfviewer",
|
||||
"version": "24.2.6",
|
||||
"version": "24.2.7",
|
||||
"description": "Essential JS 2 PDF viewer Component for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,7 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### PivotTable
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I555926` - When using the Nextjs project, the pivot table will now render properly in the production environment.
|
||||
- `#F186589` - The Pivot Table will now be properly rendered when connecting an OLAP cube with no named set.
|
||||
|
||||
## 24.2.5 (2024-02-13)
|
||||
|
||||
### PivotTable
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-pivotview",
|
||||
"version": "24.2.4",
|
||||
"version": "24.2.5",
|
||||
"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 React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
@ -18,8 +18,6 @@
|
|||
"es2015": "dist/es6/ej2-react-pivotview.es2015.js",
|
||||
"readme": "ReadMe.md",
|
||||
"dependencies": {
|
||||
"awesome-typescript-loader": "^3.1.3",
|
||||
"source-map-loader": "^0.2.1",
|
||||
"@syncfusion/ej2-base": "*",
|
||||
"@syncfusion/ej2-react-base": "*",
|
||||
"@syncfusion/ej2-pivotview": "*"
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 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
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.5 (2024-02-13)
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### QueryBuilder
|
||||
|
||||
|
@ -10,6 +10,8 @@
|
|||
|
||||
- `#I534039` - Issue with `drop-down list popup` remains stick in the screen after close has been fixed.
|
||||
|
||||
## 24.2.5 (2024-02-13)
|
||||
|
||||
### QueryBuilder
|
||||
|
||||
#### Bug Fixes
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Ribbon
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#I555696` - Now the issue with tab animations not updated, while using the `tabAnimation` property has been resolved.
|
||||
|
||||
## 24.1.44 (2024-01-03)
|
||||
|
||||
### Ribbon
|
||||
|
|
|
@ -18,8 +18,6 @@
|
|||
"es2015": "dist/es6/ej2-react-ribbon.es2015.js",
|
||||
"readme": "ReadMe.md",
|
||||
"dependencies": {
|
||||
"awesome-typescript-loader": "^3.1.3",
|
||||
"source-map-loader": "^0.2.1",
|
||||
"@syncfusion/ej2-base": "*",
|
||||
"@syncfusion/ej2-react-base": "*",
|
||||
"@syncfusion/ej2-ribbon": "*"
|
||||
|
|
|
@ -2,6 +2,16 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### RichTextEditor
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#F186601` - Now, the `e-control` class name is removed properly from the body element in the Rich Text Editor.
|
||||
- `#I553157` - Now the numbered and bulleted list is removed properly when deleting the entire list using the backspace key in RichTextEditor.
|
||||
- `#I553375` - Now, the bullet or number list works properly when we try to remove a single line from the list in the RichTextEditor.
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### RichTextEditor
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-richtexteditor",
|
||||
"version": "24.2.4",
|
||||
"version": "24.2.7",
|
||||
"description": "Essential JS 2 RichTextEditor component for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Schedule
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I549187` - An issue with the virtual scroll with `rowAutoHeight` has been resolved.
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
### Schedule
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-splitbuttons",
|
||||
"version": "24.2.5",
|
||||
"version": "24.2.7",
|
||||
"description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup. for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Spreadsheet
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I867926` - Issue with "deleted chart reappeared after filtering action and reloading spreadsheet JSON data" has been resolved.
|
||||
- `#I869788` - Issue with "`findAll` method does not work properly when the mode is workbook and the workbook contains a single sheet" has been resolved.
|
||||
- `#I870021` - Issue with "`cellEditing` event is not triggered when you focus the cell and press the backspace key" has been resolved.
|
||||
- `#I870519` - Issue with "cell values are updated directly from the data source before being converted to formatted values" has been resolved.
|
||||
|
||||
## 24.2.4 (2024-02-06)
|
||||
|
||||
|
@ -1326,6 +1326,15 @@ The Spreadsheet is an user interactive component to organize and analyze data in
|
|||
- **Accessibility:** Provides with built-in accessibility support which helps to access all the spreadsheet component features using the keyboard, screen readers, or other assistive technology devices.
|
||||
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### Spreadsheet
|
||||
|
||||
#### Bug fixes
|
||||
|
||||
- `#I867926` - Issue with "deleted chart reappeared after filtering action and reloading spreadsheet JSON data" has been resolved.
|
||||
- `#I869788` - Issue with "`findAll` method does not work properly when the mode is workbook and the workbook contains a single sheet" has been resolved.
|
||||
|
||||
## 24.2.5 (2024-02-13)
|
||||
|
||||
### Spreadsheet
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-spreadsheet",
|
||||
"version": "24.2.5",
|
||||
"version": "24.2.7",
|
||||
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
|
@ -2,6 +2,14 @@
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 24.2.8 (2024-02-27)
|
||||
|
||||
### Tree Grid
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- `#F50621` - Resolved an issue where a script error was being thrown when performing `ExpandAll` and `CollapseAll` actions in row template.
|
||||
|
||||
## 24.2.7 (2024-02-20)
|
||||
|
||||
### Tree Grid
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@syncfusion/ej2-react-treegrid",
|
||||
"version": "24.2.5",
|
||||
"version": "24.2.7",
|
||||
"description": "Essential JS 2 TreeGrid Component for React",
|
||||
"author": "Syncfusion Inc.",
|
||||
"license": "SEE LICENSE IN license",
|
||||
|
|
Загрузка…
Ссылка в новой задаче