Skip to content

Commit

Permalink
v18.1.48 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed May 5, 2020
1 parent 37cc996 commit 5513477
Show file tree
Hide file tree
Showing 76 changed files with 239 additions and 59 deletions.
8 changes: 8 additions & 0 deletions components/buttons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## 18.1.48 (2020-05-05)

### Chips

#### New Features

- `#152050` - Support for adding images to a chip using the `trailingIconUrl` and `leadingIconUrl` property has been included.

## 18.1.43 (2020-04-07)

### Radio Button
Expand Down
2 changes: 1 addition & 1 deletion components/buttons/dist/ej2-vue-buttons.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/buttons/dist/ej2-vue-buttons.umd.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/buttons/dist/es6/ej2-vue-buttons.es2015.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/buttons/dist/es6/ej2-vue-buttons.es2015.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/buttons/dist/es6/ej2-vue-buttons.es5.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/buttons/dist/es6/ej2-vue-buttons.es5.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/buttons/src/chips/chiplist.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { ChipList } from '@syncfusion/ej2-buttons';
import { ChipsDirective, ChipDirective, ChipsPlugin, ChipPlugin } from './chips.directive'


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

/**
Expand Down
10 changes: 9 additions & 1 deletion components/charts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

## [Unreleased]

## 18.1.46 (2020-04-28)
## 18.1.48 (2020-05-05)

### Chart

#### Bug Fixes

- `#273192` - Trendlines are short and have the wrong slope direction issue fixed.

## 18.1.45 (2020-04-21)

### Chart

Expand Down
2 changes: 1 addition & 1 deletion components/charts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-charts",
"version": "18.1.44",
"version": "18.1.45",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
9 changes: 9 additions & 0 deletions components/diagrams/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## [Unreleased]

## 18.1.48 (2020-05-05)

### Diagram

#### Bug Fixes

- `271060` - The issue with "Margin does not apply for the exported image" has been fixed.
- `272898` - The issue with "When drag some nodes in palette it does not show preview and drop in diagram" has been fixed.

## 18.1.46 (2020-04-28)

### Diagram
Expand Down
2 changes: 1 addition & 1 deletion components/diagrams/dist/ej2-vue-diagrams.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/diagrams/dist/ej2-vue-diagrams.umd.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions components/diagrams/dist/es6/ej2-vue-diagrams.es2015.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions components/diagrams/dist/es6/ej2-vue-diagrams.es5.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/diagrams/dist/es6/ej2-vue-diagrams.es5.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/diagrams/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-diagrams",
"version": "18.1.45",
"version": "18.1.46",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
4 changes: 2 additions & 2 deletions components/diagrams/src/diagram/diagram.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,8 @@ export class DiagramComponent extends ComponentBase {
return this.ej2Instances.exportImage(image, options);
}

public findElementUnderMouse(obj: Object, position: Object): Object {
return this.ej2Instances.findElementUnderMouse(obj, position);
public findElementUnderMouse(obj: Object, position: Object, padding?: number): Object {
return this.ej2Instances.findElementUnderMouse(obj, position, padding);
}

public findObjectUnderMouse(objects: undefined[], action: Object, inAction: boolean): Object {
Expand Down
15 changes: 15 additions & 0 deletions components/documenteditor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

## [Unreleased]

## 18.1.48 (2020-05-05)

### Document Editor

#### Bug Fixes

- `#272290` - Resolved selection issue when paragraph contains line break character.
- `#272600` - Copy text with specific symbol (< , >) is now working properly.
- `#266059` - When pasting content with bookmark, bookmark is now preserved.
- `#269743` - Resolved focus issue in Firefox when navigate to bookmark or search result.
- `#269546` - Selection issue is now resolved when paragraph contains page break.
- `#274395` - Resolved script error when clicking on canvas in mobile view mode.
- `#273345` - Resolved table export issue when table contains vertical merge cell.
- `#271450` - Restricted user editing, when spinner is visible.

## 18.1.46 (2020-04-28)

### Document Editor
Expand Down
2 changes: 1 addition & 1 deletion components/documenteditor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-documenteditor",
"version": "18.1.45",
"version": "18.1.46",
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
14 changes: 14 additions & 0 deletions components/dropdowns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

## [Unreleased]

## 18.1.48 (2020-05-05)

### MultiSelect

#### Bug Fixes

- `#273796` - Issue with clear icon misalignment in the material outline has been resolved.

### ListBox

#### Bug Fixes

- Issue with drag and drop in empty listbox has been fixed.

## 18.1.46 (2020-04-28)

### Dropdown Tree
Expand Down
2 changes: 1 addition & 1 deletion components/dropdowns/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-dropdowns",
"version": "18.1.45",
"version": "18.1.46",
"description": "Essential JS 2 DropDown Components for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
2 changes: 1 addition & 1 deletion components/filemanager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 18.1.46 (2020-04-28)
## 18.1.48 (2020-05-05)

### File Manager

Expand Down
8 changes: 8 additions & 0 deletions components/gantt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## 18.1.48 (2020-05-05)

### Gantt

#### Bug Fixes

- `#273422` - Date mismatch for parent and child record gets resolved.

## 18.1.46 (2020-04-28)

### Gantt
Expand Down
2 changes: 1 addition & 1 deletion components/gantt/dist/ej2-vue-gantt.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/gantt/dist/ej2-vue-gantt.umd.min.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions components/gantt/dist/es6/ej2-vue-gantt.es2015.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/gantt/dist/es6/ej2-vue-gantt.es2015.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions components/gantt/dist/es6/ej2-vue-gantt.es5.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/gantt/dist/es6/ej2-vue-gantt.es5.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/gantt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-gantt",
"version": "18.1.45",
"version": "18.1.46",
"description": "Essential JS 2 Gantt Component for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
4 changes: 4 additions & 0 deletions components/gantt/src/gantt/gantt.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ export class GanttComponent extends ComponentBase {
return this.ej2Instances.fitToProject();
}

public getDateFormat(): string {
return this.ej2Instances.getDateFormat();
}

public getDurationString(duration: number, durationUnit: string): string {
return this.ej2Instances.getDurationString(duration, durationUnit);
}
Expand Down
16 changes: 16 additions & 0 deletions components/grids/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

## [Unreleased]

## 18.1.48 (2020-05-05)

### Grid

#### Bug Fixes

- `#269945, #271023` - `editTemplate` element events are not triggered for movable content.
- `#273042` - grouping after restoring the persist data issue has been resolved.
- `#273483, #275002, #275153` - `actionfailure` event error message issue has been fixed.
- `#273238` - Missing of `headerText` property in the template data has been fixed.
- `#266631` - Hidden column headers in Grid did not reflect in pdf export while using `includeHiddenColumn` issue has been fixed.
- `#271911` - column template in angular after print issue has been resolved.
- `#273134` - Header template in angular after print issue has been fixed.
- `#269502` - Mismatch of reordering column issue has been fixed.
- `#273854, #274776` - Foreign Key search query for `UrlAdaptor` has been fixed.

## 18.1.46 (2020-04-28)

### Grid
Expand Down
2 changes: 1 addition & 1 deletion components/grids/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-grids",
"version": "18.1.45",
"version": "18.1.46",
"description": "Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
2 changes: 1 addition & 1 deletion components/heatmap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 18.1.46 (2020-04-28)
## 18.1.45 (2020-04-21)

### HeatMap

Expand Down
2 changes: 1 addition & 1 deletion components/heatmap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-heatmap",
"version": "18.1.42",
"version": "18.1.45",
"description": "Feature rich data visulization control used to visualize the matrix data where the individual values are represented as colors for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
8 changes: 8 additions & 0 deletions components/kanban/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## 18.1.48 (2020-05-05)

### Kanban

#### Bug Fixes

- `#274830` - Rendered empty column when empty data passed to Kanban board.

## 18.1.46 (2020-04-28)

### Kanban
Expand Down
Loading

0 comments on commit 5513477

Please sign in to comment.