🚀 Big News:Socket Has Acquired Secure Annex.Learn More
Socket
Book a DemoSign in
Socket

@syncfusion/ej2-angular-barcode-generator

Package Overview
Dependencies
Maintainers
3
Versions
268
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-angular-barcode-generator - npm Package Compare versions

Comparing version
29.1.41
to
29.2.4-ngcc
+443
@syncfusion/ej2-angular-barcode-generator.es5.js
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { ChangeDetectionStrategy, Component, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
import { ComponentBase, ComponentMixins, setValue } from '@syncfusion/ej2-angular-base';
import { BarcodeGenerator, DataMatrixGenerator, QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';
import { CommonModule } from '@angular/common';
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
r = Reflect.decorate(decorators, target, key, desc);
else
for (var i = decorators.length - 1; i >= 0; i--)
if (d = decorators[i])
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
return Reflect.metadata(k, v);
};
var inputs = ['backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width'];
var outputs = ['invalid'];
var twoWays = [''];
/**
* Barcode Component
* ```html
* <ej-barcode-generator></ej-barcode-generator>
* ```
*/
var BarcodeGeneratorComponent = /** @class */ (function (_super) {
__extends(BarcodeGeneratorComponent, _super);
/**
* @param {?} ngEle
* @param {?} srenderer
* @param {?} viewContainerRef
* @param {?} injector
*/
function BarcodeGeneratorComponent(ngEle, srenderer, viewContainerRef, injector) {
var _this = _super.call(this) || this;
_this.ngEle = ngEle;
_this.srenderer = srenderer;
_this.viewContainerRef = viewContainerRef;
_this.injector = injector;
_this.element = _this.ngEle.nativeElement;
_this.injectedModules = _this.injectedModules || [];
_this.registerEvents(outputs);
_this.addTwoWay.call(_this, twoWays);
setValue('currentInstance', _this, _this.viewContainerRef);
_this.context = new ComponentBase();
return _this;
}
/**
* @return {?}
*/
BarcodeGeneratorComponent.prototype.ngOnInit = function () {
this.context.ngOnInit(this);
};
/**
* @return {?}
*/
BarcodeGeneratorComponent.prototype.ngAfterViewInit = function () {
this.context.ngAfterViewInit(this);
};
/**
* @return {?}
*/
BarcodeGeneratorComponent.prototype.ngOnDestroy = function () {
this.context.ngOnDestroy(this);
};
/**
* @return {?}
*/
BarcodeGeneratorComponent.prototype.ngAfterContentChecked = function () {
this.context.ngAfterContentChecked(this);
};
return BarcodeGeneratorComponent;
}(BarcodeGenerator));
BarcodeGeneratorComponent.decorators = [
{ type: Component, args: [{
selector: 'ejs-barcodegenerator',
inputs: inputs,
outputs: outputs,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
},] },
];
/**
* @nocollapse
*/
BarcodeGeneratorComponent.ctorParameters = function () { return [
{ type: ElementRef, },
{ type: Renderer2, },
{ type: ViewContainerRef, },
{ type: Injector, },
]; };
BarcodeGeneratorComponent = __decorate([
ComponentMixins([ComponentBase]),
__metadata("design:paramtypes", [ElementRef,
Renderer2,
ViewContainerRef,
Injector])
], BarcodeGeneratorComponent);
/**
* NgModule definition for the BarcodeGenerator component.
*/
var BarcodeGeneratorModule = /** @class */ (function () {
function BarcodeGeneratorModule() {
}
return BarcodeGeneratorModule;
}());
BarcodeGeneratorModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule],
declarations: [
BarcodeGeneratorComponent
],
exports: [
BarcodeGeneratorComponent
]
},] },
];
/**
* @nocollapse
*/
BarcodeGeneratorModule.ctorParameters = function () { return []; };
/**
* NgModule definition for the BarcodeGenerator component with providers.
*/
var BarcodeGeneratorAllModule = /** @class */ (function () {
function BarcodeGeneratorAllModule() {
}
return BarcodeGeneratorAllModule;
}());
BarcodeGeneratorAllModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule, BarcodeGeneratorModule],
exports: [
BarcodeGeneratorModule
],
providers: []
},] },
];
/**
* @nocollapse
*/
BarcodeGeneratorAllModule.ctorParameters = function () { return []; };
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
r = Reflect.decorate(decorators, target, key, desc);
else
for (var i = decorators.length - 1; i >= 0; i--)
if (d = decorators[i])
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata$1 = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
return Reflect.metadata(k, v);
};
var inputs$1 = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'logo', 'margin', 'mode', 'value', 'version', 'width', 'xDimension'];
var outputs$1 = ['invalid'];
var twoWays$1 = [''];
/**
* QRCode Component
* ```html
* <ej-qrcode-generator></ej-qrcode-generator>
* ```
*/
var QRCodeGeneratorComponent = /** @class */ (function (_super) {
__extends(QRCodeGeneratorComponent, _super);
/**
* @param {?} ngEle
* @param {?} srenderer
* @param {?} viewContainerRef
* @param {?} injector
*/
function QRCodeGeneratorComponent(ngEle, srenderer, viewContainerRef, injector) {
var _this = _super.call(this) || this;
_this.ngEle = ngEle;
_this.srenderer = srenderer;
_this.viewContainerRef = viewContainerRef;
_this.injector = injector;
_this.element = _this.ngEle.nativeElement;
_this.injectedModules = _this.injectedModules || [];
_this.registerEvents(outputs$1);
_this.addTwoWay.call(_this, twoWays$1);
setValue('currentInstance', _this, _this.viewContainerRef);
_this.context = new ComponentBase();
return _this;
}
/**
* @return {?}
*/
QRCodeGeneratorComponent.prototype.ngOnInit = function () {
this.context.ngOnInit(this);
};
/**
* @return {?}
*/
QRCodeGeneratorComponent.prototype.ngAfterViewInit = function () {
this.context.ngAfterViewInit(this);
};
/**
* @return {?}
*/
QRCodeGeneratorComponent.prototype.ngOnDestroy = function () {
this.context.ngOnDestroy(this);
};
/**
* @return {?}
*/
QRCodeGeneratorComponent.prototype.ngAfterContentChecked = function () {
this.context.ngAfterContentChecked(this);
};
return QRCodeGeneratorComponent;
}(QRCodeGenerator));
QRCodeGeneratorComponent.decorators = [
{ type: Component, args: [{
selector: 'ejs-qrcodegenerator',
inputs: inputs$1,
outputs: outputs$1,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
},] },
];
/**
* @nocollapse
*/
QRCodeGeneratorComponent.ctorParameters = function () { return [
{ type: ElementRef, },
{ type: Renderer2, },
{ type: ViewContainerRef, },
{ type: Injector, },
]; };
QRCodeGeneratorComponent = __decorate$1([
ComponentMixins([ComponentBase]),
__metadata$1("design:paramtypes", [ElementRef,
Renderer2,
ViewContainerRef,
Injector])
], QRCodeGeneratorComponent);
/**
* NgModule definition for the QRCodeGenerator component.
*/
var QRCodeGeneratorModule = /** @class */ (function () {
function QRCodeGeneratorModule() {
}
return QRCodeGeneratorModule;
}());
QRCodeGeneratorModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule],
declarations: [
QRCodeGeneratorComponent
],
exports: [
QRCodeGeneratorComponent
]
},] },
];
/**
* @nocollapse
*/
QRCodeGeneratorModule.ctorParameters = function () { return []; };
/**
* NgModule definition for the QRCodeGenerator component with providers.
*/
var QRCodeGeneratorAllModule = /** @class */ (function () {
function QRCodeGeneratorAllModule() {
}
return QRCodeGeneratorAllModule;
}());
QRCodeGeneratorAllModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule, QRCodeGeneratorModule],
exports: [
QRCodeGeneratorModule
],
providers: []
},] },
];
/**
* @nocollapse
*/
QRCodeGeneratorAllModule.ctorParameters = function () { return []; };
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
r = Reflect.decorate(decorators, target, key, desc);
else
for (var i = decorators.length - 1; i >= 0; i--)
if (d = decorators[i])
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata$2 = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
return Reflect.metadata(k, v);
};
var inputs$2 = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension'];
var outputs$2 = ['invalid'];
var twoWays$2 = [''];
/**
* DataMatrix Component
* ```html
* <ej-datamatrix-generator></ej-datamatrix-generator>
* ```
*/
var DataMatrixGeneratorComponent = /** @class */ (function (_super) {
__extends(DataMatrixGeneratorComponent, _super);
/**
* @param {?} ngEle
* @param {?} srenderer
* @param {?} viewContainerRef
* @param {?} injector
*/
function DataMatrixGeneratorComponent(ngEle, srenderer, viewContainerRef, injector) {
var _this = _super.call(this) || this;
_this.ngEle = ngEle;
_this.srenderer = srenderer;
_this.viewContainerRef = viewContainerRef;
_this.injector = injector;
_this.element = _this.ngEle.nativeElement;
_this.injectedModules = _this.injectedModules || [];
_this.registerEvents(outputs$2);
_this.addTwoWay.call(_this, twoWays$2);
setValue('currentInstance', _this, _this.viewContainerRef);
_this.context = new ComponentBase();
return _this;
}
/**
* @return {?}
*/
DataMatrixGeneratorComponent.prototype.ngOnInit = function () {
this.context.ngOnInit(this);
};
/**
* @return {?}
*/
DataMatrixGeneratorComponent.prototype.ngAfterViewInit = function () {
this.context.ngAfterViewInit(this);
};
/**
* @return {?}
*/
DataMatrixGeneratorComponent.prototype.ngOnDestroy = function () {
this.context.ngOnDestroy(this);
};
/**
* @return {?}
*/
DataMatrixGeneratorComponent.prototype.ngAfterContentChecked = function () {
this.context.ngAfterContentChecked(this);
};
return DataMatrixGeneratorComponent;
}(DataMatrixGenerator));
DataMatrixGeneratorComponent.decorators = [
{ type: Component, args: [{
selector: 'ejs-datamatrixgenerator',
inputs: inputs$2,
outputs: outputs$2,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
},] },
];
/**
* @nocollapse
*/
DataMatrixGeneratorComponent.ctorParameters = function () { return [
{ type: ElementRef, },
{ type: Renderer2, },
{ type: ViewContainerRef, },
{ type: Injector, },
]; };
DataMatrixGeneratorComponent = __decorate$2([
ComponentMixins([ComponentBase]),
__metadata$2("design:paramtypes", [ElementRef,
Renderer2,
ViewContainerRef,
Injector])
], DataMatrixGeneratorComponent);
/**
* NgModule definition for the DataMatrixGenerator component.
*/
var DataMatrixGeneratorModule = /** @class */ (function () {
function DataMatrixGeneratorModule() {
}
return DataMatrixGeneratorModule;
}());
DataMatrixGeneratorModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule],
declarations: [
DataMatrixGeneratorComponent
],
exports: [
DataMatrixGeneratorComponent
]
},] },
];
/**
* @nocollapse
*/
DataMatrixGeneratorModule.ctorParameters = function () { return []; };
/**
* NgModule definition for the DataMatrixGenerator component with providers.
*/
var DataMatrixGeneratorAllModule = /** @class */ (function () {
function DataMatrixGeneratorAllModule() {
}
return DataMatrixGeneratorAllModule;
}());
DataMatrixGeneratorAllModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule, DataMatrixGeneratorModule],
exports: [
DataMatrixGeneratorModule
],
providers: []
},] },
];
/**
* @nocollapse
*/
DataMatrixGeneratorAllModule.ctorParameters = function () { return []; };
/**
* Generated bundle index. Do not edit.
*/
export { BarcodeGeneratorComponent, BarcodeGeneratorModule, BarcodeGeneratorAllModule, QRCodeGeneratorComponent, QRCodeGeneratorModule, QRCodeGeneratorAllModule, DataMatrixGeneratorComponent, DataMatrixGeneratorModule, DataMatrixGeneratorAllModule, inputs as ɵa, outputs as ɵb, inputs$2 as ɵe, outputs$2 as ɵf, inputs$1 as ɵc, outputs$1 as ɵd };
export { BarcodeGenerator, BarcodeBase, OneDimension, BarcodeEvent, QuietZone, DataMatrixSize, QRCodeVersion, ErrorCorrectionLevel, createHtmlElement, getChildNode, measureText, setAttribute, createSvgElement, createMeasureElements, Point, Rect, Size, DisplayText, Margin, BarcodeCanvasRenderer, BarcodeRenderer, BarcodeSVGRenderer, CodaBar, Code128, Code128A, Code128B, Code128C, Code39, Ean8, Ean13, UpcA, UpcE, QRCode, ModuleValue, QRCodeGenerator, PdfQRBarcodeValues, ErrorCorrectionCodewords, DataMatrixGenerator, DataMatrix } from '@syncfusion/ej2-barcode-generator';
//# sourceMappingURL=ej2-angular-barcode-generator.es5.js.map
{"version":3,"file":"ej2-angular-barcode-generator.es5.js","sources":["~/@syncfusion/ej2-angular-barcode-generator/ej2-angular-barcode-generator.ts","~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator-all.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator.component.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator-all.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator.component.ts","~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator-all.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator.component.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {BarcodeGeneratorComponent,BarcodeGeneratorModule,BarcodeGeneratorAllModule,QRCodeGeneratorComponent,QRCodeGeneratorModule,QRCodeGeneratorAllModule,DataMatrixGeneratorComponent,DataMatrixGeneratorModule,DataMatrixGeneratorAllModule,BarcodeGenerator,BarcodeBase,BarcodeGeneratorModel,OneDimension,RenderingMode,BarcodeEvent,Alignment,TextPosition,QuietZone,DataMatrixEncoding,DataMatrixSize,BarcodeType,QRInputMode,QRCodeVersion,ErrorCorrectionLevel,BarcodeExportType,createHtmlElement,getChildNode,measureText,setAttribute,createSvgElement,createMeasureElements,Point,Rect,Size,DisplayText,DisplayTextModel,Margin,MarginModel,BarcodeCanvasRenderer,BarcodeRenderer,BaseAttributes,EncodingResult,PdfDataMatrixSymbolAttribute,Code93ExtendedValues,Code93ExtendedArrayAttribute,ValidateEvent,BarcodeSVGRenderer,CodaBar,Code128,Code128A,Code128B,Code128C,Code39,Ean8,Ean13,UpcA,UpcE,QRCode,ModuleValue,QRCodeGeneratorModel,QRCodeGenerator,PdfQRBarcodeValues,ErrorCorrectionCodewords,DataMatrixGenerator,DataMatrix,DataMatrixGeneratorModel} from './public_api';\n\nexport {inputs as ɵa,outputs as ɵb} from './src/barcode-generator/barcodegenerator.component';\nexport {inputs as ɵe,outputs as ɵf} from './src/datamatrix-generator/datamatrixgenerator.component';\nexport {inputs as ɵc,outputs as ɵd} from './src/qrcode-generator/qrcodegenerator.component';","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\nimport { DataMatrixGeneratorModule } from './datamatrixgenerator.module';\n/**\n * NgModule definition for the DataMatrixGenerator component with providers.\n */\nexport class DataMatrixGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DataMatrixGeneratorModule],\n exports: [\n DataMatrixGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DataMatrixGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\n/**\n * NgModule definition for the DataMatrixGenerator component.\n */\nexport class DataMatrixGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DataMatrixGeneratorComponent\n ],\n exports: [\n DataMatrixGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DataMatrixGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','encoding','foreColor','height','locale','margin','mode','size','value','width','xDimension'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * DataMatrix Component\n * ```html\n * <ej-datamatrix-generator></ej-datamatrix-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DataMatrixGeneratorComponent extends DataMatrixGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-datamatrixgenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DataMatrixGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorComponent.ctorParameters;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.context;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.invalid;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\nimport { QRCodeGeneratorModule } from './qrcodegenerator.module';\n/**\n * NgModule definition for the QRCodeGenerator component with providers.\n */\nexport class QRCodeGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, QRCodeGeneratorModule],\n exports: [\n QRCodeGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction QRCodeGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\n/**\n * NgModule definition for the QRCodeGenerator component.\n */\nexport class QRCodeGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n QRCodeGeneratorComponent\n ],\n exports: [\n QRCodeGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction QRCodeGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','errorCorrectionLevel','foreColor','height','locale','logo','margin','mode','value','version','width','xDimension'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * QRCode Component\n * ```html\n * <ej-qrcode-generator></ej-qrcode-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class QRCodeGeneratorComponent extends QRCodeGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-qrcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction QRCodeGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorComponent.ctorParameters;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.context;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.invalid;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\nimport { BarcodeGeneratorModule } from './barcodegenerator.module';\n/**\n * NgModule definition for the BarcodeGenerator component with providers.\n */\nexport class BarcodeGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, BarcodeGeneratorModule],\n exports: [\n BarcodeGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction BarcodeGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\n/**\n * NgModule definition for the BarcodeGenerator component.\n */\nexport class BarcodeGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n BarcodeGeneratorComponent\n ],\n exports: [\n BarcodeGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction BarcodeGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { BarcodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enableCheckSum','enablePersistence','enableRtl','foreColor','height','locale','margin','mode','type','value','width'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * Barcode Component\n * ```html\n * <ej-barcode-generator></ej-barcode-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class BarcodeGeneratorComponent extends BarcodeGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-barcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction BarcodeGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorComponent.ctorParameters;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.context;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.invalid;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["__metadata","__decorate","outputs","inputs","twoWays"],"mappings":"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"}
import { ChangeDetectionStrategy, Component, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
import { ComponentBase, ComponentMixins, setValue } from '@syncfusion/ej2-angular-base';
import { BarcodeGenerator, DataMatrixGenerator, QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';
import { CommonModule } from '@angular/common';
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
const inputs = ['backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width'];
const outputs = ['invalid'];
const twoWays = [''];
/**
* Barcode Component
* ```html
* <ej-barcode-generator></ej-barcode-generator>
* ```
*/
let BarcodeGeneratorComponent = class BarcodeGeneratorComponent extends BarcodeGenerator {
/**
* @param {?} ngEle
* @param {?} srenderer
* @param {?} viewContainerRef
* @param {?} injector
*/
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs);
this.addTwoWay.call(this, twoWays);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
/**
* @return {?}
*/
ngOnInit() {
this.context.ngOnInit(this);
}
/**
* @return {?}
*/
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
/**
* @return {?}
*/
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
/**
* @return {?}
*/
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
BarcodeGeneratorComponent.decorators = [
{ type: Component, args: [{
selector: 'ejs-barcodegenerator',
inputs: inputs,
outputs: outputs,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
},] },
];
/**
* @nocollapse
*/
BarcodeGeneratorComponent.ctorParameters = () => [
{ type: ElementRef, },
{ type: Renderer2, },
{ type: ViewContainerRef, },
{ type: Injector, },
];
BarcodeGeneratorComponent = __decorate([
ComponentMixins([ComponentBase]),
__metadata("design:paramtypes", [ElementRef,
Renderer2,
ViewContainerRef,
Injector])
], BarcodeGeneratorComponent);
/**
* NgModule definition for the BarcodeGenerator component.
*/
class BarcodeGeneratorModule {
}
BarcodeGeneratorModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule],
declarations: [
BarcodeGeneratorComponent
],
exports: [
BarcodeGeneratorComponent
]
},] },
];
/**
* @nocollapse
*/
BarcodeGeneratorModule.ctorParameters = () => [];
/**
* NgModule definition for the BarcodeGenerator component with providers.
*/
class BarcodeGeneratorAllModule {
}
BarcodeGeneratorAllModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule, BarcodeGeneratorModule],
exports: [
BarcodeGeneratorModule
],
providers: []
},] },
];
/**
* @nocollapse
*/
BarcodeGeneratorAllModule.ctorParameters = () => [];
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata$1 = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
const inputs$1 = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'logo', 'margin', 'mode', 'value', 'version', 'width', 'xDimension'];
const outputs$1 = ['invalid'];
const twoWays$1 = [''];
/**
* QRCode Component
* ```html
* <ej-qrcode-generator></ej-qrcode-generator>
* ```
*/
let QRCodeGeneratorComponent = class QRCodeGeneratorComponent extends QRCodeGenerator {
/**
* @param {?} ngEle
* @param {?} srenderer
* @param {?} viewContainerRef
* @param {?} injector
*/
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs$1);
this.addTwoWay.call(this, twoWays$1);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
/**
* @return {?}
*/
ngOnInit() {
this.context.ngOnInit(this);
}
/**
* @return {?}
*/
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
/**
* @return {?}
*/
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
/**
* @return {?}
*/
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
QRCodeGeneratorComponent.decorators = [
{ type: Component, args: [{
selector: 'ejs-qrcodegenerator',
inputs: inputs$1,
outputs: outputs$1,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
},] },
];
/**
* @nocollapse
*/
QRCodeGeneratorComponent.ctorParameters = () => [
{ type: ElementRef, },
{ type: Renderer2, },
{ type: ViewContainerRef, },
{ type: Injector, },
];
QRCodeGeneratorComponent = __decorate$1([
ComponentMixins([ComponentBase]),
__metadata$1("design:paramtypes", [ElementRef,
Renderer2,
ViewContainerRef,
Injector])
], QRCodeGeneratorComponent);
/**
* NgModule definition for the QRCodeGenerator component.
*/
class QRCodeGeneratorModule {
}
QRCodeGeneratorModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule],
declarations: [
QRCodeGeneratorComponent
],
exports: [
QRCodeGeneratorComponent
]
},] },
];
/**
* @nocollapse
*/
QRCodeGeneratorModule.ctorParameters = () => [];
/**
* NgModule definition for the QRCodeGenerator component with providers.
*/
class QRCodeGeneratorAllModule {
}
QRCodeGeneratorAllModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule, QRCodeGeneratorModule],
exports: [
QRCodeGeneratorModule
],
providers: []
},] },
];
/**
* @nocollapse
*/
QRCodeGeneratorAllModule.ctorParameters = () => [];
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata$2 = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
const inputs$2 = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension'];
const outputs$2 = ['invalid'];
const twoWays$2 = [''];
/**
* DataMatrix Component
* ```html
* <ej-datamatrix-generator></ej-datamatrix-generator>
* ```
*/
let DataMatrixGeneratorComponent = class DataMatrixGeneratorComponent extends DataMatrixGenerator {
/**
* @param {?} ngEle
* @param {?} srenderer
* @param {?} viewContainerRef
* @param {?} injector
*/
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs$2);
this.addTwoWay.call(this, twoWays$2);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
/**
* @return {?}
*/
ngOnInit() {
this.context.ngOnInit(this);
}
/**
* @return {?}
*/
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
/**
* @return {?}
*/
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
/**
* @return {?}
*/
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
DataMatrixGeneratorComponent.decorators = [
{ type: Component, args: [{
selector: 'ejs-datamatrixgenerator',
inputs: inputs$2,
outputs: outputs$2,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
},] },
];
/**
* @nocollapse
*/
DataMatrixGeneratorComponent.ctorParameters = () => [
{ type: ElementRef, },
{ type: Renderer2, },
{ type: ViewContainerRef, },
{ type: Injector, },
];
DataMatrixGeneratorComponent = __decorate$2([
ComponentMixins([ComponentBase]),
__metadata$2("design:paramtypes", [ElementRef,
Renderer2,
ViewContainerRef,
Injector])
], DataMatrixGeneratorComponent);
/**
* NgModule definition for the DataMatrixGenerator component.
*/
class DataMatrixGeneratorModule {
}
DataMatrixGeneratorModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule],
declarations: [
DataMatrixGeneratorComponent
],
exports: [
DataMatrixGeneratorComponent
]
},] },
];
/**
* @nocollapse
*/
DataMatrixGeneratorModule.ctorParameters = () => [];
/**
* NgModule definition for the DataMatrixGenerator component with providers.
*/
class DataMatrixGeneratorAllModule {
}
DataMatrixGeneratorAllModule.decorators = [
{ type: NgModule, args: [{
imports: [CommonModule, DataMatrixGeneratorModule],
exports: [
DataMatrixGeneratorModule
],
providers: []
},] },
];
/**
* @nocollapse
*/
DataMatrixGeneratorAllModule.ctorParameters = () => [];
/**
* Generated bundle index. Do not edit.
*/
export { BarcodeGeneratorComponent, BarcodeGeneratorModule, BarcodeGeneratorAllModule, QRCodeGeneratorComponent, QRCodeGeneratorModule, QRCodeGeneratorAllModule, DataMatrixGeneratorComponent, DataMatrixGeneratorModule, DataMatrixGeneratorAllModule, inputs as ɵa, outputs as ɵb, inputs$2 as ɵe, outputs$2 as ɵf, inputs$1 as ɵc, outputs$1 as ɵd };
export { BarcodeGenerator, BarcodeBase, OneDimension, BarcodeEvent, QuietZone, DataMatrixSize, QRCodeVersion, ErrorCorrectionLevel, createHtmlElement, getChildNode, measureText, setAttribute, createSvgElement, createMeasureElements, Point, Rect, Size, DisplayText, Margin, BarcodeCanvasRenderer, BarcodeRenderer, BarcodeSVGRenderer, CodaBar, Code128, Code128A, Code128B, Code128C, Code39, Ean8, Ean13, UpcA, UpcE, QRCode, ModuleValue, QRCodeGenerator, PdfQRBarcodeValues, ErrorCorrectionCodewords, DataMatrixGenerator, DataMatrix } from '@syncfusion/ej2-barcode-generator';
//# sourceMappingURL=ej2-angular-barcode-generator.js.map
{"version":3,"file":"ej2-angular-barcode-generator.js","sources":["~/@syncfusion/ej2-angular-barcode-generator/ej2-angular-barcode-generator.ts","~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator-all.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator.component.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator-all.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator.component.ts","~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator-all.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator.component.ts"],"sourcesContent":["/**\n * Generated bundle index. Do not edit.\n */\n\nexport {BarcodeGeneratorComponent,BarcodeGeneratorModule,BarcodeGeneratorAllModule,QRCodeGeneratorComponent,QRCodeGeneratorModule,QRCodeGeneratorAllModule,DataMatrixGeneratorComponent,DataMatrixGeneratorModule,DataMatrixGeneratorAllModule,BarcodeGenerator,BarcodeBase,BarcodeGeneratorModel,OneDimension,RenderingMode,BarcodeEvent,Alignment,TextPosition,QuietZone,DataMatrixEncoding,DataMatrixSize,BarcodeType,QRInputMode,QRCodeVersion,ErrorCorrectionLevel,BarcodeExportType,createHtmlElement,getChildNode,measureText,setAttribute,createSvgElement,createMeasureElements,Point,Rect,Size,DisplayText,DisplayTextModel,Margin,MarginModel,BarcodeCanvasRenderer,BarcodeRenderer,BaseAttributes,EncodingResult,PdfDataMatrixSymbolAttribute,Code93ExtendedValues,Code93ExtendedArrayAttribute,ValidateEvent,BarcodeSVGRenderer,CodaBar,Code128,Code128A,Code128B,Code128C,Code39,Ean8,Ean13,UpcA,UpcE,QRCode,ModuleValue,QRCodeGeneratorModel,QRCodeGenerator,PdfQRBarcodeValues,ErrorCorrectionCodewords,DataMatrixGenerator,DataMatrix,DataMatrixGeneratorModel} from './public_api';\n\nexport {inputs as ɵa,outputs as ɵb} from './src/barcode-generator/barcodegenerator.component';\nexport {inputs as ɵe,outputs as ɵf} from './src/datamatrix-generator/datamatrixgenerator.component';\nexport {inputs as ɵc,outputs as ɵd} from './src/qrcode-generator/qrcodegenerator.component';","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\nimport { DataMatrixGeneratorModule } from './datamatrixgenerator.module';\n/**\n * NgModule definition for the DataMatrixGenerator component with providers.\n */\nexport class DataMatrixGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DataMatrixGeneratorModule],\n exports: [\n DataMatrixGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DataMatrixGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\n/**\n * NgModule definition for the DataMatrixGenerator component.\n */\nexport class DataMatrixGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DataMatrixGeneratorComponent\n ],\n exports: [\n DataMatrixGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DataMatrixGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','encoding','foreColor','height','locale','margin','mode','size','value','width','xDimension'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * DataMatrix Component\n * ```html\n * <ej-datamatrix-generator></ej-datamatrix-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DataMatrixGeneratorComponent extends DataMatrixGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-datamatrixgenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DataMatrixGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorComponent.ctorParameters;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.context;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.invalid;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\nimport { QRCodeGeneratorModule } from './qrcodegenerator.module';\n/**\n * NgModule definition for the QRCodeGenerator component with providers.\n */\nexport class QRCodeGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, QRCodeGeneratorModule],\n exports: [\n QRCodeGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction QRCodeGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\n/**\n * NgModule definition for the QRCodeGenerator component.\n */\nexport class QRCodeGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n QRCodeGeneratorComponent\n ],\n exports: [\n QRCodeGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction QRCodeGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','errorCorrectionLevel','foreColor','height','locale','logo','margin','mode','value','version','width','xDimension'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * QRCode Component\n * ```html\n * <ej-qrcode-generator></ej-qrcode-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class QRCodeGeneratorComponent extends QRCodeGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-qrcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction QRCodeGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorComponent.ctorParameters;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.context;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.invalid;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\nimport { BarcodeGeneratorModule } from './barcodegenerator.module';\n/**\n * NgModule definition for the BarcodeGenerator component with providers.\n */\nexport class BarcodeGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, BarcodeGeneratorModule],\n exports: [\n BarcodeGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction BarcodeGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\n/**\n * NgModule definition for the BarcodeGenerator component.\n */\nexport class BarcodeGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n BarcodeGeneratorComponent\n ],\n exports: [\n BarcodeGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction BarcodeGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { BarcodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enableCheckSum','enablePersistence','enableRtl','foreColor','height','locale','margin','mode','type','value','width'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * Barcode Component\n * ```html\n * <ej-barcode-generator></ej-barcode-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class BarcodeGeneratorComponent extends BarcodeGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-barcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction BarcodeGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorComponent.ctorParameters;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.context;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.invalid;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["__metadata","__decorate","outputs","inputs","twoWays"],"mappings":";;;;;;;;;;;;;;ASAA,AAMO,MAAM,MAAA,GAAmB,CAAA,iBAAE,EAAiB,aAAC,EAAa,gBAAC,EAAgB,mBAAC,EAAmB,WAAC,EAAW,WAAC,EAAW,QAAC,EAAQ,QAAC,EAAQ,QAAC,EAAQ,MAAC,EAAM,MAAC,EAAM,OAAC,EAAO,OAAC,CAAO,CAAC;AACxL,AAAO,MAAM,OAAA,GAAoB,CAAA,SAAE,CAAS,CAAC;AAC7C,AAAO,MAAM,OAAA,GAAoB,CAAA,EAAE,CAAE,CAAC;;;;;;;AAQtC,IAAa,yBAAyB,GAAtC,MAAA,yBAAuC,SAAQ,gBAAgB,CAA/D;;;;;;;IAUA,WAAA,CADwB,KAAO,EAAoB,SAAW,EAAmB,gBAAkB,EAAyB,QAAU,EACtI;QAIQ,KAAK,EAAE,CAAC;QALQ,IAAxB,CAAA,KAAwB,GAAA,KAAA,CAAO;QAAoB,IAAnD,CAAA,SAAmD,GAAA,SAAA,CAAW;QAAmB,IAAjF,CAAA,gBAAiF,GAAA,gBAAA,CAAkB;QAAyB,IAA5H,CAAA,QAA4H,GAAA,QAAA,CAAU;QAM9H,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC;QACxC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,IAAI,EAAE,CAAC;QAElD,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;QAC7B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QACnC,QAAQ,CAAC,iBAAiB,EAAE,IAAI,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC;QACzD,IAAI,CAAC,OAAO,GAAI,IAAI,aAAa,EAAE,CAAC;KACvC;;;;IAFA,QAAA,GAAL;QAOQ,IAAI,CANC,OAAC,CAAO,QAAC,CAAQ,IAAC,CAAI,CAAC;KAO/B;;;;IAJA,eAAA,GAAL;QASQ,IAAI,CARC,OAAC,CAAO,eAAC,CAAe,IAAC,CAAI,CAAC;KAStC;;;;IANA,WAAA,GAAL;QAWQ,IAAI,CAVC,OAAC,CAAO,WAAC,CAAW,IAAC,CAAI,CAAC;KAWlC;;;;IARA,qBAAA,GAAL;QAcQ,IAAI,CAZC,OAAC,CAAO,qBAAC,CAAqB,IAAC,CAAI,CAAC;KAa5C;CAwBJ,CAAA;AAhCM,yBAAP,CAAA,UAAO,GAAoC;IAY3C,EAXE,IAAA,EAAM,SAAA,EAAW,IAAA,EAAM,CAAA;gBAYrB,QAAQ,EAXE,sBAAA;gBAYV,MAAM,EAXE,MAAA;gBAYR,OAAO,EAXE,OAAA;gBAYT,QAAQ,EAXE,EAAA;gBAYV,eAAe,EAXE,uBAAA,CAAwB,MAAC;gBAY1C,OAAO,EAXE,EAaR;aACJ,EAXC,EAAG;CAYJ,CAXC;;;;AAED,yBAAD,CAAA,cAAC,GAAA,MAAA;IAcD,EAAC,IAAI,EAAE,UAAU,GAAG;IACpB,EAAC,IAAI,EAAE,SAAS,GAAG;IACnB,EAAC,IAAI,EAAE,gBAAgB,GAAG;IAC1B,EAAC,IAAI,EAAE,QAAQ,GAAG;CACjB,CAAC;AAtEW,yBAAyB,GAAtC,UAAA,CAAA;IACC,eAAA,CAAA,CAAA,aAAA,CAAA,CAAA;IAQD,UAAA,CAAA,mBAAA,EAAA,CAA+B,UAAA;QAA+B,SAAA;QAAoC,gBAAC;QAAmC,QAAA,CAAtI,CAAA;CATA,EAAa,yBAAyB,CAuErC,CAvED;;ADbA;;;AAGA,AAAA,MAAA,sBAAA,CAAA;;AAE6C,sBAA7C,CAAA,UAA6C,GAAoC;IADjF,EAEE,IAAA,EAAM,QAAA,EAAU,IAAA,EAAM,CAAA;gBADpB,OAAO,EAEE,CAAA,YAAE,CAAY;gBADvB,YAAY,EAEE;oBADV,yBAAyB;iBAC5B;gBACD,OAAO,EAEE;oBADL,yBAAyB;iBAC5B;aACJ,EAEC,EAAG;CADJ,CAEC;;;;AAED,sBAAD,CAAA,cAAC,GAAA,MAAA,EACA,CAAC;;ADjBF;;;AAGA,AAAA,MAAA,yBAAA,CAAA;;AAMgD,yBAAhD,CAAA,UAAgD,GAAoC;IALpF,EAME,IAAA,EAAM,QAAA,EAAU,IAAA,EAAM,CAAA;gBALpB,OAAO,EAME,CAAA,YAAE,EAAa,sBAAA,CAAuB;gBAL/C,OAAO,EAME;oBALL,sBAAsB;iBACzB;gBACD,SAAS,EAMC,EAJT;aACJ,EAMC,EAAG;CALJ,CAMC;;;;AAED,yBAAD,CAAA,cAAC,GAAA,MAAA,EAHA,CAAC;;;;;;;;;;;ADtBF,AAMO,MAAMG,QAAA,GAAmB,CAAA,iBAAE,EAAiB,aAAC,EAAa,mBAAC,EAAmB,WAAC,EAAW,sBAAC,EAAsB,WAAC,EAAW,QAAC,EAAQ,QAAC,EAAQ,MAAC,EAAM,QAAC,EAAQ,MAAC,EAAM,OAAC,EAAO,SAAC,EAAS,OAAC,EAAO,YAAC,CAAY,CAAC;AACrN,AAAO,MAAMD,SAAA,GAAoB,CAAA,SAAE,CAAS,CAAC;AAC7C,AAAO,MAAME,SAAA,GAAoB,CAAA,EAAE,CAAE,CAAC;;;;;;;AAQtC,IAAa,wBAAwB,GAArC,MAAA,wBAAsC,SAAQ,eAAe,CAA7D;;;;;;;IAUA,WAAA,CADwB,KAAO,EAAoB,SAAW,EAAmB,gBAAkB,EAAyB,QAAU,EACtI;QAIQ,KAAK,EAAE,CAAC;QALQ,IAAxB,CAAA,KAAwB,GAAA,KAAA,CAAO;QAAoB,IAAnD,CAAA,SAAmD,GAAA,SAAA,CAAW;QAAmB,IAAjF,CAAA,gBAAiF,GAAA,gBAAA,CAAkB;QAAyB,IAA5H,CAAA,QAA4H,GAAA,QAAA,CAAU;QAM9H,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC;QACxC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,IAAI,EAAE,CAAC;QAElD,IAAI,CAAC,cAAc,CAACF,SAAO,CAAC,CAAC;QAC7B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAEE,SAAO,CAAC,CAAC;QACnC,QAAQ,CAAC,iBAAiB,EAAE,IAAI,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC;QACzD,IAAI,CAAC,OAAO,GAAI,IAAI,aAAa,EAAE,CAAC;KACvC;;;;IAFA,QAAA,GAAL;QAOQ,IAAI,CANC,OAAC,CAAO,QAAC,CAAQ,IAAC,CAAI,CAAC;KAO/B;;;;IAJA,eAAA,GAAL;QASQ,IAAI,CARC,OAAC,CAAO,eAAC,CAAe,IAAC,CAAI,CAAC;KAStC;;;;IANA,WAAA,GAAL;QAWQ,IAAI,CAVC,OAAC,CAAO,WAAC,CAAW,IAAC,CAAI,CAAC;KAWlC;;;;IARA,qBAAA,GAAL;QAcQ,IAAI,CAZC,OAAC,CAAO,qBAAC,CAAqB,IAAC,CAAI,CAAC;KAa5C;CAwBJ,CAAA;AAhCM,wBAAP,CAAA,UAAO,GAAoC;IAY3C,EAXE,IAAA,EAAM,SAAA,EAAW,IAAA,EAAM,CAAA;gBAYrB,QAAQ,EAXE,qBAAA;gBAYV,MAAM,EAXED,QAAA;gBAYR,OAAO,EAXED,SAAA;gBAYT,QAAQ,EAXE,EAAA;gBAYV,eAAe,EAXE,uBAAA,CAAwB,MAAC;gBAY1C,OAAO,EAXE,EAaR;aACJ,EAXC,EAAG;CAYJ,CAXC;;;;AAED,wBAAD,CAAA,cAAC,GAAA,MAAA;IAcD,EAAC,IAAI,EAAE,UAAU,GAAG;IACpB,EAAC,IAAI,EAAE,SAAS,GAAG;IACnB,EAAC,IAAI,EAAE,gBAAgB,GAAG;IAC1B,EAAC,IAAI,EAAE,QAAQ,GAAG;CACjB,CAAC;AAtEW,wBAAwB,GAArCD,YAAA,CAAA;IACC,eAAA,CAAA,CAAA,aAAA,CAAA,CAAA;IAQDD,YAAA,CAAA,mBAAA,EAAA,CAA+B,UAAA;QAA+B,SAAA;QAAoC,gBAAC;QAAmC,QAAA,CAAtI,CAAA;CATA,EAAa,wBAAwB,CAuEpC,CAvED;;ADbA;;;AAGA,AAAA,MAAA,qBAAA,CAAA;;AAE4C,qBAA5C,CAAA,UAA4C,GAAoC;IADhF,EAEE,IAAA,EAAM,QAAA,EAAU,IAAA,EAAM,CAAA;gBADpB,OAAO,EAEE,CAAA,YAAE,CAAY;gBADvB,YAAY,EAEE;oBADV,wBAAwB;iBAC3B;gBACD,OAAO,EAEE;oBADL,wBAAwB;iBAC3B;aACJ,EAEC,EAAG;CADJ,CAEC;;;;AAED,qBAAD,CAAA,cAAC,GAAA,MAAA,EACA,CAAC;;ADjBF;;;AAGA,AAAA,MAAA,wBAAA,CAAA;;AAM+C,wBAA/C,CAAA,UAA+C,GAAoC;IALnF,EAME,IAAA,EAAM,QAAA,EAAU,IAAA,EAAM,CAAA;gBALpB,OAAO,EAME,CAAA,YAAE,EAAa,qBAAA,CAAsB;gBAL9C,OAAO,EAME;oBALL,qBAAqB;iBACxB;gBACD,SAAS,EAMC,EAJT;aACJ,EAMC,EAAG;CALJ,CAMC;;;;AAED,wBAAD,CAAA,cAAC,GAAA,MAAA,EAHA,CAAC;;;;;;;;;;;ADtBF,AAMO,MAAMG,QAAA,GAAmB,CAAA,iBAAE,EAAiB,aAAC,EAAa,mBAAC,EAAmB,WAAC,EAAW,UAAC,EAAU,WAAC,EAAW,QAAC,EAAQ,QAAC,EAAQ,QAAC,EAAQ,MAAC,EAAM,MAAC,EAAM,OAAC,EAAO,OAAC,EAAO,YAAC,CAAY,CAAC;AAC/L,AAAO,MAAMD,SAAA,GAAoB,CAAA,SAAE,CAAS,CAAC;AAC7C,AAAO,MAAME,SAAA,GAAoB,CAAA,EAAE,CAAE,CAAC;;;;;;;AAQtC,IAAa,4BAA4B,GAAzC,MAAA,4BAA0C,SAAQ,mBAAmB,CAArE;;;;;;;IAUA,WAAA,CADwB,KAAO,EAAoB,SAAW,EAAmB,gBAAkB,EAAyB,QAAU,EACtI;QAIQ,KAAK,EAAE,CAAC;QALQ,IAAxB,CAAA,KAAwB,GAAA,KAAA,CAAO;QAAoB,IAAnD,CAAA,SAAmD,GAAA,SAAA,CAAW;QAAmB,IAAjF,CAAA,gBAAiF,GAAA,gBAAA,CAAkB;QAAyB,IAA5H,CAAA,QAA4H,GAAA,QAAA,CAAU;QAM9H,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC;QACxC,IAAI,CAAC,eAAe,GAAG,IAAI,CAAC,eAAe,IAAI,EAAE,CAAC;QAElD,IAAI,CAAC,cAAc,CAACF,SAAO,CAAC,CAAC;QAC7B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,EAAEE,SAAO,CAAC,CAAC;QACnC,QAAQ,CAAC,iBAAiB,EAAE,IAAI,EAAE,IAAI,CAAC,gBAAgB,CAAC,CAAC;QACzD,IAAI,CAAC,OAAO,GAAI,IAAI,aAAa,EAAE,CAAC;KACvC;;;;IAFA,QAAA,GAAL;QAOQ,IAAI,CANC,OAAC,CAAO,QAAC,CAAQ,IAAC,CAAI,CAAC;KAO/B;;;;IAJA,eAAA,GAAL;QASQ,IAAI,CARC,OAAC,CAAO,eAAC,CAAe,IAAC,CAAI,CAAC;KAStC;;;;IANA,WAAA,GAAL;QAWQ,IAAI,CAVC,OAAC,CAAO,WAAC,CAAW,IAAC,CAAI,CAAC;KAWlC;;;;IARA,qBAAA,GAAL;QAcQ,IAAI,CAZC,OAAC,CAAO,qBAAC,CAAqB,IAAC,CAAI,CAAC;KAa5C;CAwBJ,CAAA;AAhCM,4BAAP,CAAA,UAAO,GAAoC;IAY3C,EAXE,IAAA,EAAM,SAAA,EAAW,IAAA,EAAM,CAAA;gBAYrB,QAAQ,EAXE,yBAAA;gBAYV,MAAM,EAXED,QAAA;gBAYR,OAAO,EAXED,SAAA;gBAYT,QAAQ,EAXE,EAAA;gBAYV,eAAe,EAXE,uBAAA,CAAwB,MAAC;gBAY1C,OAAO,EAXE,EAaR;aACJ,EAXC,EAAG;CAYJ,CAXC;;;;AAED,4BAAD,CAAA,cAAC,GAAA,MAAA;IAcD,EAAC,IAAI,EAAE,UAAU,GAAG;IACpB,EAAC,IAAI,EAAE,SAAS,GAAG;IACnB,EAAC,IAAI,EAAE,gBAAgB,GAAG;IAC1B,EAAC,IAAI,EAAE,QAAQ,GAAG;CACjB,CAAC;AAtEW,4BAA4B,GAAzCD,YAAA,CAAA;IACC,eAAA,CAAA,CAAA,aAAA,CAAA,CAAA;IAQDD,YAAA,CAAA,mBAAA,EAAA,CAA+B,UAAA;QAA+B,SAAA;QAAoC,gBAAC;QAAmC,QAAA,CAAtI,CAAA;CATA,EAAa,4BAA4B,CAuExC,CAvED;;ADbA;;;AAGA,AAAA,MAAA,yBAAA,CAAA;;AAEgD,yBAAhD,CAAA,UAAgD,GAAoC;IADpF,EAEE,IAAA,EAAM,QAAA,EAAU,IAAA,EAAM,CAAA;gBADpB,OAAO,EAEE,CAAA,YAAE,CAAY;gBADvB,YAAY,EAEE;oBADV,4BAA4B;iBAC/B;gBACD,OAAO,EAEE;oBADL,4BAA4B;iBAC/B;aACJ,EAEC,EAAG;CADJ,CAEC;;;;AAED,yBAAD,CAAA,cAAC,GAAA,MAAA,EACA,CAAC;;ADjBF;;;AAGA,AAAA,MAAA,4BAAA,CAAA;;AAMmD,4BAAnD,CAAA,UAAmD,GAAoC;IALvF,EAME,IAAA,EAAM,QAAA,EAAU,IAAA,EAAM,CAAA;gBALpB,OAAO,EAME,CAAA,YAAE,EAAa,yBAAA,CAA0B;gBALlD,OAAO,EAME;oBALL,yBAAyB;iBAC5B;gBACD,SAAS,EAMC,EAJT;aACJ,EAMC,EAAG;CALJ,CAMC;;;;AAED,4BAAD,CAAA,cAAC,GAAA,MAAA,EAHA,CAAC;;ADtBF;;GAEG;;;;;"}
/*!
* filename: ej2-angular-barcode-generator.umd.js
* version : 29.2.4
* Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
* Use of this code is subject to the terms of our license.
* A copy of the current license can be obtained at any time by e-mailing
* licensing@syncfusion.com. Any infringement will be prosecuted under
* applicable laws.
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@syncfusion/ej2-angular-base'), require('@syncfusion/ej2-barcode-generator'), require('@angular/common')) :
typeof define === 'function' && define.amd ? define(['exports', '@angular/core', '@syncfusion/ej2-angular-base', '@syncfusion/ej2-barcode-generator', '@angular/common'], factory) :
(factory((global['ej2-angular-barcode-generator'] = {}),global.ng.core,global.ej2.angular.base,global.ej2.barcode.generator,global.ng.common));
}(this, (function (exports,core,ej2AngularBase,ej2BarcodeGenerator,common) { 'use strict';
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
r = Reflect.decorate(decorators, target, key, desc);
else
for (var i = decorators.length - 1; i >= 0; i--)
if (d = decorators[i])
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
return Reflect.metadata(k, v);
};
var inputs = ['backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width'];
var outputs = ['invalid'];
var twoWays = [''];
/**
* Barcode Component
* ```html
* <ej-barcode-generator></ej-barcode-generator>
* ```
*/
exports.BarcodeGeneratorComponent = /** @class */ (function (_super) {
__extends(BarcodeGeneratorComponent, _super);
/**
* @param {?} ngEle
* @param {?} srenderer
* @param {?} viewContainerRef
* @param {?} injector
*/
function BarcodeGeneratorComponent(ngEle, srenderer, viewContainerRef, injector) {
var _this = _super.call(this) || this;
_this.ngEle = ngEle;
_this.srenderer = srenderer;
_this.viewContainerRef = viewContainerRef;
_this.injector = injector;
_this.element = _this.ngEle.nativeElement;
_this.injectedModules = _this.injectedModules || [];
_this.registerEvents(outputs);
_this.addTwoWay.call(_this, twoWays);
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
_this.context = new ej2AngularBase.ComponentBase();
return _this;
}
/**
* @return {?}
*/
BarcodeGeneratorComponent.prototype.ngOnInit = function () {
this.context.ngOnInit(this);
};
/**
* @return {?}
*/
BarcodeGeneratorComponent.prototype.ngAfterViewInit = function () {
this.context.ngAfterViewInit(this);
};
/**
* @return {?}
*/
BarcodeGeneratorComponent.prototype.ngOnDestroy = function () {
this.context.ngOnDestroy(this);
};
/**
* @return {?}
*/
BarcodeGeneratorComponent.prototype.ngAfterContentChecked = function () {
this.context.ngAfterContentChecked(this);
};
return BarcodeGeneratorComponent;
}(ej2BarcodeGenerator.BarcodeGenerator));
exports.BarcodeGeneratorComponent.decorators = [
{ type: core.Component, args: [{
selector: 'ejs-barcodegenerator',
inputs: inputs,
outputs: outputs,
template: '',
changeDetection: core.ChangeDetectionStrategy.OnPush,
queries: {}
},] },
];
/**
* @nocollapse
*/
exports.BarcodeGeneratorComponent.ctorParameters = function () { return [
{ type: core.ElementRef, },
{ type: core.Renderer2, },
{ type: core.ViewContainerRef, },
{ type: core.Injector, },
]; };
exports.BarcodeGeneratorComponent = __decorate([
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
__metadata("design:paramtypes", [core.ElementRef,
core.Renderer2,
core.ViewContainerRef,
core.Injector])
], exports.BarcodeGeneratorComponent);
/**
* NgModule definition for the BarcodeGenerator component.
*/
var BarcodeGeneratorModule = /** @class */ (function () {
function BarcodeGeneratorModule() {
}
return BarcodeGeneratorModule;
}());
BarcodeGeneratorModule.decorators = [
{ type: core.NgModule, args: [{
imports: [common.CommonModule],
declarations: [
exports.BarcodeGeneratorComponent
],
exports: [
exports.BarcodeGeneratorComponent
]
},] },
];
/**
* @nocollapse
*/
BarcodeGeneratorModule.ctorParameters = function () { return []; };
/**
* NgModule definition for the BarcodeGenerator component with providers.
*/
var BarcodeGeneratorAllModule = /** @class */ (function () {
function BarcodeGeneratorAllModule() {
}
return BarcodeGeneratorAllModule;
}());
BarcodeGeneratorAllModule.decorators = [
{ type: core.NgModule, args: [{
imports: [common.CommonModule, BarcodeGeneratorModule],
exports: [
BarcodeGeneratorModule
],
providers: []
},] },
];
/**
* @nocollapse
*/
BarcodeGeneratorAllModule.ctorParameters = function () { return []; };
var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
r = Reflect.decorate(decorators, target, key, desc);
else
for (var i = decorators.length - 1; i >= 0; i--)
if (d = decorators[i])
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata$1 = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
return Reflect.metadata(k, v);
};
var inputs$1 = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'logo', 'margin', 'mode', 'value', 'version', 'width', 'xDimension'];
var outputs$1 = ['invalid'];
var twoWays$1 = [''];
/**
* QRCode Component
* ```html
* <ej-qrcode-generator></ej-qrcode-generator>
* ```
*/
exports.QRCodeGeneratorComponent = /** @class */ (function (_super) {
__extends(QRCodeGeneratorComponent, _super);
/**
* @param {?} ngEle
* @param {?} srenderer
* @param {?} viewContainerRef
* @param {?} injector
*/
function QRCodeGeneratorComponent(ngEle, srenderer, viewContainerRef, injector) {
var _this = _super.call(this) || this;
_this.ngEle = ngEle;
_this.srenderer = srenderer;
_this.viewContainerRef = viewContainerRef;
_this.injector = injector;
_this.element = _this.ngEle.nativeElement;
_this.injectedModules = _this.injectedModules || [];
_this.registerEvents(outputs$1);
_this.addTwoWay.call(_this, twoWays$1);
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
_this.context = new ej2AngularBase.ComponentBase();
return _this;
}
/**
* @return {?}
*/
QRCodeGeneratorComponent.prototype.ngOnInit = function () {
this.context.ngOnInit(this);
};
/**
* @return {?}
*/
QRCodeGeneratorComponent.prototype.ngAfterViewInit = function () {
this.context.ngAfterViewInit(this);
};
/**
* @return {?}
*/
QRCodeGeneratorComponent.prototype.ngOnDestroy = function () {
this.context.ngOnDestroy(this);
};
/**
* @return {?}
*/
QRCodeGeneratorComponent.prototype.ngAfterContentChecked = function () {
this.context.ngAfterContentChecked(this);
};
return QRCodeGeneratorComponent;
}(ej2BarcodeGenerator.QRCodeGenerator));
exports.QRCodeGeneratorComponent.decorators = [
{ type: core.Component, args: [{
selector: 'ejs-qrcodegenerator',
inputs: inputs$1,
outputs: outputs$1,
template: '',
changeDetection: core.ChangeDetectionStrategy.OnPush,
queries: {}
},] },
];
/**
* @nocollapse
*/
exports.QRCodeGeneratorComponent.ctorParameters = function () { return [
{ type: core.ElementRef, },
{ type: core.Renderer2, },
{ type: core.ViewContainerRef, },
{ type: core.Injector, },
]; };
exports.QRCodeGeneratorComponent = __decorate$1([
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
__metadata$1("design:paramtypes", [core.ElementRef,
core.Renderer2,
core.ViewContainerRef,
core.Injector])
], exports.QRCodeGeneratorComponent);
/**
* NgModule definition for the QRCodeGenerator component.
*/
var QRCodeGeneratorModule = /** @class */ (function () {
function QRCodeGeneratorModule() {
}
return QRCodeGeneratorModule;
}());
QRCodeGeneratorModule.decorators = [
{ type: core.NgModule, args: [{
imports: [common.CommonModule],
declarations: [
exports.QRCodeGeneratorComponent
],
exports: [
exports.QRCodeGeneratorComponent
]
},] },
];
/**
* @nocollapse
*/
QRCodeGeneratorModule.ctorParameters = function () { return []; };
/**
* NgModule definition for the QRCodeGenerator component with providers.
*/
var QRCodeGeneratorAllModule = /** @class */ (function () {
function QRCodeGeneratorAllModule() {
}
return QRCodeGeneratorAllModule;
}());
QRCodeGeneratorAllModule.decorators = [
{ type: core.NgModule, args: [{
imports: [common.CommonModule, QRCodeGeneratorModule],
exports: [
QRCodeGeneratorModule
],
providers: []
},] },
];
/**
* @nocollapse
*/
QRCodeGeneratorAllModule.ctorParameters = function () { return []; };
var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
r = Reflect.decorate(decorators, target, key, desc);
else
for (var i = decorators.length - 1; i >= 0; i--)
if (d = decorators[i])
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata$2 = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
return Reflect.metadata(k, v);
};
var inputs$2 = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension'];
var outputs$2 = ['invalid'];
var twoWays$2 = [''];
/**
* DataMatrix Component
* ```html
* <ej-datamatrix-generator></ej-datamatrix-generator>
* ```
*/
exports.DataMatrixGeneratorComponent = /** @class */ (function (_super) {
__extends(DataMatrixGeneratorComponent, _super);
/**
* @param {?} ngEle
* @param {?} srenderer
* @param {?} viewContainerRef
* @param {?} injector
*/
function DataMatrixGeneratorComponent(ngEle, srenderer, viewContainerRef, injector) {
var _this = _super.call(this) || this;
_this.ngEle = ngEle;
_this.srenderer = srenderer;
_this.viewContainerRef = viewContainerRef;
_this.injector = injector;
_this.element = _this.ngEle.nativeElement;
_this.injectedModules = _this.injectedModules || [];
_this.registerEvents(outputs$2);
_this.addTwoWay.call(_this, twoWays$2);
ej2AngularBase.setValue('currentInstance', _this, _this.viewContainerRef);
_this.context = new ej2AngularBase.ComponentBase();
return _this;
}
/**
* @return {?}
*/
DataMatrixGeneratorComponent.prototype.ngOnInit = function () {
this.context.ngOnInit(this);
};
/**
* @return {?}
*/
DataMatrixGeneratorComponent.prototype.ngAfterViewInit = function () {
this.context.ngAfterViewInit(this);
};
/**
* @return {?}
*/
DataMatrixGeneratorComponent.prototype.ngOnDestroy = function () {
this.context.ngOnDestroy(this);
};
/**
* @return {?}
*/
DataMatrixGeneratorComponent.prototype.ngAfterContentChecked = function () {
this.context.ngAfterContentChecked(this);
};
return DataMatrixGeneratorComponent;
}(ej2BarcodeGenerator.DataMatrixGenerator));
exports.DataMatrixGeneratorComponent.decorators = [
{ type: core.Component, args: [{
selector: 'ejs-datamatrixgenerator',
inputs: inputs$2,
outputs: outputs$2,
template: '',
changeDetection: core.ChangeDetectionStrategy.OnPush,
queries: {}
},] },
];
/**
* @nocollapse
*/
exports.DataMatrixGeneratorComponent.ctorParameters = function () { return [
{ type: core.ElementRef, },
{ type: core.Renderer2, },
{ type: core.ViewContainerRef, },
{ type: core.Injector, },
]; };
exports.DataMatrixGeneratorComponent = __decorate$2([
ej2AngularBase.ComponentMixins([ej2AngularBase.ComponentBase]),
__metadata$2("design:paramtypes", [core.ElementRef,
core.Renderer2,
core.ViewContainerRef,
core.Injector])
], exports.DataMatrixGeneratorComponent);
/**
* NgModule definition for the DataMatrixGenerator component.
*/
var DataMatrixGeneratorModule = /** @class */ (function () {
function DataMatrixGeneratorModule() {
}
return DataMatrixGeneratorModule;
}());
DataMatrixGeneratorModule.decorators = [
{ type: core.NgModule, args: [{
imports: [common.CommonModule],
declarations: [
exports.DataMatrixGeneratorComponent
],
exports: [
exports.DataMatrixGeneratorComponent
]
},] },
];
/**
* @nocollapse
*/
DataMatrixGeneratorModule.ctorParameters = function () { return []; };
/**
* NgModule definition for the DataMatrixGenerator component with providers.
*/
var DataMatrixGeneratorAllModule = /** @class */ (function () {
function DataMatrixGeneratorAllModule() {
}
return DataMatrixGeneratorAllModule;
}());
DataMatrixGeneratorAllModule.decorators = [
{ type: core.NgModule, args: [{
imports: [common.CommonModule, DataMatrixGeneratorModule],
exports: [
DataMatrixGeneratorModule
],
providers: []
},] },
];
/**
* @nocollapse
*/
DataMatrixGeneratorAllModule.ctorParameters = function () { return []; };
exports.BarcodeGeneratorModule = BarcodeGeneratorModule;
exports.BarcodeGeneratorAllModule = BarcodeGeneratorAllModule;
exports.QRCodeGeneratorModule = QRCodeGeneratorModule;
exports.QRCodeGeneratorAllModule = QRCodeGeneratorAllModule;
exports.DataMatrixGeneratorModule = DataMatrixGeneratorModule;
exports.DataMatrixGeneratorAllModule = DataMatrixGeneratorAllModule;
exports.ɵa = inputs;
exports.ɵb = outputs;
exports.ɵe = inputs$2;
exports.ɵf = outputs$2;
exports.ɵc = inputs$1;
exports.ɵd = outputs$1;
exports.BarcodeGenerator = ej2BarcodeGenerator.BarcodeGenerator;
exports.BarcodeBase = ej2BarcodeGenerator.BarcodeBase;
exports.OneDimension = ej2BarcodeGenerator.OneDimension;
exports.BarcodeEvent = ej2BarcodeGenerator.BarcodeEvent;
exports.QuietZone = ej2BarcodeGenerator.QuietZone;
exports.DataMatrixSize = ej2BarcodeGenerator.DataMatrixSize;
exports.QRCodeVersion = ej2BarcodeGenerator.QRCodeVersion;
exports.ErrorCorrectionLevel = ej2BarcodeGenerator.ErrorCorrectionLevel;
exports.createHtmlElement = ej2BarcodeGenerator.createHtmlElement;
exports.getChildNode = ej2BarcodeGenerator.getChildNode;
exports.measureText = ej2BarcodeGenerator.measureText;
exports.setAttribute = ej2BarcodeGenerator.setAttribute;
exports.createSvgElement = ej2BarcodeGenerator.createSvgElement;
exports.createMeasureElements = ej2BarcodeGenerator.createMeasureElements;
exports.Point = ej2BarcodeGenerator.Point;
exports.Rect = ej2BarcodeGenerator.Rect;
exports.Size = ej2BarcodeGenerator.Size;
exports.DisplayText = ej2BarcodeGenerator.DisplayText;
exports.Margin = ej2BarcodeGenerator.Margin;
exports.BarcodeCanvasRenderer = ej2BarcodeGenerator.BarcodeCanvasRenderer;
exports.BarcodeRenderer = ej2BarcodeGenerator.BarcodeRenderer;
exports.BarcodeSVGRenderer = ej2BarcodeGenerator.BarcodeSVGRenderer;
exports.CodaBar = ej2BarcodeGenerator.CodaBar;
exports.Code128 = ej2BarcodeGenerator.Code128;
exports.Code128A = ej2BarcodeGenerator.Code128A;
exports.Code128B = ej2BarcodeGenerator.Code128B;
exports.Code128C = ej2BarcodeGenerator.Code128C;
exports.Code39 = ej2BarcodeGenerator.Code39;
exports.Ean8 = ej2BarcodeGenerator.Ean8;
exports.Ean13 = ej2BarcodeGenerator.Ean13;
exports.UpcA = ej2BarcodeGenerator.UpcA;
exports.UpcE = ej2BarcodeGenerator.UpcE;
exports.QRCode = ej2BarcodeGenerator.QRCode;
exports.ModuleValue = ej2BarcodeGenerator.ModuleValue;
exports.QRCodeGenerator = ej2BarcodeGenerator.QRCodeGenerator;
exports.PdfQRBarcodeValues = ej2BarcodeGenerator.PdfQRBarcodeValues;
exports.ErrorCorrectionCodewords = ej2BarcodeGenerator.ErrorCorrectionCodewords;
exports.DataMatrixGenerator = ej2BarcodeGenerator.DataMatrixGenerator;
exports.DataMatrix = ej2BarcodeGenerator.DataMatrix;
Object.defineProperty(exports, '__esModule', { value: true });
})));
//# sourceMappingURL=ej2-angular-barcode-generator.umd.js.map
{"version":3,"file":"ej2-angular-barcode-generator.umd.js","sources":["~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator-all.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator.component.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator-all.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator.component.ts","~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator-all.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator.component.ts"],"sourcesContent":["import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\nimport { DataMatrixGeneratorModule } from './datamatrixgenerator.module';\n/**\n * NgModule definition for the DataMatrixGenerator component with providers.\n */\nexport class DataMatrixGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DataMatrixGeneratorModule],\n exports: [\n DataMatrixGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DataMatrixGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\n/**\n * NgModule definition for the DataMatrixGenerator component.\n */\nexport class DataMatrixGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DataMatrixGeneratorComponent\n ],\n exports: [\n DataMatrixGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DataMatrixGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','encoding','foreColor','height','locale','margin','mode','size','value','width','xDimension'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * DataMatrix Component\n * ```html\n * <ej-datamatrix-generator></ej-datamatrix-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DataMatrixGeneratorComponent extends DataMatrixGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-datamatrixgenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DataMatrixGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorComponent.ctorParameters;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.context;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.invalid;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\nimport { QRCodeGeneratorModule } from './qrcodegenerator.module';\n/**\n * NgModule definition for the QRCodeGenerator component with providers.\n */\nexport class QRCodeGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, QRCodeGeneratorModule],\n exports: [\n QRCodeGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction QRCodeGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\n/**\n * NgModule definition for the QRCodeGenerator component.\n */\nexport class QRCodeGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n QRCodeGeneratorComponent\n ],\n exports: [\n QRCodeGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction QRCodeGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','errorCorrectionLevel','foreColor','height','locale','logo','margin','mode','value','version','width','xDimension'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * QRCode Component\n * ```html\n * <ej-qrcode-generator></ej-qrcode-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class QRCodeGeneratorComponent extends QRCodeGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-qrcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction QRCodeGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorComponent.ctorParameters;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.context;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.invalid;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\nimport { BarcodeGeneratorModule } from './barcodegenerator.module';\n/**\n * NgModule definition for the BarcodeGenerator component with providers.\n */\nexport class BarcodeGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, BarcodeGeneratorModule],\n exports: [\n BarcodeGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction BarcodeGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\n/**\n * NgModule definition for the BarcodeGenerator component.\n */\nexport class BarcodeGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n BarcodeGeneratorComponent\n ],\n exports: [\n BarcodeGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction BarcodeGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { BarcodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enableCheckSum','enablePersistence','enableRtl','foreColor','height','locale','margin','mode','type','value','width'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * Barcode Component\n * ```html\n * <ej-barcode-generator></ej-barcode-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class BarcodeGeneratorComponent extends BarcodeGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-barcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction BarcodeGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorComponent.ctorParameters;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.context;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.invalid;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["CommonModule","NgModule","DataMatrixGeneratorComponent","Injector","ViewContainerRef","Renderer2","__metadata","ElementRef","ComponentMixins","ComponentBase","__decorate","ChangeDetectionStrategy","outputs","inputs","Component","DataMatrixGenerator","setValue","twoWays","QRCodeGeneratorComponent","QRCodeGenerator","BarcodeGeneratorComponent","BarcodeGenerator"],"mappings":"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"}
/*!
* filename: ej2-angular-barcode-generator.umd.min.js
* version : 29.2.4
* Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
* Use of this code is subject to the terms of our license.
* A copy of the current license can be obtained at any time by e-mailing
* licensing@syncfusion.com. Any infringement will be prosecuted under
* applicable laws.
*/
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core"),require("@syncfusion/ej2-angular-base"),require("@syncfusion/ej2-barcode-generator"),require("@angular/common")):"function"==typeof define&&define.amd?define(["exports","@angular/core","@syncfusion/ej2-angular-base","@syncfusion/ej2-barcode-generator","@angular/common"],t):t(e["ej2-angular-barcode-generator"]={},e.ng.core,e.ej2.angular.base,e.ej2.barcode.generator,e.ng.common)}(this,function(e,t,n,o,r){"use strict";var a=this&&this.__extends||function(){var e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])};return function(t,n){function o(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(o.prototype=n.prototype,new o)}}(),i=this&&this.__decorate||function(e,t,n,o){var r,a=arguments.length,i=a<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,n,o);else for(var c=e.length-1;c>=0;c--)(r=e[c])&&(i=(a<3?r(i):a>3?r(t,n,i):r(t,n))||i);return a>3&&i&&Object.defineProperty(t,n,i),i},c=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},s=["backgroundColor","displayText","enableCheckSum","enablePersistence","enableRtl","foreColor","height","locale","margin","mode","type","value","width"],d=["invalid"],u=[""];e.BarcodeGeneratorComponent=function(e){function t(t,o,r,a){var i=e.call(this)||this;return i.ngEle=t,i.srenderer=o,i.viewContainerRef=r,i.injector=a,i.element=i.ngEle.nativeElement,i.injectedModules=i.injectedModules||[],i.registerEvents(d),i.addTwoWay.call(i,u),n.setValue("currentInstance",i,i.viewContainerRef),i.context=new n.ComponentBase,i}return a(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},t}(o.BarcodeGenerator),e.BarcodeGeneratorComponent.decorators=[{type:t.Component,args:[{selector:"ejs-barcodegenerator",inputs:s,outputs:d,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{}}]}],e.BarcodeGeneratorComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.BarcodeGeneratorComponent=i([n.ComponentMixins([n.ComponentBase]),c("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.BarcodeGeneratorComponent);var l=function(){return function(){}}();l.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule],declarations:[e.BarcodeGeneratorComponent],exports:[e.BarcodeGeneratorComponent]}]}],l.ctorParameters=function(){return[]};var p=function(){return function(){}}();p.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule,l],exports:[l],providers:[]}]}],p.ctorParameters=function(){return[]};var f=this&&this.__decorate||function(e,t,n,o){var r,a=arguments.length,i=a<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,n,o);else for(var c=e.length-1;c>=0;c--)(r=e[c])&&(i=(a<3?r(i):a>3?r(t,n,i):r(t,n))||i);return a>3&&i&&Object.defineProperty(t,n,i),i},m=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},C=["backgroundColor","displayText","enablePersistence","enableRtl","errorCorrectionLevel","foreColor","height","locale","logo","margin","mode","value","version","width","xDimension"],g=["invalid"],y=[""];e.QRCodeGeneratorComponent=function(e){function t(t,o,r,a){var i=e.call(this)||this;return i.ngEle=t,i.srenderer=o,i.viewContainerRef=r,i.injector=a,i.element=i.ngEle.nativeElement,i.injectedModules=i.injectedModules||[],i.registerEvents(g),i.addTwoWay.call(i,y),n.setValue("currentInstance",i,i.viewContainerRef),i.context=new n.ComponentBase,i}return a(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},t}(o.QRCodeGenerator),e.QRCodeGeneratorComponent.decorators=[{type:t.Component,args:[{selector:"ejs-qrcodegenerator",inputs:C,outputs:g,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{}}]}],e.QRCodeGeneratorComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.QRCodeGeneratorComponent=f([n.ComponentMixins([n.ComponentBase]),m("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.QRCodeGeneratorComponent);var h=function(){return function(){}}();h.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule],declarations:[e.QRCodeGeneratorComponent],exports:[e.QRCodeGeneratorComponent]}]}],h.ctorParameters=function(){return[]};var R=function(){return function(){}}();R.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule,h],exports:[h],providers:[]}]}],R.ctorParameters=function(){return[]};var x=this&&this.__decorate||function(e,t,n,o){var r,a=arguments.length,i=a<3?t:null===o?o=Object.getOwnPropertyDescriptor(t,n):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(e,t,n,o);else for(var c=e.length-1;c>=0;c--)(r=e[c])&&(i=(a<3?r(i):a>3?r(t,n,i):r(t,n))||i);return a>3&&i&&Object.defineProperty(t,n,i),i},v=this&&this.__metadata||function(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)},M=["backgroundColor","displayText","enablePersistence","enableRtl","encoding","foreColor","height","locale","margin","mode","size","value","width","xDimension"],j=["invalid"],G=[""];e.DataMatrixGeneratorComponent=function(e){function t(t,o,r,a){var i=e.call(this)||this;return i.ngEle=t,i.srenderer=o,i.viewContainerRef=r,i.injector=a,i.element=i.ngEle.nativeElement,i.injectedModules=i.injectedModules||[],i.registerEvents(j),i.addTwoWay.call(i,G),n.setValue("currentInstance",i,i.viewContainerRef),i.context=new n.ComponentBase,i}return a(t,e),t.prototype.ngOnInit=function(){this.context.ngOnInit(this)},t.prototype.ngAfterViewInit=function(){this.context.ngAfterViewInit(this)},t.prototype.ngOnDestroy=function(){this.context.ngOnDestroy(this)},t.prototype.ngAfterContentChecked=function(){this.context.ngAfterContentChecked(this)},t}(o.DataMatrixGenerator),e.DataMatrixGeneratorComponent.decorators=[{type:t.Component,args:[{selector:"ejs-datamatrixgenerator",inputs:M,outputs:j,template:"",changeDetection:t.ChangeDetectionStrategy.OnPush,queries:{}}]}],e.DataMatrixGeneratorComponent.ctorParameters=function(){return[{type:t.ElementRef},{type:t.Renderer2},{type:t.ViewContainerRef},{type:t.Injector}]},e.DataMatrixGeneratorComponent=x([n.ComponentMixins([n.ComponentBase]),v("design:paramtypes",[t.ElementRef,t.Renderer2,t.ViewContainerRef,t.Injector])],e.DataMatrixGeneratorComponent);var b=function(){return function(){}}();b.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule],declarations:[e.DataMatrixGeneratorComponent],exports:[e.DataMatrixGeneratorComponent]}]}],b.ctorParameters=function(){return[]};var D=function(){return function(){}}();D.decorators=[{type:t.NgModule,args:[{imports:[r.CommonModule,b],exports:[b],providers:[]}]}],D.ctorParameters=function(){return[]},e.BarcodeGeneratorModule=l,e.BarcodeGeneratorAllModule=p,e.QRCodeGeneratorModule=h,e.QRCodeGeneratorAllModule=R,e.DataMatrixGeneratorModule=b,e.DataMatrixGeneratorAllModule=D,e.ɵa=s,e.ɵb=d,e.ɵe=M,e.ɵf=j,e.ɵc=C,e.ɵd=g,e.BarcodeGenerator=o.BarcodeGenerator,e.BarcodeBase=o.BarcodeBase,e.OneDimension=o.OneDimension,e.BarcodeEvent=o.BarcodeEvent,e.QuietZone=o.QuietZone,e.DataMatrixSize=o.DataMatrixSize,e.QRCodeVersion=o.QRCodeVersion,e.ErrorCorrectionLevel=o.ErrorCorrectionLevel,e.createHtmlElement=o.createHtmlElement,e.getChildNode=o.getChildNode,e.measureText=o.measureText,e.setAttribute=o.setAttribute,e.createSvgElement=o.createSvgElement,e.createMeasureElements=o.createMeasureElements,e.Point=o.Point,e.Rect=o.Rect,e.Size=o.Size,e.DisplayText=o.DisplayText,e.Margin=o.Margin,e.BarcodeCanvasRenderer=o.BarcodeCanvasRenderer,e.BarcodeRenderer=o.BarcodeRenderer,e.BarcodeSVGRenderer=o.BarcodeSVGRenderer,e.CodaBar=o.CodaBar,e.Code128=o.Code128,e.Code128A=o.Code128A,e.Code128B=o.Code128B,e.Code128C=o.Code128C,e.Code39=o.Code39,e.Ean8=o.Ean8,e.Ean13=o.Ean13,e.UpcA=o.UpcA,e.UpcE=o.UpcE,e.QRCode=o.QRCode,e.ModuleValue=o.ModuleValue,e.QRCodeGenerator=o.QRCodeGenerator,e.PdfQRBarcodeValues=o.PdfQRBarcodeValues,e.ErrorCorrectionCodewords=o.ErrorCorrectionCodewords,e.DataMatrixGenerator=o.DataMatrixGenerator,e.DataMatrix=o.DataMatrix,Object.defineProperty(e,"__esModule",{value:!0})});
//# sourceMappingURL=ej2-angular-barcode-generator.umd.min.js.map
{"version":3,"file":"ej2-angular-barcode-generator.umd.min.js","sources":["~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator.component.ts","~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/barcode-generator/barcodegenerator-all.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator.component.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/qrcode-generator/qrcodegenerator-all.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator.component.ts","~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator.module.ts","~/@syncfusion/ej2-angular-barcode-generator/src/datamatrix-generator/datamatrixgenerator-all.module.ts"],"sourcesContent":["import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { BarcodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enableCheckSum','enablePersistence','enableRtl','foreColor','height','locale','margin','mode','type','value','width'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * Barcode Component\n * ```html\n * <ej-barcode-generator></ej-barcode-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class BarcodeGeneratorComponent extends BarcodeGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-barcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction BarcodeGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorComponent.ctorParameters;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.context;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.invalid;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nBarcodeGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\n/**\n * NgModule definition for the BarcodeGenerator component.\n */\nexport class BarcodeGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n BarcodeGeneratorComponent\n ],\n exports: [\n BarcodeGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction BarcodeGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\nimport { BarcodeGeneratorModule } from './barcodegenerator.module';\n/**\n * NgModule definition for the BarcodeGenerator component with providers.\n */\nexport class BarcodeGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, BarcodeGeneratorModule],\n exports: [\n BarcodeGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction BarcodeGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nBarcodeGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nBarcodeGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','errorCorrectionLevel','foreColor','height','locale','logo','margin','mode','value','version','width','xDimension'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * QRCode Component\n * ```html\n * <ej-qrcode-generator></ej-qrcode-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class QRCodeGeneratorComponent extends QRCodeGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-qrcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction QRCodeGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorComponent.ctorParameters;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.context;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.invalid;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nQRCodeGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\n/**\n * NgModule definition for the QRCodeGenerator component.\n */\nexport class QRCodeGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n QRCodeGeneratorComponent\n ],\n exports: [\n QRCodeGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction QRCodeGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\nimport { QRCodeGeneratorModule } from './qrcodegenerator.module';\n/**\n * NgModule definition for the QRCodeGenerator component with providers.\n */\nexport class QRCodeGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, QRCodeGeneratorModule],\n exports: [\n QRCodeGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction QRCodeGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nQRCodeGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nQRCodeGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const /** @type {?} */ inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','encoding','foreColor','height','locale','margin','mode','size','value','width','xDimension'];\nexport const /** @type {?} */ outputs: string[] = ['invalid'];\nexport const /** @type {?} */ twoWays: string[] = [''];\n/**\n * DataMatrix Component\n * ```html\n * <ej-datamatrix-generator></ej-datamatrix-generator>\n * ```\n */\n@ComponentMixins([ComponentBase])\nexport class DataMatrixGeneratorComponent extends DataMatrixGenerator implements IComponentBase {\npublic context : any;\npublic tagObjects: any;\npublic invalid: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.context.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-datamatrixgenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\n}\n\nfunction DataMatrixGeneratorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorComponent.ctorParameters;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.context;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.tagObjects;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.invalid;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.registerEvents;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.addTwoWay;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.ngEle;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.srenderer;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.viewContainerRef;\n/** @type {?} */\nDataMatrixGeneratorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\n/**\n * NgModule definition for the DataMatrixGenerator component.\n */\nexport class DataMatrixGeneratorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n DataMatrixGeneratorComponent\n ],\n exports: [\n DataMatrixGeneratorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DataMatrixGeneratorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\nimport { DataMatrixGeneratorModule } from './datamatrixgenerator.module';\n/**\n * NgModule definition for the DataMatrixGenerator component with providers.\n */\nexport class DataMatrixGeneratorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, DataMatrixGeneratorModule],\n exports: [\n DataMatrixGeneratorModule\n ],\n providers:[\n \n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction DataMatrixGeneratorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nDataMatrixGeneratorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nDataMatrixGeneratorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["inputs","outputs","twoWays","exports","BarcodeGeneratorComponent","_super","ngEle","srenderer","viewContainerRef","injector","_this","call","this","element","nativeElement","injectedModules","registerEvents","addTwoWay","setValue","context","ComponentBase","__extends","prototype","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","BarcodeGenerator","decorators","type","Component","args","selector","template","changeDetection","ChangeDetectionStrategy","OnPush","queries","ctorParameters","ElementRef","Renderer2","ViewContainerRef","Injector","__decorate","ComponentMixins","__metadata","BarcodeGeneratorModule","NgModule","imports","CommonModule","declarations","BarcodeGeneratorAllModule","providers","QRCodeGeneratorComponent","QRCodeGenerator","QRCodeGeneratorModule","QRCodeGeneratorAllModule","DataMatrixGeneratorComponent","DataMatrixGenerator","DataMatrixGeneratorModule","DataMatrixGeneratorAllModule"],"mappings":"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"}
/**
* Generated bundle index. Do not edit.
*/
export * from './public_api';
export { inputs as ɵa, outputs as ɵb } from './src/barcode-generator/barcodegenerator.component';
export { inputs as ɵe, outputs as ɵf } from './src/datamatrix-generator/datamatrixgenerator.component';
export { inputs as ɵc, outputs as ɵd } from './src/qrcode-generator/qrcodegenerator.component';
{"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-barcode-generator"}],"metadata":{"ɵa":["backgroundColor","displayText","enableCheckSum","enablePersistence","enableRtl","foreColor","height","locale","margin","mode","type","value","width"],"ɵb":["invalid"],"ɵc":["backgroundColor","displayText","enablePersistence","enableRtl","errorCorrectionLevel","foreColor","height","locale","logo","margin","mode","value","version","width","xDimension"],"ɵd":["invalid"],"ɵe":["backgroundColor","displayText","enablePersistence","enableRtl","encoding","foreColor","height","locale","margin","mode","size","value","width","xDimension"],"ɵf":["invalid"],"BarcodeGeneratorComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-barcode-generator","name":"BarcodeGenerator"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-barcodegenerator","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"BarcodeGeneratorModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"BarcodeGeneratorComponent"}],"exports":[{"__symbolic":"reference","name":"BarcodeGeneratorComponent"}]}]}],"members":{}},"BarcodeGeneratorAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"BarcodeGeneratorModule"}],"exports":[{"__symbolic":"reference","name":"BarcodeGeneratorModule"}],"providers":[]}]}],"members":{}},"QRCodeGeneratorComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-barcode-generator","name":"QRCodeGenerator"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-qrcodegenerator","inputs":{"__symbolic":"reference","name":"ɵc"},"outputs":{"__symbolic":"reference","name":"ɵd"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"QRCodeGeneratorModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"QRCodeGeneratorComponent"}],"exports":[{"__symbolic":"reference","name":"QRCodeGeneratorComponent"}]}]}],"members":{}},"QRCodeGeneratorAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"QRCodeGeneratorModule"}],"exports":[{"__symbolic":"reference","name":"QRCodeGeneratorModule"}],"providers":[]}]}],"members":{}},"DataMatrixGeneratorComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-barcode-generator","name":"DataMatrixGenerator"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-datamatrixgenerator","inputs":{"__symbolic":"reference","name":"ɵe"},"outputs":{"__symbolic":"reference","name":"ɵf"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"queries":{}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"}]]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"DataMatrixGeneratorModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"DataMatrixGeneratorComponent"}],"exports":[{"__symbolic":"reference","name":"DataMatrixGeneratorComponent"}]}]}],"members":{}},"DataMatrixGeneratorAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"DataMatrixGeneratorModule"}],"exports":[{"__symbolic":"reference","name":"DataMatrixGeneratorModule"}],"providers":[]}]}],"members":{}}},"origins":{"ɵa":"./src/barcode-generator/barcodegenerator.component","ɵb":"./src/barcode-generator/barcodegenerator.component","ɵc":"./src/qrcode-generator/qrcodegenerator.component","ɵd":"./src/qrcode-generator/qrcodegenerator.component","ɵe":"./src/datamatrix-generator/datamatrixgenerator.component","ɵf":"./src/datamatrix-generator/datamatrixgenerator.component","BarcodeGeneratorComponent":"./src/barcode-generator/barcodegenerator.component","BarcodeGeneratorModule":"./src/barcode-generator/barcodegenerator.module","BarcodeGeneratorAllModule":"./src/barcode-generator/barcodegenerator-all.module","QRCodeGeneratorComponent":"./src/qrcode-generator/qrcodegenerator.component","QRCodeGeneratorModule":"./src/qrcode-generator/qrcodegenerator.module","QRCodeGeneratorAllModule":"./src/qrcode-generator/qrcodegenerator-all.module","DataMatrixGeneratorComponent":"./src/datamatrix-generator/datamatrixgenerator.component","DataMatrixGeneratorModule":"./src/datamatrix-generator/datamatrixgenerator.module","DataMatrixGeneratorAllModule":"./src/datamatrix-generator/datamatrixgenerator-all.module"},"importAs":"@syncfusion/ej2-angular-barcode-generator"}

