Skip to content

Commit 9d9ac27

Browse files
author
pipeline
committed
v20.2.36 is released
1 parent 6cfa206 commit 9d9ac27

File tree

175 files changed

+427
-665
lines changed

Some content is hidden

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

175 files changed

+427
-665
lines changed

components/base/CHANGELOG.md

Lines changed: 74 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,24 @@
22

33
## [Unreleased]
44

5-
## 20.1.60 (2022-06-14)
5+
## 20.2.36 (2022-06-30)
6+
7+
### Common
8+
9+
#### New Features
10+
11+
- Provided the TypeScript 4.7 compatible support for the React components.
12+
13+
- Provided option to register the license key by using the `npx` command. Follow these steps to register the license using the `npx` command:
14+
- - Install the Syncfusion packages from npm.
15+
- - Add the license key either in the environment variable `SYNCFUSION_LICENSE` or in the `syncfusion-license.txt` text file.
16+
- - Run the command `npx syncfusion-license activate` to register the license automatically.
17+
18+
- `#I376821` - Provided support to compile the Sass files using [Dart Sass](https://sass-lang.com/dart-sass) instead of [node-sass](https://github.com/sass/node-sass). This change has been made since `node-sass` has been deprecated.
19+
20+
- React sample browser is upgraded with React 18 version.
21+
22+
## 20.1.59 (2022-06-07)
623

724
### Common
825

@@ -44,6 +61,62 @@
4461

4562
- `#I339589` - Resolved the `DropdownButton` issue with react component as target.
4663

64+
## 19.4.56 (2022-03-15)
65+
66+
### Common
67+
68+
#### Bug Fixes
69+
70+
- `#F165505` - Resolved the issue with Focus lost in input component each time `onchange` invoked.
71+
72+
## 19.4.55 (2022-03-08)
73+
74+
### Common
75+
76+
#### Bug Fixes
77+
78+
- `#I367058` - Resolved the script error when using `valueTemplate` and `headerTemplate` together in `Dropdownlist`.
79+
80+
## 19.4.53 (2022-02-22)
81+
82+
### Common
83+
84+
#### Bug Fixes
85+
86+
- `#I366476` - Resolved the issue with React `Dialog` content does not update when changing state.
87+
88+
## 19.4.52 (2022-02-15)
89+
90+
### Common
91+
92+
#### Bug Fixes
93+
94+
- `#I352651` - Styles not applied properly if it dynamically changed has been resolved.
95+
96+
## 19.4.47 (2022-01-25)
97+
98+
### Common
99+
100+
#### Bug Fixes
101+
102+
- `#F167610` - Resolved the Console error occurs when using a value and `valueTemplate` together.
103+
104+
## 19.4.43 (2022-01-18)
105+
106+
### Common
107+
108+
#### Bug Fixes
109+
110+
- `#I362528` - Resolved the peer dependency warning in higher React version
111+
112+
## 19.4.42 (2022-01-11)
113+
114+
### Common
115+
116+
#### Bug Fixes
117+
118+
- `#I339589` - Resolved the `DropdownButton` issue with react component as target.
119+
47120
## 19.1.67 (2021-06-08)
48121

49122
### Common

components/base/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![coverage](http://ej2.syncfusion.com/badges/ej2-react-base/coverage.svg)](http://ej2.syncfusion.com/badges/ej2-react-base)
2+
13
# ej2-react-base
24

35
A common package of Essential JS 2 for React which contains base libraries, methods and class definitions.
@@ -70,11 +72,11 @@ Product support is available for through following mediums.
7072

7173
## License
7274

73-
Check the license detail [here](https://github.com/syncfusion/ej2-react-base/blob/master/license).
75+
Check the license detail [here](https://github.com/syncfusion/ej2-react-ui-components/blob/master/license).
7476

7577
## Changelog
7678

77-
Check the changelog [here](https://ej2.syncfusion.com/react/documentation/release-notes?utm_source=npm&utm_campaign=ej2-react-base)
79+
Check the changelog [here](https://ej2.syncfusion.com/react/documentation/release-notes/index?utm_source=npm&utm_campaign=ej2-react-base)
7880

7981
© Copyright 2019 Syncfusion, Inc. All Rights Reserved.
8082
The Syncfusion Essential Studio license and copyright applies to this distribution.

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": "20.1.58",
3+
"version": "17.13.3",
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@
157157
let propsClsName = this.props[propkey].split(' ');
158158
for (let i: number = 0; i < propsClsName.length; i++) {
159159
this.element.classList.remove(propsClsName[i]);
160-
}
160+
}
161161
let dpropsClsName = dProps[propkey].split(' ');
162162
for (let j: number = 0; j < dpropsClsName.length; j++) {
163163
this.element.classList.add(dpropsClsName[j]);
164-
}
164+
}
165165
} else if (propkey !== 'disabled') {
166166
delete dProps[propkey];
167167
}

components/buttons/CHANGELOG.md

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,13 @@
22

33
## [Unreleased]
44

5-
## 20.1.50 (2022-04-19)
5+
## 20.2.36 (2022-06-30)
66

77
### Checkbox
88

99
#### Bug Fixes
1010

11-
- `F373307` - Issue with Accessibility in checkbox and switch has been resolved.
12-
13-
#### Bug Fixes
14-
15-
- `F171644` - Issue with Name attribute not updated properly in radio button and checkbox for components has been resolved.
16-
17-
### Checkbox
18-
19-
#### Bug Fixes
20-
21-
- `F173431` - Issue with Checkbox validation state is incorrect issue has been resolved.
11+
- `F379986` - The issue with "Screen reader reads checkbox field twice for tab keypress" has been resolved.
2212

2313
## 19.2.47 (2021-07-13)
2414

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": "20.1.55",
3+
"version": "20.2.36",
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/calendars/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 20.1.58 (2022-05-31)
6-
7-
### DatePicker
8-
9-
#### Bug Fixes
10-
11-
- `#F34697` - Issue with "able to clear the input value using clear button when component in readonly mode" has been resolved.
12-
13-
## 20.1.57 (2022-05-24)
14-
15-
### DateRangePicker
16-
17-
#### Bug Fixes
18-
19-
- `#I378357` - Issue with "tab key navigation is not working between calendars" has been resolved.
20-
215
## 19.3.46 (2021-10-19)
226

237
### TimePicker

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-react-calendars",
3-
"version": "20.1.58",
3+
"version": "18.29.2",
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 React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 20.2.36 (2022-06-30)
6+
7+
### Chart
8+
9+
#### New Features
10+
11+
- `#I362746` - Provided keyboard navigation support for interactive elements on the chart.
12+
- `#I353728` - Provided highlight and select support for the range and point color mapping.
13+
14+
- `#I362746` - Provided keyboard navigation support for interactive elements on the chart.
15+
- `#I353728` - Provided highlight and selection support for the range and point color mapping.
16+
517
## 20.1.59 (2022-06-07)
618

719
### 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": "20.1.59",
3+
"version": "1.173.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/CHANGELOG.md

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

66
## [Unreleased]
77

8-
## 20.1.60 (2022-06-14)
9-
10-
### Circular Gauge
11-
12-
#### New Features
13-
14-
- `#I365344` - Dash array can now be customized in the border of the Circular Gauge.
15-
16-
## 19.4.43 (2022-01-18)
17-
18-
### CircularGauge
19-
20-
#### New Features
21-
22-
- `cancel` argument is now available in the `resized` event to restrict the resize of the control when set as `true`.
23-
248
## 19.3.53 (2021-11-12)
259

2610
### 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": "20.1.55",
3+
"version": "16.40.5",
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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,30 @@
22

33
## [Unreleased]
44

5+
## 20.2.36 (2022-06-30)
6+
7+
### Diagram
8+
9+
#### Bug fixes
10+
11+
- `#I382500` - Now, the BPMN shape is changed properly at runtime.
12+
- `#I382496` - BPMN gateway sub type is working properly while changing it during runtime.
13+
- `#I383411` - Now, fill color is applied properly when changing the BPMN event at runtime.
14+
15+
#### Features
16+
17+
- `#I362749` - Provided option to adjust the distance between the source node and the target node of the orthogonal connection has been added.
18+
- `#I347713` - Support to modify connector segments thumb icon shape and style has been added.
19+
- `#FB31535` - Support for splitting and joining connectors has been added.
20+
- `#I362796` - Support to highlight selected diagram elements on multiple selections has been added
21+
- `#I362829` - Support to limit the connector segments while draw at run time has been added.
22+
- `#I362755` - Support to edit multiple bezier segments with multiple control points has been added.
23+
24+
#### Behaviour changes
25+
26+
- In the Bezier connector, by default, the multiple segments will be created automatically if a user doesn't define segment collections in the application.
27+
- In the Bezier connector, based on segment count, multiple control points will be displayed to control the smoothness of the curve
28+
529
## 20.1.60 (2022-06-14)
630

731
### 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": "20.1.59",
3+
"version": "20.2.36",
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: 0 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -2,99 +2,6 @@
22

33
## [Unreleased]
44

5-
## 20.1.60 (2022-06-14)
6-
7-
### Document Editor
8-
9-
#### Bug Fixes
10-
11-
- `#I384262` - Resolved the script error while removing the text inside shape.
12-
- `#I384843`, `#I383988` - Resolved issue in text form field after inserting space.
13-
- `#I384262` - Resolved script error while removing content from inline shape.
14-
- `#I382192` - Resolved issue in inserting comment.
15-
- `#I380536` - Resolved script error while accepting table revision.
16-
- `#I380523` - Resolved the crashing issue while inserting new line in protected region.
17-
- `#I379507` - Resolved issue in tab stop width calculation.
18-
- `#I375504` - Resolved script error while importing form fields.
19-
- `#I374466` - Resolved script error while updating dropdown form field.
20-
21-
## 20.1.59 (2022-06-07)
22-
23-
### Document Editor
24-
25-
#### Bug Fixes
26-
27-
- `#F174916` - Resolved the numbering pop-up binding issue.
28-
- `#I376243` - Resolved the script error in importing document with empty author.
29-
- `#I369585` - Resolved the selection issue in selecting document with large number of pages.
30-
- `#I375798` - Resolved the control hanging issue in opening the document.
31-
- `#I367499` - Resolved the shape and chart rendering issue.
32-
33-
## 20.1.58 (2022-05-31)
34-
35-
### Document Editor
36-
37-
#### Bug Fixes
38-
39-
- `#I378991` - Resolved the corruption issue in exporting the document with chart.
40-
- `#I378564` - Resolved the script error in replacing more than 100 items.
41-
- `#I378450`, `#I373175` - Resolved the script error in deleting the tracked content.
42-
- `#I376819` - Resolved the issue in saving the document with track changes.
43-
- `#I375984` - Resolved the script error on scrolling the document.
44-
- `#I375559` - Table with wrapping styles is now preserved properly.
45-
- `#I375504` - Resolved the script error in importing form field.
46-
- `#I375369` - Resolved the layouting issue after after editing.
47-
48-
## 20.1.57 (2022-05-24)
49-
50-
### Document Editor
51-
52-
#### Bug Fixes
53-
54-
- `#I373287` - Resolved the control hanging issue while opening a document with table.
55-
- `#FB34847` - Resolved the script error thrown on re-updating the custom toolbar.
56-
- `#I376882` - Resolved the issue on applying highlight color after replacing the search text.
57-
- `#I372421` - Resolved the insert table's paragraph format inheritance from previous paragraph.
58-
- `#I378924` - Resolved the text frame margin saving issue in sfdt export.
59-
- `#I375700` - Resolved the footnote misplacement in the initial layout.
60-
- `#I371641` - Resolved the minimum column width causes in-finite lopping issue when resizing table.
61-
62-
## 20.1.56 (2022-05-17)
63-
64-
### Document Editor
65-
66-
#### Bug Fixes
67-
68-
- `#I376089` - Resolved the error when converting sfdt to docx in Java server library.
69-
- `#I375856` - Resolved the issue in opening a document with nested content control and exporting to docx.
70-
- `#I373359` - Resolved the multiples instances of table of content was created when track changes was enabled issue.
71-
- `#I375732` - Resolved the table merged cell rendering issue.
72-
- `#I375798` - Resolved the control hanging issue on opening a document due to tab element.
73-
- `#I375298` - Resolved the indentation hides text in web layout.
74-
- `#I375704` - Resolved the restart level issue in word export.
75-
- `#I375703` - Resolved the footnote inside the table layout issue in initial rendering.
76-
77-
## 20.1.55 (2022-05-12)
78-
79-
### Document Editor
80-
81-
#### Bug Fixes
82-
83-
- `#FB34545` - Resolved the document editor container component destroy issue.
84-
- `#I375339` - Resolved the restart page numbering consideration on table of content updating.
85-
- `#I374447` - Resolved the empty pages issue on printing a document with landscape orientation.
86-
- `#I373959` - Resolved the pagination issue on layouting and downloading a sfdt.
87-
- `#I373287` - Resolved the control hanging issue while opening a document with table
88-
- `#I366157`, `#I367362` - Resolved the table rendering issue at the bottom of the page.
89-
- `#I373048` - Rejecting new paragraphs tracked changes releases the occupied space.
90-
- `#I372635` - Resolved the issue in review pane while opening a default document with track changes.
91-
- `#I372245` - Resolved the layouting issue for large footnote content which flows over the current page.
92-
- `#I371788` - Resolved the multiple call issue when enabling the spellcheck after editing the document.
93-
- `#I371641` - Resolved the minimum column width causes in-finite lopping issue when resizing table.
94-
- `#I368482` - Resolved the table in document overlaps footer.
95-
- `#I367499` - Resolved the chart color rendering and shape overlapping issue.
96-
- `#I368087` - Resolved the list format issues when open document by Document Editor.
97-
985
## 20.1.52 (2022-05-04)
996

1007
### Document Editor

0 commit comments

Comments
 (0)