Skip to content

Commit aa7bcd8

Browse files
author
pipeline
committedSep 5, 2023
v22.2.12 is released
1 parent c8207a0 commit aa7bcd8

38 files changed

+220
-49
lines changed
 

‎components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 22.2.12 (2023-09-05)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- `#I491906` - Fixed an issue where the values were not being cleared or changed while the popup was open and the user focus out.
12+
13+
### DateRangePicker
14+
15+
#### Bug Fixes
16+
17+
- `#I491906` - Fixed an issue where the values were not being cleared or changed while the popup was open and the user focus out.
18+
19+
### DateTimePicker
20+
21+
#### Bug Fixes
22+
23+
- `#I491906` - Fixed an issue where the values were not being cleared or changed while the popup was open and the user focus out.
24+
525
## 22.2.11 (2023-08-29)
626

727
### DateRangePicker

‎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": "22.2.10",
3+
"version": "22.2.11",
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

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

33
## [Unreleased]
44

5+
## 22.2.12 (2023-09-05)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#F184251` - Fixed an issue in axis label position when label position set to inside for bar series.
12+
513
## 22.2.11 (2023-08-29)
614

715
### Accumulation chart

‎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": "22.2.10",
3+
"version": "22.2.11",
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

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

33
## [Unreleased]
44

5+
## 22.2.12 (2023-09-05)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I469741` - Now, group node rotation and undo working properly.
12+
- `#F184075` - Now, BPMN node subtype visibles whiles changing the node visibility issue is resolved.
13+
- `#I489954` - Now, Connectors are routed correctly while enable routing set as true.
14+
- `#I493510` -Now, Expand and collapse working properly at runtime.
15+
- `#I490046` - In the positionChange event, during the completed state, old and new values remain identical issue is resolved.
16+
517
## 22.2.11 (2023-08-29)
618

