@qr-platform/qr-code.js 0.8.21 → 0.8.22
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.
- package/docs/documentation.md +5 -4
- package/lib/chunks/zbar-scan-validator-B3GQk_mt.js +1 -0
- package/lib/chunks/zxing-scan-validator-CYcyNnMt.js +1 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -0
- package/lib/lib/zxing-js/src/browser/BrowserCodeReader.d.ts +3 -263
- package/lib/lib/zxing-js/src/core/NodeLuminanceSource.d.ts +10 -13
- package/lib/node.js +1 -0
- package/lib/utils/scan-validator-zxing-node.d.ts +18 -0
- package/package.json +8 -8
- package/lib/lib/zxing-js/src/browser/BrowserQRCodeSvgWriter.d.ts +0 -46
- package/lib/lib/zxing-js/src/browser/BrowserSvgCodeWriter.d.ts +0 -49
- package/lib/lib/zxing-js/src/browser/DecodeContinuouslyCallback.d.ts +0 -6
- package/lib/lib/zxing-js/src/browser/VideoInputDevice.d.ts +0 -22
- package/lib/lib/zxing-js/src/core/Dimension.d.ts +0 -13
- package/lib/lib/zxing-js/src/core/EncodeHintType.d.ts +0 -99
- package/lib/lib/zxing-js/src/core/PlanarYUVLuminanceSource.d.ts +0 -35
- package/lib/lib/zxing-js/src/core/RGBLuminanceSource.d.ts +0 -21
- package/lib/lib/zxing-js/src/core/Writer.d.ts +0 -30
- package/lib/lib/zxing-js/src/core/WriterException.d.ts +0 -7
- package/lib/lib/zxing-js/src/core/common/ECIEncoderSet.d.ts +0 -37
- package/lib/lib/zxing-js/src/core/common/ECIInput.d.ts +0 -79
- package/lib/lib/zxing-js/src/core/common/MinimalECIInput.d.ts +0 -123
- package/lib/lib/zxing-js/src/core/common/detector/CornerDetector.d.ts +0 -35
- package/lib/lib/zxing-js/src/core/common/detector/WhiteRectangleDetector.d.ts +0 -71
- package/lib/lib/zxing-js/src/core/common/reedsolomon/AbstractGenericGFPoly.d.ts +0 -36
- package/lib/lib/zxing-js/src/core/common/reedsolomon/ReedSolomonEncoder.d.ts +0 -41
- package/lib/lib/zxing-js/src/core/qrcode/QRCodeWriter.d.ts +0 -13
- package/lib/lib/zxing-js/src/core/qrcode/encoder/BlockPair.d.ts +0 -7
- package/lib/lib/zxing-js/src/core/qrcode/encoder/ByteMatrix.d.ts +0 -24
- package/lib/lib/zxing-js/src/core/qrcode/encoder/Encoder.d.ts +0 -85
- package/lib/lib/zxing-js/src/core/qrcode/encoder/MaskUtil.d.ts +0 -47
- package/lib/lib/zxing-js/src/core/qrcode/encoder/MatrixUtil.d.ts +0 -37
- package/lib/lib/zxing-js/src/core/qrcode/encoder/QRCode.d.ts +0 -29
- package/lib/lib/zxing-js/src/core/util/ByteArrayOutputStream.d.ts +0 -174
- package/lib/lib/zxing-js/src/core/util/Collections.d.ts +0 -11
- package/lib/lib/zxing-js/src/core/util/Formatter.d.ts +0 -28
- package/lib/lib/zxing-js/src/core/util/Long.d.ts +0 -12
- package/lib/lib/zxing-js/src/core/util/OutputStream.d.ts +0 -106
- package/lib/lib/zxing-js/src/core/util/StandardCharsets.d.ts +0 -7
- package/lib/qr-code-js-node.js +0 -1
- package/lib/qr-code-js.js +0 -1
package/docs/documentation.md
CHANGED
@@ -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: {
|