Skip to content

Commit efada3f

Browse files
author
pipeline
committed
v24.2.7 is released
1 parent cbf6495 commit efada3f

File tree

34 files changed

+177
-214
lines changed

34 files changed

+177
-214
lines changed

components/barcodegenerator/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 24.2.6 (2024-02-15)
5+
## 24.2.7 (2024-02-20)
66

77
### Barcode
88

components/base/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 24.2.7 (2024-02-20)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I545133` - The issue with "the class name of a component is removed from the element when the state is updated" has been resolved.
12+
513
## 24.1.46 (2024-01-17)
614

715
### Common

components/base/releasenotes/README.md

-183
This file was deleted.

components/base/src/component-base.ts

-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,6 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
259259
this.htmlattributes['className'] = this.htmlattributes['className'] + ' '+ clsList[parseInt(i.toString(), 10)];
260260
}
261261
}
262-
this.clsName = false;
263262
}
264263
return this.htmlattributes;
265264
}

components/buttons/CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
## [Unreleased]
44

5-
## 24.2.5 (2024-02-13)
5+
## 24.2.7 (2024-02-20)
66

7-
### SpeedDial
7+
### Button
88

99
#### Bug Fixes
1010

11-
- `FAB` and `SpeedDial` control `readme.md` file updated.
11+
- `#I551397` - The issue with "Tailwind theme when changing the primary text color in the button the text color is not changed" has been resolved.
1212

1313
## 24.2.3 (2024-01-31)
1414

components/charts/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 24.2.7 (2024-02-20)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I549266` - The Hilo open-close chart data points shape is now rendering properly.
12+
13+
### StockChart
14+
15+
#### Bug Fixes
16+
17+
- `#I554213` - The dropdown font style has now been changed according to the selected theme.
18+
519
## 24.2.5 (2024-02-13)
620

721
### StockChart

components/diagrams/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 24.2.7 (2024-02-20)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I549018` - Now, the bridging is not enabled while connector visibility is false.
12+
- `#I542327` - Now, the sendBackward and sendForward commands works fine.
13+
- `#I527474` - Now, drawing connector from source port to target port with port id underscore works fine.
14+
515
## 24.2.5 (2024-02-13)
616

717
### Diagram

components/diagrams/package.json

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
"es2015": "dist/es6/ej2-react-diagrams.es2015.js",
1919
"readme": "ReadMe.md",
2020
"dependencies": {
21-
"awesome-typescript-loader": "^3.1.3",
22-
"source-map-loader": "^0.2.1",
2321
"@syncfusion/ej2-base": "*",
2422
"@syncfusion/ej2-react-base": "*",
2523
"@syncfusion/ej2-diagrams": "*"

components/documenteditor/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 24.2.7 (2024-02-20)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I553680` - Resolved the script error issue while click print button.
12+
- `#I542229` - Resolved the document layout issue in Blazor.
13+
- `#I548069` - Resolved the spell check squiggly lines render issue on print.
14+
- `#I546222` - Resolved the script error issue while applying table border.
15+
- `#I533544` - Resolved the table resize undo issue.
16+
- `#I526592` - Resolved the list numbering is not continuing issue.
17+
- `#I548595` - Resolved the text ordered incorrectly while typing in Blazor.
18+
519
## 24.2.5 (2024-02-13)
620

721
### DocumentEditor

components/dropdowns/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## 24.2.7 (2024-02-20)
6+
7+
### Mention
8+
9+
#### Bug Fixes
10+
11+
-`#I556815`- Fixed an issue where console error that occurred when using `iframe` along with mention.
12+
13+
14+
### MultiSelect
15+
16+
#### Bug Fixes
17+
18+
- `#I553564` - Fixed an issue where the Change Event was triggering multiple times when unCheck all items.
19+
520
## 24.2.6 (2024-02-15)
621

722
### ListBox

components/dropdowns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-dropdowns",
3-
"version": "24.2.5",
3+
"version": "24.2.6",
44
"description": "Essential JS 2 DropDown Components for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 24.2.5 (2024-02-13)
5+
## 24.2.7 (2024-02-20)
66

77
### FileManager
88

components/filemanager/package.json

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
"es2015": "dist/es6/ej2-react-filemanager.es2015.js",
1919
"readme": "ReadMe.md",
2020
"dependencies": {
21-
"awesome-typescript-loader": "^3.1.3",
22-
"source-map-loader": "^0.2.1",
2321
"@syncfusion/ej2-base": "*",
2422
"@syncfusion/ej2-react-base": "*",
2523
"@syncfusion/ej2-filemanager": "*"

components/gantt/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 24.2.7 (2024-02-20)
6+
7+
### GanttChart
8+
9+
#### Bug Fixes
10+
11+
- `#I548671` - Dependency not working when id is alpha numeric issue has been fixed.
12+
- `#I552756` - A console error occurs when hovering over the Column menu options issue has been fixed.
13+
- `#I543787` - The timezone properties used in the sample taskbar not render properly issue has been fixed.
14+
- `#I550317` - Duration value getting string instead of number issue has been fixed.
15+
16+
- `#I543787` - The timezone properties used in the sample taskbar not render properly issue has been fixed.
17+
- `#I548671` - Dependency not working when id is alpha numeric issue has been fixed.
18+
519
## 24.2.5 (2024-02-13)
620

721
### GanttChart

components/gantt/package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-gantt",
3-
"version": "24.2.5",
3+
"version": "24.2.6",
44
"description": "Essential JS 2 Gantt Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
@@ -18,8 +18,6 @@
1818
"es2015": "dist/es6/ej2-react-gantt.es2015.js",
1919
"readme": "ReadMe.md",
2020
"dependencies": {
21-
"awesome-typescript-loader": "^3.1.3",
22-
"source-map-loader": "^0.2.1",
2321
"@syncfusion/ej2-base": "*",
2422
"@syncfusion/ej2-react-base": "*",
2523
"@syncfusion/ej2-gantt": "*"

0 commit comments

Comments
 (0)