Sorry, the diff of this file is not supported yet

+14
-27

@@ -5,3 +5,3 @@ {

"_inBundle": false,
"_integrity": "sha512-x5yrX1V0mhcpSRGeAimpXV9VILhmLBdeDV6zgXNRBcCdtMufATkseFJgqPQ2jyctjVFAM5LllbjeH7gE/OP8SA==",
"_integrity": "sha512-4MLaGFKeVPpX8INi5967V6/AYRTyEcpziDdsCtZ120FH+47B7FJ4URSiob7klfFaoct/RXtXYNORDJhwBMPQ3w==",
"_location": "/@syncfusion/ej2-angular-barcode-generator",

@@ -23,6 +23,6 @@ "_phantomChildren": {},

],
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-barcode-generator/-/ej2-angular-barcode-generator-19.4.0.tgz",
"_shasum": "799f5d0c9af69a32341a54e4f71f7dbcc4ec412e",
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-barcode-generator/-/ej2-angular-barcode-generator-19.4.0.tgz",
"_shasum": "61318dd3f8b195e6d24201daec36c220ad50845f",
"_spec": "@syncfusion/ej2-angular-barcode-generator@*",
"_where": "/jenkins/workspace/elease-automation_release_29.1.1/ivypackages/included",
"_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
"author": {

@@ -36,25 +36,10 @@ "name": "Syncfusion Inc."

"dependencies": {
"@syncfusion/ej2-angular-base": "~29.1.33",
"@syncfusion/ej2-barcode-generator": "29.1.41",
"@syncfusion/ej2-base": "~29.1.36"
"@syncfusion/ej2-angular-base": "~29.2.4",
"@syncfusion/ej2-barcode-generator": "29.2.4",
"@syncfusion/ej2-base": "~29.2.4"
},
"deprecated": false,
"description": "Barcode generator component is a pure JavaScript library which will convert a string to Barcode and show it to the user. This supports major 1D and 2D barcodes including coda bar, code 128, QR Code. for Angular",
"es2020": "fesm2020/syncfusion-ej2-angular-barcode-generator.mjs",
"esm2020": "esm2020/syncfusion-ej2-angular-barcode-generator.mjs",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./syncfusion-ej2-angular-barcode-generator.d.ts",
"esm2020": "./esm2020/syncfusion-ej2-angular-barcode-generator.mjs",
"es2020": "./fesm2020/syncfusion-ej2-angular-barcode-generator.mjs",
"es2015": "./fesm2015/syncfusion-ej2-angular-barcode-generator.mjs",
"node": "./fesm2015/syncfusion-ej2-angular-barcode-generator.mjs",
"default": "./fesm2020/syncfusion-ej2-angular-barcode-generator.mjs"
}
},
"fesm2015": "fesm2015/syncfusion-ej2-angular-barcode-generator.mjs",
"fesm2020": "fesm2020/syncfusion-ej2-angular-barcode-generator.mjs",
"devDependencies": {},
"es2015": "@syncfusion/ej2-angular-barcode-generator.js",
"homepage": "https://www.syncfusion.com/angular-components",

