Skip to content

Commit 96eae86

Browse files
author
pipeline
committed
v17.4.49 is released
1 parent b2424ab commit 96eae86

File tree

606 files changed

+112208
-92381
lines changed

Some content is hidden

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

606 files changed

+112208
-92381
lines changed

controls/barcodegenerator/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 17.4.49 (2020-02-11)
6+
7+
### Barcode
8+
9+
#### Bug Fixes
10+
11+
- `#262067` - The issue "Unable to decode qrcode for some values" has been fixed.
12+
- `#262067` - The issue "DOM ID for the SVG and div element are same" has been fixed.
13+
514
## 17.4.46 (2020-01-30)
615

716
### Barcode
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="es">
3+
4+
<head>
5+
<title> QRCode </title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta charset="utf-8" />
8+
9+
<script data-main="qrbarcode-issue" src="../../node_modules/requirejs/require.js"></script>
10+
11+
<script src="../require.config.js"></script>
12+
</head>
13+
14+
<body>
15+
<div id="barcode"></div>
16+
<input id="ChangedContent" type="text" value="ELEM-004:TITRE-TEST">
17+
<input type="button" id="updateBarcode" value="Update Barcode">
18+
</body>
19+
20+
</html>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/**
2+
* Explores the types of nodes
3+
*/
4+
import { QRCodeGenerator } from "../../src/qrcode/qrcode";
5+
import { ErrorCorrectionLevel } from "../../src/barcode/enum/enum";
6+
7+
8+
let barcode: QRCodeGenerator = new QRCodeGenerator({
9+
width: '200px', height: '150px',
10+
value: "ELEM-004:TITRE-TEST",
11+
xDimension: 3,
12+
errorCorrectionLevel: ErrorCorrectionLevel.Low,
13+
mode: 'SVG'
14+
});
15+
barcode.appendTo('#barcode');
16+
17+
document.getElementById('updateBarcode').onclick = function(){
18+
barcode.value = (document.getElementById('ChangedContent') as HTMLInputElement).value;
19+
barcode.dataBind();
20+
}

controls/barcodegenerator/dist/ej2-barcode-generator.umd.min.js

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

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

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

controls/barcodegenerator/dist/es6/ej2-barcode-generator.es2015.js

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

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

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

controls/barcodegenerator/dist/es6/ej2-barcode-generator.es5.js

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

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

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

controls/barcodegenerator/dist/global/ej2-barcode-generator.min.js

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

controls/barcodegenerator/dist/global/ej2-barcode-generator.min.js.map

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

controls/barcodegenerator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-barcode-generator",
3-
"version": "17.4.46",
3+
"version": "17.4.47",
44
"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.",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

controls/barcodegenerator/spec/barcode/core/code39.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('Barcode Control -width', () => {
3636

3737
let barcode = document.getElementById('barcode1')
3838
let children: HTMLElement = barcode.children[0] as HTMLElement
39-
expect(children.getAttribute('width') === '200').toBe(true);
39+
expect(children.getAttribute('width') === '200'&& barcode.children[0].getAttribute("id") ==="barcode1content").toBe(true);
4040
done();
4141
});
4242
});

0 commit comments

Comments
 (0)