@qr-platform/qr-code.js 0.8.21 → 0.8.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/docs/documentation.md +5 -4
  2. package/lib/chunks/zbar-scan-validator-B3GQk_mt.js +1 -0
  3. package/lib/chunks/zxing-scan-validator-CYcyNnMt.js +1 -0
  4. package/lib/core/qr-templates.d.ts +1 -0
  5. package/lib/index.d.ts +18 -4
  6. package/lib/index.js +1 -0
  7. package/lib/lib/zxing-js/src/browser/BrowserCodeReader.d.ts +3 -263
  8. package/lib/lib/zxing-js/src/core/NodeLuminanceSource.d.ts +10 -13
  9. package/lib/node.d.ts +18 -3
  10. package/lib/node.js +1 -0
  11. package/lib/utils/scan-validator-zxing-node.d.ts +18 -0
  12. package/package.json +8 -8
  13. package/lib/builder/index.d.ts +0 -13
  14. package/lib/builder/node.d.ts +0 -13
  15. package/lib/builder/qr-code-builder.d.ts +0 -25
  16. package/lib/lib/zxing-js/src/browser/BrowserQRCodeSvgWriter.d.ts +0 -46
  17. package/lib/lib/zxing-js/src/browser/BrowserSvgCodeWriter.d.ts +0 -49
  18. package/lib/lib/zxing-js/src/browser/DecodeContinuouslyCallback.d.ts +0 -6
  19. package/lib/lib/zxing-js/src/browser/VideoInputDevice.d.ts +0 -22
  20. package/lib/lib/zxing-js/src/core/Dimension.d.ts +0 -13
  21. package/lib/lib/zxing-js/src/core/EncodeHintType.d.ts +0 -99
  22. package/lib/lib/zxing-js/src/core/PlanarYUVLuminanceSource.d.ts +0 -35
  23. package/lib/lib/zxing-js/src/core/RGBLuminanceSource.d.ts +0 -21
  24. package/lib/lib/zxing-js/src/core/Writer.d.ts +0 -30
  25. package/lib/lib/zxing-js/src/core/WriterException.d.ts +0 -7
  26. package/lib/lib/zxing-js/src/core/common/ECIEncoderSet.d.ts +0 -37
  27. package/lib/lib/zxing-js/src/core/common/ECIInput.d.ts +0 -79
  28. package/lib/lib/zxing-js/src/core/common/MinimalECIInput.d.ts +0 -123
  29. package/lib/lib/zxing-js/src/core/common/detector/CornerDetector.d.ts +0 -35
  30. package/lib/lib/zxing-js/src/core/common/detector/WhiteRectangleDetector.d.ts +0 -71
  31. package/lib/lib/zxing-js/src/core/common/reedsolomon/AbstractGenericGFPoly.d.ts +0 -36
  32. package/lib/lib/zxing-js/src/core/common/reedsolomon/ReedSolomonEncoder.d.ts +0 -41
  33. package/lib/lib/zxing-js/src/core/qrcode/QRCodeWriter.d.ts +0 -13
  34. package/lib/lib/zxing-js/src/core/qrcode/encoder/BlockPair.d.ts +0 -7
  35. package/lib/lib/zxing-js/src/core/qrcode/encoder/ByteMatrix.d.ts +0 -24
  36. package/lib/lib/zxing-js/src/core/qrcode/encoder/Encoder.d.ts +0 -85
  37. package/lib/lib/zxing-js/src/core/qrcode/encoder/MaskUtil.d.ts +0 -47
  38. package/lib/lib/zxing-js/src/core/qrcode/encoder/MatrixUtil.d.ts +0 -37
  39. package/lib/lib/zxing-js/src/core/qrcode/encoder/QRCode.d.ts +0 -29
  40. package/lib/lib/zxing-js/src/core/util/ByteArrayOutputStream.d.ts +0 -174
  41. package/lib/lib/zxing-js/src/core/util/Collections.d.ts +0 -11
  42. package/lib/lib/zxing-js/src/core/util/Formatter.d.ts +0 -28
  43. package/lib/lib/zxing-js/src/core/util/Long.d.ts +0 -12
  44. package/lib/lib/zxing-js/src/core/util/OutputStream.d.ts +0 -106
  45. package/lib/lib/zxing-js/src/core/util/StandardCharsets.d.ts +0 -7
  46. package/lib/qr-code-js-node.js +0 -1
  47. package/lib/qr-code-js.js +0 -1
@@ -110,10 +110,11 @@ Options that affect the QR code generation algorithm.
110
110
  - **Type**: `ErrorCorrectionLevel` enum
111
111
  - **Default**: `'Q'`
112
112
  - **Possible values**:
113
- - `'L'`: 7% error recovery
114
- - `'M'`: 15% error recovery
115
- - `'Q'`: 25% error recovery
116
- - `'H'`: 30% error recovery
113
+ - `'L'`: Low - 7% error recovery
114
+ - `'M'`: Medium - 15% error recovery
115
+ - `'Q'`: Quality - 25% error recovery
116
+ - `'H'`: High - 30% error recovery
117
+
117
118
  - **Example**:
118
119
  ```typescript
119
120
  qrOptions: {