diff --git a/components/buttons/CHANGELOG.md b/components/buttons/CHANGELOG.md index 914400da6..73462c73d 100644 --- a/components/buttons/CHANGELOG.md +++ b/components/buttons/CHANGELOG.md @@ -2,7 +2,15 @@ ## [Unreleased] -## 23.1.38 (2023-09-26) +## 23.1.39 (2023-10-04) + +### Checkbox + +#### Bug Fixes + +- `#I505814` - The issue with "Script error thrown in CheckBox While using the change event in React" has been resolved. + +## 23.1.36 (2023-09-15) ### Checkbox diff --git a/components/buttons/package.json b/components/buttons/package.json index 5b45debbf..ee9ca4835 100644 --- a/components/buttons/package.json +++ b/components/buttons/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-buttons", - "version": "18.64.0", + "version": "23.1.36", "description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/buttons/styles/button/material3-dark.scss b/components/buttons/styles/button/material3-dark.scss index ea932c600..dd617215e 100644 --- a/components/buttons/styles/button/material3-dark.scss +++ b/components/buttons/styles/button/material3-dark.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-dark-definition.scss'; +@import 'ej2-base/styles/definition/material3-dark.scss'; @import 'ej2-buttons/styles/button/material3-dark.scss'; diff --git a/components/buttons/styles/button/material3.scss b/components/buttons/styles/button/material3.scss index e77bd00e3..c4b76b8a3 100644 --- a/components/buttons/styles/button/material3.scss +++ b/components/buttons/styles/button/material3.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-definition.scss'; +@import 'ej2-base/styles/definition/material3.scss'; @import 'ej2-buttons/styles/button/material3.scss'; diff --git a/components/buttons/styles/check-box/material3-dark.scss b/components/buttons/styles/check-box/material3-dark.scss index c669ea2bf..35bb11f72 100644 --- a/components/buttons/styles/check-box/material3-dark.scss +++ b/components/buttons/styles/check-box/material3-dark.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-dark-definition.scss'; +@import 'ej2-base/styles/definition/material3-dark.scss'; @import 'ej2-buttons/styles/check-box/material3-dark.scss'; diff --git a/components/buttons/styles/check-box/material3.scss b/components/buttons/styles/check-box/material3.scss index 810cc2b4e..4d162b2b6 100644 --- a/components/buttons/styles/check-box/material3.scss +++ b/components/buttons/styles/check-box/material3.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-definition.scss'; +@import 'ej2-base/styles/definition/material3.scss'; @import 'ej2-buttons/styles/check-box/material3.scss'; diff --git a/components/buttons/styles/chips/material3-dark.scss b/components/buttons/styles/chips/material3-dark.scss index 887be30f0..404448e06 100644 --- a/components/buttons/styles/chips/material3-dark.scss +++ b/components/buttons/styles/chips/material3-dark.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-dark-definition.scss'; +@import 'ej2-base/styles/definition/material3-dark.scss'; @import 'ej2-buttons/styles/chips/material3-dark.scss'; diff --git a/components/buttons/styles/chips/material3.scss b/components/buttons/styles/chips/material3.scss index f4fa3c599..6495f1108 100644 --- a/components/buttons/styles/chips/material3.scss +++ b/components/buttons/styles/chips/material3.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-definition.scss'; +@import 'ej2-base/styles/definition/material3.scss'; @import 'ej2-buttons/styles/chips/material3.scss'; diff --git a/components/buttons/styles/floating-action-button/material3-dark.scss b/components/buttons/styles/floating-action-button/material3-dark.scss index 85765e923..d0ff21555 100644 --- a/components/buttons/styles/floating-action-button/material3-dark.scss +++ b/components/buttons/styles/floating-action-button/material3-dark.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-dark-definition.scss'; +@import 'ej2-base/styles/definition/material3-dark.scss'; @import 'ej2-buttons/styles/floating-action-button/material3-dark.scss'; diff --git a/components/buttons/styles/floating-action-button/material3.scss b/components/buttons/styles/floating-action-button/material3.scss index 26d2c3641..1d03a9f83 100644 --- a/components/buttons/styles/floating-action-button/material3.scss +++ b/components/buttons/styles/floating-action-button/material3.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-definition.scss'; +@import 'ej2-base/styles/definition/material3.scss'; @import 'ej2-buttons/styles/floating-action-button/material3.scss'; diff --git a/components/buttons/styles/radio-button/material3-dark.scss b/components/buttons/styles/radio-button/material3-dark.scss index 76bb8cbc6..d1aeb8457 100644 --- a/components/buttons/styles/radio-button/material3-dark.scss +++ b/components/buttons/styles/radio-button/material3-dark.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-dark-definition.scss'; +@import 'ej2-base/styles/definition/material3-dark.scss'; @import 'ej2-buttons/styles/radio-button/material3-dark.scss'; diff --git a/components/buttons/styles/radio-button/material3.scss b/components/buttons/styles/radio-button/material3.scss index 8a0cf45f6..c63dc6fac 100644 --- a/components/buttons/styles/radio-button/material3.scss +++ b/components/buttons/styles/radio-button/material3.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-definition.scss'; +@import 'ej2-base/styles/definition/material3.scss'; @import 'ej2-buttons/styles/radio-button/material3.scss'; diff --git a/components/buttons/styles/speed-dial/material3-dark.scss b/components/buttons/styles/speed-dial/material3-dark.scss index e0b24b729..5d2ebe23e 100644 --- a/components/buttons/styles/speed-dial/material3-dark.scss +++ b/components/buttons/styles/speed-dial/material3-dark.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-dark-definition.scss'; +@import 'ej2-base/styles/definition/material3-dark.scss'; @import 'ej2-buttons/styles/speed-dial/material3-dark.scss'; diff --git a/components/buttons/styles/speed-dial/material3.scss b/components/buttons/styles/speed-dial/material3.scss index 3c0df7234..87ce22084 100644 --- a/components/buttons/styles/speed-dial/material3.scss +++ b/components/buttons/styles/speed-dial/material3.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-definition.scss'; +@import 'ej2-base/styles/definition/material3.scss'; @import 'ej2-buttons/styles/speed-dial/material3.scss'; diff --git a/components/buttons/styles/switch/material3-dark.scss b/components/buttons/styles/switch/material3-dark.scss index 12e1db596..2b5287f7b 100644 --- a/components/buttons/styles/switch/material3-dark.scss +++ b/components/buttons/styles/switch/material3-dark.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-dark-definition.scss'; +@import 'ej2-base/styles/definition/material3-dark.scss'; @import 'ej2-buttons/styles/switch/material3-dark.scss'; diff --git a/components/buttons/styles/switch/material3.scss b/components/buttons/styles/switch/material3.scss index 12db0973f..d8b2111b8 100644 --- a/components/buttons/styles/switch/material3.scss +++ b/components/buttons/styles/switch/material3.scss @@ -1,2 +1,2 @@ -@import 'ej2-base/styles/material3-definition.scss'; +@import 'ej2-base/styles/definition/material3.scss'; @import 'ej2-buttons/styles/switch/material3.scss'; diff --git a/components/buttons/umd-deploy/styles/button/material3-dark.scss b/components/buttons/umd-deploy/styles/button/material3-dark.scss index a2d95c566..25499014f 100644 Binary files a/components/buttons/umd-deploy/styles/button/material3-dark.scss and b/components/buttons/umd-deploy/styles/button/material3-dark.scss differ diff --git a/components/buttons/umd-deploy/styles/button/material3.scss b/components/buttons/umd-deploy/styles/button/material3.scss index bfe1c0b91..7477412ee 100644 Binary files a/components/buttons/umd-deploy/styles/button/material3.scss and b/components/buttons/umd-deploy/styles/button/material3.scss differ diff --git a/components/buttons/umd-deploy/styles/check-box/material3-dark.scss b/components/buttons/umd-deploy/styles/check-box/material3-dark.scss index 1ee85e5ee..84f44e20b 100644 Binary files a/components/buttons/umd-deploy/styles/check-box/material3-dark.scss and b/components/buttons/umd-deploy/styles/check-box/material3-dark.scss differ diff --git a/components/buttons/umd-deploy/styles/check-box/material3.scss b/components/buttons/umd-deploy/styles/check-box/material3.scss index 384e2a04d..073ef25c1 100644 Binary files a/components/buttons/umd-deploy/styles/check-box/material3.scss and b/components/buttons/umd-deploy/styles/check-box/material3.scss differ diff --git a/components/buttons/umd-deploy/styles/chips/material3-dark.scss b/components/buttons/umd-deploy/styles/chips/material3-dark.scss index 03ac8eac6..69646e13c 100644 Binary files a/components/buttons/umd-deploy/styles/chips/material3-dark.scss and b/components/buttons/umd-deploy/styles/chips/material3-dark.scss differ diff --git a/components/buttons/umd-deploy/styles/chips/material3.scss b/components/buttons/umd-deploy/styles/chips/material3.scss index 1105195a8..d088ba512 100644 Binary files a/components/buttons/umd-deploy/styles/chips/material3.scss and b/components/buttons/umd-deploy/styles/chips/material3.scss differ diff --git a/components/buttons/umd-deploy/styles/floating-action-button/material3-dark.scss b/components/buttons/umd-deploy/styles/floating-action-button/material3-dark.scss index 8b1896365..5782bb182 100644 Binary files a/components/buttons/umd-deploy/styles/floating-action-button/material3-dark.scss and b/components/buttons/umd-deploy/styles/floating-action-button/material3-dark.scss differ diff --git a/components/buttons/umd-deploy/styles/floating-action-button/material3.scss b/components/buttons/umd-deploy/styles/floating-action-button/material3.scss index 0829fa612..a2181c1b5 100644 Binary files a/components/buttons/umd-deploy/styles/floating-action-button/material3.scss and b/components/buttons/umd-deploy/styles/floating-action-button/material3.scss differ diff --git a/components/buttons/umd-deploy/styles/radio-button/material3-dark.scss b/components/buttons/umd-deploy/styles/radio-button/material3-dark.scss index 268c42af9..a58554e97 100644 Binary files a/components/buttons/umd-deploy/styles/radio-button/material3-dark.scss and b/components/buttons/umd-deploy/styles/radio-button/material3-dark.scss differ diff --git a/components/buttons/umd-deploy/styles/radio-button/material3.scss b/components/buttons/umd-deploy/styles/radio-button/material3.scss index 7a6fd7830..44048a6fd 100644 Binary files a/components/buttons/umd-deploy/styles/radio-button/material3.scss and b/components/buttons/umd-deploy/styles/radio-button/material3.scss differ diff --git a/components/buttons/umd-deploy/styles/speed-dial/material3-dark.scss b/components/buttons/umd-deploy/styles/speed-dial/material3-dark.scss index e9d20e3be..553542c05 100644 Binary files a/components/buttons/umd-deploy/styles/speed-dial/material3-dark.scss and b/components/buttons/umd-deploy/styles/speed-dial/material3-dark.scss differ diff --git a/components/buttons/umd-deploy/styles/speed-dial/material3.scss b/components/buttons/umd-deploy/styles/speed-dial/material3.scss index 6b398c6a2..86c6ff23a 100644 Binary files a/components/buttons/umd-deploy/styles/speed-dial/material3.scss and b/components/buttons/umd-deploy/styles/speed-dial/material3.scss differ diff --git a/components/buttons/umd-deploy/styles/switch/material3-dark.scss b/components/buttons/umd-deploy/styles/switch/material3-dark.scss index 4f28cbe43..6a2560016 100644 Binary files a/components/buttons/umd-deploy/styles/switch/material3-dark.scss and b/components/buttons/umd-deploy/styles/switch/material3-dark.scss differ diff --git a/components/buttons/umd-deploy/styles/switch/material3.scss b/components/buttons/umd-deploy/styles/switch/material3.scss index 412645ea5..435efc903 100644 Binary files a/components/buttons/umd-deploy/styles/switch/material3.scss and b/components/buttons/umd-deploy/styles/switch/material3.scss differ diff --git a/components/calendars/CHANGELOG.md b/components/calendars/CHANGELOG.md index e09c4c296..19ef5c791 100644 --- a/components/calendars/CHANGELOG.md +++ b/components/calendars/CHANGELOG.md @@ -2,14 +2,6 @@ ## [Unreleased] -## 23.1.38 (2023-09-26) - -### DateRangePicker - -#### Bug Fixes - -- `#F171486` - Issue with "performance delay in the popup open while entering invalid start or end date value" has been resolved. - ## 19.3.46 (2021-10-19) ### TimePicker @@ -1234,6 +1226,14 @@ TimePicker component is the pre-filled dropdown list with the time values 12/24 - **Accessibility** - Provided with built-in accessibility support which helps to access all the TimePicker component features through the keyboard, screen readers, or other assistive technology devices. +## 23.1.38 (2023-09-26) + +### DateRangePicker + +#### Bug Fixes + +- `#F171486` - Issue with "performance delay in the popup open while entering invalid start or end date value" has been resolved. + ## 19.1.56 (2021-04-13) ### DateRangePicker diff --git a/components/calendars/package.json b/components/calendars/package.json index 871e1d4ed..60fa693a6 100644 --- a/components/calendars/package.json +++ b/components/calendars/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-calendars", - "version": "18.30.19", + "version": "23.1.38", "description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/charts/CHANGELOG.md b/components/charts/CHANGELOG.md index 66a0945ec..be7019cf1 100644 --- a/components/charts/CHANGELOG.md +++ b/components/charts/CHANGELOG.md @@ -2,6 +2,22 @@ ## [Unreleased] +## 23.1.39 (2023-10-04) + +### Chart + +#### Bug Fixes + +- `#I498233` - Now the `binInterval` is properly updating on dynamic change. +- `#I504772` - Now, limit the zooming level in the chart through the onZooming event. +- `#I501725` - Subtitle is now rendering properly based on the chart width. + +### AccumulationChart + +#### Bug Fixes + +- `#I503999` - Now, the legend in the shape of a `Cross` renders properly. + ## 23.1.38 (2023-09-26) ### Chart diff --git a/components/charts/package.json b/components/charts/package.json index 18878e197..4e0d73037 100644 --- a/components/charts/package.json +++ b/components/charts/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-charts", - "version": "23.1.36", + "version": "23.1.38", "description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/circulargauge/package.json b/components/circulargauge/package.json index 39aa192cd..c50dadd55 100644 --- a/components/circulargauge/package.json +++ b/components/circulargauge/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-circulargauge", - "version": "23.1.36", + "version": "23.1.38", "description": "Essential JS 2 CircularGauge Components for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/diagrams/CHANGELOG.md b/components/diagrams/CHANGELOG.md index 4a677b67d..f3d8ceb4d 100644 --- a/components/diagrams/CHANGELOG.md +++ b/components/diagrams/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## 23.1.39 (2023-10-04) + +### Diagram + +#### Bug Fixes + +- `#I501652` - Now, dropping nodes in swimlane consider as child in angular. +- `#I47014` - The segmentCollectionChange is triggered when editSegment method called. + ## 23.1.38 (2023-09-26) ### Diagram diff --git a/components/diagrams/package.json b/components/diagrams/package.json index b05ae0bc9..93290b153 100644 --- a/components/diagrams/package.json +++ b/components/diagrams/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-diagrams", - "version": "23.1.36", + "version": "23.1.38", "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 Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/documenteditor/CHANGELOG.md b/components/documenteditor/CHANGELOG.md index 611d6819c..7630dbdb3 100644 --- a/components/documenteditor/CHANGELOG.md +++ b/components/documenteditor/CHANGELOG.md @@ -2,6 +2,26 @@ ## [Unreleased] +## 23.1.39 (2023-10-04) + +### Document Editor + +#### Bug Fixes + +- `#I500107` - Resolved the Formatting issue with DocumentEditor. +- `#I497404` - Script error occurred when loading the document. +- `#I498661` - Resolved spacing issue while deleting list content on track changes enabled. +- `#F184319` - Resolved the User's Time zone issue. +- `#I501695` - Resolved the replace ALL issue to replace the first occurrence. +- `#FB46595` - Page number is now reflecting. +- `#I497387` - Resolved the bookmark end is deleted in document production mode. +- `#I499799` - Resolved the rtl content rendering issue while opening rtf document. +- `#I495180` - Delete is now working properly for tracked content +- `#I503264` - Resolved script error issue while inserting text +- `#I503222` - Resolved track changes issue, when select the inserted changes. +- `#I493589` - Keypad appearing issue is resolved in mobile view. +- `#I498520` - Resolved the Text FormField deleting multiple issues. + ## 23.1.38 (2023-09-26) ### Document Editor diff --git a/components/documenteditor/package.json b/components/documenteditor/package.json index d187bd8f4..eff637595 100644 --- a/components/documenteditor/package.json +++ b/components/documenteditor/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-documenteditor", - "version": "23.1.36", + "version": "23.1.38", "description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/dropdowns/package.json b/components/dropdowns/package.json index b04843a5e..d17f2560c 100644 --- a/components/dropdowns/package.json +++ b/components/dropdowns/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-dropdowns", - "version": "23.1.36", + "version": "23.1.38", "description": "Essential JS 2 DropDown Components for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/filemanager/CHANGELOG.md b/components/filemanager/CHANGELOG.md index ebd6d2ddc..9e2027344 100644 --- a/components/filemanager/CHANGELOG.md +++ b/components/filemanager/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## 23.1.39 (2023-10-04) + +### FileManager + +#### Bug Fixes + +- `#I499313` - The issue with the file renaming in the File Manager component has been resolved. + ## 23.1.38 (2023-09-26) ### FileManager diff --git a/components/filemanager/package.json b/components/filemanager/package.json index fa9f55ffa..1f331c535 100644 --- a/components/filemanager/package.json +++ b/components/filemanager/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-filemanager", - "version": "23.1.36", + "version": "23.1.38", "description": "Essential JS 2 FileManager Component for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/gantt/CHANGELOG.md b/components/gantt/CHANGELOG.md index 9e9b75d15..aca7e429f 100644 --- a/components/gantt/CHANGELOG.md +++ b/components/gantt/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## 23.1.39 (2023-10-04) + +### GanttChart + +#### Bug Fixes + +- `#I502041` - Error throw while adding the record issue has been fixed. + ## 23.1.38 (2023-09-26) ### GanttChart diff --git a/components/gantt/package.json b/components/gantt/package.json index e71b228b1..908c2164f 100644 --- a/components/gantt/package.json +++ b/components/gantt/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-gantt", - "version": "23.1.36", + "version": "23.1.38", "description": "Essential JS 2 Gantt Component for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/grids/CHANGELOG.md b/components/grids/CHANGELOG.md index 9132e086c..8dd39cd27 100644 --- a/components/grids/CHANGELOG.md +++ b/components/grids/CHANGELOG.md @@ -2,6 +2,16 @@ ## [Unreleased] +## 23.1.39 (2023-10-04) + +### Grid + +#### Bug fixes + +- `#I504671` - The issue regarding cell changes not being saved when clicking outside of the grid has been resolved. +- `#I501004` - The header template is now rendering correctly, regardless of the header cell height. +- `#FB46829` - The issue where the selection was not properly removed for the checkbox column has been resolved. + ## 23.1.38 (2023-09-26) ### Grid diff --git a/components/grids/package.json b/components/grids/package.json index d5802adf4..7a7a2135e 100644 --- a/components/grids/package.json +++ b/components/grids/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-grids", - "version": "23.1.36", + "version": "23.1.38", "description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/heatmap/CHANGELOG.md b/components/heatmap/CHANGELOG.md index 319f27495..9b2354a0a 100644 --- a/components/heatmap/CHANGELOG.md +++ b/components/heatmap/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 23.1.38 (2023-09-26) +## 23.1.39 (2023-10-04) ### HeatMap diff --git a/components/imageeditor/CHANGELOG.md b/components/imageeditor/CHANGELOG.md index 211156a4f..7f2d9db6e 100644 --- a/components/imageeditor/CHANGELOG.md +++ b/components/imageeditor/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## 23.1.39 (2023-10-04) + +### ImageEditor + +#### Bug Fixes + +- `#I495933` - Resolved the GetImageData method does not return values properly in blazor image editor. +- `#I507638` - Resolved the image not opening in ImageEditor while the image file name has two dots. + ## 23.1.38 (2023-09-26) ### ImageEditor diff --git a/components/imageeditor/package.json b/components/imageeditor/package.json index 91c68fcde..eaab9e09a 100644 --- a/components/imageeditor/package.json +++ b/components/imageeditor/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-image-editor", - "version": "23.1.36", + "version": "23.1.38", "description": "Essential JS 2 ImageEditor for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/inputs/CHANGELOG.md b/components/inputs/CHANGELOG.md index 8ac388816..f38cf1c37 100644 --- a/components/inputs/CHANGELOG.md +++ b/components/inputs/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 23.1.38 (2023-09-26) +## 23.1.39 (2023-10-04) ### Signature diff --git a/components/kanban/CHANGELOG.md b/components/kanban/CHANGELOG.md index fe7fab1ba..b672c685b 100644 --- a/components/kanban/CHANGELOG.md +++ b/components/kanban/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 23.1.38 (2023-09-26) +## 23.1.39 (2023-10-04) ### Kanban diff --git a/components/lists/CHANGELOG.md b/components/lists/CHANGELOG.md index 86b94e713..c6a9fc9aa 100644 --- a/components/lists/CHANGELOG.md +++ b/components/lists/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 23.1.38 (2023-09-26) +## 23.1.39 (2023-10-04) ### ListView diff --git a/components/maps/CHANGELOG.md b/components/maps/CHANGELOG.md index 1e18c01b4..da6c33d6b 100644 --- a/components/maps/CHANGELOG.md +++ b/components/maps/CHANGELOG.md @@ -14,7 +14,7 @@ ## [Unreleased] -## 23.1.38 (2023-09-26) +## 23.1.39 (2023-10-04) ### Maps diff --git a/components/navigations/CHANGELOG.md b/components/navigations/CHANGELOG.md index ef067c24f..a493add41 100644 --- a/components/navigations/CHANGELOG.md +++ b/components/navigations/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 23.1.36 (2023-09-15) +## 23.1.39 (2023-10-04) ### Menu @@ -10,6 +10,8 @@ - `#F496214` - The issue with "Sub Menu can’t hide while using hideItems method of menu" has been resolved. +## 23.1.36 (2023-09-15) + ### TreeView #### Bug fixes diff --git a/components/pdfviewer/CHANGELOG.md b/components/pdfviewer/CHANGELOG.md index fb915cccf..ba569c2e5 100644 --- a/components/pdfviewer/CHANGELOG.md +++ b/components/pdfviewer/CHANGELOG.md @@ -2,6 +2,18 @@ ## [Unreleased] +## 23.1.39 (2023-10-04) + +### PDF Viewer + +#### Bug Fixes + +- `#I497739` - Now, the comment panel close and more buttons are properly displayed in mobile mode. +- `#I485341` - Now, the free text annotation does not resizes automatically on first click when enable autofit is set to true. +- `#F184471` - Now, when saving a document with free text annotation, newline characters are properly preserved in the saved document. +- `#I502323` - Now, the form field names do not get duplicated when we add them programmatically or through the UI. +- `#I499440`, `#I505546` - Now, the comment panel value for the ink annotation is added with the provided author value. + ## 23.1.38 (2023-09-26) ### PDF Viewer diff --git a/components/pdfviewer/package.json b/components/pdfviewer/package.json index 8e924ec3b..e4b286255 100644 --- a/components/pdfviewer/package.json +++ b/components/pdfviewer/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-pdfviewer", - "version": "23.1.36", + "version": "23.1.38", "description": "Essential JS 2 PDF viewer Component for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/pivotview/package.json b/components/pivotview/package.json index f54396ef6..7e70d9e8e 100644 --- a/components/pivotview/package.json +++ b/components/pivotview/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-pivotview", - "version": "23.1.36", + "version": "23.1.38", "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 Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/popups/CHANGELOG.md b/components/popups/CHANGELOG.md index cf436c88f..5a9d4c323 100644 --- a/components/popups/CHANGELOG.md +++ b/components/popups/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 23.1.38 (2023-09-26) +## 23.1.39 (2023-10-04) ### Tooltip diff --git a/components/progressbar/CHANGELOG.md b/components/progressbar/CHANGELOG.md index 66db68e77..2c88b2ee2 100644 --- a/components/progressbar/CHANGELOG.md +++ b/components/progressbar/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 23.1.38 (2023-09-26) +## 23.1.39 (2023-10-04) ### ProgressBar diff --git a/components/querybuilder/CHANGELOG.md b/components/querybuilder/CHANGELOG.md index 051404a25..1dbeeffb9 100644 --- a/components/querybuilder/CHANGELOG.md +++ b/components/querybuilder/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## 23.1.39 (2023-10-04) + +### QueryBuilder + +#### Bug Fixes + +- `#I499489` - Issue with read only property not working in dropdowntree field of QueryBuilder has been fixed. + ## 23.1.38 (2023-09-26) ### QueryBuilder diff --git a/components/querybuilder/package.json b/components/querybuilder/package.json index e254fe554..499eeb46c 100644 --- a/components/querybuilder/package.json +++ b/components/querybuilder/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-querybuilder", - "version": "23.1.36", + "version": "23.1.38", "description": "Essential JS 2 QueryBuilder for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/ribbon/package.json b/components/ribbon/package.json index 916c0bbd4..a2690a58f 100644 --- a/components/ribbon/package.json +++ b/components/ribbon/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-ribbon", - "version": "23.1.36", + "version": "23.1.38", "description": "Essential JS 2 Component for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/richtexteditor/CHANGELOG.md b/components/richtexteditor/CHANGELOG.md index 307b2cfaf..f0327aba2 100644 --- a/components/richtexteditor/CHANGELOG.md +++ b/components/richtexteditor/CHANGELOG.md @@ -2,6 +2,24 @@ ## [Unreleased] +## 23.1.39 (2023-10-04) + +### RichTextEditor + +#### Bug Fixes + +- `#I499363` - Now, the issue with the heading colour set to blue after copying and pasting content from MS Word has been resolved. +- `#I500996` - Now, the issue with the table resize icon is missing when the mouse is dragged out of the editor and clicked outside the table has been resolved. +- `#I493182` - Now, the issue with the `enablePersistence` API not working properly in the Rich Text Editor on page navigation has been resolved. +- `#F184513` - Now, integrating with Mention, the `actionBegin` and `actionComplete` events work properly. +- `#I488206` - Now, pasting contents into the Rich Text Editor when `enterKey` is configured as `DIV` works properly. +- `#I499035` - Now, the Rich Text Editor renders properly without any `sass` compilation errors. +- `#I499071` - Now, the image focus and resize class names are removed properly when the editor is focused out. +- `#I497587` - Now, the RichTextEditor height property works properly in percentage value. +- `#I503797` - Now, the shortcut key 'Command + B' is working fine on a Mac machine. +- `#I840680` - Now, the complex table resizing will work properly for the middle columns in the Rich Text Editor. +- `#I846935` - Now, the last and first column of the table resizing will work properly in the Rich Text Editor. + ## 23.1.36 (2023-09-15) ### RichTextEditor diff --git a/components/schedule/CHANGELOG.md b/components/schedule/CHANGELOG.md index 4724ac8cd..f867e5660 100644 --- a/components/schedule/CHANGELOG.md +++ b/components/schedule/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 23.1.38 (2023-09-26) +## 23.1.39 (2023-10-04) ### Schedule diff --git a/components/splitbuttons/CHANGELOG.md b/components/splitbuttons/CHANGELOG.md index bb318da7d..38bcc8dde 100644 --- a/components/splitbuttons/CHANGELOG.md +++ b/components/splitbuttons/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 23.1.38 (2023-09-26) +## 23.1.39 (2023-10-04) ### DropDownButton diff --git a/components/spreadsheet/package.json b/components/spreadsheet/package.json index 4a9fadd0a..54b237d14 100644 --- a/components/spreadsheet/package.json +++ b/components/spreadsheet/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-vue-spreadsheet", - "version": "23.1.36", + "version": "23.1.38", "description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Vue", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license",