Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-barcode-generator

Package Overview
Dependencies
Maintainers
4
Versions
107
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Comparing version 17.3.9-beta to 17.3.14

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 17.3.9-beta
* version : 17.3.14
* Copyright Syncfusion Inc. 2001 - 2019. All rights reserved.

@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license.

{
"_from": "@syncfusion/ej2-barcode-generator@*",
"_id": "@syncfusion/ej2-barcode-generator@17.2.48",
"_id": "@syncfusion/ej2-barcode-generator@17.3.9",
"_inBundle": false,
"_integrity": "sha512-vJ2hroBBFM1HBHbw0VWLutcdHRA53h7NAATeHsEVDEJ2f5GjHewIp3Lf9Evegrg6WMbYDekd+7PZpSVpr6Vkxg==",
"_integrity": "sha512-H7MJLhyhqRMCR9gvGoQHFXGmGu6tzwip5i5KyWv6sx90PVFWNlauH4sSKYmxuApcfezXy6jZFLtwXvSbFQQmDA==",
"_location": "/@syncfusion/ej2-barcode-generator",

@@ -26,4 +26,4 @@ "_phantomChildren": {},

],
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-barcode-generator/-/ej2-barcode-generator-17.2.48.tgz",
"_shasum": "dc3d24e3b78c7ac841a17b71dc3e9ad889a40f32",
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-barcode-generator/-/ej2-barcode-generator-17.3.9.tgz",
"_shasum": "d2a0038ba087117fb3864fe45685bd66b1fcf1e5",
"_spec": "@syncfusion/ej2-barcode-generator@*",

@@ -39,4 +39,4 @@ "_where": "/jenkins/workspace/ation_hotfix_17.2.0.34_Vol2-DDPJ6C2YEWTWLLKKNA7AG2JBE6DYTCTNGMHGORWGAYAVCL6L7OLQ/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~17.3.9-beta",
"@syncfusion/ej2-data": "~17.3.9-beta"
"@syncfusion/ej2-base": "~17.3.14",
"@syncfusion/ej2-data": "~17.3.14"
},

@@ -65,4 +65,4 @@ "deprecated": false,

"typings": "index.d.ts",
"version": "17.3.9-beta",
"version": "17.3.14",
"sideEffects": false
}

@@ -19,3 +19,3 @@ import { Component, Property, L10n, ModuleDeclaration } from '@syncfusion/ej2-base';import { INotifyPropertyChanged, Complex, Event, EmitType } from '@syncfusion/ej2-base';import { RenderingMode, BarcodeType, BarcodeEvent, } from './enum/enum';import { BarcodeRenderer } from './rendering/renderer';import { BarcodeCanvasRenderer } from './rendering/canvas-renderer';import { Code128B } from './one-dimension/code128B';import { Code128C } from './one-dimension/code128C';import { DisplayTextModel } from './primitives/displaytext-model';import { MarginModel } from './primitives/margin-model';import { DisplayText } from './primitives/displaytext';import { Margin } from './primitives/margin';import { Code39 } from './one-dimension/code39';import { CodaBar } from './one-dimension/codabar';import { Code128A } from './one-dimension/code128A';import { Code128 } from './one-dimension/code128';import { Ean8 } from './one-dimension/ean8';import { Ean13 } from './one-dimension/ean13';import { UpcE } from './one-dimension/upcE';import { UpcA } from './one-dimension/upcA';import { Code11 } from './one-dimension/code11';import { Code93 } from './one-dimension/code93';import { Code93Extension } from './one-dimension/code93Extension';import { ValidateEvent } from './rendering/canvas-interface';import { Code32 } from './one-dimension/code32';import { Code39Extension } from './one-dimension/code39Extension';import { removeChildElements } from './utility/barcode-util';

* ```
* @default '100%'
*/

@@ -34,3 +34,3 @@ width?: string | number;

* ```
* @default '100'
*/

@@ -43,3 +43,3 @@ height?: string | number;

* * Canvas - Renders the bar-code in a canvas
* @default 'SVG'
*/

@@ -50,3 +50,3 @@ mode?: RenderingMode;

