Skip to content

Commit 78827ed

Browse files
author
pipeline
committed
v19.1.55 is released
1 parent 9b7264d commit 78827ed

File tree

173 files changed

+2931
-597
lines changed

Some content is hidden

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

173 files changed

+2931
-597
lines changed

controls/base/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.1.54 (2021-03-30)
5+
## 19.1.55 (2021-04-06)
66

77
### Common
88

controls/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-calendars",
3-
"version": "17.2.48",
3+
"version": "19.1.54",
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.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/calendars/src/datepicker/datepicker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2057,6 +2057,7 @@ export class DatePicker extends Calendar implements IInput {
20572057
}
20582058
}
20592059
this.isInteracted = true;
2060+
this.preventChange = this.isAngular && this.preventChange ? !this.preventChange : this.preventChange;
20602061
break;
20612062
case 'format':
20622063
this.checkFormat();
@@ -2137,7 +2138,6 @@ export class DatePicker extends Calendar implements IInput {
21372138
this.hide(null);
21382139
}
21392140
this.isDynamicValueChanged = false;
2140-
this.preventChange = this.isAngular && this.preventChange ? !this.preventChange : this.preventChange;
21412141
}
21422142
}
21432143
}

controls/calendars/src/daterangepicker/daterangepicker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4667,6 +4667,7 @@ export class DateRangePicker extends CalendarBase {
46674667
this.updateHeader();
46684668
this.applyButton.disabled = this.applyButton.element.disabled = false;
46694669
}
4670+
this.preventChange = this.isAngular && this.preventChange ? !this.preventChange : this.preventChange;
46704671
break;
46714672
case 'minDays':
46724673
this.setProperties({ minDays: newProp.minDays }, true);
@@ -4712,7 +4713,6 @@ export class DateRangePicker extends CalendarBase {
47124713
this.refreshChange();
47134714
break;
47144715
}
4715-
this.preventChange = this.isAngular && this.preventChange ? !this.preventChange : this.preventChange;
47164716
}
47174717
}
47184718
}

controls/calendars/src/datetimepicker/datetimepicker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1746,6 +1746,7 @@ export class DateTimePicker extends DatePicker {
17461746
this.previousDateTime = new Date(this.inputElement.value);
17471747
this.updateInput();
17481748
this.changeTrigger(null);
1749+
this.preventChange = this.isAngular && this.preventChange ? !this.preventChange : this.preventChange;
17491750
break;
17501751
case 'min':
17511752
case 'max':
@@ -1829,7 +1830,6 @@ export class DateTimePicker extends DatePicker {
18291830
this.hide(null);
18301831
}
18311832
this.isDynamicValueChanged = false;
1832-
this.preventChange = this.isAngular && this.preventChange ? !this.preventChange : this.preventChange;
18331833
}
18341834
}
18351835
/**

controls/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.1.54 (2021-03-30)
5+
## 19.1.55 (2021-04-06)
66

77
### Chart
88

controls/circulargauge/CHANGELOG.md

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

55
## [Unreleased]
66

7-
## 19.1.54 (2021-03-30)
7+
## 19.1.55 (2021-04-06)
88

99
### CircularGauge
1010

controls/compression/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.1.54 (2021-03-30)
5+
## 19.1.55 (2021-04-06)
66

77
### Compression
88

controls/data/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 19.1.55 (2021-04-06)
6+
7+
### DataManager
8+
9+
#### Bug Fixes
10+
11+
- `#F163538`, `#I320452` - Blank row issue while adding new record with `RemoteSaveAdaptor` has been fixed.
12+
513
## 19.1.54 (2021-03-30)
614

715
### DataManager
@@ -16,7 +24,7 @@
1624

1725
#### Bug Fixes
1826

19-
- `312017` - `RemoteSaveAdaptor` with batch editing issue has been fixed has been fixed.
27+
- `312017` - `RemoteSaveAdaptor` with batch editing issue has been fixed.
2028

2129
## 18.4.33 (2021-01-05)
2230

controls/data/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-data",
3-
"version": "17.2.48",
3+
"version": "19.1.54",
44
"description": "Essential JS 2 DataManager",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)