Skip to content

Commit f2867de

Browse files
author
pipeline
committed
v17.2.48-beta is released
1 parent 719c824 commit f2867de

File tree

90 files changed

+698
-430
lines changed

Some content is hidden

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

90 files changed

+698
-430
lines changed

components/barcodegenerator/CHANGELOG.md

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

77
### Barcode
88

9-
The Syncfusion Essential JS Barcode widget enables rendering of one dimension and two dimension barcodes in the web page. Barcode provides you a simple and inexpensive method of encoding text information that can be easily read by electronic readers
9+
The Syncfusion Essential JS Barcode widget enables rendering of one dimension and two dimension barcodes in web page. Barcode provides you a simple and inexpensive method of encoding text information that can be easily read by electronic readers
1010

1111

1212
- Supports 2 two-dimensional barcodes such as QR and DataMatrix barcodes.

components/barcodegenerator/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-barcode-generator",
3-
"version": "17.2.46",
3+
"version": "17.2.34",
44
"description": "Barcode generator component is a pure JavaScript library which will convert a string to Barcode and show it to the user. This supports major 1D and 2D barcodes including coda bar, code 128, QR Code. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/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-
## 17.2.40 (2019-08-06)
5+
## 17.2.48-beta (2019-08-28)
66

77
### Common
88

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-react-base",
3-
"version": "17.2.40",
3+
"version": "17.2.28",
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",

components/base/src/component-base.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ export class ComponentBase<P, S> extends React.PureComponent<P, S> {
200200
if (this.compareObjects(this.prevProperties[key], directiveValue[key])) {
201201
delete directiveValue[key];
202202
} else {
203-
let obj: Object = {};
204-
obj[key] = directiveValue[key];
205-
this.prevProperties = extend(this.prevProperties, obj);
203+
let obj: Object = {};
204+
obj[key] = directiveValue[key];
205+
this.prevProperties = extend(this.prevProperties, obj);
206206
}
207207
}
208208
} else {

components/buttons/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-buttons",
3-
"version": "17.2.46",
3+
"version": "17.1.1",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/CHANGELOG.md

Lines changed: 1 addition & 125 deletions
Original file line numberDiff line numberDiff line change
@@ -2,135 +2,11 @@
22

33
## [Unreleased]
44

5-
## 17.2.47 (2019-08-27)
6-
7-
### Chart
8-
9-
#### Bug Fixes
10-
11-
`#243156` - Drag complete returns value in string issue has been fixed.
12-
`#245710` - Lograthmic is not working properly for smaller value issue has been fixed.
13-
`#243156` - Selection is not proper at the edge issue has been fixed.
14-
`#245710` - Y-Axis of Spline chart not adjusting scale to suit dataSource issue has been fixed.
15-
16-
17-
## 17.2.36 (2019-07-24)
18-
19-
### Stock Chart
20-
21-
#### Bug Fixes
22-
23-
The `querySelector of null` console error issue has been fixed.
24-
25-
26-
### RangeNavigator
27-
28-
#### Bug Fixes
29-
30-
The `appendChild of null` console error issue has been fixed.
31-
32-
33-
### Chart
34-
35-
#### Bug Fixes
36-
37-
`#240342` - While scrolling chart's scrollbar Vertical HTML scrollbar goes up issue fixed.
38-
39-
40-
### Accumulation chart
41-
42-
#### Bug Fixes
43-
44-
- #241559 - Console error on doughnut chart when trying to hide a point via legend icon issue fixed.
45-
46-
## 17.2.34 (2019-07-11)
47-
48-
### Accumulation chart
49-
50-
#### Bug Fixes
51-
52-
- #240342 - Accumulation chart print not working proper in IE and Edge browsers issue fixed.
53-
54-
## 17.2.28-beta (2019-06-27)
55-
56-
### Chart
57-
58-
#### New Features
59-
60-
- Canvas rendering mode support provided.
61-
- Overlapping data labels in funnel and pyramid charts will be arranged on both sides of the charts.
62-
- Data Editing support provided for chart series points.
63-
- Multi level label click event added with custom object.
64-
65-
#### Breaking Changes
66-
67-
- sizeType enumeration name changed to SizeType
68-
69-
### Stock Chart
70-
71-
#### Breaking Changes
72-
73-
- sizeType enumeration name changed to SizeType
74-
75-
## 17.1.51 (2019-06-11)
76-
77-
### Chart
78-
79-
#### Bug Fixes
5+
## 17.2.48-beta (2019-08-28)
806

817
- #144983 - Label style not working in axisLabelRender event for polar and radar series type issue fixed.
828
- #237811 - Chart rendered with default width in Internet Explorer issue fixed.
839

84-
## 17.1.49 (2019-05-29)
85-
86-
### Stock Chart
87-
88-
#### Bug Fixes
89-
90-
- #236896 - Provided mouse event in stock charts
91-
92-
## 17.1.47 (2019-05-14)
93-
94-
### Chart
95-
96-
#### New Features
97-
98-
- #233749 - Provided zOrder support for chart series.
99-
100-
## 17.1.43 (2019-04-30)
101-
102-
### Chart
103-
104-
#### Bug Fixes
105-
106-
- #219174 - Multi line axis label is not proper when using multiple rows intersect action issue has been fixed.
107-
- #231943 - Console error throws when using area chart out of the axis range has been fixed.
108-
- #234027 - Chart is not destroying properly while calling destroy method issue fixed.
109-
110-
## 17.1.41 (2019-04-16)
111-
112-
### Chart
113-
114-
#### Bug Fixes
115-
116-
- Support has been provided for multiple export in horizontal mode.
117-
118-
## 17.1.40 (2019-04-09)
119-
120-
### Accumulation chart
121-
122-
#### Bug Fixes
123-
124-
- Now Accumulation chart is refreshing properly on data change.
125-
126-
### Chart
127-
128-
#### Bug Fixes
129-
130-
- Stacking column is not rendered properly when yvalue in string is fixed.
131-
- Zoomposition is not proper, when the axis is inversed is fixed.
132-
- Multiline label alignment is not proper, when breaking the labels into smaller text issue fixed
133-
13410
## 17.1.32-beta (2019-03-13)
13511

13612
### 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": "17.2.46",
3+
"version": "17.1.1",
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/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": "17.2.46",
3+
"version": "17.1.1",
44
"description": "Essential JS 2 CircularGauge Components for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/documenteditor/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-
## 17.2.47 (2019-08-27)
5+
## 17.2.48-beta (2019-08-28)
66

77
### Document Editor
88

0 commit comments

Comments
 (0)