* Defines the type of barcode to be rendered.
* @default 'Code128'
*/

@@ -57,3 +57,3 @@ type?: BarcodeType;

* Defines the value of the barcode to be rendered.
* @default undefined
*/

@@ -64,3 +64,3 @@ value?: string;

* Defines the checksum for the barcode.
* @default 'true'
*/

@@ -71,3 +71,3 @@ enableCheckSum?: boolean;

* Defines the text properties for the barcode.
* @default ''
*/

@@ -78,3 +78,3 @@ displayText?: DisplayTextModel;

* Defines the margin properties for the barcode.
* @default ''
*/

@@ -85,3 +85,3 @@ margin?: MarginModel;

* Defines the background color of the barcode.
* @default 'white'
*/

@@ -92,3 +92,3 @@ backgroundColor?: string;

* Defines the forecolor of the barcode.
* @default 'black'
*/

@@ -95,0 +95,0 @@ foreColor?: string;

@@ -29,3 +29,3 @@ import { Component, L10n, ModuleDeclaration } from '@syncfusion/ej2-base';

* ```
* @default '100%'
*/

@@ -43,3 +43,3 @@ width: string | number;

* ```
* @default '100'
*/

@@ -51,3 +51,3 @@ height: string | number;

* * Canvas - Renders the bar-code in a canvas
* @default 'SVG'
*/

@@ -57,3 +57,3 @@ mode: RenderingMode;

* Defines the type of barcode to be rendered.
* @default 'Code128'
*/

@@ -63,3 +63,3 @@ type: BarcodeType;

* Defines the value of the barcode to be rendered.
* @default undefined
*/

@@ -69,3 +69,3 @@ value: string;

* Defines the checksum for the barcode.
* @default 'true'
*/

@@ -75,3 +75,3 @@ enableCheckSum: boolean;

* Defines the text properties for the barcode.
* @default ''
*/

@@ -81,3 +81,3 @@ displayText: DisplayTextModel;

* Defines the margin properties for the barcode.
* @default ''
*/

@@ -87,3 +87,3 @@ margin: MarginModel;

* Defines the background color of the barcode.
* @default 'white'
*/

@@ -93,3 +93,3 @@ backgroundColor: string;

* Defines the forecolor of the barcode.
* @default 'black'
*/

@@ -96,0 +96,0 @@ foreColor: string;

@@ -100,4 +100,4 @@ /**

* * Size16x48
* @aspNumberEnum
* @blazorNumberEnum
* @IgnoreSingular

@@ -336,4 +336,4 @@ */

* * Version40
* @aspNumberEnum
* @blazorNumberEnum
* @IgnoreSingular

@@ -513,4 +513,4 @@ */

* * High
* @aspNumberEnum
* @blazorNumberEnum
* @IgnoreSingular

@@ -517,0 +517,0 @@ */

@@ -53,4 +53,4 @@ /**

* * Size16x48
* @aspNumberEnum
* @blazorNumberEnum
* @IgnoreSingular

@@ -228,4 +228,4 @@ */

* * Version40
* @aspNumberEnum
* @blazorNumberEnum
* @IgnoreSingular

@@ -406,4 +406,4 @@ */

* * High
* @aspNumberEnum
* @blazorNumberEnum
* @IgnoreSingular

@@ -410,0 +410,0 @@ */

@@ -10,3 +10,3 @@ import { Property, ChildProperty, Complex } from '@syncfusion/ej2-base';import { Margin } from './margin';import { MarginModel } from './margin-model';import { Alignment, TextPosition } from '../enum/enum';

* Sets the textual description of the barcode.
* @default ''
*/

@@ -17,3 +17,3 @@ text?: string;

* Defines the visibility of the text.
* @default true
*/

@@ -24,3 +24,3 @@ visibility?: boolean;

* Defines the font style of the text
* @default 'monospace'
*/

@@ -31,3 +31,3 @@ font?: string;

* Defines the size of the text.
* @default 20
*/

@@ -38,3 +38,3 @@ size?: number;

* Sets the space to be left between the text and its barcode.
* @default ''
*/

@@ -48,3 +48,3 @@ margin?: MarginModel;

