Skip to content

Commit 46fe748

Browse files
author
pipeline
committed
v18.1.56 is released
1 parent f4100a4 commit 46fe748

Some content is hidden

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

41 files changed

+233
-26
lines changed

components/base/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.56 (2020-06-09)
6+
7+
### Common
8+
9+
#### Bug Fixes
10+
11+
- `I262885` - Resolved the memory leak issue.
12+
513
## 17.4.47 (2020-02-05)
614

715
### Common

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.56 (2020-06-09)
6+
7+
### Chips
8+
9+
#### Bug Fixes
10+
11+
- `#278394` - Issue with delete event has been fixed.
12+
513
## 18.1.48 (2020-05-05)
614

715
### Chips

components/charts/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
## [Unreleased]
44

5+
## 18.1.56 (2020-06-09)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#278688` - Shared Tooltip not visible while using tooltip render event issue fixed.
12+
- `#278311` - Y axis labels get overlapped when using single negative point issue fixed.
13+
- `#154576` - Range Selector doesn't match chart data range for one day issue fixed.
14+
- `#279008` - Cluster selection with 0 values for logarithmic type issue fixed.
15+
16+
### Accumulation chart
17+
18+
#### Bug Fixes
19+
20+
- `#279297` - Height in percentage not working properly is fixed now.
21+
522
## 18.1.55 (2020-06-02)
623

724
### Chart

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

+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.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

+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.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": "18.1.54",
3+
"version": "18.1.55",
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

+1-1
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[] = ['allowMultiSelection', 'annotations', 'axes', 'background', 'backgroundImage', 'border', 'chartArea', 'columns', 'crosshair', 'currencyCode', 'dataSource', 'description', 'enableAnimation', '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', 'textRender', 'tooltipRender', 'zoomComplete'];
19+
export const properties: string[] = ['allowMultiSelection', 'annotations', 'axes', 'background', 'backgroundImage', 'border', 'chartArea', 'columns', 'crosshair', 'currencyCode', 'dataSource', 'description', 'enableAnimation', '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'];
2020
export const modelProps: string[] = ['dataSource'];
2121

