Skip to content

Commit 08dac8f

Browse files
author
pipeline
committed
v20.3.48 is released
1 parent 08457f5 commit 08dac8f

Some content is hidden

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

68 files changed

+3650
-1429
lines changed

components/base/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 20.3.48 (2022-10-05)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I400596` - The issue with "Tab throwing script error while enabling a tab item using `v-if`" has been resolved.
12+
513
## 20.3.47 (2022-09-29)
614

715
### Common

components/base/src/component-base.ts

+5-8
Original file line numberDiff line numberDiff line change
@@ -267,15 +267,12 @@ import Vue from 'vue';
267267
tempObj[key] = childSlot.props[key];
268268
});
269269
}
270-
if ((/[s]\b/).test(tagRef) && innerDirValues) {
271-
if (!(/[s]\b/).test(tagName) || innerDirValues.length) {
272-
items[tagName] = tempObj;
273-
} else {
274-
items[tagName].push(tempObj);
275-
}
276-
} else {
270+
if (((/[s]\b/).test(tagRef) && innerDirValues) && (!(/[s]\b/).test(tagName) || innerDirValues.length)) {
271+
items[tagName] = tempObj;
272+
}
273+
else if (tempObj && Object.keys(tempObj).length !== 0) {
277274
items[tagName].push(tempObj);
278-
}
275+
}
279276
}
280277
return items;
281278
}

components/buttons/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 20.3.47 (2022-09-29)
5+
## 20.3.48 (2022-10-05)
66

77
### Floating Action Button `Preview`
88

components/calendars/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 20.3.47 (2022-09-29)
5+
## 20.3.48 (2022-10-05)
66

77
### DateRangePicker
88

components/charts/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 20.3.47 (2022-09-29)
5+
## 20.3.48 (2022-10-05)
66

77
### Chart
88

components/circulargauge/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
## [Unreleased]
77

8-
## 20.3.47 (2022-09-29)
8+
## 20.3.48 (2022-10-05)
99

1010
### Circular Gauge
1111

components/diagrams/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 20.3.47 (2022-09-29)
5+
## 20.3.48 (2022-10-05)
66

77
### Diagram
88

components/documenteditor/CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
22

33
## [Unreleased]
44

5+
## 20.3.48 (2022-10-05)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I400154` - Handled selecting consecutive special character on double click.
12+
- `#I400506` - Handled selection while navigating the page using page down/ page up.
13+
- `#I403371` - Resolved the inline shape alignment issue.
14+
- `#I404840` - Resolved the browser hanging issue while changing the line spacing.
15+
- `#I401957` - Resolved the script error while inserting the table.
16+
- `#I403238` - Newly added custom style is now updated properly in properties pane.
17+
- `#I401826` - Resolved the pagination issue on the exported word document.
18+
- `#I408407`. `#I403326` - Resolved the script error while deleting the content.
19+
- `#I379655` - Newly added paragraph is now removed properly while rejecting the changes.
20+
- `#I403248` - Resolved script error while deleting the text with comment.
21+
- `#I401520` - Underline format is now preserved properly in exported word document.
22+
- `#F175079` - Resolved search issue in splitted table cell.
23+
24+
- `#I400154` - Handled selecting consecutive special character on double click.
25+
- `#I400506` - Handled selection while navigating the page using page down/ page up.
26+
- `#I403371` - Resolved the inline shape alignment issue.
27+
- `#I404840` - Resolved the browser hanging issue while changing the line spacing.
28+
- `#I401957` - Resolved the script error while inserting the table.
29+
- `#I403238` - Newly added custom style is now updated properly in properties pane.
30+
- `#I401826` - Resolved the pagination issue on the exported word document.
31+
- `#I408407`. `#I403326` - Resolved the script error while deleting the content.
32+
- `#I379655` - Newly added paragraph is now removed properly while rejecting the changes.
33+
- `#I403248` - Resolved script error while deleting the text with comment.
34+
- `#I401520` - Underline format is now preserved properly in exported word document.
35+
536
## 20.3.47 (2022-09-29)
637

738
### Document Editor

components/dropdowns/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 20.3.48 (2022-10-05)
6+
7+
### Mention
8+
9+
#### Bug Fixes
10+
11+
- Issue with `Localization` and `Accessibility` has been resolved.
12+
513
## 20.3.47 (2022-09-29)
614

715
### Mention

components/dropdowns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-dropdowns",
3-
"version": "18.51.0",
3+
"version": "20.3.47",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)