Skip to content

Commit 7b5150c

Browse files
author
pipeline
committed
v19.2.48 is released
1 parent bab3998 commit 7b5150c

Some content is hidden

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

52 files changed

+212
-112
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+
## 19.2.48 (2021-07-20)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `I331403,I334510` - Resolved `dynamic property` change not working for complex directives.
12+
- `I333399` - Resolved `dynamic property` change not working for `equal` length properties.
13+
514
## 19.1.66 (2021-06-01)
615

716
### Common

components/base/src/complex-array-base.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ export class ArrayBase<T> {
207207
isSourceChanged = (JSON.stringify(this.list[i].propCollection.dataSource) !==
208208
JSON.stringify(childrenDataSource[i].propCollection.dataSource));
209209
}
210+
isSourceChanged = this.list[i].hasChanges !== childrenDataSource[i].hasChanges;
210211
}
211212
}
212213

components/base/src/component-base.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ export class ComponentBase<T> {
261261
tempAfterContentThis.setProperties(propObj, tagObject.instance.isInitChanges);
262262
} else {
263263
/* istanbul ignore next */
264-
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || (tempAfterContentThis.getModuleName() === 'diagram')) {
264+
if ((tempAfterContentThis[tagObject.name].length !== tagObject.instance.list.length) || /diagram|DashboardLayout/.test(tempAfterContentThis.getModuleName())) {
265265
tempAfterContentThis[tagObject.name] = tagObject.instance.list;
266266
}
267267
for (let list of tagObject.instance.list) {
@@ -271,7 +271,7 @@ export class ComponentBase<T> {
271271
complexTemplates = complexTemplates.filter((val: string): boolean => {
272272
return /Ref$/i.test(val);
273273
});
274-
if (curChild.properties && Object.keys(curChild.properties).length !== 0 && /chart/.test(tempAfterContentThis.getModuleName())){
274+
if (curChild.properties && Object.keys(curChild.properties).length !== 0 && /chart|kanban/.test(tempAfterContentThis.getModuleName())){
275275
for (let complexPropName of complexTemplates) {
276276
complexPropName = complexPropName.replace(/Ref/, '');
277277
curChild.properties[complexPropName] = !curChild.properties[complexPropName] ?

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-
## 19.2.47 (2021-07-13)
5+
## 19.2.48 (2021-07-20)
66

77
### Checkbox
88

components/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 19.2.47 (2021-07-13)
6-
7-
### DatePicker
8-
9-
#### Bug Fixes
10-
11-
- `#I334467` - Issue with "input is not disabled while disabling the `formControlName` using form group" has been resolved.
12-
135
## 19.2.44 (2021-06-30)
146

157
### DatePicker
@@ -1217,6 +1209,14 @@ TimePicker component is the pre-filled dropdown list with the time values 12/24
12171209
- **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.
12181210

12191211

1212+
## 19.2.47 (2021-07-13)
1213+
1214+
### DatePicker
1215+
1216+
#### Bug Fixes
1217+
1218+
- `#I334467` - Issue with "input is not disabled while disabling the `formControlName` using form group" has been resolved.
1219+
12201220
## 19.1.64 (2021-05-19)
12211221

12221222
### 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-angular-calendars",
3-
"version": "19.2.46",
3+
"version": "19.2.47",
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 Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/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-
## 19.2.47 (2021-07-13)
5+
## 19.2.48 (2021-07-20)
66

77
### Chart
88

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-
## 19.2.47 (2021-07-13)
8+
## 19.2.48 (2021-07-20)
99

1010
### CircularGauge
1111

components/diagrams/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+
## 19.2.48 (2021-07-20)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I330099` - The issue "The ports outEdges is not updated when cancel the port draw connector addition" has been fixed.
12+
- `I324505` - The issue "An exception will raise while sending the node front to the group " has been fixed.
13+
514
## 19.2.46 (2021-07-06)
615

716
### Diagram

components/diagrams/src/diagram/connector-annotation.directive.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ export class ConnectorAnnotationDirective extends ComplexBase<ConnectorAnnotatio
4141
* Allows the user to save custom information/data about an annotation
4242
*
4343
* @aspdefaultvalueignore
44-
* @blazordefaultvalueignore
4544
* @default undefined
4645
*/
4746
public addInfo: any;
@@ -66,7 +65,6 @@ export class ConnectorAnnotationDirective extends ComplexBase<ConnectorAnnotatio
6665
* * InheritReadOnly - Enables/Disables the InheritReadOnly Constraints
6766
* @default 'InheritReadOnly'
6867
* @aspnumberenum
69-
* @blazornumberenum
7068
*/
7169
public constraints: any;
7270
/**
@@ -89,7 +87,6 @@ export class ConnectorAnnotationDirective extends ComplexBase<ConnectorAnnotatio
8987
/**
9088
* Sets the height of the text
9189
* @aspdefaultvalueignore
92-
* @blazordefaultvalueignore
9390
* @default undefined
9491
*/
9592
public height: any;
@@ -107,7 +104,6 @@ export class ConnectorAnnotationDirective extends ComplexBase<ConnectorAnnotatio
107104
* Sets the hyperlink of the label
108105
*
109106
* @aspdefaultvalueignore
110-
* @blazordefaultvalueignore
111107
* @default undefined
112108
*/
113109
public hyperlink: any;
@@ -139,7 +135,6 @@ export class ConnectorAnnotationDirective extends ComplexBase<ConnectorAnnotatio
139135
/**
140136
* Defines the appearance of the text
141137
* @default new TextStyle()
142-
* @blazortype AnnotationStyle
143138
*/
144139
public style: any;
145140
/**
@@ -165,7 +160,6 @@ export class ConnectorAnnotationDirective extends ComplexBase<ConnectorAnnotatio
165160
/**
166161
* Sets the width of the text
167162
* @aspdefaultvalueignore
168-
* @blazordefaultvalueignore
169163
* @default undefined
170164
*/
171165
public width: any;

0 commit comments

Comments
 (0)