Barcode Generation

This commit is contained in:
CAnetzberger
2022-02-21 15:01:43 +01:00
parent aa6c93f3f6
commit 79ec11e25c
224 changed files with 22474 additions and 95 deletions

20
node_modules/jsbarcode/src/barcodes/index.js generated vendored Normal file
View File

@@ -0,0 +1,20 @@
import {CODE39} from './CODE39/';
import {CODE128, CODE128A, CODE128B, CODE128C} from './CODE128/';
import {EAN13, EAN8, EAN5, EAN2, UPC, UPCE} from './EAN_UPC/';
import {ITF, ITF14} from './ITF/';
import {MSI, MSI10, MSI11, MSI1010, MSI1110} from './MSI/';
import {pharmacode} from './pharmacode/';
import {codabar} from './codabar';
import {GenericBarcode} from './GenericBarcode/';
export default {
CODE39,
CODE128, CODE128A, CODE128B, CODE128C,
EAN13, EAN8, EAN5, EAN2, UPC, UPCE,
ITF14,
ITF,
MSI, MSI10, MSI11, MSI1010, MSI1110,
pharmacode,
codabar,
GenericBarcode
};