Skip to content

Commit c021b9d

Browse files
author
pipeline
committed
v21.1.41 is released
1 parent 9e3b794 commit c021b9d

Some content is hidden

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

46 files changed

+249
-35
lines changed

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.1.41 (2023-04-18)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I450987`, `#I446640`, `#I181430`, `#FB42508` - The issue with "DocumentEditor performance lag in Vue 3 applications" has been resolved.
12+
- `#I445940` - The issue with "Can't initialize data with a prop value in the Vue 3 template" has been resolved.
13+
514
## 21.1.38 (2023-04-04)
615

716
### Common

components/base/src/component-base.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export let ComponentBase = vueDefineComponent({
1717
name: 'ComponentBase',
1818
data() {
1919
return {
20-
ej2Instances: {} as any,
2120
tagMapper: {} as any,
2221
tagNameMapper: {} as any,
2322
hasInjectedModules: false as boolean,
@@ -28,6 +27,9 @@ export let ComponentBase = vueDefineComponent({
2827
}
2928
},
3029
created(): void {
30+
if (this.ej2Instance) {
31+
this.ej2Instances = this.isVue3 ? aVue.toRaw(this.ej2Instance) : this.ej2Instance;
32+
}
3133
if (!this.propKeys) {
3234
return
3335
}

components/base/src/template.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ export function compile(
7676
for (let objstring of objkeys) {
7777
let intComponent: any = templateCompRef.components[`${objstring}`]
7878
if (intComponent && intComponent.data) {
79-
let tempRef2: any = (Object as any).assign(intComponent.data(), dataObj.data);
80-
intComponent.data = function() { return tempRef2 };
79+
if (!intComponent.__data) intComponent.__data = intComponent.data;
80+
intComponent.data = function(proxy: any) { return (Object as any).assign(intComponent.__data.call(proxy), dataObj.data) };
8181
}
8282
}
8383
}

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-
## 21.1.39 (2023-04-11)
5+
## 21.1.41 (2023-04-18)
66

77
### Checkbox
88

components/calendars/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
## [Unreleased]
44

5-
## 21.1.39 (2023-04-11)
5+
## 21.1.41 (2023-04-18)
6+
7+
### DatePicker
8+
9+
#### Bug Fixes
10+
11+
- `#453318` - Issue with "Placeholder text not get displayed on initial render with strict mode true case of the datepicker component."
12+
13+
## 21.1.38 (2023-04-04)
614

715
### DatePicker
816

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.30.15",
3+
"version": "21.1.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: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,34 @@
22

33
## [Unreleased]
44

5+
## 21.1.41 (2023-04-18)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I451521` - Now, the border is proper in the funnel and pyramid series.
12+
- `#I453698` - Cross shape marker now displays correctly in Scatter Series.
13+
- `#I439673` - The `enableTextWrap` property of the tooltip is now working properly in the pie chart.
14+
- `#I452390` - Fixed the issue where the axis label was not properly visible.
15+
- `#I447639` - Tooltip format now displays properly when using the axis label format.
16+
- `#I453698` - The legend shape now reflects the marker shape in scatter series.
17+
518
## 21.1.39 (2023-04-11)
619

720
### Chart
821

922
#### Bug Fixes
1023

24+
- `#I451537` - Now, the column chart rectangle is properly rendering for OnTicks.
25+
- `#I452148` - The chart now renders correctly even when the x value is set to an empty string in the data source.
26+
27+
## 21.1.38 (2023-04-04)
28+
29+
### Chart
30+
31+
#### Bug Fixes
32+
1133
- `#I449076` - Data labels are now displayed properly in the HiloOpenClose chart.
1234
- `#I444669` - Line width of the series is now updating properly while using useState method.
1335
- `#I444557` - Legend is now rendering properly on the top position without overlapping with axis label.

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": "21.1.37",
3+
"version": "21.1.39",
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/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": "21.1.37",
3+
"version": "21.1.39",
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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## 21.1.41 (2023-04-18)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#SF-447180` - Resolved Allow row to break across pages issue.
12+
- `#SF-439301` - Resolved Textbox and picture is not preserved properly in Header.
13+
- `#SF-442538` - Resolved the script error while updating table of contents.
14+
- `#SF-447249` - Resolved issue in default character format.
15+
- `#SF-447180` - Resolved Layouting issue while opening the document.
16+
- `#SF-447117` - Resolved the issue with the replacement of the incorrect word.
17+
- `#SF-444154` - Resolved the text is not preserved while drag and drop.
18+
- `#SF-452497` - Resolved the script error while pasting images with text content.
19+
520
## 21.1.39 (2023-04-11)
621

722
### Document Editor

0 commit comments

Comments
 (0)