Skip to content

Commit 109f9d9

Browse files
author
pipeline
committed
v18.2.48 is released
1 parent 872b485 commit 109f9d9

File tree

73 files changed

+295
-60
lines changed

Some content is hidden

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

73 files changed

+295
-60
lines changed

components/barcodegenerator/dist/ej2-vue-barcode-generator.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/barcodegenerator/dist/ej2-vue-barcode-generator.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/barcodegenerator/dist/es6/ej2-vue-barcode-generator.es2015.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/barcodegenerator/dist/es6/ej2-vue-barcode-generator.es2015.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/barcodegenerator/dist/es6/ej2-vue-barcode-generator.es5.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/barcodegenerator/dist/es6/ej2-vue-barcode-generator.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/barcodegenerator/package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@
3535
"@types/jasmine-ajax": "^3.1.27",
3636
"@types/requirejs": "^2.1.26",
3737
"vue": "2.5.2 - 2.5.21",
38+
"rollup": "^0.51.3",
39+
"rollup-plugin-commonjs": "^8.2.6",
40+
"rollup-plugin-node-resolve": "^3.0.0",
41+
"rollup-plugin-sourcemaps": "^0.4.2",
42+
"rollup-plugin-typescript": "^0.8.1",
43+
"rollup-plugin-uglify": "^2.0.1",
3844
"es6-promise": "^3.2.1",
3945
"gulp": "^3.9.1",
4046
"gulp-sass": "^3.1.0",

components/barcodegenerator/src/barcode-generator/barcodegenerator.component.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ export class BarcodeGeneratorComponent extends ComponentBase {
5151
return createElement('div', (this as any).$slots.default);
5252
}
5353

54+
public exportAsBase64Image(exportType: Object): Object {
55+
return this.ej2Instances.exportAsBase64Image(exportType);
56+
}
57+
58+
public exportImage(filename: string, exportType: Object): void {
59+
return this.ej2Instances.exportImage(filename, exportType);
60+
}
5461
}
5562

5663
export const BarcodeGeneratorPlugin = {

components/barcodegenerator/src/datamatrix-generator/datamatrixgenerator.component.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ export class DataMatrixGeneratorComponent extends ComponentBase {
5151
return createElement('div', (this as any).$slots.default);
5252
}
5353

54+
public exportAsBase64Image(barcodeExportType: Object): Object {
55+
return this.ej2Instances.exportAsBase64Image(barcodeExportType);
56+
}
57+
58+
public exportImage(fileName: string, exportType: Object): void {
59+
return this.ej2Instances.exportImage(fileName, exportType);
60+
}
5461
}
5562

5663
export const DataMatrixGeneratorPlugin = {

components/barcodegenerator/src/qrcode-generator/qrcodegenerator.component.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,13 @@ export class QRCodeGeneratorComponent extends ComponentBase {
5151
return createElement('div', (this as any).$slots.default);
5252
}
5353

54+
public exportAsBase64Image(barcodeExportType: Object): Object {
55+
return this.ej2Instances.exportAsBase64Image(barcodeExportType);
56+
}
57+
58+
public exportImage(filename: string, barcodeExportType: Object): void {
59+
return this.ej2Instances.exportImage(filename, barcodeExportType);
60+
}
5461
}
5562

5663
export const QRCodeGeneratorPlugin = {

components/base/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 18.2.47 (2020-07-28)
5+
## 18.2.48 (2020-08-04)
66

77
### Common
88

components/calendars/package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@
6767
"@types/jasmine-ajax": "^3.1.27",
6868
"@types/requirejs": "^2.1.26",
6969
"vue": "2.5.2 - 2.5.21",
70+
"rollup": "^0.51.3",
71+
"rollup-plugin-commonjs": "^8.2.6",
72+
"rollup-plugin-node-resolve": "^3.0.0",
73+
"rollup-plugin-sourcemaps": "^0.4.2",
74+
"rollup-plugin-typescript": "^0.8.1",
75+
"rollup-plugin-uglify": "^2.0.1",
7076
"es6-promise": "^3.2.1",
7177
"gulp": "^3.9.1",
7278
"gulp-sass": "^3.1.0",

components/charts/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 18.2.48 (2020-08-04)
6+
7+
### Accumulation chart
8+
9+
#### Bug Fixes
10+
11+
- `#286597` - Tooltip showing out of the chart area issue fixed.
12+
513
## 18.2.47 (2020-07-28)
614

715
### Chart

components/charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-charts",
3-
"version": "18.2.46",
3+
"version": "18.2.47",
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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## 18.2.48 (2020-08-04)
6+
7+
### Diagram
8+
9+
#### New Features
10+
11+
- `#276871` - support to add symbol description for symbols in palette.
12+
13+
#### Bug Fixes
14+
15+
- `#264082` - The issue of "Sometimes difficult to make the connection to a port when set ConnectToNearByNode constraints" has been fixed.
16+
- `#283092` - The issue of "Exception throws when try to append a new diagram at run time In IE11" has been fixed.
17+
- `#281759` - The issue of "SVG node do not gets visible in diagram" has been fixed.
18+
- `#284823` - The issue of "DataLoaded event do not gets trigger after data loaded" has been fixed.
19+
520
## 18.2.46 (2020-07-21)
621

722
### Diagram

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)