Skip to content

Commit 64c0d01

Browse files
author
pipeline
committed
v25.2.5 is released
1 parent 621f5bd commit 64c0d01

Some content is hidden

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

41 files changed

+390
-37
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-
## 25.2.4 (2024-05-14)
5+
## 25.2.5 (2024-05-21)
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-vue-base",
3-
"version": "25.2.3",
3+
"version": "25.2.4",
44
"description": "A common package of Essential JS 2 base Vue 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/buttons/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-buttons",
3-
"version": "25.2.3",
3+
"version": "25.2.4",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 25.2.5 (2024-05-21)
6+
7+
### TimePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I587516` - Fixed an issue where the timepicker `prevValue` property was holding the current selected value instead of the previous value.
12+
513
## 25.1.40 (2024-04-16)
614

715
### DatePicker

components/calendars/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-calendars",
3-
"version": "25.2.3",
3+
"version": "25.2.4",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,32 @@
22

33
## [Unreleased]
44

5+
## 25.2.5 (2024-05-21)
6+
7+
### Accumulation Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I580553` - Accessibility issues are resolved, and now the score has become stable.
12+
13+
### Chart
14+
15+
#### Bug Fixes
16+
17+
- `#I581265` - Now, the Stacking Bar chart has been exported as a CSV file, and the CSV contains the appropriate data.
18+
519
## 25.2.4 (2024-05-14)
620

21+
### Chart
22+
23+
#### Bug Fixes
24+
25+
- `#I585297` - Tooltips in polar and radar series now render properly without console errors.
26+
- `#I532022` - Now, axis labels will render properly without any cutting off.
27+
- `#I585033` - Now, datetime annotations render properly.
28+
29+
## 25.2.3 (2024-05-08)
30+
731
### Accumulation Chart
832

933
#### Bug Fixes

components/charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-charts",
3-
"version": "25.1.42",
3+
"version": "25.2.4",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 25.2.5 (2024-05-21)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I577994` - Now, After zooming and exporting the HTML content, the scroll Padding values are considered.
12+
- `#I586462` - Now, undo redo working properly after editing swimlane child node’s annotation.
13+
514
## 25.2.4 (2024-05-14)
615

716
### Diagram

components/diagrams/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-diagrams",
3-
"version": "25.2.3",
3+
"version": "25.2.4",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 25.2.5 (2024-05-21)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I584933` - Resolved the Manage Styles is missing from the DocumentEditor.
12+
- `#I585396` - Resolved the odd cursor behaviour with superscript and subscript.
13+
- `#I583968` - Resolved the insert field issue when local paste is enabled.
14+
- `#I587711` - Resolved the spellcheck change all does not work on document opening case.
15+
- `#I586658` - Resolved the backspace issue while deleting list item.
16+
- `#I585406` - Resolved the spellcheck annotation disappears issue when cursor is in range.
17+
518
## 25.2.4 (2024-05-14)
619

720
### DocumentEditor

components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-documenteditor",
3-
"version": "25.2.3",
3+
"version": "25.2.4",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,33 @@
22

33
## [Unreleased]
44

5+
## 25.2.5 (2024-05-21)
6+
7+
### DropDownTree
8+
9+
- `#I586376` - Trigger the "select" event instantly after the item selection in Dropdown Tree popup.
10+
11+
### MultiSelect
12+
13+
#### Bug Fixes
14+
15+
- `#I188132` - Fixed an issue where the 'for' attribute was not being added to the label element of MultiSelect.
16+
17+
### DropDownList
18+
19+
#### Bug Fixes
20+
21+
- `#I583651` - Fixed the issue with the header remaining fixed on the page after scrolling while using dropdown with grouping on a scrollable page.
22+
- `#I583092` - Fixed an issue where the dropdownlist did not retrieve the proper index when dynamically updating the datasource with an index.
23+
524
## 25.2.4 (2024-05-14)
625

26+
### MultiSelect
27+
28+
#### Bug Fixes
29+
30+
- `#I583683` - Resolved issue with allow object binding property causing errors when binding fields as integers
31+
732
### DropDownTree
833

934
#### Bug Fixes
@@ -15,6 +40,7 @@
1540
#### Bug Fixes
1641

1742
- `#I580648` - Issue with "The dropdownlist not retrieving the proper index when grouping with allow filtering" has been resolved.
43+
- `#I581080` - Fixed the issue with the dropdownlist index value not updating in component instances.
1844
- `#I581098` - Fixed issue where aria-controls was not maintained when popup was in closed state.
1945

2046
## 25.2.3 (2024-05-08)

components/dropdowns/package.json

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

components/dropdowns/src/auto-complete/autocomplete.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,9 @@ export let AutoCompleteComponent: DefineVueComponent<AutoCompleteModel> = vueDe
159159
hideSpinner(): void {
160160
return this.ej2Instances.hideSpinner();
161161
},
162+
removeAllChildren(element: any): void {
163+
return this.ej2Instances.removeAllChildren(element);
164+
},
162165
requiredModules(): Object[] {
163166
return this.ej2Instances.requiredModules();
164167
},
@@ -196,6 +199,7 @@ export type AutoCompleteComponent = typeof ComponentBase & {
196199
getItems(): Object[];
197200
hidePopup(e?: Object | Object | Object): void;
198201
hideSpinner(): void;
202+
removeAllChildren(element: any): void;
199203
requiredModules(): Object[];
200204
showPopup(e?: Object | Object | Object): void;
201205
showSpinner(): void

0 commit comments

Comments
 (0)