@syncfusion/ej2-barcode-generator
Advanced tools
Comparing version 27.2.5 to 28.1.33
/*! | ||
* filename: index.d.ts | ||
* version : 27.2.5 | ||
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved. | ||
* version : 28.1.33 | ||
* Copyright Syncfusion Inc. 2001 - 2024. All rights reserved. | ||
* Use of this code is subject to the terms of our license. | ||
@@ -6,0 +6,0 @@ * A copy of the current license can be obtained at any time by e-mailing |
@@ -5,3 +5,3 @@ { | ||
"_inBundle": false, | ||
"_integrity": "sha512-PhI4jf8v8KLYf2tWZiz0Mksc0At6mP/K7oJn7hDizKqw4DW86cn2dm4y1cD8sy3pVVNnJ1sQ1SjMLs1RgfTJdw==", | ||
"_integrity": "sha512-t7eST08nJ+nAze+gE7qaq8ieqGjNpaaglV/k/b+ZjVPZ5LxBYb2Z6Dr05A1CsankkvWNUc4Jqdlh3vOP9yIeBw==", | ||
"_location": "/@syncfusion/ej2-barcode-generator", | ||
@@ -27,6 +27,6 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-barcode-generator/-/ej2-barcode-generator-19.4.0.tgz", | ||
"_shasum": "7f74745452d17ed4f0a4d1d05cd573cc2b42ec7e", | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-barcode-generator/-/ej2-barcode-generator-19.4.0.tgz", | ||
"_shasum": "3fef11368573f00b13a252c220c4bf55c8c45a78", | ||
"_spec": "@syncfusion/ej2-barcode-generator@*", | ||
"_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included", | ||
"_where": "/jenkins/workspace/elease-automation_release_28.1.1/packages/included", | ||
"author": { | ||
@@ -40,4 +40,4 @@ "name": "Syncfusion Inc." | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~27.2.5", | ||
"@syncfusion/ej2-data": "~27.2.2" | ||
"@syncfusion/ej2-base": "~28.1.33", | ||
"@syncfusion/ej2-data": "~28.1.33" | ||
}, | ||
@@ -70,4 +70,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "27.2.5", | ||
"version": "28.1.33", | ||
"sideEffects": false | ||
} |
@@ -79,3 +79,3 @@ # JavaScript Barcode Generator Control | ||
> This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [JavaScript UI controls](https://www.syncfusion.com/javascript-ui-controls), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials). | ||
> This is a commercial product and requires a paid license for possession or use. Syncfusion<sup>®</sup> licensed software, including this component, is subject to the terms and conditions of Syncfusion<sup>®</sup> [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [JavaScript UI controls](https://www.syncfusion.com/javascript-ui-controls), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials). | ||
@@ -86,2 +86,2 @@ > A [free community license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers. | ||
© Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution. | ||
© Copyright 2024 Syncfusion<sup>®</sup> Inc. All Rights Reserved. The Syncfusion<sup>®</sup> Essential Studio<sup>®</sup> license and copyright applies to this distribution. |
@@ -103,2 +103,9 @@ var __extends = (this && this.__extends) || (function () { | ||
BarcodeGenerator.prototype.initialize = function () { | ||
//Task 913517: Handle null properties for diagram and barcode properties -phase1 | ||
if (!this.height) { | ||
this.height = '100px'; | ||
} | ||
if (!this.width) { | ||
this.width = '100%'; | ||
} | ||
//Task 913519: Barcode visibility issue and Dependabot issues | ||
@@ -140,2 +147,3 @@ this.element.style.display = 'block'; | ||
var barCode; | ||
this.type = this.type || 'Code128'; | ||
switch (this.type) { | ||
@@ -196,2 +204,3 @@ case 'Code39Extension': | ||
} | ||
this.value = this.value || ''; | ||
barCode.value = this.value; | ||
@@ -198,0 +207,0 @@ barCode.margin = this.margin; |
@@ -93,2 +93,9 @@ var __extends = (this && this.__extends) || (function () { | ||
DataMatrixGenerator.prototype.initialize = function () { | ||
//Task 913517: Handle null properties for diagram and barcode properties -phase1 | ||
if (!this.width) { | ||
this.width = '100%'; | ||
} | ||
if (!this.height) { | ||
this.height = '100%'; | ||
} | ||
//Task 913519: Barcode visibility issue and Dependabot issues | ||
@@ -198,2 +205,3 @@ this.element.style.display = 'block'; | ||
var dataMatrix = new DataMatrix(); | ||
this.value = this.value || ''; | ||
dataMatrix.encodingValue = this.encoding; | ||
@@ -200,0 +208,0 @@ dataMatrix.size = this.size; |
@@ -69,2 +69,3 @@ var __extends = (this && this.__extends) || (function () { | ||
var barCode = new QRCode(); | ||
this.value = this.value || ''; | ||
barCode.text = this.value; | ||
@@ -107,2 +108,9 @@ barCode.XDimension = this.xDimension; | ||
QRCodeGenerator.prototype.initialize = function () { | ||
//Task 913517: Handle null properties for diagram and barcode properties -phase1 | ||
if (!this.width) { | ||
this.width = '100px'; | ||
} | ||
if (!this.height || this.height === '100%') { | ||
this.height = '100px'; | ||
} | ||
//Task 913519: Barcode visibility issue and Dependabot issues | ||
@@ -109,0 +117,0 @@ this.element.style.display = 'block'; |
Sorry, the diff of this file is too big to display
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
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4428777
275
32823
+ Added@syncfusion/ej2-base@28.1.33(transitive)
+ Added@syncfusion/ej2-data@28.1.33(transitive)
+ Added@syncfusion/ej2-icons@28.1.33(transitive)
- Removed@syncfusion/ej2-base@27.2.5(transitive)
- Removed@syncfusion/ej2-data@27.2.2(transitive)
- Removed@syncfusion/ej2-icons@27.2.2(transitive)