Skip to content

Commit 867fc24

Browse files
author
pipeline
committed
v18.2.54 is released
1 parent 109f9d9 commit 867fc24

File tree

104 files changed

+337
-61
lines changed

Some content is hidden

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

104 files changed

+337
-61
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-
## 18.2.48 (2020-08-04)
5+
## 18.2.54 (2020-08-18)
66

77
### Common
88

components/buttons/dist/global/ej2-vue-buttons.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/buttons/package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@
5858
"@types/jasmine-ajax": "^3.1.27",
5959
"@types/requirejs": "^2.1.26",
6060
"vue": "2.5.2 - 2.5.21",
61+
"rollup": "^0.51.3",
62+
"rollup-plugin-commonjs": "^8.2.6",
63+
"rollup-plugin-node-resolve": "^3.0.0",
64+
"rollup-plugin-sourcemaps": "^0.4.2",
65+
"rollup-plugin-typescript": "^0.8.1",
66+
"rollup-plugin-uglify": "^2.0.1",
6167
"es6-promise": "^3.2.1",
6268
"gulp": "^3.9.1",
6369
"gulp-sass": "^3.1.0",

components/calendars/dist/global/ej2-vue-calendars.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/charts/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,24 @@
22

33
## [Unreleased]
44

5+
## 18.2.54 (2020-08-18)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#287569` - Shared tooltip does not render for multiple line series when there is a single point issue fixed.
12+
- `#285313` - Cancel property in arguments is not working properly on chart Load event issue fixed.
13+
- `#287632` - Point Render event customization not applied for column chart markers issue fixed.
14+
515
## 18.2.48 (2020-08-04)
616

717
### Accumulation chart
818

919
#### Bug Fixes
1020

1121
- `#286597` - Tooltip showing out of the chart area issue fixed.
22+
- `#286177` - Pie chart data labels are overlapped when smart labels are enabled issue fixed.
1223

1324
## 18.2.47 (2020-07-28)
1425

components/charts/dist/ej2-vue-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-vue-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-vue-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-vue-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/dist/es6/ej2-vue-charts.es5.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-vue-charts.es5.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/global/ej2-vue-charts.min.js

