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 = {

0 commit comments

Comments
 (0)