Skip to content

Commit 34ea788

Browse files
author
pipeline
committed
v17.4.43 is released
1 parent fb27901 commit 34ea788

Some content is hidden

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

45 files changed

+215
-35
lines changed

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.4.41 (2020-01-07)
5+
## 17.4.43 (2020-01-14)
66

77
### Common
88

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### Button
8+
9+
#### Bug Fixes
10+
11+
- Disabled button not working properly has been resolved.
12+
13+
## 17.4.41 (2020-01-07)
14+
15+
### Chips
16+
17+
#### Bug Fixes
18+
19+
- `#256994` - The issue with aria-selected value maintenance in a single selection has been fixed.
20+
521
## 17.4.39 (2019-12-17)
622

723
### Chips

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.4.39",
3+
"version": "17.4.41",
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### Calendar
8+
9+
#### Bug Fixes
10+
11+
- Issue with "datepicker popup not opened in IE browser" has been resolved.
12+
513
## 17.4.41 (2020-01-07)
614

715
### Calendar

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": "17.4.40",
3+
"version": "17.4.41",
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/dist/ej2-react-charts.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/charts/dist/ej2-react-charts.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/charts/dist/es6/ej2-react-charts.es2015.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/charts/dist/es6/ej2-react-charts.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/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.4.40",
3+
"version": "17.4.41",
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/charts/src/bullet-chart/bulletchart.component.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ import { BulletChart, BulletChartModel } from '@syncfusion/ej2-charts';
33
import { ComponentBase, applyMixins, DefaultHtmlAttributes } from '@syncfusion/ej2-react-base';
44

55

