Skip to content

Commit 132f97f

Browse files
author
pipeline
committed
v17.4.41 is released
1 parent 8a09fd4 commit 132f97f

Some content is hidden

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

57 files changed

+319
-50
lines changed

components/base/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 17.4.41 (2020-01-07)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `#I252331` - Issue with object reference not maintained in Vue has been fixed.
12+
513
## 17.2.48-beta (2019-08-28)
614

715
### Common

components/calendars/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 17.4.41 (2020-01-07)
6+
7+
### Calendar
8+
9+
#### Bug Fixes
10+
11+
- Issue with "change event triggered while again click on the selected month in month view" has been resolved.
12+
513
## 17.4.40 (2019-12-24)
614

715
### DateRangePicker

components/calendars/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-calendars",
3-
"version": "17.4.39",
3+
"version": "17.4.40",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,27 @@
22

33
## [Unreleased]
44

5+
## 17.4.41 (2020-01-07)
6+
7+
### Stock Chart
8+
9+
#### New Features
10+
11+
- `#257199` - Provided support to enable/disable the Date Range Picker in Stock Chart's period selector.
12+
13+
#### Bug Fixes
14+
15+
- `#257199` - Tooltip stops showing after resizing window issue has fixed.
16+
517
## 17.4.40 (2019-12-24)
618

719
### Chart
820

921
#### Bug Fixes
1022

11-
- `#257935` - Axis labels rotated at 90 degree alignment issue now fixed.
23+
- `#149930` - Chart with DataManager in offline mode makes a request to the server for multiple times issue got fixed.
24+
- Issue in Stacking line series with multiple axes is fixed now.
25+
- `#257935` - Alignment issue in axis labels when rotated at 90 degree is fixed now.
1226

1327
## 17.4.39 (2019-12-17)
1428

components/charts/dist/ej2-vue-charts.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/dist/ej2-vue-charts.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/dist/es6/ej2-vue-charts.es2015.js

+7-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/dist/es6/ej2-vue-charts.es2015.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/dist/es6/ej2-vue-charts.es5.js

+7-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/dist/es6/ej2-vue-charts.es5.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-charts",
3-
"version": "17.4.39",
3+
"version": "17.4.40",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/src/bullet-chart/bulletchart.component.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { BulletChart } from '@syncfusion/ej2-charts';
55
import { BulletRangeCollectionDirective, BulletRangeDirective, BulletRangeCollectionPlugin, BulletRangePlugin } from './ranges.directive'
66

77

8-
export const properties: string[] = ['animation', 'border', 'categoryField', 'categoryLabelStyle', 'dataLabel', 'dataSource', 'enableGroupSeparator', 'enablePersistence', 'enableRtl', 'height', 'interval', 'labelFormat', 'labelPosition', 'labelStyle', 'locale', 'majorTickLines', 'margin', 'maximum', 'minimum', 'minorTickLines', 'minorTicksPerInterval', 'opposedPosition', 'orientation', 'query', 'ranges', 'subtitle', 'subtitleStyle', 'tabIndex', 'targetColor', 'targetField', 'targetTypes', 'targetWidth', 'theme', 'tickPosition', 'title', 'titlePosition', 'titleStyle', 'tooltip', 'type', 'valueBorder', 'valueField', 'valueFill', 'valueHeight', 'width', 'load', 'tooltipRender'];
8+
export const properties: string[] = ['animation', 'border', 'categoryField', 'categoryLabelStyle', 'dataLabel', 'dataSource', 'enableGroupSeparator', 'enablePersistence', 'enableRtl', 'height', 'interval', 'labelFormat', 'labelPosition', 'labelStyle', 'locale', 'majorTickLines', 'margin', 'maximum', 'minimum', 'minorTickLines', 'minorTicksPerInterval', 'opposedPosition', 'orientation', 'query', 'ranges', 'subtitle', 'subtitleStyle', 'tabIndex', 'targetColor', 'targetField', 'targetTypes', 'targetWidth', 'theme', 'tickPosition', 'title', 'titlePosition', 'titleStyle', 'tooltip', 'type', 'valueBorder', 'valueField', 'valueFill', 'valueHeight', 'width', 'beforePrint', 'load', 'loaded', 'tooltipRender'];
99
export const modelProps: string[] = ['dataSource'];
1010

1111
/**
@@ -75,6 +75,14 @@ export class BulletChartComponent extends ComponentBase {
7575
return this.ej2Instances.createSvg(chart);
7676
}
7777

78+
public export(type: Object, fileName: string, orientation?: Object, controls?: undefined[], width?: number, height?: number, isVertical?: boolean): void {
79+
return this.ej2Instances.export(type, fileName, orientation, controls, width, height, isVertical);
80+
}
81+
82+
public print(id?: string[] | string | Object): void {
83+
return this.ej2Instances.print(id);
84+
}
85+
7886
public removeSvg(): void {
7987
return this.ej2Instances.removeSvg();
8088
}

components/circulargauge/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
55

66
## [Unreleased]
77

8+
## 17.4.41 (2020-01-07)
9+
10+
### CircularGauge
11+
12+
#### Bug Fixes
13+
14+
- `#256184` - The unwanted div element appended in the DOM is removed now.
15+
816
## 17.3.9-beta (2019-09-20)
917

1018
### CircularGauge

components/diagrams/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 17.4.41 (2020-01-07)
6+
7+
### Diagram
8+
9+
#### New Features
10+
11+
- `#232055` - Support has been provided to Clip/Ellipsis the annotation when textWrapping as WrapWithOverflow in the diagram.
12+
- `#253884` - Template support for HTML node has been provided.
13+
- `#236612`, `#242275` - The support has been provided to get the In and Out edges from ports.
14+
515
## 17.4.40 (2019-12-24)
616

717
### Diagram

components/diagrams/dist/ej2-vue-diagrams.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/dist/ej2-vue-diagrams.umd.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/dist/es6/ej2-vue-diagrams.es2015.js

+13-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/dist/es6/ej2-vue-diagrams.es2015.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/dist/es6/ej2-vue-diagrams.es5.js

+13-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/dist/es6/ej2-vue-diagrams.es5.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/diagrams/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-diagrams",
3-
"version": "17.4.39",
3+
"version": "17.4.40",
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 Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

0 commit comments

Comments
 (0)