@rerun-io/web-viewer 0.33.0 → 0.34.0-alpha.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 +69 -69
- 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-alpha.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-alpha.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-alpha.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-alpha.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-alpha.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__hd205d7f088846260: (a: number, b: number, c: any) => [number, number];
|
|
158
|
+
readonly wasm_bindgen__convert__closures_____invoke__hf4071224d493b1ea: (a: number, b: number, c: any) => [number, number];
|
|
159
|
+
readonly wasm_bindgen__convert__closures_____invoke__h702b7f6cde754e0b: (a: number, b: number, c: any) => [number, number];
|
|
160
|
+
readonly wasm_bindgen__convert__closures_____invoke__h4a3a1bbf0a7a54a8: (a: number, b: number, c: any, d: any) => void;
|
|
161
|
+
readonly wasm_bindgen__convert__closures_____invoke__h00cc1e884407ea73: (a: number, b: number, c: any) => void;
|
|
162
|
+
readonly wasm_bindgen__convert__closures_____invoke__hd27cd61d4f49a8fb: (a: number, b: number, c: any) => void;
|
|
163
|
+
readonly wasm_bindgen__convert__closures_____invoke__h8c8ab87dffd845c9: (a: number, b: number, c: any) => void;
|
|
164
|
+
readonly wasm_bindgen__convert__closures_____invoke__h54135bae850235d4: (a: number, b: number, c: any) => void;
|
|
165
|
+
readonly wasm_bindgen__convert__closures_____invoke__h8c8ab87dffd845c9_5: (a: number, b: number, c: any) => void;
|
|
166
|
+
readonly wasm_bindgen__convert__closures_____invoke__h00cc1e884407ea73_6: (a: number, b: number, c: any) => void;
|
|
167
|
+
readonly wasm_bindgen__convert__closures_____invoke__hf22ecd510911fa8e: (a: number, b: number, c: any) => void;
|
|
168
|
+
readonly wasm_bindgen__convert__closures_____invoke__h54135bae850235d4_9: (a: number, b: number, c: any) => void;
|
|
169
|
+
readonly wasm_bindgen__convert__closures_____invoke__h7a96563670dbbc62: (a: number, b: number) => [number, number];
|
|
170
|
+
readonly wasm_bindgen__convert__closures_____invoke__h91a08369c6f2f329: (a: number, b: number) => void;
|
|
171
|
+
readonly wasm_bindgen__convert__closures_____invoke__he1d354efa08125fe: (a: number, b: number) => void;
|
|
172
|
+
readonly wasm_bindgen__convert__closures_____invoke__h2642d95f971d3936: (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
|
@@ -2224,6 +2224,10 @@ const exports = { __proto__: null };
|
|
|
2224
2224
|
const ret = new EncodedVideoChunk(arg0);
|
|
2225
2225
|
return ret;
|
|
2226
2226
|
}, arguments); },
|
|
2227
|
+
__wbg_new_359e1134736f00cd: function() {
|
|
2228
|
+
const ret = new Error();
|
|
2229
|
+
return ret;
|
|
2230
|
+
},
|
|
2227
2231
|
__wbg_new_3a112826a89cb962: function() { return handleError(function () {
|
|
2228
2232
|
const ret = new Headers();
|
|
2229
2233
|
return ret;
|
|
@@ -2235,7 +2239,7 @@ const exports = { __proto__: null };
|
|
|
2235
2239
|
const a = state0.a;
|
|
2236
2240
|
state0.a = 0;
|
|
2237
2241
|
try {
|
|
2238
|
-
return
|
|
2242
|
+
return wasm_bindgen__convert__closures_____invoke__h4a3a1bbf0a7a54a8(a, state0.b, arg0, arg1);
|
|
2239
2243
|
} finally {
|
|
2240
2244
|
state0.a = a;
|
|
2241
2245
|
}
|
|
@@ -2266,10 +2270,6 @@ const exports = { __proto__: null };
|
|
|
2266
2270
|
const ret = new URLSearchParams();
|
|
2267
2271
|
return ret;
|
|
2268
2272
|
}, arguments); },
|
|
2269
|
-
__wbg_new_7c7370c3895f104b: function() {
|
|
2270
|
-
const ret = new Error();
|
|
2271
|
-
return ret;
|
|
2272
|
-
},
|
|
2273
2273
|
__wbg_new_9abbf7148481485e: function() { return handleError(function () {
|
|
2274
2274
|
const ret = new AbortController();
|
|
2275
2275
|
return ret;
|
|
@@ -2305,7 +2305,7 @@ const exports = { __proto__: null };
|
|
|
2305
2305
|
const a = state0.a;
|
|
2306
2306
|
state0.a = 0;
|
|
2307
2307
|
try {
|
|
2308
|
-
return
|
|
2308
|
+
return wasm_bindgen__convert__closures_____invoke__h4a3a1bbf0a7a54a8(a, state0.b, arg0, arg1);
|
|
2309
2309
|
} finally {
|
|
2310
2310
|
state0.a = a;
|
|
2311
2311
|
}
|
|
@@ -3341,7 +3341,7 @@ const exports = { __proto__: null };
|
|
|
3341
3341
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3342
3342
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3343
3343
|
},
|
|
3344
|
-
|
|
3344
|
+
__wbg_stack_dacceb2461e1bb2e: function(arg0, arg1) {
|
|
3345
3345
|
const ret = arg1.stack;
|
|
3346
3346
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3347
3347
|
const len1 = WASM_VECTOR_LEN;
|
|
@@ -3418,7 +3418,7 @@ const exports = { __proto__: null };
|
|
|
3418
3418
|
const ret = JSON.stringify(arg0);
|
|
3419
3419
|
return ret;
|
|
3420
3420
|
}, arguments); },
|
|
3421
|
-
|
|
3421
|
+
__wbg_structuredClone_0cb05c1b90dc01f6: function() { return handleError(function (arg0) {
|
|
3422
3422
|
const ret = window.structuredClone(arg0);
|
|
3423
3423
|
return ret;
|
|
3424
3424
|
}, arguments); },
|
|
@@ -3782,78 +3782,78 @@ const exports = { __proto__: null };
|
|
|
3782
3782
|
return ret;
|
|
3783
3783
|
},
|
|
3784
3784
|
__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,
|
|
3785
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 23243, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3786
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h00cc1e884407ea73);
|
|
3787
3787
|
return ret;
|
|
3788
3788
|
},
|
|
3789
3789
|
__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,
|
|
3790
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 32444, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3791
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__hd27cd61d4f49a8fb);
|
|
3792
3792
|
return ret;
|
|
3793
3793
|
},
|
|
3794
3794
|
__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,
|
|
3795
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 33334, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
3796
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__hd205d7f088846260);
|
|
3797
3797
|
return ret;
|
|
3798
3798
|
},
|
|
3799
3799
|
__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,
|
|
3800
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("Array<any>")], shim_idx: 23038, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3801
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h8c8ab87dffd845c9);
|
|
3802
3802
|
return ret;
|
|
3803
3803
|
},
|
|
3804
3804
|
__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,
|
|
3805
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("Error")], shim_idx: 27569, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3806
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h54135bae850235d4);
|
|
3807
3807
|
return ret;
|
|
3808
3808
|
},
|
|
3809
3809
|
__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,
|
|
3810
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("Event")], shim_idx: 23038, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3811
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h8c8ab87dffd845c9_5);
|
|
3812
3812
|
return ret;
|
|
3813
3813
|
},
|
|
3814
3814
|
__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,
|
|
3815
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("GPUUncapturedErrorEvent")], shim_idx: 23243, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3816
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h00cc1e884407ea73_6);
|
|
3817
3817
|
return ret;
|
|
3818
3818
|
},
|
|
3819
3819
|
__wbindgen_cast_0000000000000008: function(arg0, arg1) {
|
|
3820
3820
|
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("PopStateEvent")], shim_idx: 7, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
3821
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3821
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__hf4071224d493b1ea);
|
|
3822
3822
|
return ret;
|
|
3823
3823
|
},
|
|
3824
3824
|
__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,
|
|
3825
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("StorageEvent")], shim_idx: 3604, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3826
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__hf22ecd510911fa8e);
|
|
3827
3827
|
return ret;
|
|
3828
3828
|
},
|
|
3829
3829
|
__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,
|
|
3830
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("VideoFrame")], shim_idx: 27569, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3831
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h54135bae850235d4_9);
|
|
3832
3832
|
return ret;
|
|
3833
3833
|
},
|
|
3834
3834
|
__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,
|
|
3835
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [NamedExternref("undefined")], shim_idx: 27570, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
3836
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h702b7f6cde754e0b);
|
|
3837
3837
|
return ret;
|
|
3838
3838
|
},
|
|
3839
3839
|
__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,
|
|
3840
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 1594, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3841
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h91a08369c6f2f329);
|
|
3842
3842
|
return ret;
|
|
3843
3843
|
},
|
|
3844
3844
|
__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,
|
|
3845
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 23039, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref`.
|
|
3846
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h7a96563670dbbc62);
|
|
3847
3847
|
return ret;
|
|
3848
3848
|
},
|
|
3849
3849
|
__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,
|
|
3850
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 28133, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3851
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__he1d354efa08125fe);
|
|
3852
3852
|
return ret;
|
|
3853
3853
|
},
|
|
3854
3854
|
__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,
|
|
3855
|
+
// Cast intrinsic for `Closure(Closure { owned: true, function: Function { arguments: [], shim_idx: 6339, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
|
3856
|
+
const ret = makeMutClosure(arg0, arg1, wasm_bindgen__convert__closures_____invoke__h2642d95f971d3936);
|
|
3857
3857
|
return ret;
|
|
3858
3858
|
},
|
|
3859
3859
|
__wbindgen_cast_0000000000000010: function(arg0) {
|
|
@@ -3917,80 +3917,80 @@ const exports = { __proto__: null };
|
|
|
3917
3917
|
};
|
|
3918
3918
|
}
|
|
3919
3919
|
|
|
3920
|
-
function
|
|
3921
|
-
wasm.
|
|
3920
|
+
function wasm_bindgen__convert__closures_____invoke__h91a08369c6f2f329(arg0, arg1) {
|
|
3921
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h91a08369c6f2f329(arg0, arg1);
|
|
3922
3922
|
}
|
|
3923
3923
|
|
|
3924
|
-
function
|
|
3925
|
-
wasm.
|
|
3924
|
+
function wasm_bindgen__convert__closures_____invoke__he1d354efa08125fe(arg0, arg1) {
|
|
3925
|
+
wasm.wasm_bindgen__convert__closures_____invoke__he1d354efa08125fe(arg0, arg1);
|
|
3926
3926
|
}
|
|
3927
3927
|
|
|
3928
|
-
function
|
|
3929
|
-
wasm.
|
|
3928
|
+
function wasm_bindgen__convert__closures_____invoke__h2642d95f971d3936(arg0, arg1) {
|
|
3929
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h2642d95f971d3936(arg0, arg1);
|
|
3930
3930
|
}
|
|
3931
3931
|
|
|
3932
|
-
function
|
|
3933
|
-
const ret = wasm.
|
|
3932
|
+
function wasm_bindgen__convert__closures_____invoke__h7a96563670dbbc62(arg0, arg1) {
|
|
3933
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h7a96563670dbbc62(arg0, arg1);
|
|
3934
3934
|
if (ret[1]) {
|
|
3935
3935
|
throw takeFromExternrefTable0(ret[0]);
|
|
3936
3936
|
}
|
|
3937
3937
|
}
|
|
3938
3938
|
|
|
3939
|
-
function
|
|
3940
|
-
wasm.
|
|
3939
|
+
function wasm_bindgen__convert__closures_____invoke__h00cc1e884407ea73(arg0, arg1, arg2) {
|
|
3940
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h00cc1e884407ea73(arg0, arg1, arg2);
|
|
3941
3941
|
}
|
|
3942
3942
|
|
|
3943
|
-
function
|
|
3944
|
-
wasm.
|
|
3943
|
+
function wasm_bindgen__convert__closures_____invoke__hd27cd61d4f49a8fb(arg0, arg1, arg2) {
|
|
3944
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hd27cd61d4f49a8fb(arg0, arg1, arg2);
|
|
3945
3945
|
}
|
|
3946
3946
|
|
|
3947
|
-
function
|
|
3948
|
-
wasm.
|
|
3947
|
+
function wasm_bindgen__convert__closures_____invoke__h8c8ab87dffd845c9(arg0, arg1, arg2) {
|
|
3948
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h8c8ab87dffd845c9(arg0, arg1, arg2);
|
|
3949
3949
|
}
|
|
3950
3950
|
|
|
3951
|
-
function
|
|
3952
|
-
wasm.
|
|
3951
|
+
function wasm_bindgen__convert__closures_____invoke__h54135bae850235d4(arg0, arg1, arg2) {
|
|
3952
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h54135bae850235d4(arg0, arg1, arg2);
|
|
3953
3953
|
}
|
|
3954
3954
|
|
|
3955
|
-
function
|
|
3956
|
-
wasm.
|
|
3955
|
+
function wasm_bindgen__convert__closures_____invoke__h8c8ab87dffd845c9_5(arg0, arg1, arg2) {
|
|
3956
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h8c8ab87dffd845c9_5(arg0, arg1, arg2);
|
|
3957
3957
|
}
|
|
3958
3958
|
|
|
3959
|
-
function
|
|
3960
|
-
wasm.
|
|
3959
|
+
function wasm_bindgen__convert__closures_____invoke__h00cc1e884407ea73_6(arg0, arg1, arg2) {
|
|
3960
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h00cc1e884407ea73_6(arg0, arg1, arg2);
|
|
3961
3961
|
}
|
|
3962
3962
|
|
|
3963
|
-
function
|
|
3964
|
-
wasm.
|
|
3963
|
+
function wasm_bindgen__convert__closures_____invoke__hf22ecd510911fa8e(arg0, arg1, arg2) {
|
|
3964
|
+
wasm.wasm_bindgen__convert__closures_____invoke__hf22ecd510911fa8e(arg0, arg1, arg2);
|
|
3965
3965
|
}
|
|
3966
3966
|
|
|
3967
|
-
function
|
|
3968
|
-
wasm.
|
|
3967
|
+
function wasm_bindgen__convert__closures_____invoke__h54135bae850235d4_9(arg0, arg1, arg2) {
|
|
3968
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h54135bae850235d4_9(arg0, arg1, arg2);
|
|
3969
3969
|
}
|
|
3970
3970
|
|
|
3971
|
-
function
|
|
3972
|
-
const ret = wasm.
|
|
3971
|
+
function wasm_bindgen__convert__closures_____invoke__hd205d7f088846260(arg0, arg1, arg2) {
|
|
3972
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__hd205d7f088846260(arg0, arg1, arg2);
|
|
3973
3973
|
if (ret[1]) {
|
|
3974
3974
|
throw takeFromExternrefTable0(ret[0]);
|
|
3975
3975
|
}
|
|
3976
3976
|
}
|
|
3977
3977
|
|
|
3978
|
-
function
|
|
3979
|
-
const ret = wasm.
|
|
3978
|
+
function wasm_bindgen__convert__closures_____invoke__hf4071224d493b1ea(arg0, arg1, arg2) {
|
|
3979
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__hf4071224d493b1ea(arg0, arg1, arg2);
|
|
3980
3980
|
if (ret[1]) {
|
|
3981
3981
|
throw takeFromExternrefTable0(ret[0]);
|
|
3982
3982
|
}
|
|
3983
3983
|
}
|
|
3984
3984
|
|
|
3985
|
-
function
|
|
3986
|
-
const ret = wasm.
|
|
3985
|
+
function wasm_bindgen__convert__closures_____invoke__h702b7f6cde754e0b(arg0, arg1, arg2) {
|
|
3986
|
+
const ret = wasm.wasm_bindgen__convert__closures_____invoke__h702b7f6cde754e0b(arg0, arg1, arg2);
|
|
3987
3987
|
if (ret[1]) {
|
|
3988
3988
|
throw takeFromExternrefTable0(ret[0]);
|
|
3989
3989
|
}
|
|
3990
3990
|
}
|
|
3991
3991
|
|
|
3992
|
-
function
|
|
3993
|
-
wasm.
|
|
3992
|
+
function wasm_bindgen__convert__closures_____invoke__h4a3a1bbf0a7a54a8(arg0, arg1, arg2, arg3) {
|
|
3993
|
+
wasm.wasm_bindgen__convert__closures_____invoke__h4a3a1bbf0a7a54a8(arg0, arg1, arg2, arg3);
|
|
3994
3994
|
}
|
|
3995
3995
|
|
|
3996
3996
|
|
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__hd205d7f088846260: (a: number, b: number, c: any) => [number, number];
|
|
58
|
+
export const wasm_bindgen__convert__closures_____invoke__hf4071224d493b1ea: (a: number, b: number, c: any) => [number, number];
|
|
59
|
+
export const wasm_bindgen__convert__closures_____invoke__h702b7f6cde754e0b: (a: number, b: number, c: any) => [number, number];
|
|
60
|
+
export const wasm_bindgen__convert__closures_____invoke__h4a3a1bbf0a7a54a8: (a: number, b: number, c: any, d: any) => void;
|
|
61
|
+
export const wasm_bindgen__convert__closures_____invoke__h00cc1e884407ea73: (a: number, b: number, c: any) => void;
|
|
62
|
+
export const wasm_bindgen__convert__closures_____invoke__hd27cd61d4f49a8fb: (a: number, b: number, c: any) => void;
|
|
63
|
+
export const wasm_bindgen__convert__closures_____invoke__h8c8ab87dffd845c9: (a: number, b: number, c: any) => void;
|
|
64
|
+
export const wasm_bindgen__convert__closures_____invoke__h54135bae850235d4: (a: number, b: number, c: any) => void;
|
|
65
|
+
export const wasm_bindgen__convert__closures_____invoke__h8c8ab87dffd845c9_5: (a: number, b: number, c: any) => void;
|
|
66
|
+
export const wasm_bindgen__convert__closures_____invoke__h00cc1e884407ea73_6: (a: number, b: number, c: any) => void;
|
|
67
|
+
export const wasm_bindgen__convert__closures_____invoke__hf22ecd510911fa8e: (a: number, b: number, c: any) => void;
|
|
68
|
+
export const wasm_bindgen__convert__closures_____invoke__h54135bae850235d4_9: (a: number, b: number, c: any) => void;
|
|
69
|
+
export const wasm_bindgen__convert__closures_____invoke__h7a96563670dbbc62: (a: number, b: number) => [number, number];
|
|
70
|
+
export const wasm_bindgen__convert__closures_____invoke__h91a08369c6f2f329: (a: number, b: number) => void;
|
|
71
|
+
export const wasm_bindgen__convert__closures_____invoke__he1d354efa08125fe: (a: number, b: number) => void;
|
|
72
|
+
export const wasm_bindgen__convert__closures_____invoke__h2642d95f971d3936: (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;
|