Skip to content

Commit 422f496

Browse files
author
pipeline
committed
v20.4.40 is released
1 parent ded34e5 commit 422f496

Some content is hidden

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

57 files changed

+449
-534
lines changed

components/barcodegenerator/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@
4444
"typescript": "2.3.4"
4545
},
4646
"keywords": [
47-
"ej2",
48-
"Syncfusion",
49-
"web-components",
50-
"barcode",
5147
"angular",
5248
"ng",
5349
"ng-barcodes",

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+
## 20.4.40 (2022-12-28)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I426526`, `#I421906` - The issue with the delay rendering of controls in the `ngAfterViewInit` hook has been resolved.
12+
513
## 20.3.47 (2022-09-29)
614

715
### Common

components/base/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-angular-base",
3-
"version": "19.10.0",
3+
"version": "20.4.38",
44
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/base/src/form-base.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ export class FormBase<T> implements ControlValueAccessor {
9292
// Used setTimeout for template binding
9393
// Refer Link: https://github.com/angular/angular/issues/6005
9494
// Removed setTimeout, Because we have called markForCheck() method in Angular Template Compiler
95-
setTimeout(() => {
9695
/* istanbul ignore else */
9796
if (typeof window !== 'undefined') {
9897
tempFormAfterViewThis.appendTo(tempFormAfterViewThis.element);
@@ -101,7 +100,6 @@ export class FormBase<T> implements ControlValueAccessor {
101100
ele.addEventListener('blur', tempFormAfterViewThis.ngOnBlur.bind(tempFormAfterViewThis));
102101
}
103102
this.isFormInit = false;
104-
});
105103
}
106104
public setDisabledState(disabled: boolean): void {
107105
this.enabled = !disabled;

components/base/src/template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function compile(templateEle: AngularElementType, helper?: Object):
2121
/* istanbul ignore next */
2222
let conRef: ViewContainerRef = contRef ? contRef : component.viewContainerRef;
2323
let viewRef: EmbeddedViewRef<Object> = conRef.createEmbeddedView(templateEle as TemplateRef<Object>, context);
24-
viewRef.detectChanges();
24+
viewRef.markForCheck();
2525
/* istanbul ignore next */
2626
let viewCollection: { [key: string]: EmbeddedViewRef<Object>[] } = (component && component.registeredTemplate) ?
2727
component.registeredTemplate : getValue('currentInstance.registeredTemplate', conRef);

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 20.4.38 (2022-12-21)
5+
## 20.4.40 (2022-12-28)
6+
7+
### Chips
8+
9+
#### Bug Fixes
10+
11+
- `#I422262` - Added the aria-disabled attribute to the disabled Chip items.
612

713
### Floating Action Button `Preview`
814

components/buttons/package.json

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -44,34 +44,6 @@
4444
"typescript": "2.3.4"
4545
},
4646
"keywords": [
47-
"ej2",
48-
"syncfusion",
49-
"ej2-buttons",
50-
"button",
51-
"ej2 button",
52-
"checkbox",
53-
"ej2 checkbox",
54-
"checkboxes",
55-
"radio button",
56-
"radiobutton",
57-
"radiobuttons",
58-
"ej2 radiobutton",
59-
"switch",
60-
"ej2 switch",
61-
"primary button",
62-
"flat button",
63-
"round button",
64-
"icon button",
65-
"togglebutton",
66-
"toggle button",
67-
"form control",
68-
"form controls",
69-
"input",
70-
"fab",
71-
"floating button",
72-
"floating action button",
73-
"speeddial",
74-
"floating menu",
7547
"angular",
7648
"ng",
7749
"ej2-ng-buttons",

components/calendars/package.json

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -44,42 +44,6 @@
4444
"typescript": "2.3.4"
4545
},
4646
"keywords": [
47-
"ej2",
48-
"syncfusion",
49-
"web-components",
50-
"calendar",
51-
"date",
52-
"time",
53-
"datetime",
54-
"daterange",
55-
"culture",
56-
"month",
57-
"year",
58-
"decade",
59-
"timepicker",
60-
"strict-mode",
61-
"step",
62-
"interval",
63-
"min",
64-
"max",
65-
"globalization",
66-
"datepicker",
67-
"daterangepicker",
68-
"datetimepicker",
69-
"enable-persistence",
70-
"locale",
71-
"value",
72-
"format",
73-
"week-number",
74-
"enable-rtl",
75-
"presets",
76-
"min-days",
77-
"max-days",
78-
"start-date",
79-
"end-date",
80-
"time-format",
81-
"rangepicker",
82-
"month-picker",
8347
"angular",
8448
"ng",
8549
"ng-calendars",

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.4.40 (2022-12-28)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I423644` - Now axis label is aligned properly when minimum value is high.
12+
- `#I423606` - Trendline is now proper for zero values,
13+
- `#I424547` - Now zooming the multi colored line is working properly.
14+
515
## 20.4.38 (2022-12-21)
616

717
### Chart

components/charts/package.json

Lines changed: 11 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -44,38 +44,18 @@
4444
"typescript": "2.3.4"
4545
},
4646
"keywords": [
47-
"ej2-chart",
48-
"chart",
49-
"pie",
50-
"ej2-pie",
51-
"accumulation-chart",
52-
"ej2-rangeNavigator",
53-
"rangenavigator",
54-
"stockchart",
55-
"accumulation",
56-
"syncfusion",
57-
"web-components",
58-
"Javascript",
59-
"Typescript",
60-
"data",
61-
"sparkline",
62-
"Sparkline ej2-smithchart",
63-
"smithchart",
64-
"bulletchart",
65-
"syncfusion",
6647
"angular",
67-
"ng-charts",
68-
"ej2-ng-charts",
69-
"ng-accumulationchart",
70-
"ej2-ng-accumulationchart",
71-
"ng-rangenavigator",
72-
"ej2-ng-rangenavigator",
73-
"ng-sparkline",
74-
"ej2-ng-sparkline",
75-
"ng-smithchart",
76-
"ej2-ng-smithchart",
77-
"ng-bulletchart",
78-
"ej2-ng-bulletchart"
48+
"angular-charts",
49+
"angular-accumulation-chart",
50+
"angular-pie-chart",
51+
"angular-stock-chart",
52+
"angular-rangenavigator",
53+
"angular-rangeselector",
54+
"angular-sparkline",
55+
"angular-sparkline-chart",
56+
"angular-smith-chart",
57+
"angular-bullet-chart",
58+
"angular-bullet-graph"
7959
],
8060
"repository": {
8161
"type": "git",

components/circulargauge/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
## [Unreleased]
77

8-
## 20.4.38 (2022-12-21)
8+
## 20.4.40 (2022-12-28)
99

1010
### Circular Gauge
1111

components/circulargauge/package.json

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -44,31 +44,6 @@
4444
"typescript": "2.3.4"
4545
},
4646
"keywords": [
47-
"ej2",
48-
"syncfusion",
49-
"ej2-circulargauge",
50-
"typescript",
51-
"javascript",
52-
"circular",
53-
"gauge",
54-
"arc-gauge",
55-
"radial-gauge",
56-
"semi-circular-gauge",
57-
"quarter-circular-gauge",
58-
"half-gauge",
59-
"quarter-gauge",
60-
"scale",
61-
"range",
62-
"multiple-ranges",
63-
"axis",
64-
"needle",
65-
"pointer",
66-
"multiple-pointers",
67-
"ticks",
68-
"labels",
69-
"annotation",
70-
"animation",
71-
"template",
7247
"angular",
7348
"ng-circulargauge",
7449
"ej2-ng-circulargauge"

components/diagrams/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-
## 20.4.38 (2022-12-21)
5+
## 20.4.40 (2022-12-28)
66

77
### Diagram
88

components/diagrams/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@
4444
"typescript": "2.3.4"
4545
},
4646
"keywords": [
47-
"ej2",
48-
"Syncfusion",
49-
"web-components",
50-
"diagram",
5147
"angular",
5248
"ng",
5349
"ng-diagrams",

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 20.4.38 (2022-12-21)
5+
## 20.4.40 (2022-12-28)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I421680` - Resolved the paragraph overlapping and border issue while opening the attached document.
12+
- `#I424498` - Attached document with hyperlink text is now displayed properly.
13+
- `#I425696` - Resolved the overlap issue in options pane.
14+
15+
## 20.3.60 (2022-12-06)
16+
17+
### Document Editor
18+
19+
#### Bug Fixes
20+
21+
- `#I418719` - Resolved the issue with removing bookmark element.
22+
- `#I420043` - Table of content (TOC) is now updated properly.
23+
24+
## 20.3.59 (2022-11-29)
25+
26+
### Document Editor
27+
28+
#### Bug Fixes
29+
30+
- `#I417535` - The page number is not updated properly while inserting TOC.
31+
- `#I418000` , `#F178993` - Resolved the tab character width issue.
32+
33+
## 20.3.58 (2022-11-22)
34+
35+
### Document Editor
36+
37+
#### Bug Fixes
38+
39+
- `#I417708` - Comment with multiple paragraph is now exported properly.
40+
- `#I414849` - Textbox with no outline is now exported properly.
41+
- `#I419171` - Resolved the script error while discarding the unposted comment.
42+
- `#I417911` - Resolved the consecutive symbol selection issue while selecting text with white spaces.
43+
- `#I418127` - Image width and height is now resized to fit inside the page width.
44+
- `#I417899` - Table borders are now removed when border style set as none.
45+
- `#I417257` - Ordinal number format is now preserved properly in exported word document.
46+
- `#F178501` - Resolved document corruption issue due to insert revision not serialized properly.
47+
48+
## 20.3.57 (2022-11-15)
49+
50+
### Document Editor
51+
52+
#### Bug Fixes
53+
54+
- `#I415922` - Resolved the browser hanging issue while opening the document.
55+
- `#I415359` - Resolved the table layouting issue while resizing the table.
56+
- `#I414775` - Resolved the layouting issue while inserting page break.
57+
- `#I414224` - Table resizing is now working properly in header/footer.
58+
- `#I413303`, `#I417629` - Resolved the script error while opening the word document.
59+
- `#I413477` - Resolved the script error while deleting text with comment.
60+
- `#F178063` - Scrolling on bookmark navigation is now working similar to Microsoft Word.
61+
62+
## 20.3.56 (2022-11-08)
63+
64+
### Document Editor
65+
66+
#### Bug Fixes
67+
68+
- `#FB37929` - Resolved the exception while exporting the document with duplicate character style.
69+
- `#I412146` - Resolved the script error while opening the document.
70+
- `#I408099` - Resolved the list numbering issue.
71+
- `#I412284` - Table border is now rendering properly.
72+
- `#I413316` - Resolved the script error while deleting content of few pages.
73+
- `#I414066` - Resolved the script error while modifying locale key.
74+
- `#I412817` - Formatting is now applied properly in track changes protection mode.
75+
- `#I413284` - Strike through is now properly skipped for trailing space characters like Microsoft Word.
76+
- `#I412529` - Resolved the script error while opening html document with nested list.
77+
78+
#### New Features
79+
80+
- `#I297837`, `#I336116`, `#I342219`, `#I346980`, `#F164814`, `#F168911` - Improved the display of the RTL text in a bi-directional layout.
81+
82+
## 20.3.52 (2022-10-26)
83+
84+
### Document Editor
85+
86+
#### Bug Fixes
87+
88+
- `#I410179` - Cell background color is now rendering properly.
89+
- `#I411016` - List numbering is now rendered properly.
90+
- `#I411008` - Paragraph border is now rendering properly.
91+
- `#FB37770` - Resolved the script error while printing the document.
92+
- `#I409887` - Replacing text with bookmark is now working properly.
93+
94+
## 20.3.50 (2022-10-18)
95+
96+
### Document Editor
97+
98+
#### Bug Fixes
99+
100+
- `#I410296` - Tooltip for the show/hide properties button is now updated properly.
101+
- `#I407021` - Table properties are now reverted properly on undo/redo.
102+
- `#I408686` - Comments pane is now switching properly while adding comment.
103+
- `#I409821` - Resolved the next paragraph deletion issue while switching paste option.
104+
- `#I408431` - Resolved the script error while opening the document with track changes.
105+
- `#I409991` - Resolved the table layouting issue.
106+
- `#I407092` - Resolved the paragraph border rendering issue.
107+
- `#I410940` - Resolved the script error while merging cells in header/footer.
108+
109+
## 20.3.49 (2022-10-11)
6110

7111
### Document Editor
8112

0 commit comments

Comments
 (0)