719
### 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": "22.2.10",
3+
"version": "22.2.11",
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/diagrams/src/diagram/diagram.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -334,8 +334,8 @@ export let DiagramComponent = vueDefineComponent({
334334
resetSegments(): void {
335335
return this.ej2Instances.resetSegments();
336336
},
337-
rotate(obj: Object | Object | Object, angle: number, pivot?: Object): boolean {
338-
return this.ej2Instances.rotate(obj, angle, pivot);
337+
rotate(obj: Object | Object | Object, angle: number, pivot?: Object, rotateUsingHandle?: boolean): boolean {
338+
return this.ej2Instances.rotate(obj, angle, pivot, rotateUsingHandle);
339339
},
340340
sameSize(option: Object, objects?: undefined[]): void {
341341
return this.ej2Instances.sameSize(option, objects);

‎components/documenteditor/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## 22.2.12 (2023-09-05)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I482661` - Auto fit table with preferred width table is layouted properly in Document editor
12+
- `#I458332` - Now, able to search a word & apply properties like alignment(left/right/center) inside shape.
13+
- `#I494044` - Resolved the exception issue while exporting a document in server side.
14+
- `#I485502` - Now, Date field opened properly in form filling mode.
15+
516
## 22.2.11 (2023-08-29)
617

718
### Document Editor

‎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": "22.2.10",
3+
"version": "22.2.11",
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

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

33
## [Unreleased]
44

5+
## 22.2.12 (2023-09-05)
6+
7+
### MultiSelect
8+
9+
#### Bug Fixes
10+
11+
- `#I483661` - Fixed the issue where the selected value was not displayed correctly when using a character inside the datasource.
12+
13+
## 22.2.11 (2023-08-29)
14+
15+
### Dropdown Tree
16+
17+
#### Bug Fixes
18+
19+
- `#I492834` - An issue with the `noRecordsTemplate` property of the React Dropdown Tree component has been resolved.
20+
521
## 22.2.10 (2023-08-22)
622

723
### DropDown List

‎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": "22.2.10",
3+
"version": "22.2.11",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

‎components/filemanager/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 22.2.12 (2023-09-05)
6+
7+
### File Manager
8+
9+
#### Bug fixes
10+
11+
- `#I492168` - The Scrollbar repositioning issue when opening context menu in the File Manager component has been resolved.
12+
513
## 22.2.10 (2023-08-22)
614

715
### File Manager

‎components/gantt/CHANGELOG.md

+39-23
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,34 @@
22

33
## [Unreleased]
44

5+
## 22.2.12 (2023-09-05)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `#I488557` - The project dates are not modified after changing the timeline.
12+
- `#I472635` - When pressing the insert key `newRowPosition` bottom row is not highlighted.
13+
- `#I489655` - Milestone is not converting back to taskbar when we have milestone property has been fixed.
14+
- `#I492520` - Critical path styling not getting cleared correctly issue has been fixed.
15+
- `#I492654` - When empty data source pdf export exception thrown issue has been fixed.
16+
- `#I485527` - Filter menu opening issue in column menu has been fixed.
17+
- `#I494859` - Gantt shrinks when we update the datasource issue has been fixed.
18+
519
## 22.2.11 (2023-08-29)
620

7-
### Gantt Chart
21+
### Gantt
822

923
#### Bug Fixes
1024

1125
- `#I485527` - Filter menu opening issue in column menu has been fixed.
1226
- `#I491313` - Multiple records were selected after using the context menu, adding the milestone position wrong issue has been fixed.
27+
- `#F183168` - Gantt Chart not refreshing after adding new item is fixed.
28+
- `#I491178` - Data modified in the server is not reflected in the rendered Gantt Chart is fixed.
1329

1430
## 22.2.10 (2023-08-22)
1531

16-
### Gantt Chart
32+
### Gantt
1733

1834
#### Bug Fixes
1935

@@ -23,7 +39,7 @@
2339

2440
## 22.2.9 (2023-08-15)
2541

26-
### Gantt Chart
42+
### Gantt
2743

2844
#### Bug Fixes
2945

@@ -36,7 +52,7 @@
3652

3753
## 22.2.8 (2023-08-08)
3854

39-
### Gantt Chart
55+
### Gantt
4056

4157
#### Bug Fixes
4258

@@ -47,7 +63,7 @@
4763

4864
## 22.2.7 (2023-08-02)
4965

50-
### Gantt Chart
66+
### Gantt
5167

5268
#### Bug Fixes
5369

@@ -67,7 +83,7 @@
6783

6884
## 22.2.5 (2023-07-27)
6985

70-
### Gantt Chart
86+
### Gantt
7187

7288
#### Bug Fixes
7389

@@ -80,15 +96,15 @@
8096

8197
## 22.1.39 (2023-07-18)
8298

83-
### Gantt Chart
99+
### Gantt
84100

85101
#### Bug Fixes
86102

87103
- `#I45187` - Border is changed to outline in CSS issue has been fixed.
88104

89105
## 22.1.38 (2023-07-11)
90106

91-
### Gantt Chart
107+
### Gantt
92108

93109
#### Bug Fixes
94110

@@ -102,7 +118,7 @@
102118

103119
## 22.1.37 (2023-07-04)
104120

105-
### Gantt Chart
121+
### Gantt
106122

107123
#### Bug Fixes
108124

@@ -113,7 +129,7 @@
113129

114130
## 22.1.36 (2023-06-28)
115131

116-
### Gantt Chart
132+
### Gantt
117133

118134
#### Bug Fixes
119135

@@ -128,7 +144,7 @@
128144

129145
## 22.1.34 (2023-06-21)
130146

131-
### Gantt Chart
147+
### Gantt
132148

133149
#### Features
134150

@@ -141,7 +157,7 @@
141157

142158
## 21.2.10 (2023-06-13)
143159

144-
### Gantt Chart
160+
### Gantt
145161

146162
#### Bug Fixes
147163

@@ -154,7 +170,7 @@
154170

155171
## 21.2.9 (2023-06-06)
156172

157-
### Gantt Chart
173+
### Gantt
158174

159175
#### Bug Fixes
160176

@@ -174,7 +190,7 @@
174190

175191
## 21.2.8 (2023-05-30)
176192

177-
### Gantt Chart
193+
### Gantt
178194

179195
#### Bug Fixes
180196

@@ -192,7 +208,7 @@
192208

193209
## 21.2.6 (2023-05-23)
194210

195-
### Gantt Chart
211+
### Gantt
196212

197213
#### Bug Fixes
198214

@@ -202,7 +218,7 @@
202218

203219
## 21.2.5 (2023-05-16)
204220

205-
### Gantt Chart
221+
### Gantt
206222

207223
#### Bug Fixes
208224

@@ -215,7 +231,7 @@
215231

216232
## 21.2.4 (2023-05-09)
217233

218-
### Gantt Chart
234+
### Gantt
219235

220236
#### Bug Fixes
221237

@@ -227,7 +243,7 @@
227243

228244
## 21.2.3 (2023-05-03)
229245

230-
### Gantt Chart
246+
### Gantt
231247

232248
#### Bug Fixes
233249

@@ -237,7 +253,7 @@
237253

238254
## 21.1.41 (2023-04-18)
239255

240-
### Gantt Chart
256+
### Gantt
241257

242258
#### Bug Fixes
243259

@@ -251,7 +267,7 @@
251267

252268
## 21.1.38 (2023-04-04)
253269

254-
### Gantt Chart
270+
### Gantt
255271

256272
#### Bug Fixes
257273

@@ -263,7 +279,7 @@
263279

264280
## 21.1.37 (2023-03-29)
265281

266-
### Gantt Chart
282+
### Gantt
267283

268284
#### Bug Fixes
269285

@@ -273,7 +289,7 @@
273289

274290
## 21.1.35 (2023-03-23)
275291

276-
### Gantt Chart
292+
### Gantt
277293

278294
#### Features
279295

@@ -1865,7 +1881,7 @@
18651881

18661882
## 21.1.36 (2023-06-28)
18671883

1868-
### Gantt Chart
1884+
### Gantt
18691885

18701886
#### Bug Fixes
18711887

0 commit comments

Comments
 (0)
Please sign in to comment.