Skip to content

Commit 5513477

Browse files
author
pipeline
committed
v18.1.48 is released
1 parent 37cc996 commit 5513477

File tree

76 files changed

+239
-59
lines changed

Some content is hidden

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

76 files changed

+239
-59
lines changed

components/buttons/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.48 (2020-05-05)
6+
7+
### Chips
8+
9+
#### New Features
10+
11+
- `#152050` - Support for adding images to a chip using the `trailingIconUrl` and `leadingIconUrl` property has been included.
12+
513
## 18.1.43 (2020-04-07)
614

715
### Radio Button

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

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

components/buttons/dist/ej2-vue-buttons.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/buttons/dist/es6/ej2-vue-buttons.es2015.js

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

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

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

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

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

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

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

components/buttons/src/chips/chiplist.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ChipList } from '@syncfusion/ej2-buttons';
44
import { ChipsDirective, ChipDirective, ChipsPlugin, ChipPlugin } from './chips.directive'
55

66

7-
export const properties: string[] = ['avatarIconCss', 'avatarText', 'chips', 'cssClass', 'enableDelete', 'enablePersistence', 'enableRtl', 'enabled', 'leadingIconCss', 'locale', 'selectedChips', 'selection', 'text', 'trailingIconCss', 'beforeClick', 'click', 'created', 'delete'];
7+
export const properties: string[] = ['avatarIconCss', 'avatarText', 'chips', 'cssClass', 'enableDelete', 'enablePersistence', 'enableRtl', 'enabled', 'leadingIconCss', 'leadingIconUrl', 'locale', 'selectedChips', 'selection', 'text', 'trailingIconCss', 'trailingIconUrl', 'beforeClick', 'click', 'created', 'delete'];
88
export const modelProps: string[] = [];
99

1010
/**

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 18.1.46 (2020-04-28)
5+
## 18.1.48 (2020-05-05)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#273192` - Trendlines are short and have the wrong slope direction issue fixed.
12+
13+
## 18.1.45 (2020-04-21)
614

715
### Chart
816

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.44",
3+
"version": "18.1.45",
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/diagrams/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.48 (2020-05-05)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `271060` - The issue with "Margin does not apply for the exported image" has been fixed.
12+
- `272898` - The issue with "When drag some nodes in palette it does not show preview and drop in diagram" has been fixed.
13+
514
## 18.1.46 (2020-04-28)
615

716
### 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

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

+2-2
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": "18.1.45",
3+
"version": "18.1.46",
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/diagrams/src/diagram/diagram.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ export class DiagramComponent extends ComponentBase {
202202
return this.ej2Instances.exportImage(image, options);
203203
}
204204

205-
public findElementUnderMouse(obj: Object, position: Object): Object {
206-
return this.ej2Instances.findElementUnderMouse(obj, position);
205+
public findElementUnderMouse(obj: Object, position: Object, padding?: number): Object {
206+
return this.ej2Instances.findElementUnderMouse(obj, position, padding);
207207
}
208208

209209
public findObjectUnderMouse(objects: undefined[], action: Object, inAction: boolean): Object {

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.48 (2020-05-05)
6+
7+
### Document Editor
8+
9+
#### Bug Fixes
10+
11+
- `#272290` - Resolved selection issue when paragraph contains line break character.
12+
- `#272600` - Copy text with specific symbol (< , >) is now working properly.
13+
- `#266059` - When pasting content with bookmark, bookmark is now preserved.
14+
- `#269743` - Resolved focus issue in Firefox when navigate to bookmark or search result.
15+
- `#269546` - Selection issue is now resolved when paragraph contains page break.
16+
- `#274395` - Resolved script error when clicking on canvas in mobile view mode.
17+
- `#273345` - Resolved table export issue when table contains vertical merge cell.
18+
- `#271450` - Restricted user editing, when spinner is visible.
19+
520
## 18.1.46 (2020-04-28)
621

722
### Document Editor

components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-documenteditor",
3-
"version": "18.1.45",
3+
"version": "18.1.46",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/dropdowns/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.48 (2020-05-05)
6+
7+
### MultiSelect
8+
9+
#### Bug Fixes
10+
11+
- `#273796` - Issue with clear icon misalignment in the material outline has been resolved.
12+
13+
### ListBox
14+
15+
#### Bug Fixes
16+
17+
- Issue with drag and drop in empty listbox has been fixed.
18+
519
## 18.1.46 (2020-04-28)
620

721
### Dropdown Tree

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.45",
3+
"version": "18.1.46",
44
"description": "Essential JS 2 DropDown Components for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/filemanager/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 18.1.46 (2020-04-28)
5+
## 18.1.48 (2020-05-05)
66

77
### File Manager
88

components/gantt/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.48 (2020-05-05)
6+
7+
### Gantt
8+
9+
#### Bug Fixes
10+
11+
- `#273422` - Date mismatch for parent and child record gets resolved.
12+
513
## 18.1.46 (2020-04-28)
614

715
### Gantt

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

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

components/gantt/dist/ej2-vue-gantt.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/gantt/dist/es6/ej2-vue-gantt.es2015.js

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

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

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

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

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

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

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

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.45",
3+
"version": "18.1.46",
44
"description": "Essential JS 2 Gantt Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/src/gantt/gantt.component.ts

+4
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,10 @@ export class GanttComponent extends ComponentBase {
163163
return this.ej2Instances.fitToProject();
164164
}
165165

166+
public getDateFormat(): string {
167+
return this.ej2Instances.getDateFormat();
168+
}
169+
166170
public getDurationString(duration: number, durationUnit: string): string {
167171
return this.ej2Instances.getDurationString(duration, durationUnit);
168172
}

components/grids/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 18.1.48 (2020-05-05)
6+
7+
### Grid
8+
9+
#### Bug Fixes
10+
11+
- `#269945, #271023` - `editTemplate` element events are not triggered for movable content.
12+
- `#273042` - grouping after restoring the persist data issue has been resolved.
13+
- `#273483, #275002, #275153` - `actionfailure` event error message issue has been fixed.
14+
- `#273238` - Missing of `headerText` property in the template data has been fixed.
15+
- `#266631` - Hidden column headers in Grid did not reflect in pdf export while using `includeHiddenColumn` issue has been fixed.
16+
- `#271911` - column template in angular after print issue has been resolved.
17+
- `#273134` - Header template in angular after print issue has been fixed.
18+
- `#269502` - Mismatch of reordering column issue has been fixed.
19+
- `#273854, #274776` - Foreign Key search query for `UrlAdaptor` has been fixed.
20+
521
## 18.1.46 (2020-04-28)
622

723
### 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.45",
3+
"version": "18.1.46",
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/heatmap/CHANGELOG.md

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

33
## [Unreleased]
44

5-
## 18.1.46 (2020-04-28)
5+
## 18.1.45 (2020-04-21)
66

77
### HeatMap
88

components/heatmap/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-heatmap",
3-
"version": "18.1.42",
3+
"version": "18.1.45",
44
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors 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.48 (2020-05-05)
6+
7+
### Kanban
8+
9+
#### Bug Fixes
10+
11+
- `#274830` - Rendered empty column when empty data passed to Kanban board.
12+
513
## 18.1.46 (2020-04-28)
614

715
### Kanban

0 commit comments

Comments
 (0)