This commit is contained in:
pipeline 2024-01-31 14:31:04 +00:00
Родитель fb4f692c51
Коммит 64129daf5d
34 изменённых файлов: 169 добавлений и 33 удалений

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 24.1.47 (2024-01-23)
## 24.2.3 (2024-01-31)
### Barcode

Просмотреть файл

@ -249,8 +249,8 @@ export class ComponentBase<T> {
for (let tagObject of tempAfterContentThis.tagObjects) {
if (!isUndefined(tagObject.instance) &&
(tagObject.instance.isInitChanges || tagObject.instance.hasChanges || tagObject.instance.hasNewChildren)) {
let propObj: { [key: string]: Object } = {};
if (tagObject.instance.isInitChanges) {
let propObj: { [key: string]: Object } = {};
// For angular 9 compatibility
// Not able to get complex directive properties reference ni Onint hook
// So we have constructed property here and used
@ -337,6 +337,10 @@ export class ComponentBase<T> {
}
list.isUpdated = true;
}
if (/grid/.test(tempAfterContentThis.getModuleName())) {
propObj[tagObject.name] = tagObject.instance.getProperties();
tempAfterContentThis.setProperties(propObj, tagObject.instance.isInitChanges);
}
}
}
}

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 24.2.3 (2024-01-31)
### Switch
#### Bug Fixes
- `#I547814` - The issue with "Script error thrown when using toggle in angular platform" has been resolved.
## 24.1.46 (2024-01-17)
### Checkbox

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 24.2.3 (2024-01-31)
### DateTimePicker
#### Bug Fixes
- `#I541657` - Fixed an issue where the change event in the DateTimePicker was firing after the first time losing focus when milliseconds were included.
## 24.1.47 (2024-01-23)
### DateRangePicker

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-calendars",
"version": "24.1.44",
"version": "24.1.47",
"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 Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-charts",
"version": "24.1.46",
"version": "24.1.47",
"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",

Просмотреть файл

@ -2,6 +2,28 @@
## [Unreleased]
## 24.2.3 (2024-01-31)
### Diagram
#### Bug Fixes
- `#I533824` - Now, textAlign Justify is working correctly.
- `#I539121` - Now, oldValue & newValue argument of size change event updated properly while resize the nodes.
- `#FB50125` - Now, symbols are rendered properly in symbol palette.
## 24.1.47 (2024-01-23)
### Diagram
#### Bug Fixes
- `#I538596` - Now, resizing group node with pivot point works fine.
- `#FB49421` - Now, selector renders at initial for multiselect tool.
- `#I534426` - Now, Complex hierarchical tree layout is working fine while injecting line routing.
- `#F186044` - Now, swimlane phase properties are dynamically updated during drag and drop operations.
- `#F185333` - Now, swimlane header properties are dynamically updated during drag and drop operations.
## 24.1.46 (2024-01-17)
### Diagram

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-diagrams",
"version": "24.1.46",
"version": "24.1.47",
"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",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-documenteditor",
"version": "24.1.46",
"version": "24.1.47",
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 24.1.47 (2024-01-23)
## 24.2.3 (2024-01-31)
### ListBox

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-filemanager",
"version": "24.1.45",
"version": "24.1.47",
"description": "Essential JS 2 FileManager Component for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,17 @@
## [Unreleased]
## 24.2.3 (2024-01-31)
### GanttChart
#### Bug Fixes
- `#I540355` - RTE create column not working in dialog box issue has been fixed.
- `#I543351` - The taskbar render validation not working properly issue has been fixed.
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
## 24.1.47 (2024-01-23)
### GanttChart
@ -12,7 +23,7 @@
- `#I185970` - Dynamic template updating in columns does not render issue has been fixed.
- `#I538002` - Alignment Issue with PDF Export in React Gantt issue has been fixed.
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
- `#I185970` - Dynamic template updating in columns does not render issue has been fixed.
## 24.1.46 (2024-01-17)

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-gantt",
"version": "24.1.46",
"version": "24.1.47",
"description": "Essential JS 2 Gantt Component for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,17 @@
## [Unreleased]
## 24.2.3 (2024-01-31)
### Grid
#### Bug fixes
- `#FB49514` - Resolved the issue where the entire page was reloading on Command Column button actions in grid with remote data.
- `#I537973` - Fixed the issue where the clear icon of the search bar was displayed when clicking outside the grid.
- `#I532462` - Resolved the problem with focus and keyboard traversal in the `checkbox filter popup` elements and `filter menu` elements.
- `#I538079` - The alignment issue with the frozen grid while using EJ compatibility CSS has been resolved.
## 24.1.47 (2024-01-23)
### Grid

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-grids",
"version": "24.1.46",
"version": "24.1.47",
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 24.1.47 (2024-01-23)
## 24.2.3 (2024-01-31)
### HeatMap

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-inputs",
"version": "24.1.45",
"version": "24.1.47",
"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",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-kanban",
"version": "24.1.46",
"version": "24.1.47",
"description": "The Kanban board is an efficient way to visualize the workflow at each stage along its path to completion. The most important features available are Swim lane, filtering, and editing. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-maps",
"version": "24.1.41",
"version": "24.1.47",
"description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,20 @@
## [Unreleased]
## 24.2.3 (2024-01-31)
### Menu
#### Bug Fixes
- The issue with "Sub menu not opening properly while opens the next to next menu" has been resolved.
### Tab
#### Bug fixes
- `#I546255` - An issue tab switching on disable item has been resolved.
## 24.1.46 (2024-01-17)
### Menu

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 24.1.47 (2024-01-23)
## 24.1.41 (2023-12-18)
### Message

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-notifications",
"version": "21.5.2",
"version": "24.1.41",
"description": "A package of Essential JS 2 notification components such as Toast and Badge which used to notify important information to end-users. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,34 @@
## [Unreleased]
## 24.2.3 (2024-01-31)
### PDF Viewer
#### Bug Fixes
- `#I542557` - Now, multiline textbox field is not able to resize without form designer mode.
- `#I537053` - Now, the highlight button does not appear focused even after being clicked again.
- `#I537971` - Now, the signature content is visible when loading the customer provided PDF document.
- `#I537057` - Now, the font sizes of the input element items in the toolbar does not vary across different themes.
- `#I537061` - Now, the vertical alignment of toolbar items does not vary across different themes.
- `#I545609` - Now, the current page does not change when selecting 400% from the zoom drop-down.
- `#I538873` - Now, the text search is working properly in the Stand-alone PDF Viewer.
- `#I545609` - The text selection in the Stand-alone PDF Viewer now works properly when zoomed in above 100%.
- `#I539013` - Scrolling now works even if the annotation module is not injected on iPad and iPhone devices.
- `#I533379` - Now, the freetext fill color is updated correctly.
- `#I539640` - Now, the ink annotation is rendered properly in the downloaded document in Stand-alone PDF Viewer.
## 24.1.47 (2024-01-23)
### PDF Viewer
#### Bug Fixes
- `#I537869` - Now, the text markup annotation comments are properly displayed after exporting and importing the text markup annotation.
- `#I538222` - Now, the annotations are appeared properly in the provided rotated PDF document.
- `#I536060` - Now, the form field values export programmatically when updating the `isChecked` property on checkbox.
## 24.1.46 (2024-01-17)
### PDF Viewer

