@rerun-io/web-viewer 0.33.1 → 0.34.0-rc.1
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/index.d.ts +1 -1
- package/index.js +2 -2
- package/index.ts +2 -2
- package/package.json +1 -1
- package/re_viewer.d.ts +16 -16
- package/re_viewer.js +98 -80
- package/re_viewer_bg.wasm +0 -0
- package/re_viewer_bg.wasm.d.ts +16 -16
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ This means that:
|
|
|
28
28
|
|
|
29
29
|
## Usage
|
|
30
30
|
|
|
31
|
-
The entrypoint for this packages is the [`WebViewer`](https://ref.rerun.io/docs/js/0.
|
|
31
|
+
The entrypoint for this packages is the [`WebViewer`](https://ref.rerun.io/docs/js/0.34.0-rc.1/web-viewer/classes/WebViewer.html) class.
|
|
32
32
|
The web viewer is an object which manages a canvas element:
|
|
33
33
|
|
|
34
34
|
```js
|
|
@@ -44,7 +44,7 @@ viewer.stop();
|
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
The `rrd` in the snippet above should be a URL pointing to either:
|
|
47
|
-
- A hosted `.rrd` file, such as <https://app.rerun.io/version/0.
|
|
47
|
+
- A hosted `.rrd` file, such as <https://app.rerun.io/version/0.34.0-rc.1/examples/dna.rrd>
|
|
48
48
|
- A gRPC connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk/operating-modes#serve) API
|
|
49
49
|
|
|
50
50
|
If `rrd` is not set, the Viewer will display the same welcome screen as <https://app.rerun.io>.
|
package/index.d.ts
CHANGED
|
@@ -229,7 +229,7 @@ export type EventsWithoutValue = {
|
|
|
229
229
|
* ```
|
|
230
230
|
*
|
|
231
231
|
* Data may be provided to the Viewer as:
|
|
232
|
-
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.
|
|
232
|
+
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.34.0-rc.1/examples/dna.rrd")`
|
|
233
233
|
* - A Rerun gRPC URL, e.g. `viewer.start("rerun+http://127.0.0.1:9876/proxy")`
|
|
234
234
|
* - A stream of log messages, via {@link WebViewer.open_channel}.
|
|
235
235
|
*
|
package/index.js
CHANGED
|
@@ -36,7 +36,7 @@ async function fetch_viewer_wasm(base_url, on_progress) {
|
|
|
36
36
|
: new URL("./re_viewer_bg.wasm", import.meta.url);
|
|
37
37
|
const response = await fetch(url);
|
|
38
38
|
if (!response.ok) {
|
|
39
|
-
throw new Error(`Failed to fetch viewer
|
|
39
|
+
throw new Error(`Failed to fetch viewer Wasm: ${response.status} ${response.statusText}`);
|
|
40
40
|
}
|
|
41
41
|
return wrap_fetch_with_progress(response, on_progress);
|
|
42
42
|
//!<INLINE-MARKER-CLOSE>
|
|
@@ -144,7 +144,7 @@ function resolveAbsoluteUrl(url) {
|
|
|
144
144
|
* ```
|
|
145
145
|
*
|
|
146
146
|
* Data may be provided to the Viewer as:
|
|
147
|
-
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.
|
|
147
|
+
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.34.0-rc.1/examples/dna.rrd")`
|
|
148
148
|
* - A Rerun gRPC URL, e.g. `viewer.start("rerun+http://127.0.0.1:9876/proxy")`
|
|
149
149
|
* - A stream of log messages, via {@link WebViewer.open_channel}.
|
|
150
150
|
*
|
package/index.ts
CHANGED
|
@@ -47,7 +47,7 @@ async function fetch_viewer_wasm(
|
|
|
47
47
|
const response = await fetch(url);
|
|
48
48
|
if (!response.ok) {
|
|
49
49
|
throw new Error(
|
|
50
|
-
`Failed to fetch viewer
|
|
50
|
+
`Failed to fetch viewer Wasm: ${response.status} ${response.statusText}`,
|
|
51
51
|
);
|
|
52
52
|
}
|
|
53
53
|
return wrap_fetch_with_progress(response, on_progress);
|
|
@@ -461,7 +461,7 @@ function resolveAbsoluteUrl(url: string): string {
|
|
|
461
461
|
* ```
|
|
462
462
|
*
|
|
463
463
|
* Data may be provided to the Viewer as:
|
|
464
|
-
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.
|
|
464
|
+
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.34.0-rc.1/examples/dna.rrd")`
|
|
465
465
|
* - A Rerun gRPC URL, e.g. `viewer.start("rerun+http://127.0.0.1:9876/proxy")`
|
|
466
466
|
* - A stream of log messages, via {@link WebViewer.open_channel}.
|
|
467
467
|
*
|
package/package.json
CHANGED
package/re_viewer.d.ts
CHANGED
|
@@ -154,22 +154,22 @@ declare interface InitOutput {
|
|
|
154
154
|
readonly intounderlyingsink_write: (a: number, b: any) => any;
|
|
155
155
|
readonly intounderlyingsource_cancel: (a: number) => void;
|
|
156
156
|
readonly intounderlyingsource_pull: (a: number, b: any) => any;
|
|
157
|
-
readonly
|
|
158
|
-
readonly
|
|
159
|
-
readonly
|
|
160
|
-
readonly
|
|
161
|
-
readonly
|
|
162
|
-
readonly
|
|
163
|
-
readonly
|
|
164
|
-
readonly
|
|
165
|
-
readonly
|
|
166
|
-
readonly
|
|
167
|
-
readonly
|
|
168
|
-
readonly
|
|
169
|
-
readonly
|
|
170
|
-
readonly
|
|
171
|
-
readonly
|
|
172
|
-
readonly
|
|
157
|
+
readonly wasm_bindgen__convert__closures_____invoke__h1dce8a665027385a: (a: number, b: number, c: any) => [number, number];
|
|
158
|
+
readonly wasm_bindgen__convert__closures_____invoke__hd9880d5d53970d2a: (a: number, b: number, c: any) => [number, number];
|
|
159
|
+
readonly wasm_bindgen__convert__closures_____invoke__ha1b7a5ea2031d631: (a: number, b: number, c: any) => [number, number];
|
|
160
|
+
readonly wasm_bindgen__convert__closures_____invoke__h2d1312eb0817667b: (a: number, b: number, c: any, d: any) => void;
|
|
161
|
+
readonly wasm_bindgen__convert__closures_____invoke__h30c2569a3bf343fb: (a: number, b: number, c: any) => void;
|
|
162
|
+
readonly wasm_bindgen__convert__closures_____invoke__h3f60234ba8773866: (a: number, b: number, c: any) => void;
|
|
163
|
+
readonly wasm_bindgen__convert__closures_____invoke__h0a5e47b03b549283: (a: number, b: number, c: any) => void;
|
|
164
|
+
readonly wasm_bindgen__convert__closures_____invoke__h0e8f120bfb77b535: (a: number, b: number, c: any) => void;
|
|
165
|
+
readonly wasm_bindgen__convert__closures_____invoke__h0a5e47b03b549283_5: (a: number, b: number, c: any) => void;
|
|
166
|
+
readonly wasm_bindgen__convert__closures_____invoke__h30c2569a3bf343fb_6: (a: number, b: number, c: any) => void;
|
|
167
|
+
readonly wasm_bindgen__convert__closures_____invoke__h6ae2f2016473f2a1: (a: number, b: number, c: any) => void;
|
|
168
|
+
readonly wasm_bindgen__convert__closures_____invoke__h0e8f120bfb77b535_9: (a: number, b: number, c: any) => void;
|
|
169
|
+
readonly wasm_bindgen__convert__closures_____invoke__hf36a10484c480dcc: (a: number, b: number) => [number, number];
|
|
170
|
+
readonly wasm_bindgen__convert__closures_____invoke__h1eb0c227974d07db: (a: number, b: number) => void;
|
|
171
|
+
readonly wasm_bindgen__convert__closures_____invoke__hfce04175609a64e0: (a: number, b: number) => void;
|
|
172
|
+
readonly wasm_bindgen__convert__closures_____invoke__h314690ed42e4d760: (a: number, b: number) => void;
|
|
173
173
|
readonly __wbindgen_malloc: (a: number, b: number) => number;
|
|
174
174
|
readonly __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
175
175
|
readonly __externref_table_alloc: () => number;
|
package/re_viewer.js
CHANGED
|
@@ -747,6 +747,9 @@ const exports = { __proto__: null };
|
|
|
747
747
|
const ret = clearTimeout(arg0);
|
|
748
748
|
return ret;
|
|
749
749
|
},
|
|
750
|
+
__wbg_clearTimeout_f5a5134cd1e7d3fa: function(arg0, arg1) {
|
|
751
|
+
arg0.clearTimeout(arg1);
|
|
752
|
+
},
|
|
750
753
|
__wbg_clear_4d247257533aabcb: function(arg0, arg1) {
|
|
751
754
|
arg0.clear(arg1 >>> 0);
|
|
752
755
|
},
|
|
@@ -1023,6 +1026,13 @@ const exports = { __proto__: null };
|
|
|
1023
1026
|
const ret = arg0.data;
|
|
1024
1027
|
return ret;
|
|
1025
1028
|
},
|
|
1029
|
+
__wbg_data_6265d63a72efdd9a: function(arg0, arg1) {
|
|
1030
|
+
const ret = arg1.data;
|
|
1031
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
1032
|
+
var len1 = WASM_VECTOR_LEN;
|
|
1033
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1034
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1035
|
+
},
|
|
1026
1036
|
__wbg_debug_50e24f25b064ded1: function(arg0) {
|
|
1027
1037
|
console.debug(arg0);
|
|
1028
1038
|
},
|
|
@@ -1231,7 +1241,10 @@ const exports = { __proto__: null };
|
|
|
1231
1241
|
const ret = Object.entries(arg0);
|
|
1232
1242
|
return ret;
|
|
1233
1243
|
},
|
|
1234
|
-
|
|
1244
|
+
__wbg_error_38bec0a78dd8ded8: function(arg0) {
|
|
1245
|
+
console.error(arg0);
|
|
1246
|
+
},
|
|
1247
|
+
__wbg_error_b500091380f31ffc: function(arg0, arg1) {
|
|
1235
1248
|
let deferred0_0;
|
|
1236
1249
|
let deferred0_1;
|
|
1237
1250
|
try {
|
|
@@ -1242,9 +1255,6 @@ const exports = { __proto__: null };
|
|
|
1242
1255
|
wasm.__wbindgen_free(deferred0_0, deferred0_1, 1);
|
|
1243
1256
|
}
|
|
1244
1257
|
},
|
|
1245
|
-
__wbg_error_38bec0a78dd8ded8: function(arg0) {
|
|
1246
|
-
console.error(arg0);
|
|
1247
|
-
},
|
|
1248
1258
|
__wbg_error_f6720b4bc5b9976f: function(arg0) {
|
|
1249
1259
|
const ret = arg0.error;
|
|
1250
1260
|
return ret;
|
|
@@ -1450,10 +1460,10 @@ const exports = { __proto__: null };
|
|
|
1450
1460
|
const ret = arg0.getQueryParameter(arg1, arg2 >>> 0);
|
|
1451
1461
|
return ret;
|
|
1452
1462
|
},
|
|
1453
|
-
|
|
1463
|
+
__wbg_getRandomValues_3f44b700395062e5: function() { return handleError(function (arg0, arg1) {
|
|
1454
1464
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
1455
1465
|
}, arguments); },
|
|
1456
|
-
|
|
1466
|
+
__wbg_getRandomValues_a697888e9ba1eee3: function() { return handleError(function (arg0, arg1) {
|
|
1457
1467
|
globalThis.crypto.getRandomValues(getArrayU8FromWasm0(arg0, arg1));
|
|
1458
1468
|
}, arguments); },
|
|
1459
1469
|
__wbg_getReader_b4b1868fbca77dbe: function() { return handleError(function (arg0) {
|
|
@@ -2235,7 +2245,7 @@ const exports = { __proto__: null };
|
|
|
2235
2245
|
const a = state0.a;
|
|
2236
2246
|
state0.a = 0;
|
|
2237
2247
|
try {
|
|
2238
|
-
return
|
|
2248
|
+
return wasm_bindgen__convert__closures_____invoke__h2d1312eb0817667b(a, state0.b, arg0, arg1);
|
|
2239
2249
|
} finally {
|
|
2240
2250
|
state0.a = a;
|
|
2241
2251
|
}
|
|
@@ -2254,6 +2264,10 @@ const exports = { __proto__: null };
|
|
|
2254
2264
|
const ret = new Object();
|
|
2255
2265
|
return ret;
|
|
2256
2266
|
},
|
|
2267
|
+
__wbg_new_5279b10692d16d29: function() {
|
|
2268
|
+
const ret = new Error();
|
|
2269
|
+
return ret;
|
|
2270
|
+
},
|
|
2257
2271
|
__wbg_new_6f89ec4f8aab68cc: function() { return handleError(function (arg0) {
|
|
2258
2272
|
const ret = new ResizeObserver(arg0);
|
|
2259
2273
|
return ret;
|
|
@@ -2278,18 +2292,14 @@ const exports = { __proto__: null };
|
|
|
2278
2292
|
const ret = new FileReader();
|
|
2279
2293
|
return ret;
|
|
2280
2294
|
}, arguments); },
|
|
2281
|
-
|
|
2282
|
-
const ret = new Error();
|
|
2295
|
+
__wbg_new_e3b04b4d53d1b593: function(arg0, arg1) {
|
|
2296
|
+
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
2283
2297
|
return ret;
|
|
2284
2298
|
},
|
|
2285
|
-
|
|
2299
|
+
__wbg_new_ee1bca15f0b7a376: function() {
|
|
2286
2300
|
const ret = new Error();
|
|
2287
2301
|
return ret;
|
|
2288
2302
|
},
|
|
2289
|
-
__wbg_new_e3b04b4d53d1b593: function(arg0, arg1) {
|
|
2290
|
-
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
2291
|
-
return ret;
|
|
2292
|
-
},
|
|
2293
2303
|
__wbg_new_f3c9df4f38f3f798: function() {
|
|
2294
2304
|
const ret = new Array();
|
|
2295
2305
|
return ret;
|
|
@@ -2305,7 +2315,7 @@ const exports = { __proto__: null };
|
|
|
2305
2315
|
const a = state0.a;
|
|
2306
2316
|
state0.a = 0;
|
|
2307
2317
|
try {
|
|
2308
|
-
return
|
|
2318
|
+
return wasm_bindgen__convert__closures_____invoke__h2d1312eb0817667b(a, state0.b, arg0, arg1);
|
|
2309
2319
|
} finally {
|
|
2310
2320
|
state0.a = a;
|
|
2311
2321
|
}
|
|
@@ -2571,6 +2581,14 @@ const exports = { __proto__: null };
|
|
|
2571
2581
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2572
2582
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2573
2583
|
}, arguments); },
|
|
2584
|
+
__wbg_selectionEnd_6dfcdf4e62a8bbcd: function() { return handleError(function (arg0) {
|
|
2585
|
+
const ret = arg0.selectionEnd;
|
|
2586
|
+
return isLikeNone(ret) ? 0x100000001 : (ret) >>> 0;
|
|
2587
|
+
}, arguments); },
|
|
2588
|
+
__wbg_selectionStart_5b16e02595e73f0d: function() { return handleError(function (arg0) {
|
|
2589
|
+
const ret = arg0.selectionStart;
|
|
2590
|
+
return isLikeNone(ret) ? 0x100000001 : (ret) >>> 0;
|
|
2591
|
+
}, arguments); },
|
|
2574
2592
|
__wbg_setAttribute_5799fb5befe29601: function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
2575
2593
|
arg0.setAttribute(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2576
2594
|
}, arguments); },
|
|
@@ -3334,14 +3352,14 @@ const exports = { __proto__: null };
|
|
|
3334
3352
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3335
3353
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3336
3354
|
},
|
|
3337
|
-
|
|
3355
|
+
__wbg_stack_39df66a4c25813e0: function(arg0, arg1) {
|
|
3338
3356
|
const ret = arg1.stack;
|
|
3339
3357
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3340
3358
|
const len1 = WASM_VECTOR_LEN;
|
|
3341
3359
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3342
3360
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3343
3361
|
},
|
|
3344
|
-
|
|
3362
|
+
__wbg_stack_6476d1d46b80665a: function(arg0, arg1) {
|
|
3345
3363
|
const ret = arg1.stack;
|
|
3346
3364
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3347
3365
|
const len1 = WASM_VECTOR_LEN;
|
|
@@ -3418,7 +3436,7 @@ const exports = { __proto__: null };
|
|
|
3418
3436
|
const ret = JSON.stringify(arg0);
|
|
3419
3437
|
return ret;
|
|
3420
3438
|
}, arguments); },
|
|
3421
|
-
|
|
3439
|
+
__wbg_structuredClone_54286562f512ac9a: function() { return handleError(function (arg0) {
|
|
3422
3440
|
const ret = window.structuredClone(arg0);
|
|
3423
3441
|
return ret;
|
|
3424
3442
|
}, arguments); },
|
|
@@ -3782,78 +3800,78 @@ const exports = { __proto__: null };
|
|
|
3782
3800
|
return ret;
|
|
3783
3801
|
},
|
|
3784
3802
|
__wbindgen_cast_0000000000000001: function(arg0, arg1) {
|
|
3785
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx:
|
|
3786
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3803
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 23360, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3804
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h30c2569a3bf343fb);
|
|
3787
3805
|
return ret;
|
|
3788
3806
|
},
|
|
3789
3807
|
__wbindgen_cast_0000000000000002: function(arg0, arg1) {
|
|
3790
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx:
|
|
3791
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3808
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 32572, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3809
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h3f60234ba8773866);
|
|
3792
3810
|
return ret;
|
|
3793
3811
|
},
|
|
3794
3812
|
__wbindgen_cast_0000000000000003: function(arg0, arg1) {
|
|
3795
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx:
|
|
3796
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3813
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 33468, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
3814
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h1dce8a665027385a);
|
|
3797
3815
|
return ret;
|
|
3798
3816
|
},
|
|
3799
3817
|
__wbindgen_cast_0000000000000004: function(arg0, arg1) {
|
|
3800
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx:
|
|
3801
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3818
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 23143, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3819
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h0a5e47b03b549283);
|
|
3802
3820
|
return ret;
|
|
3803
3821
|
},
|
|
3804
3822
|
__wbindgen_cast_0000000000000005: function(arg0, arg1) {
|
|
3805
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("Error")], shim_idx:
|
|
3806
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3823
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("Error")], shim_idx: 27696, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3824
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h0e8f120bfb77b535);
|
|
3807
3825
|
return ret;
|
|
3808
3826
|
},
|
|
3809
3827
|
__wbindgen_cast_0000000000000006: function(arg0, arg1) {
|
|
3810
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("Event")], shim_idx:
|
|
3811
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3828
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("Event")], shim_idx: 23143, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3829
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h0a5e47b03b549283_5);
|
|
3812
3830
|
return ret;
|
|
3813
3831
|
},
|
|
3814
3832
|
__wbindgen_cast_0000000000000007: function(arg0, arg1) {
|
|
3815
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx:
|
|
3816
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3833
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 23360, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3834
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h30c2569a3bf343fb_6);
|
|
3817
3835
|
return ret;
|
|
3818
3836
|
},
|
|
3819
3837
|
__wbindgen_cast_0000000000000008: function(arg0, arg1) {
|
|
3820
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("PopStateEvent")], shim_idx:
|
|
3821
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3838
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("PopStateEvent")], shim_idx: 8, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
3839
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__hd9880d5d53970d2a);
|
|
3822
3840
|
return ret;
|
|
3823
3841
|
},
|
|
3824
3842
|
__wbindgen_cast_0000000000000009: function(arg0, arg1) {
|
|
3825
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("StorageEvent")], shim_idx:
|
|
3826
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3843
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("StorageEvent")], shim_idx: 3754, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3844
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h6ae2f2016473f2a1);
|
|
3827
3845
|
return ret;
|
|
3828
3846
|
},
|
|
3829
3847
|
__wbindgen_cast_000000000000000a: function(arg0, arg1) {
|
|
3830
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("VideoFrame")], shim_idx:
|
|
3831
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3848
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("VideoFrame")], shim_idx: 27696, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3849
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h0e8f120bfb77b535_9);
|
|
3832
3850
|
return ret;
|
|
3833
3851
|
},
|
|
3834
3852
|
__wbindgen_cast_000000000000000b: function(arg0, arg1) {
|
|
3835
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("undefined")], shim_idx:
|
|
3836
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3853
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("undefined")], shim_idx: 27697, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
3854
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__ha1b7a5ea2031d631);
|
|
3837
3855
|
return ret;
|
|
3838
3856
|
},
|
|
3839
3857
|
__wbindgen_cast_000000000000000c: function(arg0, arg1) {
|
|
3840
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx:
|
|
3841
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3858
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 1742, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3859
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h1eb0c227974d07db);
|
|
3842
3860
|
return ret;
|
|
3843
3861
|
},
|
|
3844
3862
|
__wbindgen_cast_000000000000000d: function(arg0, arg1) {
|
|
3845
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx:
|
|
3846
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3863
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 23142, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
3864
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__hf36a10484c480dcc);
|
|
3847
3865
|
return ret;
|
|
3848
3866
|
},
|
|
3849
3867
|
__wbindgen_cast_000000000000000e: function(arg0, arg1) {
|
|
3850
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx:
|
|
3851
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3868
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 28279, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3869
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__hfce04175609a64e0);
|
|
3852
3870
|
return ret;
|
|
3853
3871
|
},
|
|
3854
3872
|
__wbindgen_cast_000000000000000f: function(arg0, arg1) {
|
|
3855
|
-
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx:
|
|
3856
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3873
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 6435, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3874
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h314690ed42e4d760);
|
|
3857
3875
|
return ret;
|
|
3858
3876
|
},
|
|
3859
3877
|
__wbindgen_cast_0000000000000010: function(arg0) {
|
|
@@ -3917,80 +3935,80 @@ const exports = { __proto__: null };
|
|
|
3917
3935
|
};
|
|
3918
3936
|
}
|
|
3919
3937
|
|
|
3920
|
-
function
|
|
3921
|
-
wasm.
|
|
3938
|
+
function wasm_bindgen__convert__closures_____invoke__h1eb0c227974d07db(arg0, arg1) {
|
|
3939
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h1eb0c227974d07db(arg0, arg1);
|
|
3922
3940
|
}
|
|
3923
3941
|
|
|
3924
|
-
function
|
|
3925
|
-
wasm.
|
|
3942
|
+
function wasm_bindgen__convert__closures_____invoke__hfce04175609a64e0(arg0, arg1) {
|
|
3943
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hfce04175609a64e0(arg0, arg1);
|
|
3926
3944
|
}
|
|
3927
3945
|
|
|
3928
|
-
function
|
|
3929
|
-
wasm.
|
|
3946
|
+
function wasm_bindgen__convert__closures_____invoke__h314690ed42e4d760(arg0, arg1) {
|
|
3947
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h314690ed42e4d760(arg0, arg1);
|
|
3930
3948
|
}
|
|
3931
3949
|
|
|
3932
|
-
function
|
|
3933
|
-
const ret = wasm.
|
|
3950
|
+
function wasm_bindgen__convert__closures_____invoke__hf36a10484c480dcc(arg0, arg1) {
|
|
3951
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__hf36a10484c480dcc(arg0, arg1);
|
|
3934
3952
|
if (ret[1]) {
|
|
3935
3953
|
throw takeFromExternrefTable0(ret[0]);
|
|
3936
3954
|
}
|
|
3937
3955
|
}
|
|
3938
3956
|
|
|
3939
|
-
function
|
|
3940
|
-
wasm.
|
|
3957
|
+
function wasm_bindgen__convert__closures_____invoke__h30c2569a3bf343fb(arg0, arg1, arg2) {
|
|
3958
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h30c2569a3bf343fb(arg0, arg1, arg2);
|
|
3941
3959
|
}
|
|
3942
3960
|
|
|
3943
|
-
function
|
|
3944
|
-
wasm.
|
|
3961
|
+
function wasm_bindgen__convert__closures_____invoke__h3f60234ba8773866(arg0, arg1, arg2) {
|
|
3962
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h3f60234ba8773866(arg0, arg1, arg2);
|
|
3945
3963
|
}
|
|
3946
3964
|
|
|
3947
|
-
function
|
|
3948
|
-
wasm.
|
|
3965
|
+
function wasm_bindgen__convert__closures_____invoke__h0a5e47b03b549283(arg0, arg1, arg2) {
|
|
3966
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0a5e47b03b549283(arg0, arg1, arg2);
|
|
3949
3967
|
}
|
|
3950
3968
|
|
|
3951
|
-
function
|
|
3952
|
-
wasm.
|
|
3969
|
+
function wasm_bindgen__convert__closures_____invoke__h0e8f120bfb77b535(arg0, arg1, arg2) {
|
|
3970
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0e8f120bfb77b535(arg0, arg1, arg2);
|
|
3953
3971
|
}
|
|
3954
3972
|
|
|
3955
|
-
function
|
|
3956
|
-
wasm.
|
|
3973
|
+
function wasm_bindgen__convert__closures_____invoke__h0a5e47b03b549283_5(arg0, arg1, arg2) {
|
|
3974
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0a5e47b03b549283_5(arg0, arg1, arg2);
|
|
3957
3975
|
}
|
|
3958
3976
|
|
|
3959
|
-
function
|
|
3960
|
-
wasm.
|
|
3977
|
+
function wasm_bindgen__convert__closures_____invoke__h30c2569a3bf343fb_6(arg0, arg1, arg2) {
|
|
3978
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h30c2569a3bf343fb_6(arg0, arg1, arg2);
|
|
3961
3979
|
}
|
|
3962
3980
|
|
|
3963
|
-
function
|
|
3964
|
-
wasm.
|
|
3981
|
+
function wasm_bindgen__convert__closures_____invoke__h6ae2f2016473f2a1(arg0, arg1, arg2) {
|
|
3982
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h6ae2f2016473f2a1(arg0, arg1, arg2);
|
|
3965
3983
|
}
|
|
3966
3984
|
|
|
3967
|
-
function
|
|
3968
|
-
wasm.
|
|
3985
|
+
function wasm_bindgen__convert__closures_____invoke__h0e8f120bfb77b535_9(arg0, arg1, arg2) {
|
|
3986
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h0e8f120bfb77b535_9(arg0, arg1, arg2);
|
|
3969
3987
|
}
|
|
3970
3988
|
|
|
3971
|
-
function
|
|
3972
|
-
const ret = wasm.
|
|
3989
|
+
function wasm_bindgen__convert__closures_____invoke__h1dce8a665027385a(arg0, arg1, arg2) {
|
|
3990
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h1dce8a665027385a(arg0, arg1, arg2);
|
|
3973
3991
|
if (ret[1]) {
|
|
3974
3992
|
throw takeFromExternrefTable0(ret[0]);
|
|
3975
3993
|
}
|
|
3976
3994
|
}
|
|
3977
3995
|
|
|
3978
|
-
function
|
|
3979
|
-
const ret = wasm.
|
|
3996
|
+
function wasm_bindgen__convert__closures_____invoke__hd9880d5d53970d2a(arg0, arg1, arg2) {
|
|
3997
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__hd9880d5d53970d2a(arg0, arg1, arg2);
|
|
3980
3998
|
if (ret[1]) {
|
|
3981
3999
|
throw takeFromExternrefTable0(ret[0]);
|
|
3982
4000
|
}
|
|
3983
4001
|
}
|
|
3984
4002
|
|
|
3985
|
-
function
|
|
3986
|
-
const ret = wasm.
|
|
4003
|
+
function wasm_bindgen__convert__closures_____invoke__ha1b7a5ea2031d631(arg0, arg1, arg2) {
|
|
4004
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__ha1b7a5ea2031d631(arg0, arg1, arg2);
|
|
3987
4005
|
if (ret[1]) {
|
|
3988
4006
|
throw takeFromExternrefTable0(ret[0]);
|
|
3989
4007
|
}
|
|
3990
4008
|
}
|
|
3991
4009
|
|
|
3992
|
-
function
|
|
3993
|
-
wasm.
|
|
4010
|
+
function wasm_bindgen__convert__closures_____invoke__h2d1312eb0817667b(arg0, arg1, arg2, arg3) {
|
|
4011
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h2d1312eb0817667b(arg0, arg1, arg2, arg3);
|
|
3994
4012
|
}
|
|
3995
4013
|
|
|
3996
4014
|
|
package/re_viewer_bg.wasm
CHANGED
|
Binary file
|
package/re_viewer_bg.wasm.d.ts
CHANGED
|
@@ -54,22 +54,22 @@ export const intounderlyingsink_close: (a: number) => any;
|
|
|
54
54
|
export const intounderlyingsink_write: (a: number, b: any) => any;
|
|
55
55
|
export const intounderlyingsource_cancel: (a: number) => void;
|
|
56
56
|
export const intounderlyingsource_pull: (a: number, b: any) => any;
|
|
57
|
-
export const
|
|
58
|
-
export const
|
|
59
|
-
export const
|
|
60
|
-
export const
|
|
61
|
-
export const
|
|
62
|
-
export const
|
|
63
|
-
export const
|
|
64
|
-
export const
|
|
65
|
-
export const
|
|
66
|
-
export const
|
|
67
|
-
export const
|
|
68
|
-
export const
|
|
69
|
-
export const
|
|
70
|
-
export const
|
|
71
|
-
export const
|
|
72
|
-
export const
|
|
57
|
+
export const wasm_bindgen__convert__closures_____invoke__h1dce8a665027385a: (a: number, b: number, c: any) => [number, number];
|
|
58
|
+
export const wasm_bindgen__convert__closures_____invoke__hd9880d5d53970d2a: (a: number, b: number, c: any) => [number, number];
|
|
59
|
+
export const wasm_bindgen__convert__closures_____invoke__ha1b7a5ea2031d631: (a: number, b: number, c: any) => [number, number];
|
|
60
|
+
export const wasm_bindgen__convert__closures_____invoke__h2d1312eb0817667b: (a: number, b: number, c: any, d: any) => void;
|
|
61
|
+
export const wasm_bindgen__convert__closures_____invoke__h30c2569a3bf343fb: (a: number, b: number, c: any) => void;
|
|
62
|
+
export const wasm_bindgen__convert__closures_____invoke__h3f60234ba8773866: (a: number, b: number, c: any) => void;
|
|
63
|
+
export const wasm_bindgen__convert__closures_____invoke__h0a5e47b03b549283: (a: number, b: number, c: any) => void;
|
|
64
|
+
export const wasm_bindgen__convert__closures_____invoke__h0e8f120bfb77b535: (a: number, b: number, c: any) => void;
|
|
65
|
+
export const wasm_bindgen__convert__closures_____invoke__h0a5e47b03b549283_5: (a: number, b: number, c: any) => void;
|
|
66
|
+
export const wasm_bindgen__convert__closures_____invoke__h30c2569a3bf343fb_6: (a: number, b: number, c: any) => void;
|
|
67
|
+
export const wasm_bindgen__convert__closures_____invoke__h6ae2f2016473f2a1: (a: number, b: number, c: any) => void;
|
|
68
|
+
export const wasm_bindgen__convert__closures_____invoke__h0e8f120bfb77b535_9: (a: number, b: number, c: any) => void;
|
|
69
|
+
export const wasm_bindgen__convert__closures_____invoke__hf36a10484c480dcc: (a: number, b: number) => [number, number];
|
|
70
|
+
export const wasm_bindgen__convert__closures_____invoke__h1eb0c227974d07db: (a: number, b: number) => void;
|
|
71
|
+
export const wasm_bindgen__convert__closures_____invoke__hfce04175609a64e0: (a: number, b: number) => void;
|
|
72
|
+
export const wasm_bindgen__convert__closures_____invoke__h314690ed42e4d760: (a: number, b: number) => void;
|
|
73
73
|
export const __wbindgen_malloc: (a: number, b: number) => number;
|
|
74
74
|
export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
75
75
|
export const __externref_table_alloc: () => number;
|