Skip to content

Commit 86a5ce4

Browse files
author
pipeline
committed
v23.2.7 is released
1 parent 793fc8c commit 86a5ce4

File tree

35 files changed

+224
-204
lines changed

35 files changed

+224
-204
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-
## 23.2.6 (2023-11-28)
5+
## 23.2.7 (2023-12-05)
66

77
### Barcode
88

components/base/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+
## 23.2.7 (2023-12-05)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I513639` - The issue with "the pager template renders multiple times in the Grid component" has been resolved.
12+
513
## 23.2.5 (2023-11-23)
614

715
### Common

components/base/releasenotes/README.md

Lines changed: 0 additions & 183 deletions
This file was deleted.

components/base/src/template.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,19 @@ export function compile(
9797
getValues(app, context.vueInstance, root);
9898
Vue.render(app, ele);
9999
returnEle = ele.childNodes;
100+
if (context.vueInstance) {
101+
let templateInstance: any = context.vueInstance.templateCollection;
102+
if (!templateInstance) {
103+
context.vueInstance.templateCollection = {};
104+
templateInstance = context.vueInstance.templateCollection;
105+
}
106+
if (propName) {
107+
if (!templateInstance[`${propName}`]) {
108+
templateInstance[`${propName}`] = [];
109+
}
110+
templateInstance[`${propName}`].push(returnEle[0]);
111+
}
112+
}
100113
detach(ele);
101114
} else if (typeof templateElement === "string" || (templateElement.prototype && templateElement.prototype.CSPTemplate && typeof templateElement === 'function')) {
102115
let vueSlot: any = getVueSlot(context.vueInstance, templateElement, root);

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+
## 23.2.7 (2023-12-05)
6+
7+
### Chip
8+
9+
#### Bug Fixes
10+
11+
- `#I525416` - The issue when updating the `chips` property when multiple chip component rendered in the page has been resolved.
12+
513
## 23.1.43 (2023-10-31)
614

715
### RadioButton

components/buttons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"source-map-loader": "^0.2.1",
3434
"@types/chai": "^3.4.28",
3535
"@types/es6-promise": "0.0.28",
36-
"@types/jasmine": "^2.2.29",
36+
"@types/jasmine": "2.8.22",
3737
"@types/jasmine-ajax": "^3.1.27",
3838
"@types/requirejs": "^2.1.26",
3939
"vue": "2.6.14",

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-vue-calendars",
3-
"version": "23.2.4",
3+
"version": "23.2.6",
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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
## [Unreleased]
44

5+
## 23.2.7 (2023-12-05)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I522567` - The chart `height` has now been updated properly.
12+
- `#I523917` - Now, the marker renders properly when animating the series after changing data through the period selector.
13+
14+
### StockChart
15+
16+
#### Bug Fixes
17+
18+
- `#I522065` - Now, the series `border` is working properly.
19+
- `#I523535` - Now, stock event renders properly.
20+
521
## 23.2.6 (2023-11-28)
622

723
### Chart

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-vue-charts",
3-
"version": "23.2.5",
3+
"version": "23.2.6",
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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## 23.2.7 (2023-12-05)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I506991` - Fixed the connector selection issue that occurred when the segment thumb was enabled.
12+
- `#I522256` - Now, the palette expanding event arguments are correct when expanding the palette.
13+
- `#I522219` - Fixed issue with symbol palette tooltip rendering inaccurately after searching symbols and hovering over palette shapes.
14+
- `#F185333` - Now, the style property of phase at run-time can be customized.
15+
516
## 23.2.6 (2023-11-28)
617

718
### 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-vue-diagrams",
3-
"version": "23.2.4",
3+
"version": "23.2.6",
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/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-vue-documenteditor",
3-
"version": "23.2.5",
3+
"version": "23.2.6",
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

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22

33
## [Unreleased]
44

5+
## 23.2.7 (2023-12-05)
6+
7+
### AutoComplete
8+
9+
#### Bug Fixes
10+
11+
- `#I522040` - Fixed an issue where setting the highlight as true and adding HTML text as a value would result in it being parsed as a DOM element.
12+
13+
### DropDownTree
14+
15+
#### Bug Fixes
16+
17+
- `#I523487` - The issue with `itemTemplate` support while performing filtering operation in the Dropdown Tree component has been resolved.
18+
19+
### MultiSelect
20+
21+
#### Bug Fixes
22+
23+
- `#I518299` - Fixed console error that occurred when adding an item using the addItem method.
24+
25+
## 23.2.6 (2023-11-28)
26+
27+
### DropDownList
28+
29+
#### Bug Fixes
30+
31+
- `#I519795` - Fixed an issue where the `BeforeOpenEvent` was triggered twice when the open event was Cancelled.
32+
- `#I520598` - Resolved issue where the equal to operator on `props.dataSource` in the `updateDataSource` function would always evaluate to false when it was an empty array.
33+
34+
## 23.2.5 (2023-11-23)
35+
36+
### Mention
37+
38+
#### Bug Fixes
39+
40+
- `#I519427` - Fixed a popup positioning issue that occurred when filtering.
41+
542
## 23.2.4 (2023-11-20)
643

744
### ListBox

components/dropdowns/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-dropdowns",
3-
"version": "23.2.4",
3+
"version": "23.2.6",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
@@ -32,7 +32,7 @@
3232
"source-map-loader": "^0.2.1",
3333
"@types/chai": "^3.4.28",
3434
"@types/es6-promise": "0.0.28",
35-
"@types/jasmine": "^2.2.29",
35+
"@types/jasmine": "2.8.22",
3636
"@types/jasmine-ajax": "^3.1.27",
3737
"@types/requirejs": "^2.1.26",
3838
"vue": "2.6.14",

0 commit comments

Comments
 (0)