Просмотреть файл

@ -2,6 +2,18 @@
## [Unreleased]
## 24.2.3 (2024-01-31)
### PivotTable
#### Bug fixes
- `#I544455` - When we bind no fields to the value axis using the server-side engine, the static pivot field list will now be rendered properly.
#### New features
- `#F184050` - Added error handling support when fetching data from an OLAP cube using an incorrect MDX query during the pivot table's initial rendering.
## 24.1.47 (2024-01-23)
### PivotTable

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-pivotview",
"version": "24.1.46",
"version": "24.1.47",
"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",

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 24.2.3 (2024-01-31)
### Tooltip
#### Bug Fixes
- `#I533557` - The console error that occurs when the parent component containing the Tooltip component is removed from the DOM has been resolved.
## 24.1.46 (2024-01-17)
### Tooltip

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 24.1.47 (2024-01-23)
## 24.1.46 (2024-01-17)
### QueryBuilder

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-querybuilder",
"version": "24.1.45",
"version": "24.1.46",
"description": "Essential JS 2 QueryBuilder for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,6 +2,14 @@
## [Unreleased]
## 24.2.3 (2024-01-31)
### RichTextEditor
#### Bug Fixes
- `#I534487` - Now, applying the bold format to the Rich Text Editor when focusing on another Rich Text Editor in the page works properly.
## 24.1.47 (2024-01-23)
### RichTextEditor
@ -9,6 +17,8 @@
#### Bug Fixes
- `#I542710` - Now, pressing the `tab` key in the list applies the nested list properly when the mention component is used in the Rich Text Editor.
- `#I541522` - Now, when the window is resized to the minimum width, the Rich Text Editor's content font size is updated properly.
- `#I534094` - Now, when using the `click` event with a custom toolbar template, the Rich Text Editor works properly.
## 24.1.46 (2024-01-17)

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-richtexteditor",
"version": "24.1.46",
"version": "24.1.47",
"description": "Essential JS 2 RichTextEditor component for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",

Просмотреть файл

@ -2,7 +2,7 @@
## [Unreleased]
## 24.1.47 (2024-01-23)
## 24.1.46 (2024-01-17)
### DropDownButton

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-splitbuttons",
"version": "24.1.45",
"version": "24.1.46",
"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",

Просмотреть файл

@ -2,15 +2,6 @@
## [Unreleased]
## 24.1.47 (2024-01-23)
### Spreadsheet
#### Bug fixes
- `#I866111` - Issue with "chart data is not rendered properly after hiding the columns" has been resolved.
- `#I866383` - Issue with "`unMerge` method does not work when the `showRibbon` option is set to `false`" has been resolved.
## 24.1.41 (2023-12-18)
### Spreadsheet
@ -1319,6 +1310,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.1.47 (2024-01-23)
### Spreadsheet
#### Bug fixes
- `#I866111` - Issue with "chart data is not rendered properly after hiding the columns" has been resolved.
- `#I866383` - Issue with "`unMerge` method does not work when the `showRibbon` option is set to `false`" has been resolved.
## 24.1.45 (2024-01-09)
### Spreadsheet

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-spreadsheet",
"version": "24.1.46",
"version": "24.1.47",
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",