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

0 commit comments

Comments
 (0)