Skip to content

Commit 56fe5b5

Browse files
author
pipeline
committed
v18.3.50 is released
1 parent 55d1c27 commit 56fe5b5

Some content is hidden

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

46 files changed

+203
-41
lines changed

components/base/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+
## 18.3.50 (2020-11-17)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- Resolved the state value not updated in the callback function issue.
12+
- Provide compatibility support for React version 17.
13+
- Resolved the unexpected script error on state change at `componentDidMount` hook.
14+
515
## 18.3.48 (2020-11-11)
616

717
### Common

components/base/dist/ej2-react-base.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/ej2-react-base.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-react-base.es2015.js

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-react-base.es2015.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-react-base.es5.js

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/es6/ej2-react-base.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/global/blazor/reactbase.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ var ComponentBase = /** @class */ (function (_super) {
188188
this.isProtectedOnChange = false;
189189
if (eventName === 'created') {
190190
setTimeout(function () {
191-
_this.modelObserver.notify(eventName, eventProp, successHandler);
191+
if (!_this.isDestroyed) {
192+
_this.modelObserver.notify(eventName, eventProp, successHandler);
193+
}
192194
});
193195
}
194196
else {
@@ -210,8 +212,7 @@ var ComponentBase = /** @class */ (function (_super) {
210212
if (value1 instanceof Date ||
211213
value1 instanceof RegExp ||
212214
value1 instanceof String ||
213-
value1 instanceof Number ||
214-
typeVal === 'function') {
215+
value1 instanceof Number) {
215216
return value1.toString() === value2.toString();
216217
}
217218
if (sf.base.isObject(value1) || Array.isArray(value1)) {

components/base/dist/global/ej2-react-base.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/dist/global/ej2-react-base.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/base/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-react-base",
3-
"version": "18.3.47",
3+
"version": "18.3.48",
44
"description": "A common package of Essential JS 2 React base, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
@@ -24,8 +24,8 @@
2424
"module": "./index.js",
2525
"readme": "ReadMe.md",
2626
"peerDependencies": {
27-
"react": "15.5.4 - 16.13.1",
28-
"react-dom": "15.5.4 - 16.13.1"
27+
"react": "16.13.1 - 17.0.1",
28+
"react-dom": "16.13.1 - 17.0.1"
2929
},
3030
"dependencies": {
3131
"@syncfusion/ej2-base": "*"

components/base/src/component-base.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,10 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
224224
this.isProtectedOnChange = false;
225225
if(eventName === 'created') {
226226
setTimeout(()=>{
227-
this.modelObserver.notify(eventName, eventProp, successHandler);
227+
if(!this.isDestroyed) {
228+
this.modelObserver.notify(eventName, eventProp, successHandler);
229+
}
230+
228231
})
229232
} else {
230233
this.modelObserver.notify(eventName, eventProp, successHandler);
@@ -246,8 +249,7 @@ export class ComponentBase<P, S> extends React.Component<P, S> {
246249
if (value1 instanceof Date ||
247250
value1 instanceof RegExp ||
248251
value1 instanceof String ||
249-
value1 instanceof Number ||
250-
typeVal === 'function'
252+
value1 instanceof Number
251253
) {
252254
return value1.toString() === value2.toString();
253255
}

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.3.50 (2020-11-17)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#295905` - Corner radius is not proper for value zero issue has been fixed.
12+
- `#296280` - Chart legend is not hidden while visible property is set as false in button click issue has been fixed.
13+
- `#285055` - Lazy load in the Chart is not working properly issue fixed.
14+
- `#157667` - point click is not working for low values in column chart issue has been fixed.
15+
516
## 18.3.48 (2020-11-11)
617

718
### Chart

components/charts/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-react-charts",
3-
"version": "18.3.47",
3+
"version": "18.3.48",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/circulargauge/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55

66
## [Unreleased]
77

8+
## 18.3.50 (2020-11-17)
9+
10+
### CircularGauge
11+
12+
#### Bug Fixes
13+
14+
- The script error will not be thrown now when the circular gauge is resized.
15+
816
## 18.3.44 (2020-10-27)
917

1018
### CircularGauge

components/circulargauge/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-react-circulargauge",
3-
"version": "18.3.44",
3+
"version": "18.3.47",
44
"description": "Essential JS 2 CircularGauge Components for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/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+
## 18.3.50 (2020-11-17)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#285393` - This issue "Connector Target Point connection is not connected properly in line distribution" has been fixed.
12+
513
## 18.3.48 (2020-11-11)
614

715
### Diagram

components/diagrams/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-react-diagrams",
3-
"version": "18.3.47",
3+
"version": "18.3.48",
44
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/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+
## 18.3.50 (2020-11-17)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- Strike through button now toggles properly.
12+
- `#297703` - Resolved issue on exporting a RTL document.
13+
514
## 18.3.48 (2020-11-11)
615

716
### Document Editor

components/documenteditor/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-react-documenteditor",
3-
"version": "18.3.47",
3+
"version": "18.3.48",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/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-
## 18.3.48 (2020-11-11)
5+
## 18.3.50 (2020-11-17)
66

77
### File Manager
88

components/gantt/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+
## 18.3.50 (2020-11-17)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `293889` - Console error in split task when allowTaskbarEditing is disable has been fixed.
12+
- `300744` - Console error on clicking add/edit toolbar has been fixed.
13+
514
## 18.3.48 (2020-11-11)
615

716
### Gantt

components/gantt/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-react-gantt",
3-
"version": "18.3.47",
3+
"version": "18.3.48",
44
"description": "Essential JS 2 Gantt Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/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+
## 18.3.50 (2020-11-17)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#158208` - Grid `pageSize` 'All' translated issue has been fixed.
12+
513
## 18.3.48 (2020-11-11)
614

715
### Grid

components/grids/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-react-grids",
3-
"version": "18.3.47",
3+
"version": "18.3.48",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inplaceeditor/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-
## 18.3.48 (2020-11-11)
5+
## 18.3.50 (2020-11-17)
66

77
### In-place Editor
88

components/inputs/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-react-inputs",
3-
"version": "18.3.47",
3+
"version": "18.3.48",
44
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/kanban/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+
## 18.3.50 (2020-11-17)
6+
7+
### Kanban
8+
9+
#### Bug Fixes
10+
11+
- `#301633` - The issue with "Script error thrown when using `deleteCard` public method" has been resolved.
12+
- `#301761` - The issue with "Changed card not maintained their modified state properly when drop the card to another columns after using `updateCard` public method" has been resolved.
13+
- `#300558` - An issue with the all card data are disappeared after card drag and drop has been fixed.
14+
515
## 18.3.40 (2020-10-13)
616

717
### Kanban

components/layouts/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-
## 18.3.48 (2020-11-11)
5+
## 18.3.50 (2020-11-17)
66

77
### Dashboard Layout
88

components/lineargauge/CHANGELOG.md

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

1212
## [Unreleased]
1313

14-
## 18.3.48 (2020-11-11)
14+
## 18.3.50 (2020-11-17)
1515

1616
### LinearGauge
1717

components/navigations/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.3.50 (2020-11-17)
6+
7+
### Menu
8+
9+
#### Bug Fixes
10+
11+
- `#298633` - Sub menu closed while clicking on the scroll bar issue resolved.
12+
13+
### Tab
14+
15+
#### New Features
16+
17+
- `#298781, #159033, #301025, #299403, #301347` - Provided `refreshActiveTab` public method to refresh the active tab item.
18+
519
## 18.3.47 (2020-11-05)
620

721
### TreeView

components/pdfviewer/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+
## 18.3.50 (2020-11-17)
6+
7+
### PDF Viewer
8+
9+
#### Bug Fixes
10+
11+
- `#294232` - Now the ink annotation position is maintained properly
12+
513
## 18.3.48 (2020-11-11)
614

715
### PDF Viewer

components/pdfviewer/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-react-pdfviewer",
3-
"version": "18.3.47",
3+
"version": "18.3.48",
44
"description": "Essential JS 2 PDF viewer Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/pivotview/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-react-pivotview",
3-
"version": "18.3.47",
3+
"version": "18.3.48",
44
"description": "The pivot grid, or pivot table, is used to visualize large sets of relational data in a cross-tabular format, similar to an Excel pivot table. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/popups/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+
## 18.3.50 (2020-11-17)
6+
7+
### Tooltip
8+
9+
#### Bug Fixes
10+
11+
- `#292549` - The issue with "the tooltip is hidden while clicking the popup in mobile mode" has been resolved.
12+
- `#291626`, `#288720` - Now, the Tooltip will be in the opened state while maintaining a hover over the tooltip popup, even using the close delay property.
13+
514
## 18.3.35 (2020-10-01)
615

716
### Dialog

0 commit comments

Comments
 (0)