diff --git a/components/barcodegenerator/CHANGELOG.md b/components/barcodegenerator/CHANGELOG.md index 053b0923..6ff83bc0 100644 --- a/components/barcodegenerator/CHANGELOG.md +++ b/components/barcodegenerator/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 27.1.58 (2024-11-05) +## 27.2.2 (2024-11-15) ### Barcode diff --git a/components/buttons/CHANGELOG.md b/components/buttons/CHANGELOG.md index 93c57faa..58a76534 100644 --- a/components/buttons/CHANGELOG.md +++ b/components/buttons/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### Checkbox + +#### Bug Fixes + +- `#F95768`- The issue with "Parent element click event `prevented` while clicking on switch component in angular." has been resolved. + ## 27.1.58 (2024-11-05) ### Checkbox diff --git a/components/buttons/package.json b/components/buttons/package.json index e5719cac..8073fce4 100644 --- a/components/buttons/package.json +++ b/components/buttons/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-buttons", - "version": "27.1.53", + "version": "27.1.58", "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", diff --git a/components/calendars/CHANGELOG.md b/components/calendars/CHANGELOG.md index 38010fea..e983cc3a 100644 --- a/components/calendars/CHANGELOG.md +++ b/components/calendars/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 27.1.58 (2024-11-05) +## 27.2.2 (2024-11-15) ### DateTimePicker diff --git a/components/charts/CHANGELOG.md b/components/charts/CHANGELOG.md index 11ca6474..7cbfc6db 100644 --- a/components/charts/CHANGELOG.md +++ b/components/charts/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### Chart + +#### Bug Fixes + +- `#I650135` - The cumulative percentage in the Pareto chart tooltip will display the precise value to two decimal points. +- `#I648361` - The exponential trendline now renders correctly for the datetime axis. + ## 27.1.58 (2024-11-05) ### Chart diff --git a/components/charts/package.json b/components/charts/package.json index bfbd4755..feaaf726 100644 --- a/components/charts/package.json +++ b/components/charts/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-charts", - "version": "27.1.57", + "version": "27.1.58", "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", diff --git a/components/charts/src/accumulation-chart/accumulationchart.component.ts b/components/charts/src/accumulation-chart/accumulationchart.component.ts index a33648d4..eb24dfdc 100644 --- a/components/charts/src/accumulation-chart/accumulationchart.component.ts +++ b/components/charts/src/accumulation-chart/accumulationchart.component.ts @@ -5,7 +5,7 @@ import { Template } from '@syncfusion/ej2-angular-base'; import { AccumulationSeriesCollectionDirective } from './series.directive'; import { AccumulationAnnotationsDirective } from './annotations.directive'; -export const inputs: string[] = ['allowExport','annotations','background','backgroundImage','border','center','centerLabel','currencyCode','dataSource','enableAnimation','enableBorderOnMouseMove','enableExport','enablePersistence','enableRtl','enableSmartLabels','height','highlightColor','highlightMode','highlightPattern','isMultiSelect','legendSettings','locale','margin','selectedDataIndexes','selectionMode','selectionPattern','series','subTitle','subTitleStyle','theme','title','titleStyle','tooltip','useGroupingSeparator','width']; +export const inputs: string[] = ['allowExport','annotations','background','backgroundImage','border','center','centerLabel','currencyCode','dataSource','enableAnimation','enableBorderOnMouseMove','enableExport','enableHtmlSanitizer','enablePersistence','enableRtl','enableSmartLabels','height','highlightColor','highlightMode','highlightPattern','isMultiSelect','legendSettings','locale','margin','selectedDataIndexes','selectionMode','selectionPattern','series','subTitle','subTitleStyle','theme','title','titleStyle','tooltip','useGroupingSeparator','width']; export const outputs: string[] = ['afterExport','animationComplete','annotationRender','beforePrint','beforeResize','chartDoubleClick','chartMouseClick','chartMouseDown','chartMouseLeave','chartMouseMove','chartMouseUp','legendClick','legendRender','load','loaded','pointClick','pointMove','pointRender','resized','selectionComplete','seriesRender','textRender','tooltipRender','dataSourceChange']; export const twoWays: string[] = ['dataSource']; diff --git a/components/charts/src/chart/chart.component.ts b/components/charts/src/chart/chart.component.ts index 1e278904..ed92041e 100644 --- a/components/charts/src/chart/chart.component.ts +++ b/components/charts/src/chart/chart.component.ts @@ -11,7 +11,7 @@ import { AnnotationsDirective } from './annotations.directive'; import { SelectedDataIndexesDirective } from './selecteddataindexes.directive'; import { IndicatorsDirective } from './indicators.directive'; -export const inputs: string[] = ['allowExport','allowMultiSelection','annotations','axes','background','backgroundImage','border','chartArea','columns','crosshair','currencyCode','dataSource','description','enableAnimation','enableAutoIntervalOnBothAxis','enableCanvas','enableExport','enablePersistence','enableRtl','enableSideBySidePlacement','height','highlightColor','highlightMode','highlightPattern','indicators','isMultiSelect','isTransposed','legendSettings','locale','margin','palettes','primaryXAxis','primaryYAxis','rangeColorSettings','rows','selectedDataIndexes','selectionMode','selectionPattern','series','subTitle','subTitleStyle','tabIndex','theme','title','titleStyle','tooltip','useGroupingSeparator','width','zoomSettings']; +export const inputs: string[] = ['allowExport','allowMultiSelection','annotations','axes','background','backgroundImage','border','chartArea','columns','crosshair','currencyCode','dataSource','description','enableAnimation','enableAutoIntervalOnBothAxis','enableCanvas','enableExport','enableHtmlSanitizer','enablePersistence','enableRtl','enableSideBySidePlacement','height','highlightColor','highlightMode','highlightPattern','indicators','isMultiSelect','isTransposed','legendSettings','locale','margin','palettes','primaryXAxis','primaryYAxis','rangeColorSettings','rows','selectedDataIndexes','selectionMode','selectionPattern','series','subTitle','subTitleStyle','tabIndex','theme','title','titleStyle','tooltip','useGroupingSeparator','width','zoomSettings']; export const outputs: string[] = ['afterExport','animationComplete','annotationRender','axisLabelClick','axisLabelRender','axisMultiLabelRender','axisRangeCalculated','beforeExport','beforePrint','beforeResize','chartDoubleClick','chartMouseClick','chartMouseDown','chartMouseLeave','chartMouseMove','chartMouseUp','drag','dragComplete','dragEnd','dragStart','legendClick','legendRender','load','loaded','multiLevelLabelClick','onZooming','pointClick','pointDoubleClick','pointMove','pointRender','resized','scrollChanged','scrollEnd','scrollStart','selectionComplete','seriesRender','sharedTooltipRender','textRender','tooltipRender','zoomComplete','dataSourceChange']; export const twoWays: string[] = ['dataSource']; diff --git a/components/circulargauge/package.json b/components/circulargauge/package.json index 711b6d22..95971edc 100644 --- a/components/circulargauge/package.json +++ b/components/circulargauge/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-circulargauge", - "version": "27.1.57", + "version": "27.1.58", "description": "Essential JS 2 CircularGauge Components for Angular", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/diagrams/package.json b/components/diagrams/package.json index 24863d43..550fe45d 100644 --- a/components/diagrams/package.json +++ b/components/diagrams/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-diagrams", - "version": "27.1.57", + "version": "27.1.58", "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", diff --git a/components/documenteditor/CHANGELOG.md b/components/documenteditor/CHANGELOG.md index 98e1ca07..c351b420 100644 --- a/components/documenteditor/CHANGELOG.md +++ b/components/documenteditor/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### DocumentEditor + +#### Bug Fixes + +- `#I650912` - Resolved the comment pane is not shown issue while inserting the empty comment. + ## 27.1.58 (2024-11-05) ### DocumentEditor diff --git a/components/documenteditor/package.json b/components/documenteditor/package.json index 1c4a6c7a..f818514a 100644 --- a/components/documenteditor/package.json +++ b/components/documenteditor/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-documenteditor", - "version": "27.1.57", + "version": "27.1.58", "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", diff --git a/components/dropdowns/CHANGELOG.md b/components/dropdowns/CHANGELOG.md index 169990a4..d77c33d1 100644 --- a/components/dropdowns/CHANGELOG.md +++ b/components/dropdowns/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 27.1.58 (2024-11-05) +## 27.2.2 (2024-11-15) ### ComboBox diff --git a/components/filemanager/CHANGELOG.md b/components/filemanager/CHANGELOG.md index fe887f2a..190160bf 100644 --- a/components/filemanager/CHANGELOG.md +++ b/components/filemanager/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### FileManager + +#### Bug Fixes + +- `#I649098` - Fixed a console error that occurred during drag-and-drop in the File Manager component when using the NodeJS service. + ## 27.1.55 (2024-10-22) ### FileManager diff --git a/components/gantt/CHANGELOG.md b/components/gantt/CHANGELOG.md index f4797c6b..8f0a818c 100644 --- a/components/gantt/CHANGELOG.md +++ b/components/gantt/CHANGELOG.md @@ -2,6 +2,18 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### GanttChart + +#### Bug fixes + +- `#644829` - Words and taskbar alignment are misaligned in pdf file when row height is less than 20 issue has been fixed. +- `#I645725` - Console error occurs when taskbar drag and drop with touch interaction issue has been fixed. +- `#I646644` - Console error occurs while dependency has decimal offset day values issue has been fixed. + +- `F159354` - Issue in locale text of predecessor tooltip has been fixed. + ## 27.1.58 (2024-11-05) ### GanttChart @@ -11,8 +23,6 @@ - `#645586` - Last 3 rows of the taskbar are not exported when performing PDF export with the `pageOrientation` set Portrait issue has been fixed. - `#644812` - When adding a record, the validation for taskType as `fixedDuration` is not working properly issue has been fixed. -- `F159354` - Issue in locale text of predecessor tooltip has been fixed. - ## 27.1.57 (2024-10-29) ### GanttChart diff --git a/components/gantt/package.json b/components/gantt/package.json index a8a96002..5d897d5c 100644 --- a/components/gantt/package.json +++ b/components/gantt/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-gantt", - "version": "27.1.57", + "version": "27.1.58", "description": "Essential JS 2 Gantt Component for Angular", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/grids/CHANGELOG.md b/components/grids/CHANGELOG.md index ae14215e..fcc74a9b 100644 --- a/components/grids/CHANGELOG.md +++ b/components/grids/CHANGELOG.md @@ -2,6 +2,22 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### Grid + +#### Bug fixes + +- `#I643163` - Resolved a script error that occurred during cell selection when `virtualization` was enabled. +- `#I621506`, `#I622810` - Provided icons for column chooser, autofit all columns, autofit column in adaptive view. +- `#FB62665` - Resolved type error in filter `itemTemplate` when binding functions. +- `#I646099` - Resolved `rowSelecting` and `RowDeselected` event arguments are `undefined` when `virtualization` is enabled. +- `#I648525` - Resolved an issue where deleting a record from the command column would not work when the delete confirmation dialog was enabled. +- `#FB62045` - Resolved the on-demand for excel/checkbox filtering in custom binding. +- `#I645596` - Resolved a resized column width resets after column reorder when `autofitColumns` method is invoked during initial rendering. +- `#I639180` - The issue with the `ODataV4Adaptor` checkbox filtering not functioning correctly when using an external `where` filter query has been resolved. +- `#I645754` - Fixed an issue that caused an error when opening the column chooser in vertical row rendering mode within `AdaptiveUI` mobile mode. + ## 27.1.58 (2024-11-05) ### Grid diff --git a/components/grids/package.json b/components/grids/package.json index 118dc2c5..6f75d95b 100644 --- a/components/grids/package.json +++ b/components/grids/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-grids", - "version": "27.1.57", + "version": "27.1.58", "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", diff --git a/components/imageeditor/CHANGELOG.md b/components/imageeditor/CHANGELOG.md index d837584b..44b04645 100644 --- a/components/imageeditor/CHANGELOG.md +++ b/components/imageeditor/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 27.1.58 (2024-11-05) +## 27.2.2 (2024-11-15) ### Image Editor diff --git a/components/inputs/CHANGELOG.md b/components/inputs/CHANGELOG.md index e919a744..acef103a 100644 --- a/components/inputs/CHANGELOG.md +++ b/components/inputs/CHANGELOG.md @@ -2,6 +2,20 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### Uploader + +#### Bug Fixes + +- `#I648755` - Fixed an issue where, with sequential upload enabled, if the first file is paused, the second file will not automatically start uploading. + +### TextBox + +#### Bug Fixes + +- `#I648833` - Fixed an issue with the floating label and border changes that occur upon clicking the reset button. + ## 27.1.58 (2024-11-05) ### NumericTextBox diff --git a/components/inputs/package.json b/components/inputs/package.json index 67271388..d5ed34fd 100644 --- a/components/inputs/package.json +++ b/components/inputs/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-inputs", - "version": "27.1.55", + "version": "27.1.58", "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", diff --git a/components/kanban/CHANGELOG.md b/components/kanban/CHANGELOG.md index 8cebc90d..401ede97 100644 --- a/components/kanban/CHANGELOG.md +++ b/components/kanban/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 27.1.58 (2024-11-05) +## 27.2.2 (2024-11-15) ### Kanban diff --git a/components/lineargauge/package.json b/components/lineargauge/package.json index 8dbd0687..2cef0075 100644 --- a/components/lineargauge/package.json +++ b/components/lineargauge/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-lineargauge", - "version": "16.41.0", + "version": "27.1.50", "description": "Essential JS 2 LinearGauge Components for Angular", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/navigations/CHANGELOG.md b/components/navigations/CHANGELOG.md index 8d7db9c9..4987325b 100644 --- a/components/navigations/CHANGELOG.md +++ b/components/navigations/CHANGELOG.md @@ -2,6 +2,26 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### TreeView + +#### Bug Fixes + +- `#I650340` - The alignment issue in the TreeView component, which occurred when using the IconCss field property with the e-icons class while enabling checkbox support, has been resolved. + +### Tab + +#### Bug Fixes + +- `#I644385` - An issue that prevented access to the `refreshOverflow` method in the Tab has been resolved. + +### Toolbar + +#### Bug Fixes + +- `#I635313` - An issue with the Column Chooser in the grid, where the JAWS screen reader was reading items twice due to toolbar styles, has been resolved + ## 27.1.58 (2024-11-05) ### Tab diff --git a/components/navigations/package.json b/components/navigations/package.json index 711a2d3c..cb074c56 100644 --- a/components/navigations/package.json +++ b/components/navigations/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-navigations", - "version": "27.1.57", + "version": "27.1.58", "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", diff --git a/components/pdfviewer/CHANGELOG.md b/components/pdfviewer/CHANGELOG.md index ff80897b..8a2d8124 100644 --- a/components/pdfviewer/CHANGELOG.md +++ b/components/pdfviewer/CHANGELOG.md @@ -2,6 +2,17 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### PDF Viewer + +#### Bug Fixes + +- `#I645043` - Now, the radio button field data is not lost when scrolling through the provided document. +- `#I648250` - Now, the form field drag element is active when moving form fields. +- `#I646730` - Now, the Text Selection and Pan keyboard shortcuts are disabled when the corresponding options are not available in the toolbar. +- `#I635071` - Now, the checkbox form fields are properly checked in the downloaded document. + ## 27.1.58 (2024-11-05) ### PDF Viewer diff --git a/components/pdfviewer/package.json b/components/pdfviewer/package.json index 02af4f9c..5001ddde 100644 --- a/components/pdfviewer/package.json +++ b/components/pdfviewer/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-pdfviewer", - "version": "27.1.57", + "version": "27.1.58", "description": "Essential JS 2 PDF viewer Component for Angular", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/pivotview/CHANGELOG.md b/components/pivotview/CHANGELOG.md index d4540031..4cd6ed5c 100644 --- a/components/pivotview/CHANGELOG.md +++ b/components/pivotview/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### Pivot Table + +#### Bug fixes + +- `#I645195` - The pivot table will now display the proper data based on the current page size when using the paging option. +- `#I645619` - The error popup will now appear correctly when entering an invalid formula in the calculated field UI. + ## 27.1.58 (2024-11-05) ### Pivot Table diff --git a/components/pivotview/package.json b/components/pivotview/package.json index 5dbdc81c..fa51cdb6 100644 --- a/components/pivotview/package.json +++ b/components/pivotview/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-pivotview", - "version": "27.1.57", + "version": "27.1.58", "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", diff --git a/components/popups/CHANGELOG.md b/components/popups/CHANGELOG.md index a8835c2d..3e5cf773 100644 --- a/components/popups/CHANGELOG.md +++ b/components/popups/CHANGELOG.md @@ -2,6 +2,16 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### Dialog + +#### Bug Fixes + +- `#I646678` - Fixed an issue where the dialog would not close when the Escape key was pressed. + +- `#FB60123` - Fixed an issue where dynamically changing the dialog target caused the dialog element to remain stuck in its previous DOM position. + ## 27.1.58 (2024-11-05) ### Dialog diff --git a/components/popups/package.json b/components/popups/package.json index 7eae048c..b65714be 100644 --- a/components/popups/package.json +++ b/components/popups/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-popups", - "version": "27.1.57", + "version": "27.1.58", "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", diff --git a/components/querybuilder/CHANGELOG.md b/components/querybuilder/CHANGELOG.md index 6e1ecef6..960253ca 100644 --- a/components/querybuilder/CHANGELOG.md +++ b/components/querybuilder/CHANGELOG.md @@ -8,6 +8,14 @@ #### Bug Fixes +- Issue with "Validation message appears for valid field in query builder" has been fixed. + +## 27.1.57 (2024-10-29) + +### QueryBuilder + +#### Bug Fixes + - Issue with "Input element value get selected while double clicking on query builder rules." has been fixed. ## 27.1.55 (2024-10-22) diff --git a/components/querybuilder/package.json b/components/querybuilder/package.json index 032f7228..15991dac 100644 --- a/components/querybuilder/package.json +++ b/components/querybuilder/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-querybuilder", - "version": "27.1.55", + "version": "27.1.58", "description": "Essential JS 2 QueryBuilder for Angular", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/richtexteditor/CHANGELOG.md b/components/richtexteditor/CHANGELOG.md index 446f03ec..bd19824e 100644 --- a/components/richtexteditor/CHANGELOG.md +++ b/components/richtexteditor/CHANGELOG.md @@ -2,6 +2,20 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### RichTextEditor + +#### Bug Fixes + +- `#I646789` - Now, the table is correctly inserted at the end of the span element when the cursor is focused there in the Rich Text Editor. + +- `#I637655` - Now, the list retains its format properly when pasted into the Rich Text Editor, even when within an `
` tag. + +- `#I649429` - Now, the custom table with the class name `e-rte-custom-table` will not have the editor's default table styles. + +- `#I647956` - Now, the percentage values for image height and width are now applied to image in the Rich Text Editor. + ## 27.1.58 (2024-11-05) ### RichTextEditor diff --git a/components/richtexteditor/package.json b/components/richtexteditor/package.json index b15fe050..0bf75dba 100644 --- a/components/richtexteditor/package.json +++ b/components/richtexteditor/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-richtexteditor", - "version": "27.1.57", + "version": "27.1.58", "description": "Essential JS 2 RichTextEditor component for Angular", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/schedule/CHANGELOG.md b/components/schedule/CHANGELOG.md index e9bdad77..eef2d592 100644 --- a/components/schedule/CHANGELOG.md +++ b/components/schedule/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### Schedule + +#### Bug fixes + +- `#I647287` - An issue where an Appointments are rendered in the incorrect time slots when the time zone is set to MET has been resolved. + ## 27.1.58 (2024-11-05) ### Schedule diff --git a/components/schedule/package.json b/components/schedule/package.json index ed797016..77872415 100644 --- a/components/schedule/package.json +++ b/components/schedule/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-schedule", - "version": "27.1.57", + "version": "27.1.58", "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", diff --git a/components/splitbuttons/CHANGELOG.md b/components/splitbuttons/CHANGELOG.md index 7e1752dc..d8466e77 100644 --- a/components/splitbuttons/CHANGELOG.md +++ b/components/splitbuttons/CHANGELOG.md @@ -2,7 +2,7 @@ ## [Unreleased] -## 27.1.58 (2024-11-05) +## 27.1.56 (2024-10-23) ### SplitButton diff --git a/components/splitbuttons/package.json b/components/splitbuttons/package.json index c4119da5..b3513405 100644 --- a/components/splitbuttons/package.json +++ b/components/splitbuttons/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-splitbuttons", - "version": "27.1.50", + "version": "27.1.56", "description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup. for Angular", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/spreadsheet/CHANGELOG.md b/components/spreadsheet/CHANGELOG.md index f10ece49..56f0086c 100644 --- a/components/spreadsheet/CHANGELOG.md +++ b/components/spreadsheet/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### Spreadsheet + +#### Bug fixes + +- `#I641003` - Issue with "selection misalignment happens when applying autofill to wrapped cells that are outside of the viewport" has been resolved. + ## 27.1.52 (2024-10-08) ### Spreadsheet diff --git a/components/treegrid/CHANGELOG.md b/components/treegrid/CHANGELOG.md index e2c558c4..cf96fa7e 100644 --- a/components/treegrid/CHANGELOG.md +++ b/components/treegrid/CHANGELOG.md @@ -2,6 +2,16 @@ ## [Unreleased] +## 27.2.2 (2024-11-15) + +### Tree Grid + +#### Bug Fixes + +- `#I644706` - Resolved issues related to cell editing when virtualization is enabled. +- `#I646360` - `Dialog` now renders properly when both the template column and detail template are enabled in Tree Grid. +- `#I644696` - Page refreshes now prevented when adding a record on the last page with virtualization enabled. + ## 27.1.56 (2024-10-23) ### Tree Grid diff --git a/components/treegrid/package.json b/components/treegrid/package.json index 203f9d4a..bccb98cf 100644 --- a/components/treegrid/package.json +++ b/components/treegrid/package.json @@ -1,6 +1,6 @@ { "name": "@syncfusion/ej2-angular-treegrid", - "version": "27.1.56", + "version": "27.1.57", "description": "Essential JS 2 TreeGrid Component for Angular", "author": "Syncfusion Inc.", "license": "SEE LICENSE IN license", diff --git a/components/treemap/CHANGELOG.md b/components/treemap/CHANGELOG.md index 2cba048b..22f00262 100644 --- a/components/treemap/CHANGELOG.md +++ b/components/treemap/CHANGELOG.md @@ -8,7 +8,7 @@ ## [Unreleased] -## 27.1.58 (2024-11-05) +## 27.2.2 (2024-11-15) ### TreeMap