@@ -68,3 +53,5 @@ "keywords": [

"license": "SEE LICENSE IN license",
"module": "fesm2015/syncfusion-ej2-angular-barcode-generator.mjs",
"main": "dist/ej2-angular-barcode-generator.umd.js",
"metadata": "ej2-angular-barcode-generator.metadata.json",
"module": "@syncfusion/ej2-angular-barcode-generator.es5.js",
"name": "@syncfusion/ej2-angular-barcode-generator",

@@ -77,4 +64,4 @@ "repository": {

"sideEffects": false,
"typings": "syncfusion-ej2-angular-barcode-generator.d.ts",
"version": "29.1.41"
"typings": "ej2-angular-barcode-generator.d.ts",
"version": "29.2.4-ngcc"
}
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.pkgName = '@syncfusion/ej2-angular-barcode-generator';
exports.pkgVer = '^29.1.41';
exports.pkgVer = '^29.2.4';
exports.moduleName = 'BarcodeGeneratorModule, QRCodeGeneratorModule, DataMatrixGeneratorModule';
exports.themeVer = '~29.1.41';
exports.themeVer = '~29.2.4';
export const pkgName = '@syncfusion/ej2-angular-barcode-generator';
export const pkgVer = '^29.1.41';
export const pkgVer = '^29.2.4';
export const moduleName = 'BarcodeGeneratorModule, QRCodeGeneratorModule, DataMatrixGeneratorModule';
export const themeVer = '~29.1.41';
export const themeVer = '~29.2.4';

@@ -1,4 +0,1 @@

import * as i0 from "@angular/core";
import * as i1 from "@angular/common";
import * as i2 from "./barcodegenerator.module";
/**

@@ -8,5 +5,2 @@ * NgModule definition for the BarcodeGenerator component with providers.

export declare class BarcodeGeneratorAllModule {
static ɵfac: i0.ɵɵFactoryDeclaration<BarcodeGeneratorAllModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<BarcodeGeneratorAllModule, never, [typeof i1.CommonModule, typeof i2.BarcodeGeneratorModule], [typeof i2.BarcodeGeneratorModule]>;
static ɵinj: i0.ɵɵInjectorDeclaration<BarcodeGeneratorAllModule>;
}
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
import { IComponentBase } from '@syncfusion/ej2-angular-base';
import { BarcodeGenerator } from '@syncfusion/ej2-barcode-generator';
import * as i0 from "@angular/core";
export declare const inputs: string[];

@@ -29,4 +28,2 @@ export declare const outputs: string[];

addTwoWay: (propList: string[]) => void;
static ɵfac: i0.ɵɵFactoryDeclaration<BarcodeGeneratorComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<BarcodeGeneratorComponent, "ejs-barcodegenerator", never, { "backgroundColor": "backgroundColor"; "displayText": "displayText"; "enableCheckSum": "enableCheckSum"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "foreColor": "foreColor"; "height": "height"; "locale": "locale"; "margin": "margin"; "mode": "mode"; "type": "type"; "value": "value"; "width": "width"; }, { "invalid": "invalid"; }, never, never>;
}

@@ -1,4 +0,1 @@

import * as i0 from "@angular/core";
import * as i1 from "./barcodegenerator.component";
import * as i2 from "@angular/common";
/**

@@ -8,5 +5,2 @@ * NgModule definition for the BarcodeGenerator component.

export declare class BarcodeGeneratorModule {
static ɵfac: i0.ɵɵFactoryDeclaration<BarcodeGeneratorModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<BarcodeGeneratorModule, [typeof i1.BarcodeGeneratorComponent], [typeof i2.CommonModule], [typeof i1.BarcodeGeneratorComponent]>;
static ɵinj: i0.ɵɵInjectorDeclaration<BarcodeGeneratorModule>;
}

@@ -1,4 +0,1 @@

import * as i0 from "@angular/core";
import * as i1 from "@angular/common";
import * as i2 from "./datamatrixgenerator.module";
/**

@@ -8,5 +5,2 @@ * NgModule definition for the DataMatrixGenerator component with providers.

export declare class DataMatrixGeneratorAllModule {
static ɵfac: i0.ɵɵFactoryDeclaration<DataMatrixGeneratorAllModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<DataMatrixGeneratorAllModule, never, [typeof i1.CommonModule, typeof i2.DataMatrixGeneratorModule], [typeof i2.DataMatrixGeneratorModule]>;
static ɵinj: i0.ɵɵInjectorDeclaration<DataMatrixGeneratorAllModule>;
}
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
import { IComponentBase } from '@syncfusion/ej2-angular-base';
import { DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';
import * as i0 from "@angular/core";
export declare const inputs: string[];

@@ -29,4 +28,2 @@ export declare const outputs: string[];

addTwoWay: (propList: string[]) => void;
static ɵfac: i0.ɵɵFactoryDeclaration<DataMatrixGeneratorComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DataMatrixGeneratorComponent, "ejs-datamatrixgenerator", never, { "backgroundColor": "backgroundColor"; "displayText": "displayText"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "encoding": "encoding"; "foreColor": "foreColor"; "height": "height"; "locale": "locale"; "margin": "margin"; "mode": "mode"; "size": "size"; "value": "value"; "width": "width"; "xDimension": "xDimension"; }, { "invalid": "invalid"; }, never, never>;
}

@@ -1,4 +0,1 @@

import * as i0 from "@angular/core";
import * as i1 from "./datamatrixgenerator.component";
import * as i2 from "@angular/common";
/**

@@ -8,5 +5,2 @@ * NgModule definition for the DataMatrixGenerator component.

export declare class DataMatrixGeneratorModule {
static ɵfac: i0.ɵɵFactoryDeclaration<DataMatrixGeneratorModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<DataMatrixGeneratorModule, [typeof i1.DataMatrixGeneratorComponent], [typeof i2.CommonModule], [typeof i1.DataMatrixGeneratorComponent]>;
static ɵinj: i0.ɵɵInjectorDeclaration<DataMatrixGeneratorModule>;
}

@@ -1,4 +0,1 @@

import * as i0 from "@angular/core";
import * as i1 from "@angular/common";
import * as i2 from "./qrcodegenerator.module";
/**

@@ -8,5 +5,2 @@ * NgModule definition for the QRCodeGenerator component with providers.

export declare class QRCodeGeneratorAllModule {
static ɵfac: i0.ɵɵFactoryDeclaration<QRCodeGeneratorAllModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<QRCodeGeneratorAllModule, never, [typeof i1.CommonModule, typeof i2.QRCodeGeneratorModule], [typeof i2.QRCodeGeneratorModule]>;
static ɵinj: i0.ɵɵInjectorDeclaration<QRCodeGeneratorAllModule>;
}
import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
import { IComponentBase } from '@syncfusion/ej2-angular-base';
import { QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';
import * as i0 from "@angular/core";
export declare const inputs: string[];

@@ -29,4 +28,2 @@ export declare const outputs: string[];

addTwoWay: (propList: string[]) => void;
static ɵfac: i0.ɵɵFactoryDeclaration<QRCodeGeneratorComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<QRCodeGeneratorComponent, "ejs-qrcodegenerator", never, { "backgroundColor": "backgroundColor"; "displayText": "displayText"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "errorCorrectionLevel": "errorCorrectionLevel"; "foreColor": "foreColor"; "height": "height"; "locale": "locale"; "logo": "logo"; "margin": "margin"; "mode": "mode"; "value": "value"; "version": "version"; "width": "width"; "xDimension": "xDimension"; }, { "invalid": "invalid"; }, never, never>;
}

@@ -1,4 +0,1 @@

import * as i0 from "@angular/core";
import * as i1 from "./qrcodegenerator.component";
import * as i2 from "@angular/common";
/**

@@ -8,5 +5,2 @@ * NgModule definition for the QRCodeGenerator component.

export declare class QRCodeGeneratorModule {
static ɵfac: i0.ɵɵFactoryDeclaration<QRCodeGeneratorModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<QRCodeGeneratorModule, [typeof i1.QRCodeGeneratorComponent], [typeof i2.CommonModule], [typeof i1.QRCodeGeneratorComponent]>;
static ɵinj: i0.ɵɵInjectorDeclaration<QRCodeGeneratorModule>;
}
# Changelog
## [Unreleased]
### Barcode
#### Bug Fixes
- `#I508544` - Now, the DataMatrix barcode is rendered properly with alphanumeric values.
## 19.1.63 (2021-05-13)
### Barcode
#### Bug Fixes
- `#316606` - "Text alignment was not proper with UPCA type barcode" issue has been fixed.
## 19.1.56 (2021-04-13)
### Barcode
#### Bug Fixes
- `#316606` - "Text alignment was not proper with UPCA type barcode" issue has been fixed.
## 18.4.30 (2020-12-17)
### Barcode
#### Bug Fixes
- `#278404` - "Ean-13 barcode not rendering" issue has been fixed.
## 18.3.35 (2020-10-01)
### Barcode
#### Bug Fixes
- `#278404` - "Ean-13 barcode not rendering" issue has been fixed.
## 18.1.43 (2020-04-07)
### Barcode
#### Bug Fixes
- `#269847` - "Barcode control is not rendering in MVC" issue has been fixed.
## 17.4.51 (2020-02-25)
### Barcode
#### Bug Fixes
- `#264414` - The issue "QR code is not rendered based on center bounds" has been fixed.
## 17.4.49 (2020-02-11)
### Barcode
#### Bug Fixes
- `#262067` - The issue "Unable to decode qrcode for some values" has been fixed.
- `#262067` - The issue "DOM ID for the SVG and div element are same" has been fixed.
## 17.4.46 (2020-01-30)
### Barcode
#### Bug Fixes
- `F150725` - The issue "Barcode Control hasn't rendered in IE11 browser" has been fixed.
## 17.2.28-beta (2019-06-27)
### Barcode
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.
export * from './src/index';
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NyYy9pbmRleCc7Il19
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { BarcodeGeneratorModule } from './barcodegenerator.module';
import * as i0 from "@angular/core";
/**
* NgModule definition for the BarcodeGenerator component with providers.
*/
export class BarcodeGeneratorAllModule {
}
BarcodeGeneratorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
BarcodeGeneratorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, imports: [CommonModule, BarcodeGeneratorModule], exports: [BarcodeGeneratorModule] });
BarcodeGeneratorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, providers: [], imports: [[CommonModule, BarcodeGeneratorModule], BarcodeGeneratorModule] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule, BarcodeGeneratorModule],
exports: [
BarcodeGeneratorModule
],
providers: []
}]
}] });
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyY29kZWdlbmVyYXRvci1hbGwubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2JhcmNvZGUtZ2VuZXJhdG9yL2JhcmNvZGVnZW5lcmF0b3ItYWxsLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUN4RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFL0MsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sMkJBQTJCLENBQUM7O0FBTW5FOztHQUVHO0FBVUgsTUFBTSxPQUFPLHlCQUF5Qjs7c0hBQXpCLHlCQUF5Qjt1SEFBekIseUJBQXlCLFlBUnhCLFlBQVksRUFBRSxzQkFBc0IsYUFFMUMsc0JBQXNCO3VIQU1qQix5QkFBeUIsYUFKeEIsRUFFVCxZQU5RLENBQUMsWUFBWSxFQUFFLHNCQUFzQixDQUFDLEVBRTNDLHNCQUFzQjsyRkFNakIseUJBQXlCO2tCQVRyQyxRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxzQkFBc0IsQ0FBQztvQkFDL0MsT0FBTyxFQUFFO3dCQUNMLHNCQUFzQjtxQkFDekI7b0JBQ0QsU0FBUyxFQUFDLEVBRVQ7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSwgVmFsdWVQcm92aWRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEJhcmNvZGVHZW5lcmF0b3JDb21wb25lbnQgfSBmcm9tICcuL2JhcmNvZGVnZW5lcmF0b3IuY29tcG9uZW50JztcbmltcG9ydCB7IEJhcmNvZGVHZW5lcmF0b3JNb2R1bGUgfSBmcm9tICcuL2JhcmNvZGVnZW5lcmF0b3IubW9kdWxlJztcblxuXG5cblxuXG4vKipcbiAqIE5nTW9kdWxlIGRlZmluaXRpb24gZm9yIHRoZSBCYXJjb2RlR2VuZXJhdG9yIGNvbXBvbmVudCB3aXRoIHByb3ZpZGVycy5cbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBCYXJjb2RlR2VuZXJhdG9yTW9kdWxlXSxcbiAgICBleHBvcnRzOiBbXG4gICAgICAgIEJhcmNvZGVHZW5lcmF0b3JNb2R1bGVcbiAgICBdLFxuICAgIHByb3ZpZGVyczpbXG4gICAgICAgIFxuICAgIF1cbn0pXG5leHBvcnQgY2xhc3MgQmFyY29kZUdlbmVyYXRvckFsbE1vZHVsZSB7IH0iXX0=
import { __decorate } from "tslib";
import { Component, ChangeDetectionStrategy } from '@angular/core';
import { ComponentBase, ComponentMixins, setValue } from '@syncfusion/ej2-angular-base';
import { BarcodeGenerator } from '@syncfusion/ej2-barcode-generator';
import * as i0 from "@angular/core";
export const inputs = ['backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width'];
export const outputs = ['invalid'];
export const twoWays = [''];
/**
* Barcode Component
* ```html
* <ej-barcode-generator></ej-barcode-generator>
* ```
*/
let BarcodeGeneratorComponent = class BarcodeGeneratorComponent extends BarcodeGenerator {
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs);
this.addTwoWay.call(this, twoWays);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
ngOnInit() {
this.context.ngOnInit(this);
}
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
BarcodeGeneratorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
BarcodeGeneratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: BarcodeGeneratorComponent, selector: "ejs-barcodegenerator", inputs: { backgroundColor: "backgroundColor", displayText: "displayText", enableCheckSum: "enableCheckSum", enablePersistence: "enablePersistence", enableRtl: "enableRtl", foreColor: "foreColor", height: "height", locale: "locale", margin: "margin", mode: "mode", type: "type", value: "value", width: "width" }, outputs: { invalid: "invalid" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
BarcodeGeneratorComponent = __decorate([
ComponentMixins([ComponentBase])
], BarcodeGeneratorComponent);
export { BarcodeGeneratorComponent };
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorComponent, decorators: [{
type: Component,
args: [{
selector: 'ejs-barcodegenerator',
inputs: inputs,
outputs: outputs,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
}]
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyY29kZWdlbmVyYXRvci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYmFyY29kZS1nZW5lcmF0b3IvYmFyY29kZWdlbmVyYXRvci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWdDLHVCQUF1QixFQUFpRCxNQUFNLGVBQWUsQ0FBQztBQUNoSixPQUFPLEVBQUUsYUFBYSxFQUErQixlQUFlLEVBQTBCLFFBQVEsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQzdJLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLG1DQUFtQyxDQUFDOztBQUlyRSxNQUFNLENBQUMsTUFBTSxNQUFNLEdBQWEsQ0FBQyxpQkFBaUIsRUFBQyxhQUFhLEVBQUMsZ0JBQWdCLEVBQUMsbUJBQW1CLEVBQUMsV0FBVyxFQUFDLFdBQVcsRUFBQyxRQUFRLEVBQUMsUUFBUSxFQUFDLFFBQVEsRUFBQyxNQUFNLEVBQUMsTUFBTSxFQUFDLE9BQU8sRUFBQyxPQUFPLENBQUMsQ0FBQztBQUN4TCxNQUFNLENBQUMsTUFBTSxPQUFPLEdBQWEsQ0FBQyxTQUFTLENBQUMsQ0FBQztBQUM3QyxNQUFNLENBQUMsTUFBTSxPQUFPLEdBQWEsQ0FBQyxFQUFFLENBQUMsQ0FBQztBQUV0Qzs7Ozs7R0FLRztJQVlVLHlCQUF5QixTQUF6Qix5QkFBMEIsU0FBUSxnQkFBZ0I7SUFPM0QsWUFBb0IsS0FBaUIsRUFBVSxTQUFvQixFQUFVLGdCQUFpQyxFQUFVLFFBQWtCO1FBQ3RJLEtBQUssRUFBRSxDQUFDO1FBRFEsVUFBSyxHQUFMLEtBQUssQ0FBWTtRQUFVLGNBQVMsR0FBVCxTQUFTLENBQVc7UUFBVSxxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQWlCO1FBQVUsYUFBUSxHQUFSLFFBQVEsQ0FBVTtRQUV0SSxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxDQUFDO1FBQ3hDLElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxDQUFDLGVBQWUsSUFBSSxFQUFFLENBQUM7UUFFbEQsSUFBSSxDQUFDLGNBQWMsQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUM3QixJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLEVBQUUsT0FBTyxDQUFDLENBQUM7UUFDbkMsUUFBUSxDQUFDLGlCQUFpQixFQUFFLElBQUksRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztRQUN6RCxJQUFJLENBQUMsT0FBTyxHQUFJLElBQUksYUFBYSxFQUFFLENBQUM7SUFDeEMsQ0FBQztJQUVNLFFBQVE7UUFDWCxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNoQyxDQUFDO0lBRU0sZUFBZTtRQUNsQixJQUFJLENBQUMsT0FBTyxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUN2QyxDQUFDO0lBRU0sV0FBVztRQUNkLElBQUksQ0FBQyxPQUFPLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ25DLENBQUM7SUFFTSxxQkFBcUI7UUFFeEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM3QyxDQUFDO0NBSUosQ0FBQTtzSEFyQ1kseUJBQXlCOzBHQUF6Qix5QkFBeUIsNGFBUHhCLEVBQUU7QUFPSCx5QkFBeUI7SUFEckMsZUFBZSxDQUFDLENBQUMsYUFBYSxDQUFDLENBQUM7R0FDcEIseUJBQXlCLENBcUNyQztTQXJDWSx5QkFBeUI7MkZBQXpCLHlCQUF5QjtrQkFYckMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsc0JBQXNCO29CQUNoQyxNQUFNLEVBQUUsTUFBTTtvQkFDZCxPQUFPLEVBQUUsT0FBTztvQkFDaEIsUUFBUSxFQUFFLEVBQUU7b0JBQ1osZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLE9BQU8sRUFBRSxFQUVSO2lCQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBWaWV3Q29udGFpbmVyUmVmLCBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgUXVlcnlMaXN0LCBSZW5kZXJlcjIsIEluamVjdG9yLCBWYWx1ZVByb3ZpZGVyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21wb25lbnRCYXNlLCBJQ29tcG9uZW50QmFzZSwgYXBwbHlNaXhpbnMsIENvbXBvbmVudE1peGlucywgUHJvcGVydHlDb2xsZWN0aW9uSW5mbywgc2V0VmFsdWUgfSBmcm9tICdAc3luY2Z1c2lvbi9lajItYW5ndWxhci1iYXNlJztcbmltcG9ydCB7IEJhcmNvZGVHZW5lcmF0b3IgfSBmcm9tICdAc3luY2Z1c2lvbi9lajItYmFyY29kZS1nZW5lcmF0b3InO1xuXG5cblxuZXhwb3J0IGNvbnN0IGlucHV0czogc3RyaW5nW10gPSBbJ2JhY2tncm91bmRDb2xvcicsJ2Rpc3BsYXlUZXh0JywnZW5hYmxlQ2hlY2tTdW0nLCdlbmFibGVQZXJzaXN0ZW5jZScsJ2VuYWJsZVJ0bCcsJ2ZvcmVDb2xvcicsJ2hlaWdodCcsJ2xvY2FsZScsJ21hcmdpbicsJ21vZGUnLCd0eXBlJywndmFsdWUnLCd3aWR0aCddO1xuZXhwb3J0IGNvbnN0IG91dHB1dHM6IHN0cmluZ1tdID0gWydpbnZhbGlkJ107XG5leHBvcnQgY29uc3QgdHdvV2F5czogc3RyaW5nW10gPSBbJyddO1xuXG4vKipcbiAqIEJhcmNvZGUgQ29tcG9uZW50XG4gKiBgYGBodG1sXG4gKiA8ZWotYmFyY29kZS1nZW5lcmF0b3I+PC9lai1iYXJjb2RlLWdlbmVyYXRvcj5cbiAqIGBgYFxuICovXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2Vqcy1iYXJjb2RlZ2VuZXJhdG9yJyxcbiAgICBpbnB1dHM6IGlucHV0cyxcbiAgICBvdXRwdXRzOiBvdXRwdXRzLFxuICAgIHRlbXBsYXRlOiAnJyxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgICBxdWVyaWVzOiB7XG5cbiAgICB9XG59KVxuQENvbXBvbmVudE1peGlucyhbQ29tcG9uZW50QmFzZV0pXG5leHBvcnQgY2xhc3MgQmFyY29kZUdlbmVyYXRvckNvbXBvbmVudCBleHRlbmRzIEJhcmNvZGVHZW5lcmF0b3IgaW1wbGVtZW50cyBJQ29tcG9uZW50QmFzZSB7XG4gICAgcHVibGljIGNvbnRleHQgOiBhbnk7XG4gICAgcHVibGljIHRhZ09iamVjdHM6IGFueTtcblx0cHVibGljIGludmFsaWQ6IGFueTtcblxuXG5cbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIG5nRWxlOiBFbGVtZW50UmVmLCBwcml2YXRlIHNyZW5kZXJlcjogUmVuZGVyZXIyLCBwcml2YXRlIHZpZXdDb250YWluZXJSZWY6Vmlld0NvbnRhaW5lclJlZiwgcHJpdmF0ZSBpbmplY3RvcjogSW5qZWN0b3IpIHtcbiAgICAgICAgc3VwZXIoKTtcbiAgICAgICAgdGhpcy5lbGVtZW50ID0gdGhpcy5uZ0VsZS5uYXRpdmVFbGVtZW50O1xuICAgICAgICB0aGlzLmluamVjdGVkTW9kdWxlcyA9IHRoaXMuaW5qZWN0ZWRNb2R1bGVzIHx8IFtdO1xuXG4gICAgICAgIHRoaXMucmVnaXN0ZXJFdmVudHMob3V0cHV0cyk7XG4gICAgICAgIHRoaXMuYWRkVHdvV2F5LmNhbGwodGhpcywgdHdvV2F5cyk7XG4gICAgICAgIHNldFZhbHVlKCdjdXJyZW50SW5zdGFuY2UnLCB0aGlzLCB0aGlzLnZpZXdDb250YWluZXJSZWYpO1xuICAgICAgICB0aGlzLmNvbnRleHQgID0gbmV3IENvbXBvbmVudEJhc2UoKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgICAgIHRoaXMuY29udGV4dC5uZ09uSW5pdCh0aGlzKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgbmdBZnRlclZpZXdJbml0KCk6IHZvaWQge1xuICAgICAgICB0aGlzLmNvbnRleHQubmdBZnRlclZpZXdJbml0KHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5jb250ZXh0Lm5nT25EZXN0cm95KHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ0FmdGVyQ29udGVudENoZWNrZWQoKTogdm9pZCB7XG4gICAgICAgIFxuICAgICAgICB0aGlzLmNvbnRleHQubmdBZnRlckNvbnRlbnRDaGVja2VkKHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyByZWdpc3RlckV2ZW50czogKGV2ZW50TGlzdDogc3RyaW5nW10pID0+IHZvaWQ7XG4gICAgcHVibGljIGFkZFR3b1dheTogKHByb3BMaXN0OiBzdHJpbmdbXSkgPT4gdm9pZDtcbn1cblxuIl19
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { BarcodeGeneratorComponent } from './barcodegenerator.component';
import * as i0 from "@angular/core";
/**
* NgModule definition for the BarcodeGenerator component.
*/
export class BarcodeGeneratorModule {
}
BarcodeGeneratorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
BarcodeGeneratorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, declarations: [BarcodeGeneratorComponent], imports: [CommonModule], exports: [BarcodeGeneratorComponent] });
BarcodeGeneratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, imports: [[CommonModule]] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule],
declarations: [
BarcodeGeneratorComponent
],
exports: [
BarcodeGeneratorComponent
]
}]
}] });
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyY29kZWdlbmVyYXRvci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvYmFyY29kZS1nZW5lcmF0b3IvYmFyY29kZWdlbmVyYXRvci5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sOEJBQThCLENBQUM7O0FBRXpFOztHQUVHO0FBVUgsTUFBTSxPQUFPLHNCQUFzQjs7bUhBQXRCLHNCQUFzQjtvSEFBdEIsc0JBQXNCLGlCQU4zQix5QkFBeUIsYUFGbkIsWUFBWSxhQUtsQix5QkFBeUI7b0hBR3BCLHNCQUFzQixZQVJ0QixDQUFDLFlBQVksQ0FBQzsyRkFRZCxzQkFBc0I7a0JBVGxDLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixZQUFZLEVBQUU7d0JBQ1YseUJBQXlCO3FCQUM1QjtvQkFDRCxPQUFPLEVBQUU7d0JBQ0wseUJBQXlCO3FCQUM1QjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQmFyY29kZUdlbmVyYXRvckNvbXBvbmVudCB9IGZyb20gJy4vYmFyY29kZWdlbmVyYXRvci5jb21wb25lbnQnO1xuXG4vKipcbiAqIE5nTW9kdWxlIGRlZmluaXRpb24gZm9yIHRoZSBCYXJjb2RlR2VuZXJhdG9yIGNvbXBvbmVudC5cbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcbiAgICBkZWNsYXJhdGlvbnM6IFtcbiAgICAgICAgQmFyY29kZUdlbmVyYXRvckNvbXBvbmVudFxuICAgIF0sXG4gICAgZXhwb3J0czogW1xuICAgICAgICBCYXJjb2RlR2VuZXJhdG9yQ29tcG9uZW50XG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBCYXJjb2RlR2VuZXJhdG9yTW9kdWxlIHsgfSJdfQ==
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { DataMatrixGeneratorModule } from './datamatrixgenerator.module';
import * as i0 from "@angular/core";
/**
* NgModule definition for the DataMatrixGenerator component with providers.
*/
export class DataMatrixGeneratorAllModule {
}
DataMatrixGeneratorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
DataMatrixGeneratorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, imports: [CommonModule, DataMatrixGeneratorModule], exports: [DataMatrixGeneratorModule] });
DataMatrixGeneratorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, providers: [], imports: [[CommonModule, DataMatrixGeneratorModule], DataMatrixGeneratorModule] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule, DataMatrixGeneratorModule],
exports: [
DataMatrixGeneratorModule
],
providers: []
}]
}] });
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YW1hdHJpeGdlbmVyYXRvci1hbGwubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL2RhdGFtYXRyaXgtZ2VuZXJhdG9yL2RhdGFtYXRyaXhnZW5lcmF0b3ItYWxsLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUN4RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFL0MsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sOEJBQThCLENBQUM7O0FBTXpFOztHQUVHO0FBVUgsTUFBTSxPQUFPLDRCQUE0Qjs7eUhBQTVCLDRCQUE0QjswSEFBNUIsNEJBQTRCLFlBUjNCLFlBQVksRUFBRSx5QkFBeUIsYUFFN0MseUJBQXlCOzBIQU1wQiw0QkFBNEIsYUFKM0IsRUFFVCxZQU5RLENBQUMsWUFBWSxFQUFFLHlCQUF5QixDQUFDLEVBRTlDLHlCQUF5QjsyRkFNcEIsNEJBQTRCO2tCQVR4QyxRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSx5QkFBeUIsQ0FBQztvQkFDbEQsT0FBTyxFQUFFO3dCQUNMLHlCQUF5QjtxQkFDNUI7b0JBQ0QsU0FBUyxFQUFDLEVBRVQ7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSwgVmFsdWVQcm92aWRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IERhdGFNYXRyaXhHZW5lcmF0b3JDb21wb25lbnQgfSBmcm9tICcuL2RhdGFtYXRyaXhnZW5lcmF0b3IuY29tcG9uZW50JztcbmltcG9ydCB7IERhdGFNYXRyaXhHZW5lcmF0b3JNb2R1bGUgfSBmcm9tICcuL2RhdGFtYXRyaXhnZW5lcmF0b3IubW9kdWxlJztcblxuXG5cblxuXG4vKipcbiAqIE5nTW9kdWxlIGRlZmluaXRpb24gZm9yIHRoZSBEYXRhTWF0cml4R2VuZXJhdG9yIGNvbXBvbmVudCB3aXRoIHByb3ZpZGVycy5cbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBEYXRhTWF0cml4R2VuZXJhdG9yTW9kdWxlXSxcbiAgICBleHBvcnRzOiBbXG4gICAgICAgIERhdGFNYXRyaXhHZW5lcmF0b3JNb2R1bGVcbiAgICBdLFxuICAgIHByb3ZpZGVyczpbXG4gICAgICAgIFxuICAgIF1cbn0pXG5leHBvcnQgY2xhc3MgRGF0YU1hdHJpeEdlbmVyYXRvckFsbE1vZHVsZSB7IH0iXX0=
import { __decorate } from "tslib";
import { Component, ChangeDetectionStrategy } from '@angular/core';
import { ComponentBase, ComponentMixins, setValue } from '@syncfusion/ej2-angular-base';
import { DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';
import * as i0 from "@angular/core";
export const inputs = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension'];
export const outputs = ['invalid'];
export const twoWays = [''];
/**
* DataMatrix Component
* ```html
* <ej-datamatrix-generator></ej-datamatrix-generator>
* ```
*/
let DataMatrixGeneratorComponent = class DataMatrixGeneratorComponent extends DataMatrixGenerator {
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs);
this.addTwoWay.call(this, twoWays);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
ngOnInit() {
this.context.ngOnInit(this);
}
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
DataMatrixGeneratorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
DataMatrixGeneratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DataMatrixGeneratorComponent, selector: "ejs-datamatrixgenerator", inputs: { backgroundColor: "backgroundColor", displayText: "displayText", enablePersistence: "enablePersistence", enableRtl: "enableRtl", encoding: "encoding", foreColor: "foreColor", height: "height", locale: "locale", margin: "margin", mode: "mode", size: "size", value: "value", width: "width", xDimension: "xDimension" }, outputs: { invalid: "invalid" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
DataMatrixGeneratorComponent = __decorate([
ComponentMixins([ComponentBase])
], DataMatrixGeneratorComponent);
export { DataMatrixGeneratorComponent };
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorComponent, decorators: [{
type: Component,
args: [{
selector: 'ejs-datamatrixgenerator',
inputs: inputs,
outputs: outputs,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
}]
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YW1hdHJpeGdlbmVyYXRvci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvZGF0YW1hdHJpeC1nZW5lcmF0b3IvZGF0YW1hdHJpeGdlbmVyYXRvci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWdDLHVCQUF1QixFQUFpRCxNQUFNLGVBQWUsQ0FBQztBQUNoSixPQUFPLEVBQUUsYUFBYSxFQUErQixlQUFlLEVBQTBCLFFBQVEsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQzdJLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLG1DQUFtQyxDQUFDOztBQUl4RSxNQUFNLENBQUMsTUFBTSxNQUFNLEdBQWEsQ0FBQyxpQkFBaUIsRUFBQyxhQUFhLEVBQUMsbUJBQW1CLEVBQUMsV0FBVyxFQUFDLFVBQVUsRUFBQyxXQUFXLEVBQUMsUUFBUSxFQUFDLFFBQVEsRUFBQyxRQUFRLEVBQUMsTUFBTSxFQUFDLE1BQU0sRUFBQyxPQUFPLEVBQUMsT0FBTyxFQUFDLFlBQVksQ0FBQyxDQUFDO0FBQy9MLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBYSxDQUFDLFNBQVMsQ0FBQyxDQUFDO0FBQzdDLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBYSxDQUFDLEVBQUUsQ0FBQyxDQUFDO0FBRXRDOzs7OztHQUtHO0lBWVUsNEJBQTRCLFNBQTVCLDRCQUE2QixTQUFRLG1CQUFtQjtJQU9qRSxZQUFvQixLQUFpQixFQUFVLFNBQW9CLEVBQVUsZ0JBQWlDLEVBQVUsUUFBa0I7UUFDdEksS0FBSyxFQUFFLENBQUM7UUFEUSxVQUFLLEdBQUwsS0FBSyxDQUFZO1FBQVUsY0FBUyxHQUFULFNBQVMsQ0FBVztRQUFVLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBaUI7UUFBVSxhQUFRLEdBQVIsUUFBUSxDQUFVO1FBRXRJLElBQUksQ0FBQyxPQUFPLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQyxhQUFhLENBQUM7UUFDeEMsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLENBQUMsZUFBZSxJQUFJLEVBQUUsQ0FBQztRQUVsRCxJQUFJLENBQUMsY0FBYyxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBQzdCLElBQUksQ0FBQyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksRUFBRSxPQUFPLENBQUMsQ0FBQztRQUNuQyxRQUFRLENBQUMsaUJBQWlCLEVBQUUsSUFBSSxFQUFFLElBQUksQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDO1FBQ3pELElBQUksQ0FBQyxPQUFPLEdBQUksSUFBSSxhQUFhLEVBQUUsQ0FBQztJQUN4QyxDQUFDO0lBRU0sUUFBUTtRQUNYLElBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ2hDLENBQUM7SUFFTSxlQUFlO1FBQ2xCLElBQUksQ0FBQyxPQUFPLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3ZDLENBQUM7SUFFTSxXQUFXO1FBQ2QsSUFBSSxDQUFDLE9BQU8sQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDbkMsQ0FBQztJQUVNLHFCQUFxQjtRQUV4QixJQUFJLENBQUMsT0FBTyxDQUFDLHFCQUFxQixDQUFDLElBQUksQ0FBQyxDQUFDO0lBQzdDLENBQUM7Q0FJSixDQUFBO3lIQXJDWSw0QkFBNEI7NkdBQTVCLDRCQUE0Qiw2YkFQM0IsRUFBRTtBQU9ILDRCQUE0QjtJQUR4QyxlQUFlLENBQUMsQ0FBQyxhQUFhLENBQUMsQ0FBQztHQUNwQiw0QkFBNEIsQ0FxQ3hDO1NBckNZLDRCQUE0QjsyRkFBNUIsNEJBQTRCO2tCQVh4QyxTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSx5QkFBeUI7b0JBQ25DLE1BQU0sRUFBRSxNQUFNO29CQUNkLE9BQU8sRUFBRSxPQUFPO29CQUNoQixRQUFRLEVBQUUsRUFBRTtvQkFDWixlQUFlLEVBQUUsdUJBQXVCLENBQUMsTUFBTTtvQkFDL0MsT0FBTyxFQUFFLEVBRVI7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEVsZW1lbnRSZWYsIFZpZXdDb250YWluZXJSZWYsIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBRdWVyeUxpc3QsIFJlbmRlcmVyMiwgSW5qZWN0b3IsIFZhbHVlUHJvdmlkZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbXBvbmVudEJhc2UsIElDb21wb25lbnRCYXNlLCBhcHBseU1peGlucywgQ29tcG9uZW50TWl4aW5zLCBQcm9wZXJ0eUNvbGxlY3Rpb25JbmZvLCBzZXRWYWx1ZSB9IGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1hbmd1bGFyLWJhc2UnO1xuaW1wb3J0IHsgRGF0YU1hdHJpeEdlbmVyYXRvciB9IGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1iYXJjb2RlLWdlbmVyYXRvcic7XG5cblxuXG5leHBvcnQgY29uc3QgaW5wdXRzOiBzdHJpbmdbXSA9IFsnYmFja2dyb3VuZENvbG9yJywnZGlzcGxheVRleHQnLCdlbmFibGVQZXJzaXN0ZW5jZScsJ2VuYWJsZVJ0bCcsJ2VuY29kaW5nJywnZm9yZUNvbG9yJywnaGVpZ2h0JywnbG9jYWxlJywnbWFyZ2luJywnbW9kZScsJ3NpemUnLCd2YWx1ZScsJ3dpZHRoJywneERpbWVuc2lvbiddO1xuZXhwb3J0IGNvbnN0IG91dHB1dHM6IHN0cmluZ1tdID0gWydpbnZhbGlkJ107XG5leHBvcnQgY29uc3QgdHdvV2F5czogc3RyaW5nW10gPSBbJyddO1xuXG4vKipcbiAqIERhdGFNYXRyaXggQ29tcG9uZW50XG4gKiBgYGBodG1sXG4gKiA8ZWotZGF0YW1hdHJpeC1nZW5lcmF0b3I+PC9lai1kYXRhbWF0cml4LWdlbmVyYXRvcj5cbiAqIGBgYFxuICovXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ2Vqcy1kYXRhbWF0cml4Z2VuZXJhdG9yJyxcbiAgICBpbnB1dHM6IGlucHV0cyxcbiAgICBvdXRwdXRzOiBvdXRwdXRzLFxuICAgIHRlbXBsYXRlOiAnJyxcbiAgICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgICBxdWVyaWVzOiB7XG5cbiAgICB9XG59KVxuQENvbXBvbmVudE1peGlucyhbQ29tcG9uZW50QmFzZV0pXG5leHBvcnQgY2xhc3MgRGF0YU1hdHJpeEdlbmVyYXRvckNvbXBvbmVudCBleHRlbmRzIERhdGFNYXRyaXhHZW5lcmF0b3IgaW1wbGVtZW50cyBJQ29tcG9uZW50QmFzZSB7XG4gICAgcHVibGljIGNvbnRleHQgOiBhbnk7XG4gICAgcHVibGljIHRhZ09iamVjdHM6IGFueTtcblx0cHVibGljIGludmFsaWQ6IGFueTtcblxuXG5cbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIG5nRWxlOiBFbGVtZW50UmVmLCBwcml2YXRlIHNyZW5kZXJlcjogUmVuZGVyZXIyLCBwcml2YXRlIHZpZXdDb250YWluZXJSZWY6Vmlld0NvbnRhaW5lclJlZiwgcHJpdmF0ZSBpbmplY3RvcjogSW5qZWN0b3IpIHtcbiAgICAgICAgc3VwZXIoKTtcbiAgICAgICAgdGhpcy5lbGVtZW50ID0gdGhpcy5uZ0VsZS5uYXRpdmVFbGVtZW50O1xuICAgICAgICB0aGlzLmluamVjdGVkTW9kdWxlcyA9IHRoaXMuaW5qZWN0ZWRNb2R1bGVzIHx8IFtdO1xuXG4gICAgICAgIHRoaXMucmVnaXN0ZXJFdmVudHMob3V0cHV0cyk7XG4gICAgICAgIHRoaXMuYWRkVHdvV2F5LmNhbGwodGhpcywgdHdvV2F5cyk7XG4gICAgICAgIHNldFZhbHVlKCdjdXJyZW50SW5zdGFuY2UnLCB0aGlzLCB0aGlzLnZpZXdDb250YWluZXJSZWYpO1xuICAgICAgICB0aGlzLmNvbnRleHQgID0gbmV3IENvbXBvbmVudEJhc2UoKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgICAgIHRoaXMuY29udGV4dC5uZ09uSW5pdCh0aGlzKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgbmdBZnRlclZpZXdJbml0KCk6IHZvaWQge1xuICAgICAgICB0aGlzLmNvbnRleHQubmdBZnRlclZpZXdJbml0KHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5jb250ZXh0Lm5nT25EZXN0cm95KHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ0FmdGVyQ29udGVudENoZWNrZWQoKTogdm9pZCB7XG4gICAgICAgIFxuICAgICAgICB0aGlzLmNvbnRleHQubmdBZnRlckNvbnRlbnRDaGVja2VkKHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyByZWdpc3RlckV2ZW50czogKGV2ZW50TGlzdDogc3RyaW5nW10pID0+IHZvaWQ7XG4gICAgcHVibGljIGFkZFR3b1dheTogKHByb3BMaXN0OiBzdHJpbmdbXSkgPT4gdm9pZDtcbn1cblxuIl19
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';
import * as i0 from "@angular/core";
/**
* NgModule definition for the DataMatrixGenerator component.
*/
export class DataMatrixGeneratorModule {
}
DataMatrixGeneratorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
DataMatrixGeneratorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, declarations: [DataMatrixGeneratorComponent], imports: [CommonModule], exports: [DataMatrixGeneratorComponent] });
DataMatrixGeneratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, imports: [[CommonModule]] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule],
declarations: [
DataMatrixGeneratorComponent
],
exports: [
DataMatrixGeneratorComponent
]
}]
}] });
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0YW1hdHJpeGdlbmVyYXRvci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvZGF0YW1hdHJpeC1nZW5lcmF0b3IvZGF0YW1hdHJpeGdlbmVyYXRvci5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0saUNBQWlDLENBQUM7O0FBRS9FOztHQUVHO0FBVUgsTUFBTSxPQUFPLHlCQUF5Qjs7c0hBQXpCLHlCQUF5Qjt1SEFBekIseUJBQXlCLGlCQU45Qiw0QkFBNEIsYUFGdEIsWUFBWSxhQUtsQiw0QkFBNEI7dUhBR3ZCLHlCQUF5QixZQVJ6QixDQUFDLFlBQVksQ0FBQzsyRkFRZCx5QkFBeUI7a0JBVHJDLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixZQUFZLEVBQUU7d0JBQ1YsNEJBQTRCO3FCQUMvQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ0wsNEJBQTRCO3FCQUMvQjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgRGF0YU1hdHJpeEdlbmVyYXRvckNvbXBvbmVudCB9IGZyb20gJy4vZGF0YW1hdHJpeGdlbmVyYXRvci5jb21wb25lbnQnO1xuXG4vKipcbiAqIE5nTW9kdWxlIGRlZmluaXRpb24gZm9yIHRoZSBEYXRhTWF0cml4R2VuZXJhdG9yIGNvbXBvbmVudC5cbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcbiAgICBkZWNsYXJhdGlvbnM6IFtcbiAgICAgICAgRGF0YU1hdHJpeEdlbmVyYXRvckNvbXBvbmVudFxuICAgIF0sXG4gICAgZXhwb3J0czogW1xuICAgICAgICBEYXRhTWF0cml4R2VuZXJhdG9yQ29tcG9uZW50XG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBEYXRhTWF0cml4R2VuZXJhdG9yTW9kdWxlIHsgfSJdfQ==
export { BarcodeGeneratorComponent } from './barcode-generator/barcodegenerator.component';
export { BarcodeGeneratorModule } from './barcode-generator/barcodegenerator.module';
export { BarcodeGeneratorAllModule } from './barcode-generator/barcodegenerator-all.module';
export { QRCodeGeneratorComponent } from './qrcode-generator/qrcodegenerator.component';
export { QRCodeGeneratorModule } from './qrcode-generator/qrcodegenerator.module';
export { QRCodeGeneratorAllModule } from './qrcode-generator/qrcodegenerator-all.module';
export { DataMatrixGeneratorComponent } from './datamatrix-generator/datamatrixgenerator.component';
export { DataMatrixGeneratorModule } from './datamatrix-generator/datamatrixgenerator.module';
export { DataMatrixGeneratorAllModule } from './datamatrix-generator/datamatrixgenerator-all.module';
export * from '@syncfusion/ej2-barcode-generator';
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHlCQUF5QixFQUFDLE1BQU0sZ0RBQWdELENBQUM7QUFDMUYsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sNkNBQTZDLENBQUM7QUFDckYsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0saURBQWlELENBQUM7QUFDNUYsT0FBTyxFQUFFLHdCQUF3QixFQUFDLE1BQU0sOENBQThDLENBQUM7QUFDdkYsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMkNBQTJDLENBQUM7QUFDbEYsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sK0NBQStDLENBQUM7QUFDekYsT0FBTyxFQUFFLDRCQUE0QixFQUFDLE1BQU0sc0RBQXNELENBQUM7QUFDbkcsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sbURBQW1ELENBQUM7QUFDOUYsT0FBTyxFQUFFLDRCQUE0QixFQUFFLE1BQU0sdURBQXVELENBQUM7QUFDckcsY0FBYyxtQ0FBbUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IEJhcmNvZGVHZW5lcmF0b3JDb21wb25lbnR9IGZyb20gJy4vYmFyY29kZS1nZW5lcmF0b3IvYmFyY29kZWdlbmVyYXRvci5jb21wb25lbnQnO1xuZXhwb3J0IHsgQmFyY29kZUdlbmVyYXRvck1vZHVsZSB9IGZyb20gJy4vYmFyY29kZS1nZW5lcmF0b3IvYmFyY29kZWdlbmVyYXRvci5tb2R1bGUnO1xuZXhwb3J0IHsgQmFyY29kZUdlbmVyYXRvckFsbE1vZHVsZSB9IGZyb20gJy4vYmFyY29kZS1nZW5lcmF0b3IvYmFyY29kZWdlbmVyYXRvci1hbGwubW9kdWxlJztcbmV4cG9ydCB7IFFSQ29kZUdlbmVyYXRvckNvbXBvbmVudH0gZnJvbSAnLi9xcmNvZGUtZ2VuZXJhdG9yL3FyY29kZWdlbmVyYXRvci5jb21wb25lbnQnO1xuZXhwb3J0IHsgUVJDb2RlR2VuZXJhdG9yTW9kdWxlIH0gZnJvbSAnLi9xcmNvZGUtZ2VuZXJhdG9yL3FyY29kZWdlbmVyYXRvci5tb2R1bGUnO1xuZXhwb3J0IHsgUVJDb2RlR2VuZXJhdG9yQWxsTW9kdWxlIH0gZnJvbSAnLi9xcmNvZGUtZ2VuZXJhdG9yL3FyY29kZWdlbmVyYXRvci1hbGwubW9kdWxlJztcbmV4cG9ydCB7IERhdGFNYXRyaXhHZW5lcmF0b3JDb21wb25lbnR9IGZyb20gJy4vZGF0YW1hdHJpeC1nZW5lcmF0b3IvZGF0YW1hdHJpeGdlbmVyYXRvci5jb21wb25lbnQnO1xuZXhwb3J0IHsgRGF0YU1hdHJpeEdlbmVyYXRvck1vZHVsZSB9IGZyb20gJy4vZGF0YW1hdHJpeC1nZW5lcmF0b3IvZGF0YW1hdHJpeGdlbmVyYXRvci5tb2R1bGUnO1xuZXhwb3J0IHsgRGF0YU1hdHJpeEdlbmVyYXRvckFsbE1vZHVsZSB9IGZyb20gJy4vZGF0YW1hdHJpeC1nZW5lcmF0b3IvZGF0YW1hdHJpeGdlbmVyYXRvci1hbGwubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJ0BzeW5jZnVzaW9uL2VqMi1iYXJjb2RlLWdlbmVyYXRvcic7Il19
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { QRCodeGeneratorModule } from './qrcodegenerator.module';
import * as i0 from "@angular/core";
/**
* NgModule definition for the QRCodeGenerator component with providers.
*/
export class QRCodeGeneratorAllModule {
}
QRCodeGeneratorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
QRCodeGeneratorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, imports: [CommonModule, QRCodeGeneratorModule], exports: [QRCodeGeneratorModule] });
QRCodeGeneratorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, providers: [], imports: [[CommonModule, QRCodeGeneratorModule], QRCodeGeneratorModule] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule, QRCodeGeneratorModule],
exports: [
QRCodeGeneratorModule
],
providers: []
}]
}] });
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXJjb2RlZ2VuZXJhdG9yLWFsbC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcXJjb2RlLWdlbmVyYXRvci9xcmNvZGVnZW5lcmF0b3ItYWxsLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUN4RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFL0MsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7O0FBTWpFOztHQUVHO0FBVUgsTUFBTSxPQUFPLHdCQUF3Qjs7cUhBQXhCLHdCQUF3QjtzSEFBeEIsd0JBQXdCLFlBUnZCLFlBQVksRUFBRSxxQkFBcUIsYUFFekMscUJBQXFCO3NIQU1oQix3QkFBd0IsYUFKdkIsRUFFVCxZQU5RLENBQUMsWUFBWSxFQUFFLHFCQUFxQixDQUFDLEVBRTFDLHFCQUFxQjsyRkFNaEIsd0JBQXdCO2tCQVRwQyxRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxxQkFBcUIsQ0FBQztvQkFDOUMsT0FBTyxFQUFFO3dCQUNMLHFCQUFxQjtxQkFDeEI7b0JBQ0QsU0FBUyxFQUFDLEVBRVQ7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSwgVmFsdWVQcm92aWRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IFFSQ29kZUdlbmVyYXRvckNvbXBvbmVudCB9IGZyb20gJy4vcXJjb2RlZ2VuZXJhdG9yLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBRUkNvZGVHZW5lcmF0b3JNb2R1bGUgfSBmcm9tICcuL3FyY29kZWdlbmVyYXRvci5tb2R1bGUnO1xuXG5cblxuXG5cbi8qKlxuICogTmdNb2R1bGUgZGVmaW5pdGlvbiBmb3IgdGhlIFFSQ29kZUdlbmVyYXRvciBjb21wb25lbnQgd2l0aCBwcm92aWRlcnMuXG4gKi9cbkBOZ01vZHVsZSh7XG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZSwgUVJDb2RlR2VuZXJhdG9yTW9kdWxlXSxcbiAgICBleHBvcnRzOiBbXG4gICAgICAgIFFSQ29kZUdlbmVyYXRvck1vZHVsZVxuICAgIF0sXG4gICAgcHJvdmlkZXJzOltcbiAgICAgICAgXG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBRUkNvZGVHZW5lcmF0b3JBbGxNb2R1bGUgeyB9Il19
import { __decorate } from "tslib";
import { Component, ChangeDetectionStrategy } from '@angular/core';
import { ComponentBase, ComponentMixins, setValue } from '@syncfusion/ej2-angular-base';
import { QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';
import * as i0 from "@angular/core";
export const inputs = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'logo', 'margin', 'mode', 'value', 'version', 'width', 'xDimension'];
export const outputs = ['invalid'];
export const twoWays = [''];
/**
* QRCode Component
* ```html
* <ej-qrcode-generator></ej-qrcode-generator>
* ```
*/
let QRCodeGeneratorComponent = class QRCodeGeneratorComponent extends QRCodeGenerator {
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs);
this.addTwoWay.call(this, twoWays);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
ngOnInit() {
this.context.ngOnInit(this);
}
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
QRCodeGeneratorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
QRCodeGeneratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: QRCodeGeneratorComponent, selector: "ejs-qrcodegenerator", inputs: { backgroundColor: "backgroundColor", displayText: "displayText", enablePersistence: "enablePersistence", enableRtl: "enableRtl", errorCorrectionLevel: "errorCorrectionLevel", foreColor: "foreColor", height: "height", locale: "locale", logo: "logo", margin: "margin", mode: "mode", value: "value", version: "version", width: "width", xDimension: "xDimension" }, outputs: { invalid: "invalid" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
QRCodeGeneratorComponent = __decorate([
ComponentMixins([ComponentBase])
], QRCodeGeneratorComponent);
export { QRCodeGeneratorComponent };
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorComponent, decorators: [{
type: Component,
args: [{
selector: 'ejs-qrcodegenerator',
inputs: inputs,
outputs: outputs,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
}]
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXJjb2RlZ2VuZXJhdG9yLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9xcmNvZGUtZ2VuZXJhdG9yL3FyY29kZWdlbmVyYXRvci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWdDLHVCQUF1QixFQUFpRCxNQUFNLGVBQWUsQ0FBQztBQUNoSixPQUFPLEVBQUUsYUFBYSxFQUErQixlQUFlLEVBQTBCLFFBQVEsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQzdJLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQzs7QUFJcEUsTUFBTSxDQUFDLE1BQU0sTUFBTSxHQUFhLENBQUMsaUJBQWlCLEVBQUMsYUFBYSxFQUFDLG1CQUFtQixFQUFDLFdBQVcsRUFBQyxzQkFBc0IsRUFBQyxXQUFXLEVBQUMsUUFBUSxFQUFDLFFBQVEsRUFBQyxNQUFNLEVBQUMsUUFBUSxFQUFDLE1BQU0sRUFBQyxPQUFPLEVBQUMsU0FBUyxFQUFDLE9BQU8sRUFBQyxZQUFZLENBQUMsQ0FBQztBQUNyTixNQUFNLENBQUMsTUFBTSxPQUFPLEdBQWEsQ0FBQyxTQUFTLENBQUMsQ0FBQztBQUM3QyxNQUFNLENBQUMsTUFBTSxPQUFPLEdBQWEsQ0FBQyxFQUFFLENBQUMsQ0FBQztBQUV0Qzs7Ozs7R0FLRztJQVlVLHdCQUF3QixTQUF4Qix3QkFBeUIsU0FBUSxlQUFlO0lBT3pELFlBQW9CLEtBQWlCLEVBQVUsU0FBb0IsRUFBVSxnQkFBaUMsRUFBVSxRQUFrQjtRQUN0SSxLQUFLLEVBQUUsQ0FBQztRQURRLFVBQUssR0FBTCxLQUFLLENBQVk7UUFBVSxjQUFTLEdBQVQsU0FBUyxDQUFXO1FBQVUscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFpQjtRQUFVLGFBQVEsR0FBUixRQUFRLENBQVU7UUFFdEksSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLGFBQWEsQ0FBQztRQUN4QyxJQUFJLENBQUMsZUFBZSxHQUFHLElBQUksQ0FBQyxlQUFlLElBQUksRUFBRSxDQUFDO1FBRWxELElBQUksQ0FBQyxjQUFjLENBQUMsT0FBTyxDQUFDLENBQUM7UUFDN0IsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsSUFBSSxFQUFFLE9BQU8sQ0FBQyxDQUFDO1FBQ25DLFFBQVEsQ0FBQyxpQkFBaUIsRUFBRSxJQUFJLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUM7UUFDekQsSUFBSSxDQUFDLE9BQU8sR0FBSSxJQUFJLGFBQWEsRUFBRSxDQUFDO0lBQ3hDLENBQUM7SUFFTSxRQUFRO1FBQ1gsSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDaEMsQ0FBQztJQUVNLGVBQWU7UUFDbEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxlQUFlLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDdkMsQ0FBQztJQUVNLFdBQVc7UUFDZCxJQUFJLENBQUMsT0FBTyxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNuQyxDQUFDO0lBRU0scUJBQXFCO1FBRXhCLElBQUksQ0FBQyxPQUFPLENBQUMscUJBQXFCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDN0MsQ0FBQztDQUlKLENBQUE7cUhBckNZLHdCQUF3Qjt5R0FBeEIsd0JBQXdCLHFlQVB2QixFQUFFO0FBT0gsd0JBQXdCO0lBRHBDLGVBQWUsQ0FBQyxDQUFDLGFBQWEsQ0FBQyxDQUFDO0dBQ3BCLHdCQUF3QixDQXFDcEM7U0FyQ1ksd0JBQXdCOzJGQUF4Qix3QkFBd0I7a0JBWHBDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLHFCQUFxQjtvQkFDL0IsTUFBTSxFQUFFLE1BQU07b0JBQ2QsT0FBTyxFQUFFLE9BQU87b0JBQ2hCLFFBQVEsRUFBRSxFQUFFO29CQUNaLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsRUFFUjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRWxlbWVudFJlZiwgVmlld0NvbnRhaW5lclJlZiwgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIFF1ZXJ5TGlzdCwgUmVuZGVyZXIyLCBJbmplY3RvciwgVmFsdWVQcm92aWRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tcG9uZW50QmFzZSwgSUNvbXBvbmVudEJhc2UsIGFwcGx5TWl4aW5zLCBDb21wb25lbnRNaXhpbnMsIFByb3BlcnR5Q29sbGVjdGlvbkluZm8sIHNldFZhbHVlIH0gZnJvbSAnQHN5bmNmdXNpb24vZWoyLWFuZ3VsYXItYmFzZSc7XG5pbXBvcnQgeyBRUkNvZGVHZW5lcmF0b3IgfSBmcm9tICdAc3luY2Z1c2lvbi9lajItYmFyY29kZS1nZW5lcmF0b3InO1xuXG5cblxuZXhwb3J0IGNvbnN0IGlucHV0czogc3RyaW5nW10gPSBbJ2JhY2tncm91bmRDb2xvcicsJ2Rpc3BsYXlUZXh0JywnZW5hYmxlUGVyc2lzdGVuY2UnLCdlbmFibGVSdGwnLCdlcnJvckNvcnJlY3Rpb25MZXZlbCcsJ2ZvcmVDb2xvcicsJ2hlaWdodCcsJ2xvY2FsZScsJ2xvZ28nLCdtYXJnaW4nLCdtb2RlJywndmFsdWUnLCd2ZXJzaW9uJywnd2lkdGgnLCd4RGltZW5zaW9uJ107XG5leHBvcnQgY29uc3Qgb3V0cHV0czogc3RyaW5nW10gPSBbJ2ludmFsaWQnXTtcbmV4cG9ydCBjb25zdCB0d29XYXlzOiBzdHJpbmdbXSA9IFsnJ107XG5cbi8qKlxuICogUVJDb2RlIENvbXBvbmVudFxuICogYGBgaHRtbFxuICogPGVqLXFyY29kZS1nZW5lcmF0b3I+PC9lai1xcmNvZGUtZ2VuZXJhdG9yPlxuICogYGBgXG4gKi9cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnZWpzLXFyY29kZWdlbmVyYXRvcicsXG4gICAgaW5wdXRzOiBpbnB1dHMsXG4gICAgb3V0cHV0czogb3V0cHV0cyxcbiAgICB0ZW1wbGF0ZTogJycsXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gICAgcXVlcmllczoge1xuXG4gICAgfVxufSlcbkBDb21wb25lbnRNaXhpbnMoW0NvbXBvbmVudEJhc2VdKVxuZXhwb3J0IGNsYXNzIFFSQ29kZUdlbmVyYXRvckNvbXBvbmVudCBleHRlbmRzIFFSQ29kZUdlbmVyYXRvciBpbXBsZW1lbnRzIElDb21wb25lbnRCYXNlIHtcbiAgICBwdWJsaWMgY29udGV4dCA6IGFueTtcbiAgICBwdWJsaWMgdGFnT2JqZWN0czogYW55O1xuXHRwdWJsaWMgaW52YWxpZDogYW55O1xuXG5cblxuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUgbmdFbGU6IEVsZW1lbnRSZWYsIHByaXZhdGUgc3JlbmRlcmVyOiBSZW5kZXJlcjIsIHByaXZhdGUgdmlld0NvbnRhaW5lclJlZjpWaWV3Q29udGFpbmVyUmVmLCBwcml2YXRlIGluamVjdG9yOiBJbmplY3Rvcikge1xuICAgICAgICBzdXBlcigpO1xuICAgICAgICB0aGlzLmVsZW1lbnQgPSB0aGlzLm5nRWxlLm5hdGl2ZUVsZW1lbnQ7XG4gICAgICAgIHRoaXMuaW5qZWN0ZWRNb2R1bGVzID0gdGhpcy5pbmplY3RlZE1vZHVsZXMgfHwgW107XG5cbiAgICAgICAgdGhpcy5yZWdpc3RlckV2ZW50cyhvdXRwdXRzKTtcbiAgICAgICAgdGhpcy5hZGRUd29XYXkuY2FsbCh0aGlzLCB0d29XYXlzKTtcbiAgICAgICAgc2V0VmFsdWUoJ2N1cnJlbnRJbnN0YW5jZScsIHRoaXMsIHRoaXMudmlld0NvbnRhaW5lclJlZik7XG4gICAgICAgIHRoaXMuY29udGV4dCAgPSBuZXcgQ29tcG9uZW50QmFzZSgpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ09uSW5pdCgpIHtcbiAgICAgICAgdGhpcy5jb250ZXh0Lm5nT25Jbml0KHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ0FmdGVyVmlld0luaXQoKTogdm9pZCB7XG4gICAgICAgIHRoaXMuY29udGV4dC5uZ0FmdGVyVmlld0luaXQodGhpcyk7XG4gICAgfVxuXG4gICAgcHVibGljIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgICAgICB0aGlzLmNvbnRleHQubmdPbkRlc3Ryb3kodGhpcyk7XG4gICAgfVxuXG4gICAgcHVibGljIG5nQWZ0ZXJDb250ZW50Q2hlY2tlZCgpOiB2b2lkIHtcbiAgICAgICAgXG4gICAgICAgIHRoaXMuY29udGV4dC5uZ0FmdGVyQ29udGVudENoZWNrZWQodGhpcyk7XG4gICAgfVxuXG4gICAgcHVibGljIHJlZ2lzdGVyRXZlbnRzOiAoZXZlbnRMaXN0OiBzdHJpbmdbXSkgPT4gdm9pZDtcbiAgICBwdWJsaWMgYWRkVHdvV2F5OiAocHJvcExpc3Q6IHN0cmluZ1tdKSA9PiB2b2lkO1xufVxuXG4iXX0=
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { QRCodeGeneratorComponent } from './qrcodegenerator.component';
import * as i0 from "@angular/core";
/**
* NgModule definition for the QRCodeGenerator component.
*/
export class QRCodeGeneratorModule {
}
QRCodeGeneratorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
QRCodeGeneratorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, declarations: [QRCodeGeneratorComponent], imports: [CommonModule], exports: [QRCodeGeneratorComponent] });
QRCodeGeneratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, imports: [[CommonModule]] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule],
declarations: [
QRCodeGeneratorComponent
],
exports: [
QRCodeGeneratorComponent
]
}]
}] });
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXJjb2RlZ2VuZXJhdG9yLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9xcmNvZGUtZ2VuZXJhdG9yL3FyY29kZWdlbmVyYXRvci5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHdCQUF3QixFQUFFLE1BQU0sNkJBQTZCLENBQUM7O0FBRXZFOztHQUVHO0FBVUgsTUFBTSxPQUFPLHFCQUFxQjs7a0hBQXJCLHFCQUFxQjttSEFBckIscUJBQXFCLGlCQU4xQix3QkFBd0IsYUFGbEIsWUFBWSxhQUtsQix3QkFBd0I7bUhBR25CLHFCQUFxQixZQVJyQixDQUFDLFlBQVksQ0FBQzsyRkFRZCxxQkFBcUI7a0JBVGpDLFFBQVE7bUJBQUM7b0JBQ04sT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixZQUFZLEVBQUU7d0JBQ1Ysd0JBQXdCO3FCQUMzQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ0wsd0JBQXdCO3FCQUMzQjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgUVJDb2RlR2VuZXJhdG9yQ29tcG9uZW50IH0gZnJvbSAnLi9xcmNvZGVnZW5lcmF0b3IuY29tcG9uZW50JztcblxuLyoqXG4gKiBOZ01vZHVsZSBkZWZpbml0aW9uIGZvciB0aGUgUVJDb2RlR2VuZXJhdG9yIGNvbXBvbmVudC5cbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcbiAgICBkZWNsYXJhdGlvbnM6IFtcbiAgICAgICAgUVJDb2RlR2VuZXJhdG9yQ29tcG9uZW50XG4gICAgXSxcbiAgICBleHBvcnRzOiBbXG4gICAgICAgIFFSQ29kZUdlbmVyYXRvckNvbXBvbmVudFxuICAgIF1cbn0pXG5leHBvcnQgY2xhc3MgUVJDb2RlR2VuZXJhdG9yTW9kdWxlIHsgfSJdfQ==
/**
* Generated bundle index. Do not edit.
*/
export * from './public_api';
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3luY2Z1c2lvbi1lajItYW5ndWxhci1iYXJjb2RlLWdlbmVyYXRvci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3N5bmNmdXNpb24tZWoyLWFuZ3VsYXItYmFyY29kZS1nZW5lcmF0b3IudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWNfYXBpJztcbiJdfQ==
import { __decorate } from 'tslib';
import * as i0 from '@angular/core';
import { Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
import { setValue, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
import { BarcodeGenerator, QRCodeGenerator, DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';
export * from '@syncfusion/ej2-barcode-generator';
import { CommonModule } from '@angular/common';
const inputs$2 = ['backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width'];
const outputs$2 = ['invalid'];
const twoWays$2 = [''];
/**
* Barcode Component
* ```html
* <ej-barcode-generator></ej-barcode-generator>
* ```
*/
let BarcodeGeneratorComponent = class BarcodeGeneratorComponent extends BarcodeGenerator {
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs$2);
this.addTwoWay.call(this, twoWays$2);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
ngOnInit() {
this.context.ngOnInit(this);
}
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
BarcodeGeneratorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
BarcodeGeneratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: BarcodeGeneratorComponent, selector: "ejs-barcodegenerator", inputs: { backgroundColor: "backgroundColor", displayText: "displayText", enableCheckSum: "enableCheckSum", enablePersistence: "enablePersistence", enableRtl: "enableRtl", foreColor: "foreColor", height: "height", locale: "locale", margin: "margin", mode: "mode", type: "type", value: "value", width: "width" }, outputs: { invalid: "invalid" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
BarcodeGeneratorComponent = __decorate([
ComponentMixins([ComponentBase])
], BarcodeGeneratorComponent);
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorComponent, decorators: [{
type: Component,
args: [{
selector: 'ejs-barcodegenerator',
inputs: inputs$2,
outputs: outputs$2,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
}]
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
/**
* NgModule definition for the BarcodeGenerator component.
*/
class BarcodeGeneratorModule {
}
BarcodeGeneratorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
BarcodeGeneratorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, declarations: [BarcodeGeneratorComponent], imports: [CommonModule], exports: [BarcodeGeneratorComponent] });
BarcodeGeneratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, imports: [[CommonModule]] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule],
declarations: [
BarcodeGeneratorComponent
],
exports: [
BarcodeGeneratorComponent
]
}]
}] });
/**
* NgModule definition for the BarcodeGenerator component with providers.
*/
class BarcodeGeneratorAllModule {
}
BarcodeGeneratorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
BarcodeGeneratorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, imports: [CommonModule, BarcodeGeneratorModule], exports: [BarcodeGeneratorModule] });
BarcodeGeneratorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, providers: [], imports: [[CommonModule, BarcodeGeneratorModule], BarcodeGeneratorModule] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule, BarcodeGeneratorModule],
exports: [
BarcodeGeneratorModule
],
providers: []
}]
}] });
const inputs$1 = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'logo', 'margin', 'mode', 'value', 'version', 'width', 'xDimension'];
const outputs$1 = ['invalid'];
const twoWays$1 = [''];
/**
* QRCode Component
* ```html
* <ej-qrcode-generator></ej-qrcode-generator>
* ```
*/
let QRCodeGeneratorComponent = class QRCodeGeneratorComponent extends QRCodeGenerator {
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs$1);
this.addTwoWay.call(this, twoWays$1);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
ngOnInit() {
this.context.ngOnInit(this);
}
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
QRCodeGeneratorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
QRCodeGeneratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: QRCodeGeneratorComponent, selector: "ejs-qrcodegenerator", inputs: { backgroundColor: "backgroundColor", displayText: "displayText", enablePersistence: "enablePersistence", enableRtl: "enableRtl", errorCorrectionLevel: "errorCorrectionLevel", foreColor: "foreColor", height: "height", locale: "locale", logo: "logo", margin: "margin", mode: "mode", value: "value", version: "version", width: "width", xDimension: "xDimension" }, outputs: { invalid: "invalid" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
QRCodeGeneratorComponent = __decorate([
ComponentMixins([ComponentBase])
], QRCodeGeneratorComponent);
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorComponent, decorators: [{
type: Component,
args: [{
selector: 'ejs-qrcodegenerator',
inputs: inputs$1,
outputs: outputs$1,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
}]
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
/**
* NgModule definition for the QRCodeGenerator component.
*/
class QRCodeGeneratorModule {
}
QRCodeGeneratorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
QRCodeGeneratorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, declarations: [QRCodeGeneratorComponent], imports: [CommonModule], exports: [QRCodeGeneratorComponent] });
QRCodeGeneratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, imports: [[CommonModule]] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule],
declarations: [
QRCodeGeneratorComponent
],
exports: [
QRCodeGeneratorComponent
]
}]
}] });
/**
* NgModule definition for the QRCodeGenerator component with providers.
*/
class QRCodeGeneratorAllModule {
}
QRCodeGeneratorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
QRCodeGeneratorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, imports: [CommonModule, QRCodeGeneratorModule], exports: [QRCodeGeneratorModule] });
QRCodeGeneratorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, providers: [], imports: [[CommonModule, QRCodeGeneratorModule], QRCodeGeneratorModule] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule, QRCodeGeneratorModule],
exports: [
QRCodeGeneratorModule
],
providers: []
}]
}] });
const inputs = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension'];
const outputs = ['invalid'];
const twoWays = [''];
/**
* DataMatrix Component
* ```html
* <ej-datamatrix-generator></ej-datamatrix-generator>
* ```
*/
let DataMatrixGeneratorComponent = class DataMatrixGeneratorComponent extends DataMatrixGenerator {
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs);
this.addTwoWay.call(this, twoWays);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
ngOnInit() {
this.context.ngOnInit(this);
}
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
DataMatrixGeneratorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
DataMatrixGeneratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DataMatrixGeneratorComponent, selector: "ejs-datamatrixgenerator", inputs: { backgroundColor: "backgroundColor", displayText: "displayText", enablePersistence: "enablePersistence", enableRtl: "enableRtl", encoding: "encoding", foreColor: "foreColor", height: "height", locale: "locale", margin: "margin", mode: "mode", size: "size", value: "value", width: "width", xDimension: "xDimension" }, outputs: { invalid: "invalid" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
DataMatrixGeneratorComponent = __decorate([
ComponentMixins([ComponentBase])
], DataMatrixGeneratorComponent);
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorComponent, decorators: [{
type: Component,
args: [{
selector: 'ejs-datamatrixgenerator',
inputs: inputs,
outputs: outputs,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
}]
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
/**
* NgModule definition for the DataMatrixGenerator component.
*/
class DataMatrixGeneratorModule {
}
DataMatrixGeneratorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
DataMatrixGeneratorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, declarations: [DataMatrixGeneratorComponent], imports: [CommonModule], exports: [DataMatrixGeneratorComponent] });
DataMatrixGeneratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, imports: [[CommonModule]] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule],
declarations: [
DataMatrixGeneratorComponent
],
exports: [
DataMatrixGeneratorComponent
]
}]
}] });
/**
* NgModule definition for the DataMatrixGenerator component with providers.
*/
class DataMatrixGeneratorAllModule {
}
DataMatrixGeneratorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
DataMatrixGeneratorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, imports: [CommonModule, DataMatrixGeneratorModule], exports: [DataMatrixGeneratorModule] });
DataMatrixGeneratorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, providers: [], imports: [[CommonModule, DataMatrixGeneratorModule], DataMatrixGeneratorModule] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule, DataMatrixGeneratorModule],
exports: [
DataMatrixGeneratorModule
],
providers: []
}]
}] });
/**
* Generated bundle index. Do not edit.
*/
export { BarcodeGeneratorAllModule, BarcodeGeneratorComponent, BarcodeGeneratorModule, DataMatrixGeneratorAllModule, DataMatrixGeneratorComponent, DataMatrixGeneratorModule, QRCodeGeneratorAllModule, QRCodeGeneratorComponent, QRCodeGeneratorModule };
//# sourceMappingURL=syncfusion-ej2-angular-barcode-generator.mjs.map
{"version":3,"file":"syncfusion-ej2-angular-barcode-generator.mjs","sources":["../../src/barcode-generator/barcodegenerator.component.ts","../../src/barcode-generator/barcodegenerator.module.ts","../../src/barcode-generator/barcodegenerator-all.module.ts","../../src/qrcode-generator/qrcodegenerator.component.ts","../../src/qrcode-generator/qrcodegenerator.module.ts","../../src/qrcode-generator/qrcodegenerator-all.module.ts","../../src/datamatrix-generator/datamatrixgenerator.component.ts","../../src/datamatrix-generator/datamatrixgenerator.module.ts","../../src/datamatrix-generator/datamatrixgenerator-all.module.ts","../../syncfusion-ej2-angular-barcode-generator.ts"],"sourcesContent":["import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { BarcodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const inputs: string[] = ['backgroundColor','displayText','enableCheckSum','enablePersistence','enableRtl','foreColor','height','locale','margin','mode','type','value','width'];\nexport const outputs: string[] = ['invalid'];\nexport const twoWays: string[] = [''];\n\n/**\n * Barcode Component\n * ```html\n * <ej-barcode-generator></ej-barcode-generator>\n * ```\n */\n@Component({\n selector: 'ejs-barcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class BarcodeGeneratorComponent extends BarcodeGenerator implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tpublic invalid: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\n\n/**\n * NgModule definition for the BarcodeGenerator component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n BarcodeGeneratorComponent\n ],\n exports: [\n BarcodeGeneratorComponent\n ]\n})\nexport class BarcodeGeneratorModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\nimport { BarcodeGeneratorModule } from './barcodegenerator.module';\n\n\n\n\n\n/**\n * NgModule definition for the BarcodeGenerator component with providers.\n */\n@NgModule({\n imports: [CommonModule, BarcodeGeneratorModule],\n exports: [\n BarcodeGeneratorModule\n ],\n providers:[\n \n ]\n})\nexport class BarcodeGeneratorAllModule { }","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','errorCorrectionLevel','foreColor','height','locale','logo','margin','mode','value','version','width','xDimension'];\nexport const outputs: string[] = ['invalid'];\nexport const twoWays: string[] = [''];\n\n/**\n * QRCode Component\n * ```html\n * <ej-qrcode-generator></ej-qrcode-generator>\n * ```\n */\n@Component({\n selector: 'ejs-qrcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class QRCodeGeneratorComponent extends QRCodeGenerator implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tpublic invalid: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\n\n/**\n * NgModule definition for the QRCodeGenerator component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n QRCodeGeneratorComponent\n ],\n exports: [\n QRCodeGeneratorComponent\n ]\n})\nexport class QRCodeGeneratorModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\nimport { QRCodeGeneratorModule } from './qrcodegenerator.module';\n\n\n\n\n\n/**\n * NgModule definition for the QRCodeGenerator component with providers.\n */\n@NgModule({\n imports: [CommonModule, QRCodeGeneratorModule],\n exports: [\n QRCodeGeneratorModule\n ],\n providers:[\n \n ]\n})\nexport class QRCodeGeneratorAllModule { }","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','encoding','foreColor','height','locale','margin','mode','size','value','width','xDimension'];\nexport const outputs: string[] = ['invalid'];\nexport const twoWays: string[] = [''];\n\n/**\n * DataMatrix Component\n * ```html\n * <ej-datamatrix-generator></ej-datamatrix-generator>\n * ```\n */\n@Component({\n selector: 'ejs-datamatrixgenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class DataMatrixGeneratorComponent extends DataMatrixGenerator implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tpublic invalid: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\n\n/**\n * NgModule definition for the DataMatrixGenerator component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n DataMatrixGeneratorComponent\n ],\n exports: [\n DataMatrixGeneratorComponent\n ]\n})\nexport class DataMatrixGeneratorModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\nimport { DataMatrixGeneratorModule } from './datamatrixgenerator.module';\n\n\n\n\n\n/**\n * NgModule definition for the DataMatrixGenerator component with providers.\n */\n@NgModule({\n imports: [CommonModule, DataMatrixGeneratorModule],\n exports: [\n DataMatrixGeneratorModule\n ],\n providers:[\n \n ]\n})\nexport class DataMatrixGeneratorAllModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["inputs","outputs","twoWays"],"mappings":"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"}
import { __decorate } from 'tslib';
import * as i0 from '@angular/core';
import { Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
import { setValue, ComponentBase, ComponentMixins } from '@syncfusion/ej2-angular-base';
import { BarcodeGenerator, QRCodeGenerator, DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';
export * from '@syncfusion/ej2-barcode-generator';
import { CommonModule } from '@angular/common';
const inputs$2 = ['backgroundColor', 'displayText', 'enableCheckSum', 'enablePersistence', 'enableRtl', 'foreColor', 'height', 'locale', 'margin', 'mode', 'type', 'value', 'width'];
const outputs$2 = ['invalid'];
const twoWays$2 = [''];
/**
* Barcode Component
* ```html
* <ej-barcode-generator></ej-barcode-generator>
* ```
*/
let BarcodeGeneratorComponent = class BarcodeGeneratorComponent extends BarcodeGenerator {
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs$2);
this.addTwoWay.call(this, twoWays$2);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
ngOnInit() {
this.context.ngOnInit(this);
}
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
BarcodeGeneratorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
BarcodeGeneratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: BarcodeGeneratorComponent, selector: "ejs-barcodegenerator", inputs: { backgroundColor: "backgroundColor", displayText: "displayText", enableCheckSum: "enableCheckSum", enablePersistence: "enablePersistence", enableRtl: "enableRtl", foreColor: "foreColor", height: "height", locale: "locale", margin: "margin", mode: "mode", type: "type", value: "value", width: "width" }, outputs: { invalid: "invalid" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
BarcodeGeneratorComponent = __decorate([
ComponentMixins([ComponentBase])
], BarcodeGeneratorComponent);
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorComponent, decorators: [{
type: Component,
args: [{
selector: 'ejs-barcodegenerator',
inputs: inputs$2,
outputs: outputs$2,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
}]
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
/**
* NgModule definition for the BarcodeGenerator component.
*/
class BarcodeGeneratorModule {
}
BarcodeGeneratorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
BarcodeGeneratorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, declarations: [BarcodeGeneratorComponent], imports: [CommonModule], exports: [BarcodeGeneratorComponent] });
BarcodeGeneratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, imports: [[CommonModule]] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule],
declarations: [
BarcodeGeneratorComponent
],
exports: [
BarcodeGeneratorComponent
]
}]
}] });
/**
* NgModule definition for the BarcodeGenerator component with providers.
*/
class BarcodeGeneratorAllModule {
}
BarcodeGeneratorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
BarcodeGeneratorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, imports: [CommonModule, BarcodeGeneratorModule], exports: [BarcodeGeneratorModule] });
BarcodeGeneratorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, providers: [], imports: [[CommonModule, BarcodeGeneratorModule], BarcodeGeneratorModule] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: BarcodeGeneratorAllModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule, BarcodeGeneratorModule],
exports: [
BarcodeGeneratorModule
],
providers: []
}]
}] });
const inputs$1 = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'errorCorrectionLevel', 'foreColor', 'height', 'locale', 'logo', 'margin', 'mode', 'value', 'version', 'width', 'xDimension'];
const outputs$1 = ['invalid'];
const twoWays$1 = [''];
/**
* QRCode Component
* ```html
* <ej-qrcode-generator></ej-qrcode-generator>
* ```
*/
let QRCodeGeneratorComponent = class QRCodeGeneratorComponent extends QRCodeGenerator {
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs$1);
this.addTwoWay.call(this, twoWays$1);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
ngOnInit() {
this.context.ngOnInit(this);
}
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
QRCodeGeneratorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
QRCodeGeneratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: QRCodeGeneratorComponent, selector: "ejs-qrcodegenerator", inputs: { backgroundColor: "backgroundColor", displayText: "displayText", enablePersistence: "enablePersistence", enableRtl: "enableRtl", errorCorrectionLevel: "errorCorrectionLevel", foreColor: "foreColor", height: "height", locale: "locale", logo: "logo", margin: "margin", mode: "mode", value: "value", version: "version", width: "width", xDimension: "xDimension" }, outputs: { invalid: "invalid" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
QRCodeGeneratorComponent = __decorate([
ComponentMixins([ComponentBase])
], QRCodeGeneratorComponent);
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorComponent, decorators: [{
type: Component,
args: [{
selector: 'ejs-qrcodegenerator',
inputs: inputs$1,
outputs: outputs$1,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
}]
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
/**
* NgModule definition for the QRCodeGenerator component.
*/
class QRCodeGeneratorModule {
}
QRCodeGeneratorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
QRCodeGeneratorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, declarations: [QRCodeGeneratorComponent], imports: [CommonModule], exports: [QRCodeGeneratorComponent] });
QRCodeGeneratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, imports: [[CommonModule]] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule],
declarations: [
QRCodeGeneratorComponent
],
exports: [
QRCodeGeneratorComponent
]
}]
}] });
/**
* NgModule definition for the QRCodeGenerator component with providers.
*/
class QRCodeGeneratorAllModule {
}
QRCodeGeneratorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
QRCodeGeneratorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, imports: [CommonModule, QRCodeGeneratorModule], exports: [QRCodeGeneratorModule] });
QRCodeGeneratorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, providers: [], imports: [[CommonModule, QRCodeGeneratorModule], QRCodeGeneratorModule] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: QRCodeGeneratorAllModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule, QRCodeGeneratorModule],
exports: [
QRCodeGeneratorModule
],
providers: []
}]
}] });
const inputs = ['backgroundColor', 'displayText', 'enablePersistence', 'enableRtl', 'encoding', 'foreColor', 'height', 'locale', 'margin', 'mode', 'size', 'value', 'width', 'xDimension'];
const outputs = ['invalid'];
const twoWays = [''];
/**
* DataMatrix Component
* ```html
* <ej-datamatrix-generator></ej-datamatrix-generator>
* ```
*/
let DataMatrixGeneratorComponent = class DataMatrixGeneratorComponent extends DataMatrixGenerator {
constructor(ngEle, srenderer, viewContainerRef, injector) {
super();
this.ngEle = ngEle;
this.srenderer = srenderer;
this.viewContainerRef = viewContainerRef;
this.injector = injector;
this.element = this.ngEle.nativeElement;
this.injectedModules = this.injectedModules || [];
this.registerEvents(outputs);
this.addTwoWay.call(this, twoWays);
setValue('currentInstance', this, this.viewContainerRef);
this.context = new ComponentBase();
}
ngOnInit() {
this.context.ngOnInit(this);
}
ngAfterViewInit() {
this.context.ngAfterViewInit(this);
}
ngOnDestroy() {
this.context.ngOnDestroy(this);
}
ngAfterContentChecked() {
this.context.ngAfterContentChecked(this);
}
};
DataMatrixGeneratorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
DataMatrixGeneratorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: DataMatrixGeneratorComponent, selector: "ejs-datamatrixgenerator", inputs: { backgroundColor: "backgroundColor", displayText: "displayText", enablePersistence: "enablePersistence", enableRtl: "enableRtl", encoding: "encoding", foreColor: "foreColor", height: "height", locale: "locale", margin: "margin", mode: "mode", size: "size", value: "value", width: "width", xDimension: "xDimension" }, outputs: { invalid: "invalid" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
DataMatrixGeneratorComponent = __decorate([
ComponentMixins([ComponentBase])
], DataMatrixGeneratorComponent);
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorComponent, decorators: [{
type: Component,
args: [{
selector: 'ejs-datamatrixgenerator',
inputs: inputs,
outputs: outputs,
template: '',
changeDetection: ChangeDetectionStrategy.OnPush,
queries: {}
}]
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
/**
* NgModule definition for the DataMatrixGenerator component.
*/
class DataMatrixGeneratorModule {
}
DataMatrixGeneratorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
DataMatrixGeneratorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, declarations: [DataMatrixGeneratorComponent], imports: [CommonModule], exports: [DataMatrixGeneratorComponent] });
DataMatrixGeneratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, imports: [[CommonModule]] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule],
declarations: [
DataMatrixGeneratorComponent
],
exports: [
DataMatrixGeneratorComponent
]
}]
}] });
/**
* NgModule definition for the DataMatrixGenerator component with providers.
*/
class DataMatrixGeneratorAllModule {
}
DataMatrixGeneratorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
DataMatrixGeneratorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, imports: [CommonModule, DataMatrixGeneratorModule], exports: [DataMatrixGeneratorModule] });
DataMatrixGeneratorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, providers: [], imports: [[CommonModule, DataMatrixGeneratorModule], DataMatrixGeneratorModule] });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: DataMatrixGeneratorAllModule, decorators: [{
type: NgModule,
args: [{
imports: [CommonModule, DataMatrixGeneratorModule],
exports: [
DataMatrixGeneratorModule
],
providers: []
}]
}] });
/**
* Generated bundle index. Do not edit.
*/
export { BarcodeGeneratorAllModule, BarcodeGeneratorComponent, BarcodeGeneratorModule, DataMatrixGeneratorAllModule, DataMatrixGeneratorComponent, DataMatrixGeneratorModule, QRCodeGeneratorAllModule, QRCodeGeneratorComponent, QRCodeGeneratorModule };
//# sourceMappingURL=syncfusion-ej2-angular-barcode-generator.mjs.map
{"version":3,"file":"syncfusion-ej2-angular-barcode-generator.mjs","sources":["../../src/barcode-generator/barcodegenerator.component.ts","../../src/barcode-generator/barcodegenerator.module.ts","../../src/barcode-generator/barcodegenerator-all.module.ts","../../src/qrcode-generator/qrcodegenerator.component.ts","../../src/qrcode-generator/qrcodegenerator.module.ts","../../src/qrcode-generator/qrcodegenerator-all.module.ts","../../src/datamatrix-generator/datamatrixgenerator.component.ts","../../src/datamatrix-generator/datamatrixgenerator.module.ts","../../src/datamatrix-generator/datamatrixgenerator-all.module.ts","../../syncfusion-ej2-angular-barcode-generator.ts"],"sourcesContent":["import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { BarcodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const inputs: string[] = ['backgroundColor','displayText','enableCheckSum','enablePersistence','enableRtl','foreColor','height','locale','margin','mode','type','value','width'];\nexport const outputs: string[] = ['invalid'];\nexport const twoWays: string[] = [''];\n\n/**\n * Barcode Component\n * ```html\n * <ej-barcode-generator></ej-barcode-generator>\n * ```\n */\n@Component({\n selector: 'ejs-barcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class BarcodeGeneratorComponent extends BarcodeGenerator implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tpublic invalid: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\n\n/**\n * NgModule definition for the BarcodeGenerator component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n BarcodeGeneratorComponent\n ],\n exports: [\n BarcodeGeneratorComponent\n ]\n})\nexport class BarcodeGeneratorModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { BarcodeGeneratorComponent } from './barcodegenerator.component';\nimport { BarcodeGeneratorModule } from './barcodegenerator.module';\n\n\n\n\n\n/**\n * NgModule definition for the BarcodeGenerator component with providers.\n */\n@NgModule({\n imports: [CommonModule, BarcodeGeneratorModule],\n exports: [\n BarcodeGeneratorModule\n ],\n providers:[\n \n ]\n})\nexport class BarcodeGeneratorAllModule { }","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { QRCodeGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','errorCorrectionLevel','foreColor','height','locale','logo','margin','mode','value','version','width','xDimension'];\nexport const outputs: string[] = ['invalid'];\nexport const twoWays: string[] = [''];\n\n/**\n * QRCode Component\n * ```html\n * <ej-qrcode-generator></ej-qrcode-generator>\n * ```\n */\n@Component({\n selector: 'ejs-qrcodegenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class QRCodeGeneratorComponent extends QRCodeGenerator implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tpublic invalid: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\n\n/**\n * NgModule definition for the QRCodeGenerator component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n QRCodeGeneratorComponent\n ],\n exports: [\n QRCodeGeneratorComponent\n ]\n})\nexport class QRCodeGeneratorModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { QRCodeGeneratorComponent } from './qrcodegenerator.component';\nimport { QRCodeGeneratorModule } from './qrcodegenerator.module';\n\n\n\n\n\n/**\n * NgModule definition for the QRCodeGenerator component with providers.\n */\n@NgModule({\n imports: [CommonModule, QRCodeGeneratorModule],\n exports: [\n QRCodeGeneratorModule\n ],\n providers:[\n \n ]\n})\nexport class QRCodeGeneratorAllModule { }","import { Component, ElementRef, ViewContainerRef, ChangeDetectionStrategy, QueryList, Renderer2, Injector, ValueProvider } from '@angular/core';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, setValue } from '@syncfusion/ej2-angular-base';\nimport { DataMatrixGenerator } from '@syncfusion/ej2-barcode-generator';\n\n\n\nexport const inputs: string[] = ['backgroundColor','displayText','enablePersistence','enableRtl','encoding','foreColor','height','locale','margin','mode','size','value','width','xDimension'];\nexport const outputs: string[] = ['invalid'];\nexport const twoWays: string[] = [''];\n\n/**\n * DataMatrix Component\n * ```html\n * <ej-datamatrix-generator></ej-datamatrix-generator>\n * ```\n */\n@Component({\n selector: 'ejs-datamatrixgenerator',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n queries: {\n\n }\n})\n@ComponentMixins([ComponentBase])\nexport class DataMatrixGeneratorComponent extends DataMatrixGenerator implements IComponentBase {\n public context : any;\n public tagObjects: any;\n\tpublic invalid: any;\n\n\n\n constructor(private ngEle: ElementRef, private srenderer: Renderer2, private viewContainerRef:ViewContainerRef, private injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.context = new ComponentBase();\n }\n\n public ngOnInit() {\n this.context.ngOnInit(this);\n }\n\n public ngAfterViewInit(): void {\n this.context.ngAfterViewInit(this);\n }\n\n public ngOnDestroy(): void {\n this.context.ngOnDestroy(this);\n }\n\n public ngAfterContentChecked(): void {\n \n this.context.ngAfterContentChecked(this);\n }\n\n public registerEvents: (eventList: string[]) => void;\n public addTwoWay: (propList: string[]) => void;\n}\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\n\n/**\n * NgModule definition for the DataMatrixGenerator component.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [\n DataMatrixGeneratorComponent\n ],\n exports: [\n DataMatrixGeneratorComponent\n ]\n})\nexport class DataMatrixGeneratorModule { }","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { DataMatrixGeneratorComponent } from './datamatrixgenerator.component';\nimport { DataMatrixGeneratorModule } from './datamatrixgenerator.module';\n\n\n\n\n\n/**\n * NgModule definition for the DataMatrixGenerator component with providers.\n */\n@NgModule({\n imports: [CommonModule, DataMatrixGeneratorModule],\n exports: [\n DataMatrixGeneratorModule\n ],\n providers:[\n \n ]\n})\nexport class DataMatrixGeneratorAllModule { }","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public_api';\n"],"names":["inputs","outputs","twoWays"],"mappings":"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"}
/**
* Generated bundle index. Do not edit.
*/
/// <amd-module name="@syncfusion/ej2-angular-barcode-generator" />
export * from './public_api';