* * Center - Aligns the text at the Center
* @default 'Center'
*/

@@ -57,3 +57,3 @@ alignment?: Alignment;

* * Top - Position the text at the Top
* @default 'Bottom'
*/

@@ -60,0 +60,0 @@ position?: TextPosition;

@@ -10,3 +10,3 @@ import { ChildProperty } from '@syncfusion/ej2-base';

* Sets the textual description of the barcode.
* @default ''
*/

@@ -16,3 +16,3 @@ text: string;

* Defines the visibility of the text.
* @default true
*/

@@ -22,3 +22,3 @@ visibility: boolean;

* Defines the font style of the text
* @default 'monospace'
*/

@@ -28,3 +28,3 @@ font: string;

* Defines the size of the text.
* @default 20
*/

@@ -34,3 +34,3 @@ size: number;

* Sets the space to be left between the text and its barcode.
* @default ''
*/

@@ -43,3 +43,3 @@ margin: MarginModel;

* * Center - Aligns the text at the Center
* @default 'Center'
*/

@@ -51,5 +51,5 @@ alignment: Alignment;

* * Top - Position the text at the Top
* @default 'Bottom'
*/
position: TextPosition;
}

@@ -10,3 +10,3 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';

* Sets the space to be left from the left side of the immediate parent of an element
* @default 10
*/

@@ -17,3 +17,3 @@ left?: number;

* Sets the space to be left from the right side of the immediate parent of an element
* @default 10
*/

@@ -24,3 +24,3 @@ right?: number;

* Sets the space to be left from the top side of the immediate parent of an element
* @default 10
*/

@@ -31,3 +31,3 @@ top?: number;

* Sets the space to be left from the bottom side of the immediate parent of an element
* @default 10
*/

@@ -34,0 +34,0 @@ bottom?: number;

@@ -8,3 +8,3 @@ import { ChildProperty } from '@syncfusion/ej2-base';

* Sets the space to be left from the left side of the immediate parent of an element
* @default 10
*/

@@ -14,3 +14,3 @@ left: number;

* Sets the space to be left from the right side of the immediate parent of an element
* @default 10
*/

@@ -20,3 +20,3 @@ right: number;

* Sets the space to be left from the top side of the immediate parent of an element
* @default 10
*/

@@ -26,5 +26,5 @@ top: number;

* Sets the space to be left from the bottom side of the immediate parent of an element
* @default 10
*/
bottom: number;
}

@@ -10,3 +10,3 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';

* Sets the x-coordinate of a position
* @default 0
*/

@@ -17,3 +17,3 @@ x?: number;

* Sets the y-coordinate of a position
* @default 0
*/

@@ -20,0 +20,0 @@ y?: number;

@@ -8,3 +8,3 @@ import { ChildProperty } from '@syncfusion/ej2-base';

* Sets the x-coordinate of a position
* @default 0
*/

@@ -14,5 +14,5 @@ x: number;

* Sets the y-coordinate of a position
* @default 0
*/
y: number;
}

@@ -7,3 +7,3 @@ /**

* Sets the x-coordinate of the starting point of a rectangular region
* @default 0
*/

@@ -13,3 +13,3 @@ x: number;

* Sets the y-coordinate of the starting point of a rectangular region
* @default 0
*/

@@ -19,3 +19,3 @@ y: number;

* Sets the width of a rectangular region
* @default 0
*/

@@ -25,3 +25,3 @@ width: number;

* Sets the height of a rectangular region
* @default 0
*/

@@ -28,0 +28,0 @@ height: number;

@@ -8,3 +8,3 @@ /**

* Sets the x-coordinate of the starting point of a rectangular region
* @default 0
*/

@@ -14,3 +14,3 @@ this.x = Number.MAX_VALUE;

* Sets the y-coordinate of the starting point of a rectangular region
* @default 0
*/

@@ -20,3 +20,3 @@ this.y = Number.MAX_VALUE;

* Sets the width of a rectangular region
* @default 0
*/

@@ -26,3 +26,3 @@ this.width = 0;

* Sets the height of a rectangular region
* @default 0
*/

@@ -29,0 +29,0 @@ this.height = 0;