Lines changed: 1 addition & 0 deletions
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-vue-charts",
3-
"version": "18.2.47",
3+
"version": "18.2.48",
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/chart/chart.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { SelectedDataIndexesDirective, SelectedDataIndexDirective, SelectedDataI
1616
import { IndicatorsDirective, IndicatorDirective, IndicatorsPlugin, IndicatorPlugin } from './indicators.directive'
1717

1818

19-
export const properties: string[] = ['allowExport', 'allowMultiSelection', 'annotations', 'axes', 'background', 'backgroundImage', 'border', 'chartArea', 'columns', 'crosshair', 'currencyCode', 'dataSource', 'description', 'enableAnimation', 'enableAutoIntervalOnBothAxis', 'enableCanvas', 'enableExport', 'enablePersistence', 'enableRtl', 'enableSideBySidePlacement', 'height', 'highlightMode', 'highlightPattern', 'indicators', 'isMultiSelect', 'isTransposed', 'legendSettings', 'locale', 'margin', 'palettes', 'primaryXAxis', 'primaryYAxis', 'rows', 'selectedDataIndexes', 'selectionMode', 'selectionPattern', 'series', 'subTitle', 'subTitleStyle', 'tabIndex', 'theme', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width', 'zoomSettings', 'afterExport', 'animationComplete', 'annotationRender', 'axisLabelRender', 'axisMultiLabelRender', 'axisRangeCalculated', 'beforeExport', 'beforePrint', 'chartMouseClick', 'chartMouseDown', 'chartMouseLeave', 'chartMouseMove', 'chartMouseUp', 'drag', 'dragComplete', 'dragEnd', 'dragStart', 'legendClick', 'legendRender', 'load', 'loaded', 'multiLevelLabelClick', 'onZooming', 'pointClick', 'pointDoubleClick', 'pointMove', 'pointRender', 'resized', 'scrollChanged', 'scrollEnd', 'scrollStart', 'selectionComplete', 'seriesRender', 'sharedTooltipRender', 'textRender', 'tooltipRender', 'zoomComplete'];
19+
export const properties: string[] = ['allowExport', 'allowMultiSelection', 'annotations', 'axes', 'background', 'backgroundImage', 'border', 'chartArea', 'columns', 'crosshair', 'currencyCode', 'dataSource', 'description', 'enableAnimation', 'enableAutoIntervalOnBothAxis', 'enableCanvas', 'enableExport', 'enablePersistence', 'enableRtl', 'enableSideBySidePlacement', 'height', 'highlightMode', 'highlightPattern', 'indicators', 'isMultiSelect', 'isTransposed', 'legendSettings', 'locale', 'margin', 'palettes', 'primaryXAxis', 'primaryYAxis', 'rows', 'selectedDataIndexes', 'selectionMode', 'selectionPattern', 'series', 'subTitle', 'subTitleStyle', 'tabIndex', 'theme', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width', 'zoomSettings', 'afterExport', 'animationComplete', 'annotationRender', 'axisLabelClick', 'axisLabelRender', 'axisMultiLabelRender', 'axisRangeCalculated', 'beforeExport', 'beforePrint', 'chartMouseClick', 'chartMouseDown', 'chartMouseLeave', 'chartMouseMove', 'chartMouseUp', 'drag', 'dragComplete', 'dragEnd', 'dragStart', 'legendClick', 'legendRender', 'load', 'loaded', 'multiLevelLabelClick', 'onZooming', 'pointClick', 'pointDoubleClick', 'pointMove', 'pointRender', 'resized', 'scrollChanged', 'scrollEnd', 'scrollStart', 'selectionComplete', 'seriesRender', 'sharedTooltipRender', 'textRender', 'tooltipRender', 'zoomComplete'];
2020
export const modelProps: string[] = ['dataSource'];
2121

2222
/**

components/circulargauge/dist/global/ej2-vue-circulargauge.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/circulargauge/package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@
4646
"@types/jasmine-ajax": "^3.1.27",
4747
"@types/requirejs": "^2.1.26",
4848
"vue": "2.5.2 - 2.5.21",
49+
"rollup": "^0.51.3",
50+
"rollup-plugin-commonjs": "^8.2.6",
51+
"rollup-plugin-node-resolve": "^3.0.0",
52+
"rollup-plugin-sourcemaps": "^0.4.2",
53+
"rollup-plugin-typescript": "^0.8.1",
54+
"rollup-plugin-uglify": "^2.0.1",
4955
"es6-promise": "^3.2.1",
5056
"gulp": "^3.9.1",
5157
"gulp-sass": "^3.1.0",

components/diagrams/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.2.54 (2020-08-18)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#285793` - The issue with "Bring to front does not work for group node" has been fixed.
12+
- `#F156309` - The issue with "Exception occurs when try to do nudge in the diagram" has been fixed.
13+
- `#286692` - The issue with "Node does not resize properly when created using the stack, container and text elements" has been fixed.
14+
- `#286458` - The issue with "Node ports are gets ignored" has been fixed.
15+
- `#286174` - The issue with "Send to back not working after refresh the diagram using refresh() method" has been fixed.
16+
- `#286611` - The issue with "Size changed event does not get triggered when resizing with south, east, south east pin" has been fixed.
17+
- `#246813` - The issue with "To notify right/left button clicked in diagram click event" Has been fixed.
18+
- `#286418` - The issue with "When run the individual swimlane sample in angular 9 , throws build issue" has been fixed.
19+
- `#288057` - The issue with "Diagram selection do not update properly" has been fixed.
20+
521
## 18.2.48 (2020-08-04)
622

723
### Diagram
@@ -16,6 +32,7 @@
1632
- `#283092` - The issue of "Exception throws when try to append a new diagram at run time In IE11" has been fixed.
1733
- `#281759` - The issue of "SVG node do not gets visible in diagram" has been fixed.
1834
- `#284823` - The issue of "DataLoaded event do not gets trigger after data loaded" has been fixed.
35+
- `#285793` - The issue with "Bring to front does not work for group node" has been fixed.
1936

2037
## 18.2.46 (2020-07-21)
2138

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

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.2.54 (2020-08-18)
6+
7+
### Document Editor
8+
9+
#### New Features
10+
11+
- `#275184` - Added support for retrieving next and previous element context type from current selection range.
12+
- `#243495` - Added support for automatic text color.
13+
- `#279355` - Added support to enable properties pane in read only mode.
14+
- `#260677`, `#277329` - Added support for cropping images in document editor.
15+
- `#250760` - Added before file open event to restrict document loading based on file size.
16+
- `#256210`, `#259583`, `#280989`, `#282228` - Added support for all Caps property for character.
17+
- Added API to delete bookmark.
18+
- `#267515`- Added API to get searched item hierarchical index.
19+
- `#284937`- Added API show restrict editing pane.
20+
- `#280089`, `#283427`, `#250760` - Added event to notify service failure.
21+
22+
#### Bug Fixes
23+
24+
- `#286986` - Table properties are now written properly on html exporting.
25+
- `#286520` - Inserted text selection now applied properly after applying style.
26+
- `#287740` - Paper size dropdown in page setup dialog now updated for document with A4 format.
27+
- `#282515` - Resolved error on exporting a document which contains restart numbering.
28+
- `#287633` - Table containing alignment is now exporting properly with alignment.
29+
- `#286469` - Resolved table formatting issue when table splits to multiple pages.
30+
- `#285747` - Resolved script error on server side export.
31+
- `#284704` - Resolved script error on changing the footer distance.
32+
- `#283529` - Resolved table layout issue when table is center aligned.
33+
- `#283180` - Resolved font family no records found issue.
34+
- `#282303` - Paste dropdown now hides when creating or opening new document.
35+
- `#280951` - Table content renders properly now for table with merged cells.
36+
- `#280973` - Resolved script while getting bookmarks from selection.
37+
- `#284486` - Comment Tab in pane is removed when enable comment is false.
38+
- `#283344` - Resolved the initial delay in pasting images.
39+
- `#282707`,`#284035` - Resolved bullet list exporting issue in MAC devices.
40+
- `#284412` - Comment mark is now deleted properly when comment is deleted.
41+
- `#281339` - Resolved RTL issue when editing a list content.
42+
- `#276616` - Paragraph maintained when inserting text in whole paragraph similar to MS Word.
43+
- `#284775` - Resolved table resize enabled issue in protected mode.
44+
- `#282504` - Resolved footer content overlapping issue when inserting image and table in footer.
45+
546
## 18.2.47 (2020-07-28)
647

748
### Document Editor

0 commit comments

Comments
 (0)