Skip to content

Commit

Permalink
v17.2.39 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed Jul 30, 2019
1 parent cba253d commit 5834ef0
Show file tree
Hide file tree
Showing 92 changed files with 508 additions and 179 deletions.
2 changes: 1 addition & 1 deletion components/barcodegenerator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

### Barcode

The Syncfusion Essential JS Barcode widget enables rendering of one dimension and two dimension barcodes in web page. Barcode provides you a simple and inexpensive method of encoding text information that can be easily read by electronic readers
The Syncfusion Essential JS Barcode widget enables rendering of one dimension and two dimension barcodes in the web page. Barcode provides you a simple and inexpensive method of encoding text information that can be easily read by electronic readers


- Supports 2 two-dimensional barcodes such as QR and DataMatrix barcodes.
Expand Down
2 changes: 1 addition & 1 deletion components/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-base",
"version": "17.2.34",
"version": "17.2.36",
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
2 changes: 1 addition & 1 deletion components/calendars/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-calendars",
"version": "17.2.35",
"version": "17.2.36",
"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",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
14 changes: 14 additions & 0 deletions components/charts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@

## 17.2.36 (2019-07-24)

### Stock Chart

#### Bug Fixes

The `querySelector of null` console error issue has been fixed.


### RangeNavigator

#### Bug Fixes

The `appendChild of null` console error issue has been fixed.


### Chart

#### Bug Fixes
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": "17.2.35",
"version": "17.2.36",
"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
2 changes: 1 addition & 1 deletion components/circulargauge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-vue-circulargauge",
"version": "17.2.34",
"version": "17.2.36",
"description": "Essential JS 2 CircularGauge Components for Vue",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
13 changes: 13 additions & 0 deletions components/diagrams/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

## [Unreleased]

## 17.2.39 (2019-07-30)

### Diagram

#### New Features

- `#242645` - The issue "Support to add node in lanes collection at runtime" is now resolved.

#### Bug Fixes

- `#243078` - The issue "Hidden layer is visible" is now resolved.
- The issue "Context menu re-opens if you click a menu item quickly" is now working fine.

## 17.2.36 (2019-07-24)

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

3 changes: 3 additions & 0 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.

3 changes: 3 additions & 0 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": "17.2.35",
"version": "17.2.36",
"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: 4 additions & 0 deletions components/diagrams/src/diagram/diagram.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ export class DiagramComponent extends ComponentBase {
return this.ej2Instances.addLayer(layer, layerObject);
}

public addNodeToLane(node: Object, swimLane: string, lane: string): void {
return this.ej2Instances.addNodeToLane(node, swimLane, lane);
}

public addPhases(node: Object, phases: Object[]): void {
return this.ej2Instances.addPhases(node, phases);
}
Expand Down
13 changes: 13 additions & 0 deletions components/documenteditor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

## [Unreleased]

## 17.2.39 (2019-07-30)

### Document Editor

#### New Features

- `#238969` - Added API to set paste formatting options

#### Bug Fixes

- `#146208` - Header footer contents are now rendered properly on print without any blur.
- `#240266` - Fixed Exception thrown while updating page number.

## 17.2.36 (2019-07-24)

### Document Editor
Expand Down

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

Large diffs are not rendered by default.

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

Loading

0 comments on commit 5834ef0

Please sign in to comment.