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",

0 commit comments

Comments
 (0)