dynamsoft-barcode-reader-bundle 11.2.4000 → 11.4.2000-beta-202604162228
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/LEGAL.txt +8 -1
- package/LICENSE +1 -1
- package/README.html +541 -115
- package/README.md +628 -125
- package/dist/dbr.bundle.d.ts +1577 -2689
- package/dist/dbr.bundle.esm.js +3 -3
- package/dist/dbr.bundle.js +3 -3
- package/dist/dbr.bundle.mjs +3 -3
- package/dist/dbr.bundle.worker.js +3 -3
- package/dist/dynamsoft-barcode-reader-bundle-ml-simd-pthread.js +1 -1
- package/dist/dynamsoft-barcode-reader-bundle-ml-simd-pthread.wasm +0 -0
- package/dist/dynamsoft-barcode-reader-bundle-ml-simd.js +1 -1
- package/dist/dynamsoft-barcode-reader-bundle-ml-simd.wasm +0 -0
- package/dist/dynamsoft-barcode-reader-bundle.js +1 -1
- package/dist/dynamsoft-barcode-reader-bundle.wasm +0 -0
- package/dist/models/Code128Decoder.data +0 -0
- package/dist/models/Code39ITFDecoder.data +0 -0
- package/dist/models/DataMatrixQRCodeDeblur.data +0 -0
- package/dist/models/DataMatrixQRCodeLocalization.data +0 -0
- package/dist/models/EAN13Decoder.data +0 -0
- package/dist/models/OneDDeblur.data +0 -0
- package/dist/models/OneDLocalization.data +0 -0
- package/dist/models/PDF417Deblur.data +0 -0
- package/dist/models/PDF417Localization.data +0 -0
- package/dist/parser-resources/AADHAAR.data +0 -0
- package/dist/parser-resources/AAMVA_DL_ID.data +1 -0
- package/dist/parser-resources/GS1_AI.data +66 -0
- package/dist/parser-resources/MRTD.data +1 -0
- package/dist/parser-resources/SOUTH_AFRICA_DL.data +1 -0
- package/dist/parser-resources/VIN.data +0 -0
- package/dist/templates/DBR-PresetTemplates.json +9 -22
- package/dist/ui/barcode-scanner.ui.xml +271 -108
- package/dist/ui/dce.rtu.ui.xml +431 -0
- package/dist/ui/dce.ui.v5.xml +470 -0
- package/dist/ui/dce.ui.xml +138 -114
- package/dist/ui/dls.license.dialog.html +1 -1
- package/package.json +16 -15
- package/samples.url +1 -1
- package/API_Reference_BarcodeScanner.url +0 -2
- package/API_Reference_Foundational.url +0 -2
- package/dist/parser-resources/AADHAAR.dcpres +0 -1
- package/dist/parser-resources/AADHAAR_Map.txt +0 -3
- package/dist/parser-resources/AAMVA_DL_ID.dcpres +0 -1
- package/dist/parser-resources/AAMVA_DL_ID_WITH_MAG_STRIPE.dcpres +0 -1
- package/dist/parser-resources/AAMVA_Map.txt +0 -70
- package/dist/parser-resources/GS1_AI.dcpres +0 -1
- package/dist/parser-resources/GS1_AI_Map.txt +0 -643
- package/dist/parser-resources/MRTD_Map.txt +0 -255
- package/dist/parser-resources/MRTD_TD1_ID.dcpres +0 -1
- package/dist/parser-resources/MRTD_TD2_FRENCH_ID.dcpres +0 -1
- package/dist/parser-resources/MRTD_TD2_ID.dcpres +0 -1
- package/dist/parser-resources/MRTD_TD2_VISA.dcpres +0 -1
- package/dist/parser-resources/MRTD_TD3_PASSPORT.dcpres +0 -1
- package/dist/parser-resources/MRTD_TD3_VISA.dcpres +0 -1
- package/dist/parser-resources/SOUTH_AFRICA_DL.dcpres +0 -1
- package/dist/parser-resources/SOUTH_AFRICA_DL_Map.txt +0 -3
- package/dist/parser-resources/VIN.dcpres +0 -1
- package/dist/parser-resources/VIN_Map.txt +0 -150
package/LEGAL.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
===================================================================================
|
|
2
2
|
>>>>>>>>>>>>>>>>>>>>>>>> dynamsoft-barcode-reader-bundle <<<<<<<<<<<<<<<<<<<<<<<<<<
|
|
3
3
|
===================================================================================
|
|
4
4
|
|
|
@@ -1407,3 +1407,10 @@ Apache License
|
|
|
1407
1407
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1408
1408
|
See the License for the specific language governing permissions and
|
|
1409
1409
|
limitations under the License.
|
|
1410
|
+
|
|
1411
|
+
====================================================================================
|
|
1412
|
+
|
|
1413
|
+
libzueci
|
|
1414
|
+
|
|
1415
|
+
A simple, standalone, BSD-3-Clause C library for converting UTF-8 to/from Extended Channel Interpretations, as defined by AIM ITS/04-023 International Technical Standard - Extended Channel Interpretations Part 3: Register (Version 2, February 2022).
|
|
1416
|
+
|
package/LICENSE
CHANGED