6-
6+
export interface BulletChartTypecast {
7+
tooltipTemplate?: string | Function | any;
8+
}
79
/**
810
* Represents react BulletChart Component
911
* ```tsx
@@ -12,15 +14,15 @@ import { ComponentBase, applyMixins, DefaultHtmlAttributes } from '@syncfusion/e
1214
*/
1315
export class BulletChartComponent extends BulletChart {
1416
public state: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
15-
& Readonly<BulletChartModel & DefaultHtmlAttributes>;
17+
& Readonly<BulletChartModel & DefaultHtmlAttributes| BulletChartTypecast>;
1618
public setState: any;
1719
private getDefaultAttributes: Function;
1820
public initRenderCalled: boolean = false;
1921
private checkInjectedModules: boolean = true;
2022
public directivekeys: { [key: string]: Object } = {'bulletRangeCollection': 'bulletRange'};
21-
private immediateRender: boolean = true;
23+
private immediateRender: boolean = false;
2224
public props: Readonly<{ children?: React.ReactNode | React.ReactNode[] }>
23-
& Readonly<BulletChartModel & DefaultHtmlAttributes>;
25+
& Readonly<BulletChartModel & DefaultHtmlAttributes| BulletChartTypecast>;
2426
public forceUpdate: (callBack?: () => any) => void;
2527
public context: Object;
2628
public isReactComponent: Object;

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.4.39",
3+
"version": "17.4.41",
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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#259627` - The issue "Performance improvement with HTML node" has been fixed.
12+
- `#259329` - The issue "Polyline target decorator is not aligned properly at runtime" has been fixed.
13+
- `F149983` - The exception occurred while changing the z-index for group node at run time has been fixed.
14+
- `259000` - The issue "ConnectionChange Event does not triggered in mouse up" has been fixed.
15+
516
## 17.4.41 (2020-01-07)
617

718
### Diagram
@@ -12,6 +23,10 @@
1223
- `#253884` - Template support for HTML node has been provided.
1324
- `#236612`, `#242275` - The support has been provided to get the In and Out edges from ports.
1425

26+
#### Bug Fixes
27+
28+
- `#258539` - The issue "Unable to move the connector together with the group when editing an Orthogonal connector segment in a group" has been fixed.
29+
1530
## 17.4.40 (2019-12-24)
1631

1732
### 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": "17.4.40",
3+
"version": "17.4.41",
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: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#258087`, `#255070` - Grid columns are now preserved properly on export.
12+
- `#255070` - Page headers is now export properly when section break in table.
13+
- `#259583` - List level number for style paragraph is now export properly.
14+
- `#259153` - Table cell width and height is now copy properly.
15+
- `#258121` - Resolved warnings in bootstrap4 styles when run the application in Firefox.
16+
- `#249197` - Highlight colours are now exported properly.
17+
- `#260048`, `#256276` - Image files are now pasted properly.
18+
519
## 17.4.41 (2020-01-07)
620

721
### Document Editor
@@ -79,7 +93,7 @@
7993

8094
#### Bug Fixes
8195

82-
- `#255913` - Bookmark is now insert properly in splitted paragraph.
96+
- `#255913`, `#257879` - Bookmark is now insert properly in splitted paragraph.
8397
- `#255736` , `#256106` , `#257011` - Context menu is now open in Firefox, Edge and Safari.
8498
- `#254998` - Character format is now apply properly for selected bookmark.
8599
- `#254997`, `#256764`, `#257106` , `#256764` - Paragraph format is now export properly if document contains selection.

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": "17.4.40",
3+
"version": "17.4.41",
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/dropdowns/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+
## 17.4.43 (2020-01-14)
6+
7+
### ListBox
8+
9+
#### Bug Fixes
10+
11+
- `#F150435` - Script error occurs during disabled toolbar button click has been resolved.
12+
513
## 17.4.41 (2020-01-07)
614

715
### ListBox

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

components/filemanager/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+
## 17.4.43 (2020-01-14)
6+
7+
### File Manager
8+
9+
#### Bug Fixes
10+
11+
- `#149499` - The issue with date modified in ASP.NET Core Azure File System Provider has been fixed.
12+
- `#256589` - The issue with `Directory traversal vulnerability` in NodeJS File System Provider has been fixed.
13+
514
## 17.4.41 (2020-01-07)
615

716
### 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.4.39",
3+
"version": "17.4.41",
44
"description": "Essential JS 2 FileManager Component for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/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.4.41 (2020-01-07)
5+
## 17.4.43 (2020-01-14)
66

77
### Gantt
88

components/grids/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+
## 17.4.43 (2020-01-14)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#259844` - Excel filter with null operator issue has been fixed.
12+
- `#248887, #245140, #249856` - Selection issue while Virtualization enabled has been fixed.
13+
514
## 17.4.41 (2020-01-07)
615

716
### 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": "17.4.40",
3+
"version": "17.4.41",
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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### In-place Editor
8+
9+
#### New Features
10+
11+
- `#255914` - Provided actual `text` field value display on initial load, when DropDown components are configured with the `fields` property.
12+
513
## 17.4.40 (2019-12-24)
614

715
### In-place Editor

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": "17.4.39",
3+
"version": "17.4.41",
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/layouts/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+
## 17.4.43 (2020-01-14)
6+
7+
### Splitter
8+
9+
#### Bug Fixes
10+
11+
- `#255853` - Resolved the issue "Splitter resizing does not work as expected if it has an iframe element".
12+
13+
- `#259892` - Resolved the issue "Splitter pane is not properly resized when it has percentage pane size".
14+
515
## 17.4.41 (2020-01-07)
616

717
### 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.4.40",
3+
"version": "17.4.41",
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/lists/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.43 (2020-01-14)
6+
7+
### ListView
8+
9+
#### Bug Fixes
10+
11+
- The issue with `enabling the virtualization support in ListView component that throws script error in IE 11 browser` has been resolved.
12+
513
## 17.4.41 (2020-01-07)
614

715
### ListBox
@@ -10,6 +18,12 @@
1018

1119
- Provided `items` argument support for `beforeDrop` event.
1220

21+
### ListView
22+
23+
#### Bug Fixes
24+
25+
- #259827 - The issue with the `ListView component that throws script error in IE 11 browser` has been resolved.
26+
1327
## 17.4.40 (2019-12-24)
1428

1529
### ListBox

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.4.40",
3+
"version": "17.4.41",
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",

components/maps/CHANGELOG.md

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

99
## [Unreleased]
1010

11+
## 17.4.43 (2020-01-14)
12+
13+
### Maps
14+
15+
#### New Features
16+
17+
- `#244109` - `zoomToCoordinates` method is now exposed to zoom the map based on the coordinates.
18+
19+
#### Bug Fixes
20+
21+
- `#244109` - Panning is working properly now when we enable the `shouldZoomInitially` property.
22+
- `#259807` - Console error will not be thrown now when changing the position of the legend.
23+
- `#259807` - Shapes in the maps will not be cropped when changing the position of the legend after clicking the zoom reset button.
24+
- `#258541` - The latitude and the longitude values of the markers can now be set as a string.
25+
- `#258541` - The performance of the data label for point shape is now improved.
26+
1127
## 17.4.41 (2020-01-07)
1228

1329
### Maps

components/maps/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-maps",
3-
"version": "17.4.40",
3+
"version": "17.4.41",
44
"description": "The Maps component is used to visualize the geographical data and represent the statistical data of a particular geographical area on earth with user interactivity, and provides various customizing options for React",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)