2222
/**

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": "18.1.54",
3+
"version": "18.1.55",
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",

components/documenteditor/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## 18.1.56 (2020-06-09)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#278685` - Resolved script error on backspace inside the edit range.
12+
- `#247077` - Selection is now updated properly while clicking before merge field.
13+
- `#277357` - Table borders are now rendered properly.
14+
- `#275686` - `contentChange` event will not trigger while switching the layout type.
15+
- `#276616` - Paragraph format now preservers properly while inserting text.
16+
- `#276039` - Adding new comment and replying to old comment is now disable in read only mode.
17+
- `#277959` - Document with shape now imported properly.
18+
- `#153583` - Selection is now updated properly for image inside the bookmark.
19+
520
## 18.1.55 (2020-06-02)
621

722
### Document Editor

components/dropdowns/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.56 (2020-06-09)
6+
7+
### ComboBox
8+
9+
#### Bug Fixes
10+
11+
- Issue with "select event is not triggered while doing first selection with autofill" has been resolved.
12+
513
## 18.1.55 (2020-06-02)
614

715
### MultiSelect

components/dropdowns/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-dropdowns",
3-
"version": "18.1.54",
3+
"version": "18.1.55",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.56 (2020-06-09)
6+
7+
### File Manager
8+
9+
#### Bug Fixes
10+
11+
- The issue with "File name is not displayed in the access control error message" has been fixed.
12+
513
## 18.1.55 (2020-06-02)
614

715
### File Manager

components/filemanager/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-filemanager",
3-
"version": "18.1.53",
3+
"version": "18.1.55",
44
"description": "Essential JS 2 FileManager Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-gantt",
3-
"version": "18.1.54",
3+
"version": "18.1.55",
44
"description": "Essential JS 2 Gantt Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,33 @@
22

33
## [Unreleased]
44

5+
## 18.1.56 (2020-06-09)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#278390` - Internal event for access the excel export rows has been added.
12+
- `#277728` - Search box focus issue in IE has been fixed.
13+
- `#12629` - Prevented the `dataStateChange` event after re-ordering a column.
14+
- `#154111` - Issue in updating `aggregate` format with culture change has been fixed.
15+
- `#14010` - Grid row selection event arguments type issue has been fixed.
16+
- `#278858` - `rowDeselected` event with `persistence` and `ResetOnRowClick` issue has been fixed.
17+
- `#154619` - Number formatting with empty string issue has been fixed.
18+
- `#279065` - `Groupcaption` aggregate in `pdf` export issue has been fixed.
19+
20+
#### Breaking Changes
21+
22+
- Now `data`, `row`, `foreignKeyData` these Grid selection event arguments are get array values only when we perform multi selection. Please find modified event arguments and it types from the below table,
23+
24+
| `Properties` | `Type` |
25+
|---|---|
26+
| `data` | `Object or Object[]` |
27+
| `rowIndex` | `number` |
28+
| `rowIndexes` | `number[]` |
29+
| `row` | `Element or Element[]` |
30+
| `foreignKeyData` | `Object or Object[]` |
31+
532
## 18.1.55 (2020-06-02)
633

734
### Grid

components/grids/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-grids",
3-
"version": "18.1.54",
3+
"version": "18.1.55",
44
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inplaceeditor/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 18.1.53 (2020-05-19)
5+
## 18.1.56 (2020-06-09)
66

77
### In-place Editor
88

components/inputs/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.56 (2020-06-09)
6+
7+
### Uploader
8+
9+
#### Bug Fixes
10+
11+
- Issue with "form name is not updated based on name attribute in chunk upload" has been resolved.
12+
513
## 18.1.55 (2020-06-02)
614

715
### Slider

components/inputs/package.json

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

components/kanban/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.56 (2020-06-09)
6+
7+
### Kanban
8+
9+
#### Bug Fixes
10+
11+
- `#279543` - An issue with script error thrown when click the `showAddButton` icon and specify the `priority` property has been fixed.
12+
513
## 18.1.55 (2020-06-02)
614

715
### Kanban

components/kanban/README.md

+50-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# ej2-vue-kanban
22

3+
The Kanban Board component is an efficient way to visualize workflow at each stage along its path to completion. The control supports necessary features to design task scheduling applications. The key features are swimlanes, customizable cards, binding from local and remote data sources, columns mapping, stacked headers, WIP validation, templating, responsiveness, filtering, and editing.
4+
5+
> This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license, you can purchase one at [here](https://www.syncfusion.com/sales/products) or start a free 30-day trial from [here](https://www.syncfusion.com/account/manage-trials/start-trials).
6+
7+
> A free community [license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
8+
9+
## Setup
10+
11+
To install Kanban and its dependent packages, use the following command.
12+
13+
```sh
14+
npm install @syncfusion/ej2-vue-kanban
15+
```
16+
17+
## Resources
18+
19+
* [Getting Started](https://ej2.syncfusion.com/vue/documentation/kanban/getting-started/index.html)
20+
* [View Online Demos](https://ej2.syncfusion.com/vue/demos/#/material/kanban/overview.html)
21+
* [Product Page](https://www.syncfusion.com/vue-ui-components/vue-kanban-board)
22+
23+
## Supported Frameworks
24+
25+
The Kanban control is also available in following list of frameworks.
26+
27+
1. [Angular](https://www.syncfusion.com/angular-ui-components/angular-kanban-board)
28+
2. [React](https://www.syncfusion.com/react-ui-components/react-kanban-board)
29+
3. [Blazor](https://www.syncfusion.com/blazor-components/blazor-kanban-board)
30+
4. [ASP.NET Core](https://www.syncfusion.com/aspnet-core-ui-controls/kanban-board)
31+
5. [ASP.NET MVC](https://www.syncfusion.com/aspnet-mvc-ui-controls/kanban-board)
32+
6. [JavaScript (ES5)](https://www.syncfusion.com/javascript-ui-controls/js-kanban-board)
33+
34+
## Key Features
35+
36+
* [**Data binding**](https://ej2.syncfusion.com/vue/demos/#/material/kanban/remote-data.html) - Seamless data binding with various local and remote data sources.
37+
* [**Swimlane**](https://ej2.syncfusion.com/vue/demos/#/material/kanban/swimlane.html): The horizontal categorization of cards in the kanban, which brings transparency to the workflow. The swimlane rows can be expanded and collapsed.
38+
* **Key mapping**: Map one or multiple keys to single columns.
39+
* [**Toggle Columns**](https://ej2.syncfusion.com/vue/demos/#/material/kanban/toggle-columns.html): The columns can be expanded and collapsed.
40+
* [**WIP Validation**](https://ej2.syncfusion.com/vue/demos/#/material/kanban/wip-validation.html): Set a minimum and maximum number of cards in a column.
41+
* [**Dialog Editing**](https://ej2.syncfusion.com/vue/demos/#/material/kanban/dialog-editing.html): The dialog editing support is used to perform CRUD actions such as add new card, edit or delete existing cards.
42+
* [**Drag and Drop**](https://ej2.syncfusion.com/vue/demos/#/material/kanban/overview.html): Cards can be easily dragged and dropped from one column to another. You can also drag them from one swim lane to another.
43+
* [**Stacked headers**](https://ej2.syncfusion.com/vue/demos/#/material/kanban/stacked-header.html): Additional column headers can be added in a stacked manner.
44+
* [**Tooltip**](https://ej2.syncfusion.com/vue/demos/#/material/kanban/tooltip-template.html): Display the card information with a default tooltip and templated tooltip.
45+
* **Selection**: Select a single or multiple cards.
46+
* [**Templates**](https://ej2.syncfusion.com/vue/demos/#/material/kanban/card-template.html): The key elements such as cards, column headers, swimlanes and tooltip come with template support for embedding any kind of HTML element and CSS style.
47+
* **Responsive rendering**: Adapts with optimal user interfaces to mobile and desktop form-factors.
48+
* **Localization**: All the static text content can be localized to any desired language.
49+
* **RTL**: Display the control contents from right to left.
50+
* **Built-in themes**: Material, Fabric, Bootstrap 3 and 4, and high contrast themes can be used to present a better UI appearance.
51+
352
## Support
453

554
Product support is available through following mediums.
@@ -16,4 +65,4 @@ Check the license detail [here](https://github.com/syncfusion/ej2-vue-ui-compone
1665

1766
Check the changelog [here](https://ej2.syncfusion.com/vue/documentation/release-notes).
1867

19-
© Copyright 2019 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
68+
© Copyright 2020 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.

0 commit comments

Comments
 (0)