Skip to content

Commit b71eccc

Browse files
author
pipeline
committed
v19.4.40 is released
1 parent b81e2fd commit b71eccc

File tree

29 files changed

+121
-40
lines changed

29 files changed

+121
-40
lines changed

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.2.57 (2021-08-24)
5+
## 19.4.38 (2021-12-17)
66

77
### Common
88

99
#### Bug Fixes
1010

11-
- `I236269`, `I333667`, `I336462` Performance Improvements in `Template re-rendering`.
11+
- `I348114` - Peer dependencies issue has been resolved.
12+
- `I334904`, `I347008` - Compatability support for Vue components in Vite js has been resolved.
1213

13-
## 19.2.48 (2021-07-20)
14+
## 19.3.47 (2021-10-26)
1415

1516
### Common
1617

17-
#### New Features
18+
#### Bug Fixes
1819

19-
- Provided `v-for` supprot for array base directives.
20+
- `I345561` - Resolved the data loading issue in the external template.
2021

2122
## 17.4.47 (2020-02-05)
2223

components/base/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-base",
3-
"version": "19.2.57",
3+
"version": "19.4.38",
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",
@@ -24,7 +24,6 @@
2424
"module": "./index.js",
2525
"readme": "ReadMe.md",
2626
"peerDependencies": {
27-
"vue": "2.5.2 - 3.0.5",
2827
"vue-class-component": "^8.0.0-rc.1"
2928
},
3029
"dependencies": {

components/base/src/template.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,17 @@ export function compile(
5757
if (propsData) {
5858
tempRef = (<any>Object).assign(templateCompRef.data(), propsData);
5959
} else {
60-
tempRef = (<any>Object).assign(templateCompRef.data(), dataObj.data)
60+
tempRef = (<any>Object).assign(templateCompRef.data(), dataObj.data);
61+
if(templateCompRef.components){
62+
let objkeys: any = Object.keys(templateCompRef.components) || [];
63+
for(let objstring of objkeys){
64+
let intComponent: any = templateCompRef.components[objstring]
65+
if(intComponent && intComponent.data){
66+
let tempRef2: any = (Object as any).assign(intComponent.data(), dataObj.data);
67+
intComponent.data = function() {return tempRef2};
68+
}
69+
}
70+
}
6171
}
6272
templateCompRef.data = function () { return tempRef; };
6373
allVue

components/buttons/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-
## 19.4.38 (2021-12-17)
5+
## 19.4.40 (2021-12-28)
66

77
### Chips
88

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": "18.25.3",
3+
"version": "19.4.38",
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 19.4.40 (2021-12-28)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I357152` - Legend highlight and selection is now working properly.
12+
513
## 19.4.38 (2021-12-17)
614

715
### 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": "1.158.0",
3+
"version": "19.4.38",
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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 19.4.40 (2021-12-28)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `F171088` - The issue "Multiple selection tool not working properly" has been fixed.
12+
- `SF-353924` - The issue "Drag and drop element from tree-view to Diagram does not behave correctly" has been fixed.
13+
- `SF-333944` - The issue "Exception raises when perform sendBackward with native node" has been fixed.
14+
- `SF-358147` - The issue "Labels are not updated properly after loading the saved JSON" has been fixed.
15+
- `#30924` - The issue "Horizontal scrolling not working properly with trackpad" has been fixed.
16+
- `#31218` - The issue "Pinch zoom not working properly with trackpad in i-Mac" has been fixed.
17+
- `SF-357916` - The issue "Bezier Connector target decorator is not rendered properly at initial rendering" has been fixed.
18+
519
## 19.4.38 (2021-12-17)
620

721
### 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": "19.3.56",
3+
"version": "19.4.38",
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

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,37 @@
22

33
## [Unreleased]
44

5+
## 19.4.40 (2021-12-28)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I347750` - Resolved the hanging issue when pasting large non-formatted content.
12+
- `#I349289`, `#I349128` - Resolved the endnote shifting and overlapping issue.
13+
- `#F171307` - Resolved the track changes issue in editing paragraph inside table.
14+
- `#SF-359156` - Resolved the cropped image issue rendering in header/footer.
15+
- `#SF-356951`, `#F170963`, `#SF-351886`, #`SF-359815`, `#SF-359312` - Resolved the merged cell width rendering issue.
16+
- `#I347523` - Resolved the invalid SFDT generation after pasting formatted content.
17+
- `#SF-357703` - Resolved the table row splitting issue.
18+
519
## 19.4.38 (2021-12-17)
620

721
### Document Editor
822

9-
- `I348089` - Resolved the protected columns, rows, and cells editing issue.
10-
- `I344822` - Word with hyphen characters are now displayed properly.
11-
- `I345558` - Resolved the table layout for the nested table with position.
12-
- `I346408` - Table cell content reversed on undo is now resolved.
13-
- `I346992` - Paragraph with widow/orphan property is now displayed properly.
14-
- `I341119` - Document with image and table with top and bottom wrapping style is now opened properly.
15-
- `I344713`- Resolved table header row rendering issue.
16-
- `I341963`, `#I341840` - Resolved the table rendering issue.
17-
- `I344704` - Resolved issue with tracking changes in empty paragraph.
18-
- `I344351` - Line height is now calculated properly when space character has font size greater than the paragraph mark.
19-
- `I345759`, `#I343106`- Resolved the table border rendering issue.
23+
#### Bug Fixes
24+
25+
- `#I348089` - Resolved the protected columns, rows, and cells editing issue.
26+
- `#I344822` - Word with hyphen characters are now displayed properly.
27+
- `#I345558` - Resolved the table layout for the nested table with position.
28+
- `#I346408` - Table cell content reversed on undo is now resolved.
29+
- `#I346992` - Paragraph with widow/orphan property is now displayed properly.
30+
- `#I341119` - Document with image and table with top and bottom wrapping style is now opened properly.
31+
- `#I344713`- Resolved table header row rendering issue.
32+
- `#I341963`, `#I341840` - Resolved the table rendering issue.
33+
- `#I344704` - Resolved issue with tracking changes in empty paragraph.
34+
- `#I344351` - Line height is now calculated properly when space character has font size greater than the paragraph mark.
35+
- `#I345759`, `#I343106`- Resolved the table border rendering issue.
2036
- `#I343645` - Table grid after width defined as percentage type is now properly exported in server-side.
2137
- `#I341659` - Resolved the list alignment issue.
2238
- `#I347230` - Line spacing value zero is now properly exported in server-side.

0 commit comments

Comments
 (0)