diff --git a/components/barcodegenerator/CHANGELOG.md b/components/barcodegenerator/CHANGELOG.md index ca16611e..ca9cb24a 100644 --- a/components/barcodegenerator/CHANGELOG.md +++ b/components/barcodegenerator/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 24.2.7 (2024-02-20) +## 24.2.8 (2024-02-27) ### Barcode diff --git a/components/base/package.json b/components/base/package.json index 71a12d4e..8bb54e9b 100644 --- a/components/base/package.json +++ b/components/base/package.json @@ -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", diff --git a/components/base/releasenotes/README.md b/components/base/releasenotes/README.md new file mode 100644 index 00000000..08421ac8 --- /dev/null +++ b/components/base/releasenotes/README.md @@ -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 + +``` +## +``` + +#### Example + +``` +## ejAccrodion +``` + +### Features + +* Each features should be written in unordered list. +* Feature header should have id in the following format `-features`. All characters in **id should be written in lower case.** + +#### Syntax + +``` +### Features +{:#-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 `-bug-fixes`. All characters in **id should be written in lower case.** + +#### Syntax + +``` +### Bug fixes +{:#-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 `-breaking-changes`. All characters in **id should be written in lower case.** + +``` +### Breaking Changes +{:#-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. + + \ No newline at end of file diff --git a/components/buttons/package.json b/components/buttons/package.json index cd825e87..92d75fc2 100644 --- a/components/buttons/package.json +++ b/components/buttons/package.json @@ -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", diff --git a/components/calendars/CHANGELOG.md b/components/calendars/CHANGELOG.md index b4f057e8..564013c3 100644 --- a/components/calendars/CHANGELOG.md +++ b/components/calendars/CHANGELOG.md @@ -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 diff --git a/components/charts/CHANGELOG.md b/components/charts/CHANGELOG.md index 7f93cf7b..5b4cca9b 100644 --- a/components/charts/CHANGELOG.md +++ b/components/charts/CHANGELOG.md @@ -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 diff --git a/components/charts/package.json b/components/charts/package.json index 549c9a6a..0f49d5ba 100644 --- a/components/charts/package.json +++ b/components/charts/package.json @@ -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", diff --git a/components/diagrams/CHANGELOG.md b/components/diagrams/CHANGELOG.md index cd390f9a..6d2de2f6 100644 --- a/components/diagrams/CHANGELOG.md +++ b/components/diagrams/CHANGELOG.md @@ -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 diff --git a/components/diagrams/package.json b/components/diagrams/package.json index 5d2cf7b7..b7493aca 100644 --- a/components/diagrams/package.json +++ b/components/diagrams/package.json @@ -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", diff --git a/components/documenteditor/CHANGELOG.md b/components/documenteditor/CHANGELOG.md index b98dcfb0..4ed99093 100644 --- a/components/documenteditor/CHANGELOG.md +++ b/components/documenteditor/CHANGELOG.md @@ -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 diff --git a/components/documenteditor/package.json b/components/documenteditor/package.json index 42de8207..2b36dddf 100644 --- a/components/documenteditor/package.json +++ b/components/documenteditor/package.json @@ -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", diff --git a/components/dropdowns/CHANGELOG.md b/components/dropdowns/CHANGELOG.md index 60555b50..87c0b6f4 100644 --- a/components/dropdowns/CHANGELOG.md +++ b/components/dropdowns/CHANGELOG.md @@ -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 diff --git a/components/dropdowns/package.json b/components/dropdowns/package.json index c63fa9b4..241c9161 100644 --- a/components/dropdowns/package.json +++ b/components/dropdowns/package.json @@ -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", diff --git a/components/filemanager/package.json b/components/filemanager/package.json index 55dfa1ad..c6ddb1b5 100644 --- a/components/filemanager/package.json +++ b/components/filemanager/package.json @@ -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", diff --git a/components/gantt/CHANGELOG.md b/components/gantt/CHANGELOG.md index e2d27fbb..b93c1e8e 100644 --- a/components/gantt/CHANGELOG.md +++ b/components/gantt/CHANGELOG.md @@ -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 diff --git a/components/gantt/package.json b/components/gantt/package.json index 89519fed..46968c7d 100644 --- a/components/gantt/package.json +++ b/components/gantt/package.json @@ -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", diff --git a/components/grids/CHANGELOG.md b/components/grids/CHANGELOG.md index e9fa0060..86c481aa 100644 --- a/components/grids/CHANGELOG.md +++ b/components/grids/CHANGELOG.md @@ -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) diff --git a/components/grids/package.json b/components/grids/package.json index f83c3874..18747934 100644 --- a/components/grids/package.json +++ b/components/grids/package.json @@ -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", diff --git a/components/heatmap/package.json b/components/heatmap/package.json index 722e1c4a..2f625d0e 100644 --- a/components/heatmap/package.json +++ b/components/heatmap/package.json @@ -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", diff --git a/components/imageeditor/CHANGELOG.md b/components/imageeditor/CHANGELOG.md index a7adf08c..e0fc624c 100644 --- a/components/imageeditor/CHANGELOG.md +++ b/components/imageeditor/CHANGELOG.md @@ -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 diff --git a/components/inplaceeditor/package.json b/components/inplaceeditor/package.json index 44fd5a28..de2e998f 100644 --- a/components/inplaceeditor/package.json +++ b/components/inplaceeditor/package.json @@ -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", diff --git a/components/inputs/package.json b/components/inputs/package.json index 44830f9a..d83a68af 100644 --- a/components/inputs/package.json +++ b/components/inputs/package.json @@ -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", diff --git a/components/lists/CHANGELOG.md b/components/lists/CHANGELOG.md index f63ce64e..63fa74fb 100644 --- a/components/lists/CHANGELOG.md +++ b/components/lists/CHANGELOG.md @@ -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 diff --git a/components/lists/package.json b/components/lists/package.json index f969a098..1e1bf991 100644 --- a/components/lists/package.json +++ b/components/lists/package.json @@ -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": "*" diff --git a/components/maps/CHANGELOG.md b/components/maps/CHANGELOG.md index 9ed0c6e0..d428fa9f 100644 --- a/components/maps/CHANGELOG.md +++ b/components/maps/CHANGELOG.md @@ -11,7 +11,7 @@ ## [Unreleased] -## 24.2.7 (2024-02-20) +## 24.2.8 (2024-02-27) ### Maps diff --git a/components/navigations/CHANGELOG.md b/components/navigations/CHANGELOG.md index 9084185d..b79bf8e0 100644 --- a/components/navigations/CHANGELOG.md +++ b/components/navigations/CHANGELOG.md @@ -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 diff --git a/components/notifications/CHANGELOG.md b/components/notifications/CHANGELOG.md index e7951067..e20b1be8 100644 --- a/components/notifications/CHANGELOG.md +++ b/components/notifications/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 24.2.7 (2024-02-20) +## 24.2.8 (2024-02-27) ### Toast diff --git a/components/pdfviewer/CHANGELOG.md b/components/pdfviewer/CHANGELOG.md index 75c267f2..14a35f50 100644 --- a/components/pdfviewer/CHANGELOG.md +++ b/components/pdfviewer/CHANGELOG.md @@ -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 diff --git a/components/pdfviewer/package.json b/components/pdfviewer/package.json index f6b15a83..de9af2c2 100644 --- a/components/pdfviewer/package.json +++ b/components/pdfviewer/package.json @@ -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", diff --git a/components/pivotview/CHANGELOG.md b/components/pivotview/CHANGELOG.md index c9abc4d7..1d9f3ac4 100644 --- a/components/pivotview/CHANGELOG.md +++ b/components/pivotview/CHANGELOG.md @@ -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 diff --git a/components/pivotview/package.json b/components/pivotview/package.json index 7275de11..ad718054 100644 --- a/components/pivotview/package.json +++ b/components/pivotview/package.json @@ -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": "*" diff --git a/components/popups/CHANGELOG.md b/components/popups/CHANGELOG.md index b51b87e0..ddd13e9e 100644 --- a/components/popups/CHANGELOG.md +++ b/components/popups/CHANGELOG.md @@ -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 diff --git a/components/querybuilder/CHANGELOG.md b/components/querybuilder/CHANGELOG.md index 2c5daa6f..4b7af856 100644 --- a/components/querybuilder/CHANGELOG.md +++ b/components/querybuilder/CHANGELOG.md @@ -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 diff --git a/components/ribbon/CHANGELOG.md b/components/ribbon/CHANGELOG.md index 9b8c3342..4e11036d 100644 --- a/components/ribbon/CHANGELOG.md +++ b/components/ribbon/CHANGELOG.md @@ -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 diff --git a/components/ribbon/package.json b/components/ribbon/package.json index 65104ad1..32140c9b 100644 --- a/components/ribbon/package.json +++ b/components/ribbon/package.json @@ -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": "*" diff --git a/components/richtexteditor/CHANGELOG.md b/components/richtexteditor/CHANGELOG.md index d06ec25a..17557ccd 100644 --- a/components/richtexteditor/CHANGELOG.md +++ b/components/richtexteditor/CHANGELOG.md @@ -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 diff --git a/components/richtexteditor/package.json b/components/richtexteditor/package.json index a8b4a63a..026d83ce 100644 --- a/components/richtexteditor/package.json +++ b/components/richtexteditor/package.json @@ -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", diff --git a/components/schedule/CHANGELOG.md b/components/schedule/CHANGELOG.md index 57033f81..aef8cea9 100644 --- a/components/schedule/CHANGELOG.md +++ b/components/schedule/CHANGELOG.md @@ -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 diff --git a/components/splitbuttons/package.json b/components/splitbuttons/package.json index f1c57719..6a88239c 100644 --- a/components/splitbuttons/package.json +++ b/components/splitbuttons/package.json @@ -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", diff --git a/components/spreadsheet/CHANGELOG.md b/components/spreadsheet/CHANGELOG.md index 6e35e356..20e3b215 100644 --- a/components/spreadsheet/CHANGELOG.md +++ b/components/spreadsheet/CHANGELOG.md @@ -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 diff --git a/components/spreadsheet/package.json b/components/spreadsheet/package.json index 9b89459a..8d9e81f9 100644 --- a/components/spreadsheet/package.json +++ b/components/spreadsheet/package.json @@ -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", diff --git a/components/treegrid/CHANGELOG.md b/components/treegrid/CHANGELOG.md index 73424b8f..357a0193 100644 --- a/components/treegrid/CHANGELOG.md +++ b/components/treegrid/CHANGELOG.md @@ -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 diff --git a/components/treegrid/package.json b/components/treegrid/package.json index 3b94f60d..d5236601 100644 --- a/components/treegrid/package.json +++ b/components/treegrid/package.json @@ -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",