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.

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": "19.23.6",
3+
"version": "19.4.38",
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/filemanager/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
### File Manager
88

components/gantt/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
### Gantt
88

components/grids/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
### Grid
88

components/inputs/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-inputs",
3-
"version": "18.42.2",
3+
"version": "19.4.38",
44
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/kanban/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
### Kanban
88

components/lists/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
### ListBase
88

components/maps/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-maps",
3-
"version": "16.34.3",
3+
"version": "19.4.38",
44
"description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/navigations/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+
### Context Menu
8+
9+
#### Bug Fixes
10+
11+
- `#I346314` - Issue with stopPropagation not works for context menu has been resolved.
12+
513
## 19.4.38 (2021-12-17)
614

715
### Tab

components/navigations/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-navigations",
3-
"version": "19.20.6",
3+
"version": "19.4.38",
44
"description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/pdfviewer/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
### PDF Viewer
88

components/pivotview/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
### Pivot Table
88

components/popups/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
### Tooltip
88

components/richtexteditor/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
### RichTextEditor
88

components/schedule/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
### Schedule
88

components/splitbuttons/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
### DropDownButton
88

components/spreadsheet/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 19.4.40 (2021-12-28)
6+
7+
### Spreadsheet
8+
9+
#### New Features
10+
11+
- `I345022` - Alphanumeric support provided for autofill operation.
12+
13+
#### Bug Fixes
14+
15+
- `SF-358411` - Cancelling the replace and replace all actions not working issue resolved. `actionBegin` and `actionComplete` event for `replace` action, the argument property name is changed as below.
16+
17+
- Previous name | Current name
18+
- -----|-----
19+
- `compareVal` | `compareValue`
20+
- `SF-357609` - Filters added on empty cells which are outside the used range issue resolved.
21+
- `SF-359059` - Console error on performing filter by cell value operation in cut cell issue resolved.
22+
- `I347810` - Performance issue while paste 100000 cells in Spreadsheet is resolved.
23+
- `I348364` - Script error while use freeze pane with \n in cell value issue is resolved.
24+
- `F171230` - Cannot prevent pasting format using actionBegin while using Ctrl+V shortcut is resolved.
25+
- `I346033` - Today formula is not working on import issue has been fixed.
26+
- `I346033` - Custom currency format is not applied for zero value issue has been fixed.
27+
- `I346033` - Text formula is not working with `ddd` format issue has been fixed.
28+
- `I346033` - Adding some value to multiplied range which contains empty cell issue has been fixed.
29+
530
## 19.4.38 (2021-12-17)
631

732
### Spreadsheet

components/spreadsheet/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-spreadsheet",
3-
"version": "19.55.2",
3+
"version": "19.4.38",
44
"description": "Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/treegrid/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-treegrid",
3-
"version": "18.14.6",
3+
"version": "19.4.38",
44
"description": "Essential JS 2 TreeGrid Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)