@zappar/zappar-cv 3.0.1-beta.10 → 3.0.1-beta.11
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/README.md +2 -2
- package/lib/index-standalone.js +1 -1
- package/lib/native.js +1 -1
- package/lib/options.d.ts +1 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/zappar-cv.wasm +0 -0
- package/package.json +1 -1
- package/umd/{067b89f3ea352f4f7279.wasm → 16b5486666b5c5ea1d08.wasm} +0 -0
- package/umd/867.zappar-cv.js +1 -1
- package/umd/zappar-cv-ceres.worker.js +1 -0
- package/umd/zappar-cv.js +1 -1
- package/umd/zappar-cv.worker.js +1 -1
package/README.md
CHANGED
|
@@ -18,8 +18,8 @@ npm i @zappar/zappar-cv
|
|
|
18
18
|
|
|
19
19
|
You can use our CDN from within your HTML:
|
|
20
20
|
```
|
|
21
|
-
<script src="https://libs.zappar.com/zappar-cv/3.0.1-beta.
|
|
21
|
+
<script src="https://libs.zappar.com/zappar-cv/3.0.1-beta.11/zappar-cv.js"></script>
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
Or you can download and host our standalone JavaScript bundle:
|
|
25
|
-
[https://libs.zappar.com/zappar-cv/3.0.1-beta.
|
|
25
|
+
[https://libs.zappar.com/zappar-cv/3.0.1-beta.11/zappar-cv.zip](https://libs.zappar.com/zappar-cv/3.0.1-beta.11/zappar-cv.zip)
|
package/lib/index-standalone.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { initialize as init } from "./index";
|
|
2
2
|
export * from "./index";
|
|
3
3
|
export function initialize(opts) {
|
|
4
|
-
return init(Object.assign(Object.assign({}, opts), { worker: (opts === null || opts === void 0 ? void 0 : opts.worker) || new (require("worker-loader?inline=fallback!./worker").default)() }));
|
|
4
|
+
return init(Object.assign(Object.assign({}, opts), { worker: (opts === null || opts === void 0 ? void 0 : opts.worker) || new (require("worker-loader?inline=fallback!./worker").default)(), ceresWorker: (opts === null || opts === void 0 ? void 0 : opts.ceresWorker) || new (require("worker-loader?inline=fallback&filename=zappar-cv-ceres.worker.js!./ceres-worker").default)() }));
|
|
5
5
|
}
|
package/lib/native.js
CHANGED
|
@@ -108,7 +108,7 @@ export function initialize(opts) {
|
|
|
108
108
|
break;
|
|
109
109
|
}
|
|
110
110
|
case "setupCeresWorker": {
|
|
111
|
-
launchCeresWorker(msg.port);
|
|
111
|
+
launchCeresWorker(msg.port, opts === null || opts === void 0 ? void 0 : opts.ceresWorker);
|
|
112
112
|
break;
|
|
113
113
|
}
|
|
114
114
|
case "_z_datadownload": {
|
package/lib/options.d.ts
CHANGED
package/lib/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "3.0.1-beta.
|
|
1
|
+
export declare const VERSION = "3.0.1-beta.11";
|
package/lib/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "3.0.1-beta.
|
|
1
|
+
export const VERSION = "3.0.1-beta.11";
|
package/lib/zappar-cv.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|