Skip to content

Commit 5834ef0

Browse files
author
pipeline
committed
v17.2.39 is released
1 parent cba253d commit 5834ef0

File tree

92 files changed

+508
-179
lines changed

Some content is hidden

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

92 files changed

+508
-179
lines changed

components/barcodegenerator/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
### Barcode
88

9-
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
9+
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
1010

1111

1212
- Supports 2 two-dimensional barcodes such as QR and DataMatrix barcodes.

components/base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-base",
3-
"version": "17.2.34",
3+
"version": "17.2.36",
44
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/package.json

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

components/charts/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@
44

55
## 17.2.36 (2019-07-24)
66

7+
### Stock Chart
8+
9+
#### Bug Fixes
10+
11+
The `querySelector of null` console error issue has been fixed.
12+
13+
14+
### RangeNavigator
15+
16+
#### Bug Fixes
17+
18+
The `appendChild of null` console error issue has been fixed.
19+
20+
721
### Chart
822

923
#### Bug Fixes

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": "17.2.35",
3+
"version": "17.2.36",
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/circulargauge/package.json

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

components/diagrams/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.2.39 (2019-07-30)
6+
7+
### Diagram
8+
9+
#### New Features
10+
11+
- `#242645` - The issue "Support to add node in lanes collection at runtime" is now resolved.
12+
13+
#### Bug Fixes
14+
15+
- `#243078` - The issue "Hidden layer is visible" is now resolved.
16+
- The issue "Context menu re-opens if you click a menu item quickly" is now working fine.
17+
518
## 17.2.36 (2019-07-24)
619

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

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

+3
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": "17.2.35",
3+
"version": "17.2.36",
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

+4
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ export class DiagramComponent extends ComponentBase {
8181
return this.ej2Instances.addLayer(layer, layerObject);
8282
}
8383

84+
public addNodeToLane(node: Object, swimLane: string, lane: string): void {
85+
return this.ej2Instances.addNodeToLane(node, swimLane, lane);
86+
}
87+
8488
public addPhases(node: Object, phases: Object[]): void {
8589
return this.ej2Instances.addPhases(node, phases);
8690
}

components/documenteditor/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.2.39 (2019-07-30)
6+
7+
### Document Editor
8+
9+
#### New Features
10+
11+
- `#238969` - Added API to set paste formatting options
12+
13+
#### Bug Fixes
14+
15+
- `#146208` - Header footer contents are now rendered properly on print without any blur.
16+
- `#240266` - Fixed Exception thrown while updating page number.
17+
518
## 17.2.36 (2019-07-24)
619

720
### Document Editor

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

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

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

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

0 commit comments

Comments
 (0)