@@ -7,3 +7,3 @@ /**

* Sets the height of an object
* @default 0
*/

@@ -13,3 +13,3 @@ height: number;

* Sets the width of an object
* @default 0
*/

@@ -16,0 +16,0 @@ width: number;

@@ -11,3 +11,3 @@ import { Component, Property, L10n } from '@syncfusion/ej2-base';import { INotifyPropertyChanged, Complex, Event, EmitType } from '@syncfusion/ej2-base';import { RenderingMode, BarcodeEvent, DataMatrixEncoding, DataMatrixSize } from '../barcode/enum/enum';import { ValidateEvent } from '../barcode/rendering/canvas-interface';import { DisplayTextModel } from '../barcode/primitives/displaytext-model';import { MarginModel } from '../barcode/primitives/margin-model';import { DisplayText } from '../barcode/primitives/displaytext';import { Margin } from '../barcode/primitives/margin';import { BarcodeRenderer } from '../barcode/rendering/renderer';import { removeChildElements, refreshCanvasBarcode } from '../barcode/utility/barcode-util';import { DataMatrix } from './datamatrix-util';

* Defines encoding type of the DataMatrix.
* @default 'Auto'
*/

@@ -18,3 +18,3 @@ encoding?: DataMatrixEncoding;

* Defines encoding type of the DataMatrix.
* @default 'Auto'
*/

@@ -27,3 +27,3 @@ size?: DataMatrixSize;

* * Canvas - Renders the bar-code in a canvas
* @default 'SVG'
*/

@@ -34,3 +34,3 @@ mode?: RenderingMode;

* Defines the value of the DataMatrix to be rendered.
* @default undefined
*/

@@ -41,3 +41,3 @@ value?: string;

* Defines the height of the DataMatrix.
* @default '100%'
*/

@@ -48,3 +48,3 @@ height?: string | number;

* Defines the width of the DataMatrix.
* @default '100%'
*/

@@ -55,3 +55,3 @@ width?: string | number;

* Defines the text properties for the DataMatrix.
* @default ''
*/

@@ -62,3 +62,3 @@ displayText?: DisplayTextModel;

* Defines the margin properties for the DataMatrix.
* @default ''
*/

@@ -69,3 +69,3 @@ margin?: MarginModel;

* Defines the background color of the DataMatrix.
* @default 'white'
*/

@@ -82,3 +82,3 @@ backgroundColor?: string;

* Defines the forecolor of the DataMatrix.
* @default 'black'
*/

@@ -85,0 +85,0 @@ foreColor?: string;

@@ -14,3 +14,3 @@ import { Component, L10n } from '@syncfusion/ej2-base';

* Defines encoding type of the DataMatrix.
* @default 'Auto'
*/

@@ -20,3 +20,3 @@ encoding: DataMatrixEncoding;

* Defines encoding type of the DataMatrix.
* @default 'Auto'
*/

@@ -28,3 +28,3 @@ size: DataMatrixSize;

* * Canvas - Renders the bar-code in a canvas
* @default 'SVG'
*/

@@ -34,3 +34,3 @@ mode: RenderingMode;

* Defines the value of the DataMatrix to be rendered.
* @default undefined
*/

@@ -40,3 +40,3 @@ value: string;

* Defines the height of the DataMatrix.
* @default '100%'
*/

@@ -46,3 +46,3 @@ height: string | number;

* Defines the width of the DataMatrix.
* @default '100%'
*/

@@ -52,3 +52,3 @@ width: string | number;

* Defines the text properties for the DataMatrix.
* @default ''
*/

@@ -58,3 +58,3 @@ displayText: DisplayTextModel;

* Defines the margin properties for the DataMatrix.
* @default ''
*/

@@ -64,3 +64,3 @@ margin: MarginModel;

* Defines the background color of the DataMatrix.
* @default 'white'
*/

@@ -75,3 +75,3 @@ backgroundColor: string;

* Defines the forecolor of the DataMatrix.
* @default 'black'
*/

@@ -78,0 +78,0 @@ foreColor: string;

