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

components/filemanager/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 17.2.47 (2019-08-27)
6-
7-
### File Manager
8-
9-
#### New Features
10-
11-
- Methods have been provided to perform file operations such as create, upload, download, delete, rename, and open in file manager.
12-
135
## 17.2.41 (2019-08-14)
146

157
### File Manager

components/filemanager/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-filemanager",
3-
"version": "17.2.46",
3+
"version": "0.31.0",
44
"description": "Essential JS 2 FileManager Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/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
### Grid
88

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": "17.2.46",
3+
"version": "17.1.1",
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/heatmap/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-heatmap",
3-
"version": "17.2.46",
3+
"version": "17.1.1",
44
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inplaceeditor/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
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
### In-place Editor
88

@@ -24,15 +24,15 @@
2424

2525
#### Bug Fixes
2626

27-
- `#237441` - Modified value not updated, when using `RichTextEditor` with `Markdown` mode issue has been resolved
27+
- #237441 - Modified value not updated, when using `RichTextEditor` with `Markdown` mode issue has been resolved
2828

2929
## 17.1.48 (2019-05-21)
3030

3131
### In-place Editor
3232

3333
#### Bug Fixes
3434

35-
- `#235175` - Issue with modules injection in Angular production mode that issue has been resolved.
35+
- #235175 - Issue with modules injection in Angular production mode that issue has been resolved.
3636

3737
## 17.1.47 (2019-05-14)
3838

components/inplaceeditor/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-inplace-editor",
3-
"version": "17.2.46",
3+
"version": "17.1.1",
44
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inputs/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
### NumericTextBox
88

components/layouts/CHANGELOG.md

Lines changed: 3 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -2,62 +2,22 @@
22

33
## [Unreleased]
44

5-
## 17.2.46 (2019-08-22)
5+
## 17.2.48-beta (2019-08-28)
66

77
### Splitter
88

99
#### Bug Fixes
1010

11-
- #245067 - Resolved the issue with pane resizing on rendering nested split panes.
12-
13-
## 17.2.41 (2019-08-14)
14-
15-
### Dashboard Layout
16-
17-
#### Bug Fixes
18-
19-
- Issue with "panel resizing after window resize" has been resolved.
20-
21-
### Splitter
11+
- #241183 - Issue with "show the expand and collapse arrow on hovering middle of split bar" has been resolved.
2212

23-
#### Bug Fixes
13+
- #242579 - Resolved the issue with "Split-bar rendering while change orientation dynamically"
2414

2515
- #243003 - Resolved the issue with enabling expand and collapse arrow based on collapsible property.
2616

2717
- #243007 - The issue "Collapsing and expanding splitter control does not return to original state" has been resolved.
2818

2919
- #244847 - The issue "Split panes are not resized properly on window resizing" has been resolved.
3020

31-
## 17.2.40 (2019-08-06)
32-
33-
### Dashboard Layout
34-
35-
#### Bug Fixes
36-
37-
- #243056 - Issue with "dashboard panels moving out of the layout on resizing" has been fixed.
38-
39-
## 17.2.39 (2019-07-30)
40-
41-
### Splitter
42-
43-
#### Bug Fixes
44-
45-
- #242579 - Resolved the issue with "Split-bar rendering while change orientation dynamically"
46-
47-
## 17.2.36 (2019-07-24)
48-
49-
### Dashboard Layout
50-
51-
#### Bug Fixes
52-
53-
- #241653 - ContentTemplate issue in Dashboard Layout has been fixed.
54-
55-
### Splitter
56-
57-
#### Bug Fixes
58-
59-
- #241183 - Issue with "show the expand and collapse arrow on hovering middle of split bar" has been resolved.
60-
6121
## 17.1.51 (2019-06-11)
6222

6323
### Dashboard Layout

components/layouts/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-layouts",
3-
"version": "17.2.46",
3+
"version": "17.2.34",
44
"description": "A package of Essential JS 2 layout pure CSS components such as card and avatar. The card is used as small container to show content in specific structure, whereas the avatars are icons, initials or figures representing particular person. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

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

components/lists/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-lists",
3-
"version": "17.2.46",
3+
"version": "17.1.1",
44
"description": "The listview control allows you to select an item or multiple items from a list-like interface and represents the data in interactive hierarchical structure across different layouts or views. for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)