Skip to content

Commit d19a2fc

Browse files
author
pipeline
committed
v17.3.16 is released
1 parent b302e87 commit d19a2fc

File tree

10,475 files changed

+3178686
-0
lines changed

Some content is hidden

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

10,475 files changed

+3178686
-0
lines changed

README.md

+145
Large diffs are not rendered by default.
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
## [Unreleased]
4+
5+
## 17.2.28-beta (2019-06-27)
6+
7+
### Barcode
8+
9+
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
10+
11+
- Supports 2 two-dimensional barcodes such as QR and DataMatrix barcodes.

controls/barcodegenerator/README.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[![coverage](http://ej2.syncfusion.com/badges/ej2-barcode-generator/coverage.svg)](http://ej2.syncfusion.com/badges/ej2-barcode-generator)
2+
3+
# ej2-barcode-generator
4+
5+
> 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, you can purchase one at [https://www.syncfusion.com/sales/products](https://www.syncfusion.com/sales/products) or start a free 30-day trial [here](https://www.syncfusion.com/account/manage-trials/start-trials).
6+
7+
> 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.
8+
9+
## Setup
10+
11+
To install `Barcode Generator` and its dependent packages, use the following command.
12+
13+
```sh
14+
npm install @syncfusion/ej2-barcode-generator
15+
```
16+
17+
## Support
18+
19+
Product support is available for through following mediums.
20+
21+
* Creating incident in Syncfusion [Direct-trac](https://www.syncfusion.com/support/directtrac/incidents?utm_source=npm&utm_campaign=grid) support system or [Community forum](https://www.syncfusion.com/forums/essential-js2?utm_source=npm&utm_campaign=grid).
22+
* New [GitHub issue](https://github.com/syncfusion/ej2-javascript-ui-controls/issues/new).
23+
* Ask your query in Stack Overflow with tag `syncfusion`, `ej2`.
24+
25+
## License
26+
27+
Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/license?utm_source=npm&utm_campaign=grid).
28+
29+
## Changelog
30+
31+
Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/grids/CHANGELOG.md?utm_source=npm&utm_campaign=grid)
32+
33+
34+
© Copyright 2019 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="es">
3+
4+
<head>
5+
<title> Nodes </title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta charset="utf-8" />
8+
9+
<script data-main="basic" 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+
<div style="padding-bottom:20px; padding-top:5px;float: right;">value
17+
<input id="offsetx" size="7" value=""></input>
18+
<button id="change">Change</button>
19+
</div>
20+
</body>
21+
22+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { BarcodeGenerator } from "../../src/barcode/barcode";
2+
3+
/**
4+
* Explores the types of nodes
5+
*/
6+
7+
8+
let barcode: BarcodeGenerator = new BarcodeGenerator({
9+
width: '200px', height: '150px',
10+
type: 'Code39',
11+
value: 'BARCODE',
12+
backgroundColor: 'red',
13+
displayText: { text: 'ABCD' },
14+
});
15+
barcode.appendTo('#barcode');
16+
var button2 = document.getElementById('change');
17+
button2.onclick = function () {
18+
let value = (document.getElementById('offsetx') as HTMLSelectElement).value
19+
let barcodeinstance = barcode;
20+
barcodeinstance.value = value;
21+
barcode.dataBind()
22+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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" 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+
</body>
17+
18+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* Explores the types of nodes
3+
*/
4+
import { QRCodeGenerator } from "../../src/qrcode/qrcode";
5+
import { QRCodeVersion, ErrorCorrectionLevel,DataMatrixSize } from "../../src/barcode/enum/enum";
6+
import { DataMatrixGenerator } from "../../src/datamatrix/datamatrix";
7+
8+
9+
10+
let barcode: QRCodeGenerator = new QRCodeGenerator({
11+
width: '200px', height: '150px',
12+
value: "syncfusion",
13+
xDimension: 3,
14+
errorCorrectionLevel: ErrorCorrectionLevel.Low,
15+
mode: 'SVG'
16+
});
17+
barcode.appendTo('#barcode');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="es">
3+
4+
<head>
5+
<title> Nodes </title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta charset="utf-8" />
8+
9+
<script data-main="testcases" 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+
<div style="padding-bottom:20px; padding-top:5px;float: right;">value
17+
<input id="offsetx" size="7" value=""></input>
18+
<button id="change">Change</button>
19+
</div>
20+
</body>
21+
22+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { BarcodeGenerator } from "../../src/barcode/barcode";
2+
3+
/**
4+
* Explores the types of nodes
5+
*/
6+
7+
8+
let barcode: BarcodeGenerator = new BarcodeGenerator({
9+
width: '200px', height: '150px',
10+
type: 'Code39',
11+
value: 'BARCODE',
12+
backgroundColor:'red',
13+
displayText:{text:'ABCD'},
14+
foreColor: 'green',
15+
margin: { left: 20, right: 20, top: 20, bottom: 20 },
16+
});
17+
barcode.appendTo('#barcode');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="es">
3+
4+
<head>
5+
<title> Nodes </title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta charset="utf-8" />
8+
9+
<script data-main="testcases10" 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+
<div style="padding-bottom:20px; padding-top:5px;float: right;">value
17+
<input id="offsetx" size="7" value=""></input>
18+
<button id="change">Change</button>
19+
</div>
20+
</body>
21+
22+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/**
2+
* Explores the types of nodes
3+
*/
4+
import { BarcodeGenerator } from "../../src/barcode/barcode";
5+
6+
let barcode: BarcodeGenerator = new BarcodeGenerator({
7+
width: '100%', height: '150px',
8+
type: 'Code39',
9+
value: 'BARCODE',
10+
});
11+
barcode.appendTo('#barcode');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="es">
3+
4+
<head>
5+
<title> Nodes </title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta charset="utf-8" />
8+
9+
<script data-main="testcases2" 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+
<div style="padding-bottom:20px; padding-top:5px;float: right;">value
17+
<input id="offsetx" size="7" value=""></input>
18+
<button id="change">Change</button>
19+
</div>
20+
</body>
21+
22+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* Explores the types of nodes
3+
*/
4+
import { BarcodeGenerator } from "../../src/barcode/barcode";
5+
6+
let barcode: BarcodeGenerator = new BarcodeGenerator({
7+
width: '200px', height: '150px',
8+
type: 'Code39',
9+
value: 'BARCODE',
10+
displayText:{text:'ABCD'},
11+
margin: { left: 20, right: 20, top: 20, bottom: 20 },
12+
});
13+
barcode.appendTo('#barcode');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="es">
3+
4+
<head>
5+
<title> Nodes </title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta charset="utf-8" />
8+
9+
<script data-main="testcases3" 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+
<div style="padding-bottom:20px; padding-top:5px;float: right;">value
17+
<input id="offsetx" size="7" value=""></input>
18+
<button id="change">Change</button>
19+
</div>
20+
</body>
21+
22+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { BarcodeGenerator } from "../../src/barcode/barcode";
2+
3+
/**
4+
* Explores the types of nodes
5+
*/
6+
7+
8+
let barcode: BarcodeGenerator = new BarcodeGenerator({
9+
width: '200px', height: '150px',
10+
type: 'Code39',
11+
value: 'BARCODE',
12+
displayText: {
13+
text: 'BARCODEBARCODE',
14+
margin: {
15+
left: 30,
16+
right: 30,
17+
top:50,
18+
bottom:50
19+
}
20+
},
21+
});
22+
barcode.appendTo('#barcode');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="es">
3+
4+
<head>
5+
<title> Nodes </title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta charset="utf-8" />
8+
9+
<script data-main="testcases4" 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+
<div style="padding-bottom:20px; padding-top:5px;float: right;">value
17+
<input id="offsetx" size="7" value=""></input>
18+
<button id="change">Change</button>
19+
</div>
20+
</body>
21+
22+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import { BarcodeGenerator } from "../../src/barcode/barcode";
2+
3+
/**
4+
* Explores the types of nodes
5+
*/
6+
7+
8+
let barcode: BarcodeGenerator = new BarcodeGenerator({
9+
width: '200px', height: '150px',
10+
type: 'Code39',
11+
value: 'BARCODE',
12+
displayText: {
13+
text: 'BARCODEBARCODE',
14+
margin: {
15+
left: 50,
16+
right: 50,
17+
}
18+
},
19+
});
20+
barcode.appendTo('#barcode');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml" lang="es">
3+
4+
<head>
5+
<title> Nodes </title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta charset="utf-8" />
8+
9+
<script data-main="testcases5" 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+
<div style="padding-bottom:20px; padding-top:5px;float: right;">value
17+
<input id="offsetx" size="7" value=""></input>
18+
<button id="change">Change</button>
19+
</div>
20+
</body>
21+
22+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import { BarcodeGenerator } from "../../src/barcode/barcode";
2+
3+
/**
4+
* Explores the types of nodes
5+
*/
6+
7+
8+
let barcode: BarcodeGenerator = new BarcodeGenerator({
9+
width: '200px', height: '150px',
10+
type: 'Code39',
11+
value: 'BARCODE',
12+
displayText: {
13+
text: 'BARCODEBARCODE',
14+
margin: {
15+
top: 50,
16+
bottom: 50,
17+
}
18+
},
19+
});
20+
barcode.appendTo('#barcode');

0 commit comments

Comments
 (0)