@@ -11,3 +11,3 @@ import { removeChildElements, refreshCanvasBarcode } from '../barcode/utility/barcode-util';import { Complex, Property, Component, INotifyPropertyChanged, L10n, Event, EmitType } from '@syncfusion/ej2-base';import { ErrorCorrectionLevel, QRCodeVersion, RenderingMode, BarcodeEvent } from '../barcode/enum/enum';import { DisplayTextModel } from '../barcode/primitives/displaytext-model';import { MarginModel } from '../barcode/primitives/margin-model';import { DisplayText } from '../barcode/primitives/displaytext';import { Margin } from '../barcode/primitives/margin';import { BarcodeRenderer } from '../barcode/rendering/renderer';import { QRCode } from './qr-code-util';import { ValidateEvent } from '../barcode';

* Defines the height of the QR code model.
* @default '100%'
*/

@@ -18,3 +18,3 @@ height?: string | number;

* Defines the width of the QR code model.
* @default '100%'
*/

@@ -27,3 +27,3 @@ width?: string | number;

* * Canvas - Renders the bar-code in a canvas
* @default 'SVG'
*/

@@ -39,7 +39,7 @@ mode?: RenderingMode;

* Defines the error correction level of the QR code.
* @blazorDefaultValueIgnore
* @aspDefaultValueIgnore
* @aspNumberEnum
* @blazorNumberEnum
* @default undefined
*/

@@ -50,3 +50,3 @@ errorCorrectionLevel?: ErrorCorrectionLevel;

* Defines the margin properties for the QR code.
* @default ''
*/

@@ -57,3 +57,3 @@ margin?: MarginModel;

* Defines the background color of the QR code.
* @default 'white'
*/

@@ -70,3 +70,3 @@ backgroundColor?: string;

* Defines the forecolor of the QR code.
* @default 'black'
*/

@@ -77,3 +77,3 @@ foreColor?: string;

* Defines the text properties for the QR code.
* @default ''
*/

@@ -84,7 +84,7 @@ displayText?: DisplayTextModel;

* * Defines the version of the QR code.
* @aspDefaultValueIgnore
* @blazorNumberEnum
* @blazorDefaultValueIgnore
* @aspNumberEnum
* @default undefined
*/

@@ -95,3 +95,3 @@ version?: QRCodeVersion;

* Defines the type of barcode to be rendered.
* @default undefined
*/

@@ -98,0 +98,0 @@ value?: string;

@@ -17,3 +17,3 @@ import { Component, INotifyPropertyChanged, L10n, EmitType } from '@syncfusion/ej2-base';

* Defines the height of the QR code model.
* @default '100%'
*/

@@ -23,3 +23,3 @@ height: string | number;

* Defines the width of the QR code model.
* @default '100%'
*/

@@ -31,3 +31,3 @@ width: string | number;

* * Canvas - Renders the bar-code in a canvas
* @default 'SVG'
*/

@@ -41,7 +41,7 @@ mode: RenderingMode;

* Defines the error correction level of the QR code.
* @blazorDefaultValueIgnore
* @aspDefaultValueIgnore
* @aspNumberEnum
* @blazorNumberEnum
* @default undefined
*/

@@ -51,3 +51,3 @@ errorCorrectionLevel: ErrorCorrectionLevel;

* Defines the margin properties for the QR code.
* @default ''
*/

@@ -57,3 +57,3 @@ margin: MarginModel;

* Defines the background color of the QR code.
* @default 'white'
*/

@@ -68,3 +68,3 @@ backgroundColor: string;

* Defines the forecolor of the QR code.
* @default 'black'
*/

@@ -74,3 +74,3 @@ foreColor: string;

* Defines the text properties for the QR code.
* @default ''
*/

@@ -80,7 +80,7 @@ displayText: DisplayTextModel;

* * Defines the version of the QR code.
* @aspDefaultValueIgnore
* @blazorNumberEnum
* @blazorDefaultValueIgnore
* @aspNumberEnum
* @default undefined
*/

@@ -94,3 +94,3 @@ version: QRCodeVersion;

* Defines the type of barcode to be rendered.
* @default undefined
*/

@@ -97,0 +97,0 @@ value: string;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc