Skip to content

Commit 64129da

Browse files
author
pipeline
committed
v24.2.3 is released
1 parent fb4f692 commit 64129da

File tree

34 files changed

+169
-33
lines changed

34 files changed

+169
-33
lines changed

components/barcodegenerator/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 24.1.47 (2024-01-23)
5+
## 24.2.3 (2024-01-31)
66

77
### Barcode
88

components/base/src/component-base.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ export class ComponentBase<T> {
249249
for (let tagObject of tempAfterContentThis.tagObjects) {
250250
if (!isUndefined(tagObject.instance) &&
251251
(tagObject.instance.isInitChanges || tagObject.instance.hasChanges || tagObject.instance.hasNewChildren)) {
252+
let propObj: { [key: string]: Object } = {};
252253
if (tagObject.instance.isInitChanges) {
253-
let propObj: { [key: string]: Object } = {};
254254
// For angular 9 compatibility
255255
// Not able to get complex directive properties reference ni Onint hook
256256
// So we have constructed property here and used
@@ -337,6 +337,10 @@ export class ComponentBase<T> {
337337
}
338338
list.isUpdated = true;
339339
}
340+
if (/grid/.test(tempAfterContentThis.getModuleName())) {
341+
propObj[tagObject.name] = tagObject.instance.getProperties();
342+
tempAfterContentThis.setProperties(propObj, tagObject.instance.isInitChanges);
343+
}
340344
}
341345
}
342346
}

components/buttons/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 24.2.3 (2024-01-31)
6+
7+
### Switch
8+
9+
#### Bug Fixes
10+
11+
- `#I547814` - The issue with "Script error thrown when using toggle in angular platform" has been resolved.
12+
513
## 24.1.46 (2024-01-17)
614

715
### Checkbox

components/calendars/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 24.2.3 (2024-01-31)
6+
7+
### DateTimePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I541657` - Fixed an issue where the change event in the DateTimePicker was firing after the first time losing focus when milliseconds were included.
12+
513
## 24.1.47 (2024-01-23)
614

715
### DateRangePicker

components/calendars/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-calendars",
3-
"version": "24.1.44",
3+
"version": "24.1.47",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-charts",
3-
"version": "24.1.46",
3+
"version": "24.1.47",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22

33
## [Unreleased]
44

5+
## 24.2.3 (2024-01-31)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I533824` - Now, textAlign Justify is working correctly.
12+
- `#I539121` - Now, oldValue & newValue argument of size change event updated properly while resize the nodes.
13+
- `#FB50125` - Now, symbols are rendered properly in symbol palette.
14+
15+
## 24.1.47 (2024-01-23)
16+
17+
### Diagram
18+
19+
#### Bug Fixes
20+
21+
- `#I538596` - Now, resizing group node with pivot point works fine.
22+
- `#FB49421` - Now, selector renders at initial for multiselect tool.
23+
- `#I534426` - Now, Complex hierarchical tree layout is working fine while injecting line routing.
24+
- `#F186044` - Now, swimlane phase properties are dynamically updated during drag and drop operations.
25+
- `#F185333` - Now, swimlane header properties are dynamically updated during drag and drop operations.
26+
527
## 24.1.46 (2024-01-17)
628

729
### Diagram

components/diagrams/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-diagrams",
3-
"version": "24.1.46",
3+
"version": "24.1.47",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-documenteditor",
3-
"version": "24.1.46",
3+
"version": "24.1.47",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 24.1.47 (2024-01-23)
5+
## 24.2.3 (2024-01-31)
66

77
### ListBox
88

components/filemanager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-filemanager",
3-
"version": "24.1.45",
3+
"version": "24.1.47",
44
"description": "Essential JS 2 FileManager Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## 24.2.3 (2024-01-31)
6+
7+
### GanttChart
8+
9+
#### Bug Fixes
10+
11+
- `#I540355` - RTE create column not working in dialog box issue has been fixed.
12+
- `#I543351` - The taskbar render validation not working properly issue has been fixed.
13+
14+
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
15+
516
## 24.1.47 (2024-01-23)
617

718
### GanttChart
@@ -12,7 +23,7 @@
1223
- `#I185970` - Dynamic template updating in columns does not render issue has been fixed.
1324
- `#I538002` - Alignment Issue with PDF Export in React Gantt issue has been fixed.
1425

15-
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
26+
- `#I185970` - Dynamic template updating in columns does not render issue has been fixed.
1627

1728
## 24.1.46 (2024-01-17)
1829

components/gantt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-gantt",
3-
"version": "24.1.46",
3+
"version": "24.1.47",
44
"description": "Essential JS 2 Gantt Component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## 24.2.3 (2024-01-31)
6+
7+
### Grid
8+
9+
#### Bug fixes
10+
11+
- `#FB49514` - Resolved the issue where the entire page was reloading on Command Column button actions in grid with remote data.
12+
- `#I537973` - Fixed the issue where the clear icon of the search bar was displayed when clicking outside the grid.
13+
- `#I532462` - Resolved the problem with focus and keyboard traversal in the `checkbox filter popup` elements and `filter menu` elements.
14+
- `#I538079` - The alignment issue with the frozen grid while using EJ compatibility CSS has been resolved.
15+
516
## 24.1.47 (2024-01-23)
617

718
### Grid

components/grids/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-grids",
3-
"version": "24.1.46",
3+
"version": "24.1.47",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/heatmap/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 24.1.47 (2024-01-23)
5+
## 24.2.3 (2024-01-31)
66

77
### HeatMap
88

components/inputs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-inputs",
3-
"version": "24.1.45",
3+
"version": "24.1.47",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/kanban/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-kanban",
3-
"version": "24.1.46",
3+
"version": "24.1.47",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/maps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-maps",
3-
"version": "24.1.41",
3+
"version": "24.1.47",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/navigations/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 24.2.3 (2024-01-31)
6+
7+
### Menu
8+
9+
#### Bug Fixes
10+
11+
- The issue with "Sub menu not opening properly while opens the next to next menu" has been resolved.
12+
13+
### Tab
14+
15+
#### Bug fixes
16+
17+
- `#I546255` - An issue tab switching on disable item has been resolved.
18+
519
## 24.1.46 (2024-01-17)
620

721
### Menu

components/notifications/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 24.1.47 (2024-01-23)
5+
## 24.1.41 (2023-12-18)
66

77
### Message
88

components/notifications/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-notifications",
3-
"version": "21.5.2",
3+
"version": "24.1.41",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/pdfviewer/CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22

33
## [Unreleased]
44

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

735
### PDF Viewer

components/pivotview/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
## [Unreleased]
44

5+
## 24.2.3 (2024-01-31)
6+
7+
### PivotTable
8+
9+
#### Bug fixes
10+
11+
- `#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.
12+
13+
#### New features
14+
15+
- `#F184050` - Added error handling support when fetching data from an OLAP cube using an incorrect MDX query during the pivot table's initial rendering.
16+
517
## 24.1.47 (2024-01-23)
618

719
### PivotTable

components/pivotview/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-pivotview",
3-
"version": "24.1.46",
3+
"version": "24.1.47",
44
"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",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/popups/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 24.2.3 (2024-01-31)
6+
7+
### Tooltip
8+
9+
#### Bug Fixes
10+
11+
- `#I533557` - The console error that occurs when the parent component containing the Tooltip component is removed from the DOM has been resolved.
12+
513
## 24.1.46 (2024-01-17)
614

715
### Tooltip

components/querybuilder/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 24.1.47 (2024-01-23)
5+
## 24.1.46 (2024-01-17)
66

77
### QueryBuilder
88

components/querybuilder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-querybuilder",
3-
"version": "24.1.45",
3+
"version": "24.1.46",
44
"description": "Essential JS 2 QueryBuilder for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/richtexteditor/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,23 @@
22

33
## [Unreleased]
44

5+
## 24.2.3 (2024-01-31)
6+
7+
### RichTextEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I534487` - Now, applying the bold format to the Rich Text Editor when focusing on another Rich Text Editor in the page works properly.
12+
513
## 24.1.47 (2024-01-23)
614

715
### RichTextEditor
816

917
#### Bug Fixes
1018

1119
- `#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.
20+
- `#I541522` - Now, when the window is resized to the minimum width, the Rich Text Editor's content font size is updated properly.
21+
- `#I534094` - Now, when using the `click` event with a custom toolbar template, the Rich Text Editor works properly.
1222

1323
## 24.1.46 (2024-01-17)
1424

components/richtexteditor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-richtexteditor",
3-
"version": "24.1.46",
3+
"version": "24.1.47",
44
"description": "Essential JS 2 RichTextEditor component for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)