Skip to content

Commit 7524b03

Browse files
author
pipeline
committed
v21.2.6 is released
1 parent e363f59 commit 7524b03

Some content is hidden

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

50 files changed

+583
-31
lines changed

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+
## 21.2.6 (2023-05-23)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I453141` - The issue with "Unable to access the template data inside the external template while using Composition API" has been resolved.
12+
513
## 21.1.41 (2023-04-18)
614

715
### Common

components/base/src/template.ts

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,18 @@ export function compile(
6868
}
6969
let tempRef: any;
7070
if (propsData) {
71-
tempRef = (<any>Object).assign(templateCompRef.data(), propsData);
72-
} else {
73-
tempRef = (<any>Object).assign(templateCompRef.data(), dataObj.data);
71+
if (templateCompRef.setup) {
72+
tempRef = (<any>Object).assign(templateCompRef.setup(null, { expose: function () {}}), propsData);
73+
} else {
74+
tempRef = (<any>Object).assign(templateCompRef.data(), propsData);
75+
}
76+
}
77+
else {
78+
if (templateCompRef.setup) {
79+
tempRef = (<any>Object).assign(templateCompRef.setup(null, { expose: function () {}}), dataObj.data);
80+
} else {
81+
tempRef = (<any>Object).assign(templateCompRef.data(), dataObj.data);
82+
}
7483
if (templateCompRef.components) {
7584
let objkeys: any = Object.keys(templateCompRef.components) || [];
7685
for (let objstring of objkeys) {
@@ -82,6 +91,14 @@ export function compile(
8291
}
8392
}
8493
}
94+
if (templateCompRef.setup) {
95+
templateCompRef.setup = function (__props: any, { expose: __expose }: any) {
96+
__expose();
97+
const __returned__ = tempRef;
98+
Object.defineProperty(__returned__, '__isScriptSetup', { enumerable: false, value: true });
99+
return __returned__;
100+
}
101+
}
85102
templateCompRef.data = function () { return tempRef; };
86103
let app: any = Vue.createApp(templateCompRef);
87104
if (plugins) {
@@ -140,6 +157,12 @@ export function compile(
140157
if (typeof templateFunction !== "function") {
141158
templateFunction = Vue.extend(templateFunction);
142159
}
160+
if (templateFunction.options.setup) {
161+
var variables: any = (<any>Object).assign(templateFunction.options.setup(), dataObj.data);
162+
templateFunction.options.setup = function(__props: any) {
163+
return variables;
164+
};
165+
}
143166
let templateVue: any = new templateFunction(dataObj);
144167
// let templateVue = new Vue(tempObj.template);
145168
// templateVue.$data.data = extend(tempObj.data, data);

components/buttons/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+
## 21.2.6 (2023-05-23)
6+
7+
### RadioButton
8+
9+
#### Bug Fixes
10+
11+
- `#I463728` - The issue with "Provide the boolean value support for radio button while using the v-model property in VUE platform" has been resolved.
12+
13+
## 21.2.5 (2023-05-16)
14+
15+
### RadioButton
16+
17+
#### Bug Fixes
18+
19+
- `#F182133` - The issue with "Ripple element is not destroyed properly while clicking on radio button component" has been resolved.
20+
521
## 21.2.3 (2023-05-03)
622

723
### Switch

components/buttons/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-buttons",
3-
"version": "21.1.37",
3+
"version": "21.2.5",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
### TimePicker
8+
9+
#### Bug Fixes
10+
11+
- `#SF-461465` - Issue with "Time picker dropdown width not responsive to input and icon" has been resolved.
12+
513
## 21.1.41 (2023-04-18)
614

715
### DatePicker
@@ -1256,6 +1264,14 @@ TimePicker component is the pre-filled dropdown list with the time values 12/24
12561264
- **Accessibility** - Provided with built-in accessibility support which helps to access all the TimePicker component features through the keyboard, screen readers, or other assistive technology devices.
12571265

12581266

1267+
## 21.2.5 (2023-05-16)
1268+
1269+
### Calendar
1270+
1271+
#### Bug Fixes
1272+
1273+
- `#I458215` - Issue with "Islamic calendar decade view in the Arabic culture where the years were not being displayed correctly" has been resolved.
1274+
12591275
## 19.1.56 (2021-04-13)
12601276

12611277
### DateRangePicker

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": "21.1.41",
3+
"version": "21.2.5",
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: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#F182033` - The marker is now proper while zooming the chart.
12+
13+
## 21.2.5 (2023-05-16)
14+
15+
### Chart
16+
17+
#### Bug Fixes
18+
19+
- `#F181976` - Now the tooltip is proper when using two axes in a chart.
20+
- `#I451537` - Now, the axis label value is correct when an interval is not given.
21+
- `#I451537` - Fixed an issue where the axis label was not displaying correctly.
22+
- `#I451537` - Now, the secondary axis label will be correctly displayed without an interval.
23+
- `#I452395` - Fixed an issue where the y-axis axis label was displaying double values.
24+
- `#I452390` - Fixed the issue where the axis label was being trimmed despite the shift given to the edgeLabelPlacement.
25+
26+
## 21.2.4 (2023-05-09)
27+
28+
### Chart
29+
30+
#### Bug Fixes
31+
32+
- `#I457088` - Fixed the console error thrown on clicking on the legend.
33+
- `#I459170` - Now the accumulation data label is visible when using a template.
34+
535
## 21.2.3 (2023-05-03)
636

737
### 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": "21.1.41",
3+
"version": "21.2.5",
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: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I464229` - Now, Complex hierarchical tree layout is working fine while injecting line distribution.
12+
13+
## 21.2.5 (2023-05-16)
14+
15+
### Diagram
16+
17+
#### Bug Fixes
18+
19+
- `#I456104` - Now, swimlane child nodes are selectable after save and load.
20+
21+
## 21.2.4 (2023-05-09)
22+
23+
### Diagram
24+
25+
#### Bug Fixes
26+
27+
- `#I456288` - Now, scroller updated properly when we move nodes outside viewport.
28+
- `#I458205` - Now, bezier connector annotation alignment is working properly.
29+
- `#I456037` - Now, while hovering the port with single select and ZoomPan constraints drawing tool enabled.
30+
531
## 21.2.3 (2023-05-03)
632

733
### 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": "21.1.39",
3+
"version": "21.2.5",
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: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,55 @@
22

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I455945` - Resolved the issue in Shape position.
12+
- `#I457467` - Now, getStyle() API will return the paragraph format.
13+
- `#I454858` - Resolved the image missing issue in footer.
14+
- `#I451667` - Horizontal scroll bar is not update properly based on cursor position.
15+
- `#I457039` - Resolved the console error while giving accept all.
16+
- `#I453407` - Resolved the script error when loading the document with smileys.
17+
18+
#### New Features
19+
20+
- `#I448978` - Added preservation support for text wrapping break.
21+
- `#F179297` - Added navigation support between the multiple comments in a single line while clicking the comment icon.
22+
- `#I433546` - Added support to show start and end markers for restricted range.
23+
- `#I450206` - Added support to restrict maximum number of columns when creating a table.
24+
25+
## 21.2.5 (2023-05-16)
26+
27+
### Document Editor
28+
29+
#### Bug Fixes
30+
31+
- `#I449912` - Resolved layout issue while opening document.
32+
- `#I450342` - Resolved the wrong Font issue while opening a document.
33+
- `#I458331` - Resolved the paragraph combine issue when insert and delete comment.
34+
- `#I458334` - Cursor position issue is resolved when shift enter key is pressed.
35+
- `#I449581` - Resolved the script error when loading the track changes document with author field empty
36+
- `#I452303` - Layout issue is now not occurred when editing the document.
37+
- `#I452150` - Resolved the hanging issue when opening the attached document.
38+
- `#I453495` - Resolved the Overlapping issue when we do enter/page break before the shape.
39+
- `#I453196` - Resolved the issue in when perform undo action for Arabic content
40+
- `#I454659` - Resolved the issue occurred when performing track changes for Arabic content.
41+
- `#I449049` - A performance issue is resolved when typing inside the table.
42+
43+
## 21.2.4 (2023-05-09)
44+
45+
### Document Editor
46+
47+
#### Bug Fixes
48+
49+
- `#I451421` - Resolved the issue with list indentation.
50+
- `#I450834` - Resolved the Script issue while opening SFDT.
51+
- `#I452243` - Resolved the issue with modifying the style in existing styles.
52+
- `#I449324` - Resolved the issue occurred while exporting the document in the .docx format.
53+
554
## 21.2.3 (2023-05-03)
655

756
### Document Editor

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": "21.1.41",
3+
"version": "21.2.5",
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: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,39 @@
22

33
## [Unreleased]
44

5+
## 21.2.6 (2023-05-23)
6+
7+
- `#I451885` - Resolved the performance issue when multiselect component is rendered with large number of data.
8+
9+
## 21.2.5 (2023-05-16)
10+
11+
### ListBox
12+
13+
#### Bug Fixes
14+
15+
- `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
16+
17+
### DropDownList
18+
19+
#### Bug Fixes
20+
21+
- `I460077` - Issue with "The popup is not closing properly when the focus is moved between two dropdowns" has been resolved.
22+
23+
### ComboBox
24+
25+
#### Bug Fixes
26+
27+
- `#I452948` - "The memory leak issue detected in the combobox component within the detach element tab of the Edge browser" has been resolved.
28+
29+
## 21.2.4 (2023-05-09)
30+
31+
### ListBox
32+
33+
#### Bug Fixes
34+
35+
- `#I453746` - Issue with "Selected items not focusing properly in listbox while using selectItems method" has been resolved.
36+
- `#I461307` - Issue with "No Records Template not renders properly when we set the default string in listbox" has been resolved.
37+
538
## 21.2.3 (2023-05-03)
639

740
### ListBox

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

components/filemanager/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+
## 21.2.5 (2023-05-16)
6+
7+
### File Manager
8+
9+
#### Bug fixes
10+
11+
- `#I458668` - The issue, replace dialog shows when uploading the same file to different directories in File Manager with the SQL File Provider has been resolved.
12+
- `#I464322` - The issue with `fileOpen` event in the File Manager component has been resolved.
13+
14+
- `#I464322` - The issue with `fileOpen` event in the File Manager component has been resolved.
15+
516
## 21.2.3 (2023-05-03)
617

718
### File Manager

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

0 commit comments

Comments
 (0)