react-qr-barcode-scanner 2.1.8 → 2.1.9
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/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import BarcodeScanner from "./BarcodeScanner";
|
|
2
|
-
export { default as BarcodeStringFormat } from "./BarcodeStringFormat";
|
|
1
|
+
import BarcodeScanner from "./BarcodeScanner.tsx";
|
|
2
|
+
export { default as BarcodeStringFormat } from "./BarcodeStringFormat.ts";
|
|
3
3
|
export { BarcodeFormat } from "@zxing/library";
|
|
4
4
|
export default BarcodeScanner;
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import BarcodeScanner from "./BarcodeScanner";
|
|
2
|
-
export { default as BarcodeStringFormat } from "./BarcodeStringFormat";
|
|
1
|
+
import BarcodeScanner from "./BarcodeScanner.js";
|
|
2
|
+
export { default as BarcodeStringFormat } from "./BarcodeStringFormat.js";
|
|
3
3
|
export { BarcodeFormat } from "@zxing/library";
|
|
4
4
|
export default BarcodeScanner;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-qr-barcode-scanner",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.9",
|
|
4
4
|
"description": "A simple React Component using the client's webcam to read barcodes and QR codes.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@eslint/js": "^9.30.1",
|
|
43
|
-
"@testing-library/dom": "^10.4.
|
|
43
|
+
"@testing-library/dom": "^10.4.1",
|
|
44
44
|
"@testing-library/react": "^16.3.0",
|
|
45
|
-
"@types/react": "^19.1.
|
|
45
|
+
"@types/react": "^19.1.12",
|
|
46
46
|
"@typescript-eslint/eslint-plugin": "^8.35.1",
|
|
47
47
|
"@typescript-eslint/parser": "^8.35.1",
|
|
48
48
|
"@vitest/coverage-v8": "3.2.4",
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
"eslint-plugin-react": "^7.37.5",
|
|
51
51
|
"globals": "^16.3.0",
|
|
52
52
|
"jsdom": "^26.1.0",
|
|
53
|
-
"react": "^19.1.
|
|
54
|
-
"react-dom": "^19.1.
|
|
53
|
+
"react": "^19.1.1",
|
|
54
|
+
"react-dom": "^19.1.1",
|
|
55
55
|
"standard-version": "^9.5.0",
|
|
56
|
-
"typescript": "^5.
|
|
56
|
+
"typescript": "^5.9.2",
|
|
57
57
|
"typescript-eslint": "^8.35.1",
|
|
58
58
|
"vitest": "^3.2.4"
|
|
59
59
|
},
|