Skip to content

Commit 87515e9

Browse files
author
pipeline
committed
v25.1.38 is released
1 parent 09939a9 commit 87515e9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+381
-37
lines changed

README.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -1205,14 +1205,13 @@
12051205
* [Stock Chart](https://ej2.syncfusion.com/showcase/angular/stockchart?utm_source=npm&utm_campaign=ej2-angular-ui-components)
12061206
* [Web Mail](https://ej2.syncfusion.com/showcase/angular/webmail?utm_source=npm&utm_campaign=ej2-angular-ui-components)
12071207
## Support
1208-
For any questions or assistance, you can:
1209-
* Visit the [Syncfusion support portal](https://support.syncfusion.com/).
1210-
* Post your queries on the [community forums](https://www.syncfusion.com/forums).
1211-
* Renew your subscription by clicking [here](https://www.syncfusion.com/sales/products?utm_source=github&utm_medium=listing&utm_campaign=ej2-angular-ui-components) or contacting our sales team at <[email protected]>.
1212-
* If you have specific feature requests or suggestions, please submit them through our [feedback portal](https://www.syncfusion.com/feedback/angular).
1213-
## License
1214-
For detailed information about the Syncfusion Essential Studio license and copyright, please refer to the [license](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/license).
1208+
Product support is available for through following mediums.
1209+
* Creating incident in Syncfusion [Direct-trac](https://www.syncfusion.com/support/directtrac/incidents?utm_source=npm&utm_campaign=ej2-angular-ui-components) support system or [Community forum](https://www.syncfusion.com/forums/angular-js2?utm_source=npm&utm_campaign=ej2-angular-ui-components).
1210+
* New [GitHub issue](https://github.com/syncfusion/ej2-angular-ui-components/issues/new).
1211+
* Ask your query in [Stack Overflow](https://stackoverflow.com/) with tag `syncfusion` and `ej2`.
1212+
## License
1213+
Check the license detail [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/license).
12151214
## Changelog
1216-
Check the changelog [here](https://ej2.syncfusion.com/angular/documentation/release-notes/index/?utm_source=npm&utm_campaign=ej2-angular-ui-components)
1217-
© Copyright 2024 Syncfusion, Inc. All Rights Reserved.
1215+
Check the changelog [here](https://ej2.syncfusion.com/angular/documentation/release-notes/index/?utm_source=npm&utm_campaign=ej2-angular-ui-components)
1216+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved.
12181217
The Syncfusion Essential Studio license and copyright applies to this distribution.

components/barcodegenerator/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 25.1.37 (2024-03-26)
5+
## 25.1.38 (2024-04-02)
66

77
### Barcode
88

components/base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-base",
3-
"version": "25.1.35",
3+
"version": "25.1.37",
44
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
+183
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
1+
# Release Notes Guidelines
2+
3+
This section contains guidelines on naming files, sections and other document elements.
4+
5+
> **If there is no changes in product, you don't need to mention that in Release Notes.**
6+
7+
## Encoding Format
8+
9+
All Release Notes files should be saved in **Encoding in UTF-8 (Without BOM)** format. You can use Notepad++ to verify the encoding.
10+
11+
![Encoding.png](https://bitbucket.org/repo/j57Gz9/images/2199960455-Encoding.png)
12+
13+
## Release Notes Folder Hierarchy
14+
15+
* Platform [Folder]
16+
* ----ReleaseNotes [Folder]
17+
* --------v13.3.x.x [Folder]
18+
* ------------Control1.md
19+
* ------------Control2.md
20+
* ------------Control3.md
21+
* --------v13.4.x.x [Folder]
22+
* ------------Control1.md
23+
* ------------Control2.md
24+
* ------------Control3.md
25+
26+
### How to write Release Notes?
27+
28+
* Each release markdown files should reside under corresponding version folder in their platform.
29+
* Each product release notes should be created in separate file name.
30+
* File name should be same as the product name.
31+
32+
> **NOTE**: Please do not add any Front Matter information in Release Notes files.
33+
34+
## Markdown File Structure
35+
36+
Each markdown file should have following items.
37+
38+
* Control Name
39+
* Features
40+
* Bug fixes
41+
* Braking Changes
42+
* Known Issues
43+
44+
> Do not add any front matter(triple dashed line) in this markdown.
45+
46+
### Control Name
47+
48+
Control Name should be with prefix `##`. This will be rendered as `H2` in html file.
49+
50+
#### Syntax
51+
52+
```
53+
## <Control-Name>
54+
```
55+
56+
#### Example
57+
58+
```
59+
## ejAccrodion
60+
```
61+
62+
### Features
63+
64+
* Each features should be written in unordered list.
65+
* Feature header should have id in the following format `<control-name>-features`. All characters in **id should be written in lower case.**
66+
67+
#### Syntax
68+
69+
```
70+
### Features
71+
{:#<control-name>-features}
72+
73+
* \#1 - Feature Info
74+
* \#2 - Feature Info
75+
* \#3 - Feature Info
76+
```
77+
78+
#### Example
79+
80+
```
81+
### Features
82+
{:#ejaccordion-features}
83+
84+
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
85+
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
86+
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
87+
```
88+
89+
> **NOTE:**
90+
> * In markdown `#` used to represent headers.
91+
> * By default it will be converted as HTML headers.
92+
> * To display the `#` in html, please use escape sequences [See above example].
93+
94+
### Bug Fixes
95+
96+
* Each bug fix should be written in unordered list.
97+
* Bug fixes header should have id in the following format `<control-name>-bug-fixes`. All characters in **id should be written in lower case.**
98+
99+
#### Syntax
100+
101+
```
102+
### Bug fixes
103+
{:#<control-name-in-lower-case>-bug-fixes}
104+
105+
* \#1 - Bug Fix
106+
* \#2 - Bug Fix
107+
* \#3 - Bug Fix
108+
```
109+
110+
#### Example
111+
112+
```
113+
### Bug Fixes
114+
{:#ejaccordion-bug-fixes}
115+
116+
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
117+
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
118+
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
119+
```
120+
121+
> **NOTE:**
122+
> * In markdown `#` used to represent headers.
123+
> * By default it will be converted as HTML headers.
124+
> * To display the `#` in html, please use escape sequences [See above example].
125+
126+
### Breaking Changes
127+
128+
* Each breaking changes should be written in unordered list.
129+
* Breaking changes header should have id in the following format `<control-name>-breaking-changes`. All characters in **id should be written in lower case.**
130+
131+
```
132+
### Breaking Changes
133+
{:#<control-name>-breaking-changes}
134+
135+
* * Breaking Change 1
136+
* * Breaking Change 2
137+
* * Breaking Change 3
138+
```
139+
140+
#### Example
141+
142+
```
143+
### Breaking Changes
144+
{:#ejaccordion-breaking-changes}
145+
146+
* Now, Circular series end angle will not be adjusted based on the start angle, so the output will be like semi-circle instead of full circle. In order to render the complete circular series with customized start angle, you have to add the start angle value to end angle property now. This break will occur only if you have specified startAngle already
147+
```
148+
149+
> **NOTE:**
150+
> * In markdown `#` used to represent headers.
151+
> * By default it will be converted as HTML headers.
152+
> * To display the `#` in html, please use escape sequences [See above example].
153+
154+
## Incidents and Forums in Release notes
155+
156+
We can represent the Incident ID with I and F for forums in release notes MD files
157+
158+
#### Example
159+
160+
161+
```
162+
## ChromelessWindow
163+
164+
### Bug Fixes
165+
{:#chromelesswindow-bug-fixes}
166+
167+
* \#I336220 - When using `ShowDialog` on a `RibbonWindow`, a `NullReferenceException` will no longer occur.
168+
* \#F166385 - The gap between the bottom of the window and the `TaskBar` is now properly maintained.
169+
170+
```
171+
172+
This is published in the page : https://help.syncfusion.com/wpf/release-notes/v19.3.0.43?type=all#chromelesswindow
173+
174+
175+
## Commit
176+
177+
Same workflow for User Guide applicable to this repository. All the changes needs to be committed in `development` branch.
178+
179+
## Preview Changes
180+
181+
All the changes will be included with User Guide automation and published in Staging Documentation machine.
182+
183+
<http://115.249.201.211:9090>

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 25.1.37 (2024-03-26)
6+
7+
### DateTimePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I15615` - Fixed console error that occurred when using the format property while opening the time popup.
12+
513
## 19.3.46 (2021-10-19)
614

715
### TimePicker

components/calendars/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-calendars",
3-
"version": "18.32.5",
3+
"version": "25.1.37",
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-charts",
3-
"version": "25.1.35",
3+
"version": "25.1.37",
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

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

33
## [Unreleased]
44

5+
## 25.1.38 (2024-04-02)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I562564` - Now, the connector connected properly to the node while moving the node to another layer.
12+
- `#F187022` - Now, Connection change event changed state is triggered for port change within same node.
13+
- `#I566420` - Now, the annotation aligns properly while setting text align as Justify with text overflow as Ellipsis.
14+
515
## 25.1.37 (2024-03-26)
616

717
### Diagram

components/diagrams/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-diagrams",
3-
"version": "25.1.35",
3+
"version": "25.1.37",
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/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 25.1.38 (2024-04-02)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I558448` - Added the preservation support for the list's paragraph style property.
12+
- `#I543917` - Resolved the table layout and border rendering issue.
13+
514
## 25.1.37 (2024-03-26)
615

716
### DocumentEditor

components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-documenteditor",
3-
"version": "25.1.35",
3+
"version": "25.1.37",
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

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

33
## [Unreleased]
44

5-
## 25.1.37 (2024-03-26)
5+
## 25.1.38 (2024-04-02)
66

77
### MultiSelect
88

components/filemanager/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 25.1.38 (2024-04-02)
6+
7+
### FileManager
8+
9+
#### Bug Fixes
10+
11+
- `#I572635` - The problem where an extra plus icon appeared in the details view of the file manager component when in mobile mode has been resolved.
12+
513
## 25.1.37 (2024-03-26)
614

715
### FileManager

components/filemanager/package.json

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

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 25.1.38 (2024-04-02)
6+
7+
### GanttChart
8+
9+
#### Bug fixes
10+
11+
- `#I566539` - Console error occurs while saving custom data in add dialog box with validation rule issue has been fixed.
12+
- `#I553748` - Timeline dates validated wrongly after cell editing with timeline virtualization enabled issue has been fixed.
13+
- `#I565751` - The chart side does not refresh when any record is edited by cell editing issue has been fixed.
14+
15+
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
16+
517
## 25.1.37 (2024-03-26)
618

719
### GanttChart
@@ -23,9 +35,12 @@
2335
- `#I565439` - Work calculations are incorrect for parent task in project view issue has been fixed.
2436
- `#I553710`,`#I565824` - Weekends are not highlighted while `timlineVirtualization` is enabled issue has been fixed.
2537
- `#I565359` - When `allowEditing` is disabled in a resource view, a console error is thrown issue has been fixed.
38+
- `#I565427` - Dependency not validated for dynamically updating work week and holidays issue has been fixed.
2639
- `#I560166` - The context menu using "add child" for any task, dependency line validation is not working properly.
40+
- `#I566103` - Baseline not showing in multi taskbar view.
2741

28-
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
42+
- `#I565359` - When `allowEditing` is disabled in a resource view, a console error is thrown issue has been fixed.
43+
- `#I566103` - Baseline not showing in multi taskbar view.
2944

3045
## 25.1.35 (2024-03-15)
3146

components/gantt/package.json

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

components/gantt/src/gantt/gantt.component.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ export class GanttComponent extends Gantt implements IComponentBase {
107107
public childEventMarkers: QueryList<EventMarkersDirective>;
108108
public tags: string[] = ['columns', 'addDialogFields', 'editDialogFields', 'dayWorkingTime', 'holidays', 'eventMarkers'];
109109
/**
110-
* The parent task bar template that renders customized parent task bars from the given template.
110+
* The parent task bar template that renders customized parent task bars from the given template.
111+
* {% codeBlock src='gantt/parentTaskbarTemplate/index.md' %}{% endcodeBlock %}
111112
* @default null
112113
* @asptype string
113114
*/
@@ -123,7 +124,8 @@ export class GanttComponent extends Gantt implements IComponentBase {
123124
@Template()
124125
public milestoneTemplate: any;
125126
/**
126-
* The task bar template that renders customized child task bars from the given template.
127+
* The task bar template that renders customized child task bars from the given template.
128+
* {% codeBlock src='gantt/taskbarTemplate/index.md' %}{% endcodeBlock %}
127129
* @default null
128130
* @asptype string
129131
*/

0 commit comments

Comments
 (0)