@rerun-io/web-viewer 0.27.0-alpha.7 → 0.27.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 +3 -3
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
- package/re_viewer.d.ts +18 -17
- package/re_viewer.js +82 -49
- package/re_viewer_bg.wasm +0 -0
- package/re_viewer_bg.wasm.d.ts +18 -17
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.27.0-
|
|
31
|
+
The entrypoint for this packages is the [`WebViewer`](https://ref.rerun.io/docs/js/0.27.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.27.0-
|
|
47
|
+
- A hosted `.rrd` file, such as <https://app.rerun.io/version/0.27.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>.
|
|
@@ -62,4 +62,4 @@ If your target browser does not support Wasm imports or top-level await, you may
|
|
|
62
62
|
|
|
63
63
|
For more information about using the package, visit:
|
|
64
64
|
- [Integration docs](https://rerun.io/docs/howto/integrations/embed-web#using-the-javascript-package).
|
|
65
|
-
- [Package docs](https://ref.rerun.io/docs/js/0.
|
|
65
|
+
- [Package docs](https://ref.rerun.io/docs/js/0.26.0/web-viewer/index.html).
|
package/index.d.ts
CHANGED
|
@@ -192,7 +192,7 @@ export type EventsWithoutValue = {
|
|
|
192
192
|
* ```
|
|
193
193
|
*
|
|
194
194
|
* Data may be provided to the Viewer as:
|
|
195
|
-
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.27.0-
|
|
195
|
+
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.27.0-rc.1/examples/dna.rrd")`
|
|
196
196
|
* - A Rerun gRPC URL, e.g. `viewer.start("rerun+http://127.0.0.1:9876/proxy")`
|
|
197
197
|
* - A stream of log messages, via {@link WebViewer.open_channel}.
|
|
198
198
|
*
|
package/index.js
CHANGED
|
@@ -53,7 +53,7 @@ function delay(ms) {
|
|
|
53
53
|
* ```
|
|
54
54
|
*
|
|
55
55
|
* Data may be provided to the Viewer as:
|
|
56
|
-
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.27.0-
|
|
56
|
+
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.27.0-rc.1/examples/dna.rrd")`
|
|
57
57
|
* - A Rerun gRPC URL, e.g. `viewer.start("rerun+http://127.0.0.1:9876/proxy")`
|
|
58
58
|
* - A stream of log messages, via {@link WebViewer.open_channel}.
|
|
59
59
|
*
|
package/index.ts
CHANGED
|
@@ -309,7 +309,7 @@ function delay(ms: number) {
|
|
|
309
309
|
* ```
|
|
310
310
|
*
|
|
311
311
|
* Data may be provided to the Viewer as:
|
|
312
|
-
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.27.0-
|
|
312
|
+
* - An HTTP file URL, e.g. `viewer.start("https://app.rerun.io/version/0.27.0-rc.1/examples/dna.rrd")`
|
|
313
313
|
* - A Rerun gRPC URL, e.g. `viewer.start("rerun+http://127.0.0.1:9876/proxy")`
|
|
314
314
|
* - A stream of log messages, via {@link WebViewer.open_channel}.
|
|
315
315
|
*
|
package/package.json
CHANGED
package/re_viewer.d.ts
CHANGED
|
@@ -122,6 +122,14 @@ declare interface InitOutput {
|
|
|
122
122
|
readonly rust_lz4_wasm_shim_memcpy: (a: number, b: number, c: number) => number;
|
|
123
123
|
readonly rust_lz4_wasm_shim_memmove: (a: number, b: number, c: number) => number;
|
|
124
124
|
readonly rust_lz4_wasm_shim_memset: (a: number, b: number, c: number) => number;
|
|
125
|
+
readonly rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
|
|
126
|
+
readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
127
|
+
readonly rust_zstd_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
|
|
128
|
+
readonly rust_zstd_wasm_shim_calloc: (a: number, b: number) => number;
|
|
129
|
+
readonly rust_zstd_wasm_shim_free: (a: number) => void;
|
|
130
|
+
readonly rust_zstd_wasm_shim_memcpy: (a: number, b: number, c: number) => number;
|
|
131
|
+
readonly rust_zstd_wasm_shim_memmove: (a: number, b: number, c: number) => number;
|
|
132
|
+
readonly rust_zstd_wasm_shim_memset: (a: number, b: number, c: number) => number;
|
|
125
133
|
readonly __wbg_intounderlyingbytesource_free: (a: number, b: number) => void;
|
|
126
134
|
readonly intounderlyingbytesource_type: (a: number) => number;
|
|
127
135
|
readonly intounderlyingbytesource_autoAllocateChunkSize: (a: number) => number;
|
|
@@ -136,14 +144,6 @@ declare interface InitOutput {
|
|
|
136
144
|
readonly intounderlyingsink_close: (a: number) => any;
|
|
137
145
|
readonly intounderlyingsink_abort: (a: number, b: any) => any;
|
|
138
146
|
readonly ring_core_0_17_14__bn_mul_mont: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
139
|
-
readonly rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
|
|
140
|
-
readonly rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
141
|
-
readonly rust_zstd_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
|
|
142
|
-
readonly rust_zstd_wasm_shim_calloc: (a: number, b: number) => number;
|
|
143
|
-
readonly rust_zstd_wasm_shim_free: (a: number) => void;
|
|
144
|
-
readonly rust_zstd_wasm_shim_memcpy: (a: number, b: number, c: number) => number;
|
|
145
|
-
readonly rust_zstd_wasm_shim_memmove: (a: number, b: number, c: number) => number;
|
|
146
|
-
readonly rust_zstd_wasm_shim_memset: (a: number, b: number, c: number) => number;
|
|
147
147
|
readonly __externref_table_alloc: () => number;
|
|
148
148
|
readonly __wbindgen_export_1: WebAssembly.Table;
|
|
149
149
|
readonly __wbindgen_exn_store: (a: number) => void;
|
|
@@ -153,15 +153,16 @@ declare interface InitOutput {
|
|
|
153
153
|
readonly __wbindgen_export_6: WebAssembly.Table;
|
|
154
154
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
155
155
|
readonly closure14_externref_shim_multivalue_shim: (a: number, b: number, c: any) => [number, number];
|
|
156
|
-
readonly
|
|
157
|
-
readonly
|
|
158
|
-
readonly
|
|
159
|
-
readonly
|
|
160
|
-
readonly
|
|
161
|
-
readonly
|
|
162
|
-
readonly
|
|
163
|
-
readonly
|
|
164
|
-
readonly
|
|
156
|
+
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__he34a9ae45f20c6fd: (a: number, b: number) => void;
|
|
157
|
+
readonly closure3610_externref_shim: (a: number, b: number, c: any) => void;
|
|
158
|
+
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hec908fa8b4e5a092: (a: number, b: number) => void;
|
|
159
|
+
readonly closure19748_externref_shim: (a: number, b: number, c: any) => void;
|
|
160
|
+
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h5b108304cf502912_multivalue_shim: (a: number, b: number) => [number, number];
|
|
161
|
+
readonly closure20306_externref_shim: (a: number, b: number, c: any) => void;
|
|
162
|
+
readonly closure24150_externref_shim: (a: number, b: number, c: any) => void;
|
|
163
|
+
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h1eaaa1f5cdf1492d: (a: number, b: number) => void;
|
|
164
|
+
readonly closure24758_externref_shim: (a: number, b: number, c: any) => void;
|
|
165
|
+
readonly closure28813_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
165
166
|
readonly __wbindgen_start: () => void;
|
|
166
167
|
}
|
|
167
168
|
|
package/re_viewer.js
CHANGED
|
@@ -273,42 +273,46 @@ export default function() {
|
|
|
273
273
|
}
|
|
274
274
|
|
|
275
275
|
function __wbg_adapter_49(arg0, arg1) {
|
|
276
|
-
wasm.
|
|
276
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__he34a9ae45f20c6fd(arg0, arg1);
|
|
277
277
|
}
|
|
278
278
|
|
|
279
|
-
function __wbg_adapter_52(arg0, arg1) {
|
|
280
|
-
wasm.
|
|
279
|
+
function __wbg_adapter_52(arg0, arg1, arg2) {
|
|
280
|
+
wasm.closure3610_externref_shim(arg0, arg1, arg2);
|
|
281
281
|
}
|
|
282
282
|
|
|
283
|
-
function __wbg_adapter_55(arg0, arg1
|
|
284
|
-
wasm.
|
|
283
|
+
function __wbg_adapter_55(arg0, arg1) {
|
|
284
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hec908fa8b4e5a092(arg0, arg1);
|
|
285
285
|
}
|
|
286
286
|
|
|
287
|
-
function __wbg_adapter_58(arg0, arg1) {
|
|
288
|
-
|
|
287
|
+
function __wbg_adapter_58(arg0, arg1, arg2) {
|
|
288
|
+
wasm.closure19748_externref_shim(arg0, arg1, arg2);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
function __wbg_adapter_61(arg0, arg1) {
|
|
292
|
+
const ret = wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h5b108304cf502912_multivalue_shim(arg0, arg1);
|
|
289
293
|
if (ret[1]) {
|
|
290
294
|
throw takeFromExternrefTable0(ret[0]);
|
|
291
295
|
}
|
|
292
296
|
}
|
|
293
297
|
|
|
294
|
-
function
|
|
295
|
-
wasm.
|
|
298
|
+
function __wbg_adapter_66(arg0, arg1, arg2) {
|
|
299
|
+
wasm.closure20306_externref_shim(arg0, arg1, arg2);
|
|
296
300
|
}
|
|
297
301
|
|
|
298
|
-
function
|
|
299
|
-
wasm.
|
|
302
|
+
function __wbg_adapter_69(arg0, arg1, arg2) {
|
|
303
|
+
wasm.closure24150_externref_shim(arg0, arg1, arg2);
|
|
300
304
|
}
|
|
301
305
|
|
|
302
|
-
function
|
|
303
|
-
wasm.
|
|
306
|
+
function __wbg_adapter_74(arg0, arg1) {
|
|
307
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h1eaaa1f5cdf1492d(arg0, arg1);
|
|
304
308
|
}
|
|
305
309
|
|
|
306
|
-
function
|
|
307
|
-
wasm.
|
|
310
|
+
function __wbg_adapter_77(arg0, arg1, arg2) {
|
|
311
|
+
wasm.closure24758_externref_shim(arg0, arg1, arg2);
|
|
308
312
|
}
|
|
309
313
|
|
|
310
|
-
function
|
|
311
|
-
wasm.
|
|
314
|
+
function __wbg_adapter_1801(arg0, arg1, arg2, arg3) {
|
|
315
|
+
wasm.closure28813_externref_shim(arg0, arg1, arg2, arg3);
|
|
312
316
|
}
|
|
313
317
|
|
|
314
318
|
const __wbindgen_enum_EncodedVideoChunkType = ["key", "delta"];
|
|
@@ -1134,12 +1138,19 @@ export default function() {
|
|
|
1134
1138
|
imports.wbg.__wbg_close_304cc1fef3466669 = function() { return handleError(function (arg0) {
|
|
1135
1139
|
arg0.close();
|
|
1136
1140
|
}, arguments) };
|
|
1141
|
+
imports.wbg.__wbg_close_4760e2b3758cb809 = function() { return handleError(function (arg0) {
|
|
1142
|
+
arg0.close();
|
|
1143
|
+
}, arguments) };
|
|
1137
1144
|
imports.wbg.__wbg_close_5ce03e29be453811 = function() { return handleError(function (arg0) {
|
|
1138
1145
|
arg0.close();
|
|
1139
1146
|
}, arguments) };
|
|
1140
1147
|
imports.wbg.__wbg_close_c97927f6f9d86747 = function() { return handleError(function (arg0) {
|
|
1141
1148
|
arg0.close();
|
|
1142
1149
|
}, arguments) };
|
|
1150
|
+
imports.wbg.__wbg_closed_04e8dbfa3fbe0177 = function() { return handleError(function (arg0) {
|
|
1151
|
+
const ret = arg0.closed;
|
|
1152
|
+
return ret;
|
|
1153
|
+
}, arguments) };
|
|
1143
1154
|
imports.wbg.__wbg_code_cfd8f6868bdaed9b = function(arg0) {
|
|
1144
1155
|
const ret = arg0.code;
|
|
1145
1156
|
return ret;
|
|
@@ -1356,7 +1367,7 @@ export default function() {
|
|
|
1356
1367
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
1357
1368
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
1358
1369
|
};
|
|
1359
|
-
imports.wbg.
|
|
1370
|
+
imports.wbg.__wbg_debug_018e5989ca6fd1a2 = function(arg0, arg1) {
|
|
1360
1371
|
console.debug(getStringFromWasm0(arg0, arg1));
|
|
1361
1372
|
};
|
|
1362
1373
|
imports.wbg.__wbg_decode_6c36f113295ffd87 = function() { return handleError(function (arg0, arg1) {
|
|
@@ -1969,7 +1980,7 @@ export default function() {
|
|
|
1969
1980
|
const ret = arg0.includes(arg1, arg2);
|
|
1970
1981
|
return ret;
|
|
1971
1982
|
};
|
|
1972
|
-
imports.wbg.
|
|
1983
|
+
imports.wbg.__wbg_info_4abb0f2c4e7cf4ee = function(arg0, arg1) {
|
|
1973
1984
|
console.info(getStringFromWasm0(arg0, arg1));
|
|
1974
1985
|
};
|
|
1975
1986
|
imports.wbg.__wbg_inlineSize_8ff96b3ec1b24423 = function(arg0) {
|
|
@@ -2269,6 +2280,13 @@ export default function() {
|
|
|
2269
2280
|
const ret = arg0.keyCode;
|
|
2270
2281
|
return ret;
|
|
2271
2282
|
};
|
|
2283
|
+
imports.wbg.__wbg_key_61389b0b603106f2 = function(arg0, arg1) {
|
|
2284
|
+
const ret = arg1.key;
|
|
2285
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2286
|
+
var len1 = WASM_VECTOR_LEN;
|
|
2287
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2288
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2289
|
+
};
|
|
2272
2290
|
imports.wbg.__wbg_key_7b5c6cb539be8e13 = function(arg0, arg1) {
|
|
2273
2291
|
const ret = arg1.key;
|
|
2274
2292
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
@@ -2495,6 +2513,13 @@ export default function() {
|
|
|
2495
2513
|
const ret = new Date();
|
|
2496
2514
|
return ret;
|
|
2497
2515
|
};
|
|
2516
|
+
imports.wbg.__wbg_newValue_d1c2e7fcf158cc54 = function(arg0, arg1) {
|
|
2517
|
+
const ret = arg1.newValue;
|
|
2518
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
2519
|
+
var len1 = WASM_VECTOR_LEN;
|
|
2520
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
2521
|
+
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
2522
|
+
};
|
|
2498
2523
|
imports.wbg.__wbg_new_018dcc2d6c8c2f6a = function() { return handleError(function () {
|
|
2499
2524
|
const ret = new Headers();
|
|
2500
2525
|
return ret;
|
|
@@ -2506,7 +2531,7 @@ export default function() {
|
|
|
2506
2531
|
const a = state0.a;
|
|
2507
2532
|
state0.a = 0;
|
|
2508
2533
|
try {
|
|
2509
|
-
return
|
|
2534
|
+
return __wbg_adapter_1801(a, state0.b, arg0, arg1);
|
|
2510
2535
|
} finally {
|
|
2511
2536
|
state0.a = a;
|
|
2512
2537
|
}
|
|
@@ -2561,10 +2586,6 @@ export default function() {
|
|
|
2561
2586
|
const ret = new Intl.DateTimeFormat(arg0, arg1);
|
|
2562
2587
|
return ret;
|
|
2563
2588
|
};
|
|
2564
|
-
imports.wbg.__wbg_new_ae6ff2d625021450 = function() {
|
|
2565
|
-
const ret = new Error();
|
|
2566
|
-
return ret;
|
|
2567
|
-
};
|
|
2568
2589
|
imports.wbg.__wbg_new_b08a00743b8ae2f3 = function(arg0, arg1) {
|
|
2569
2590
|
const ret = new TypeError(getStringFromWasm0(arg0, arg1));
|
|
2570
2591
|
return ret;
|
|
@@ -2573,6 +2594,10 @@ export default function() {
|
|
|
2573
2594
|
const ret = new Error(getStringFromWasm0(arg0, arg1));
|
|
2574
2595
|
return ret;
|
|
2575
2596
|
};
|
|
2597
|
+
imports.wbg.__wbg_new_d2834f31473666c9 = function() {
|
|
2598
|
+
const ret = new Error();
|
|
2599
|
+
return ret;
|
|
2600
|
+
};
|
|
2576
2601
|
imports.wbg.__wbg_new_e25e5aab09ff45db = function() { return handleError(function () {
|
|
2577
2602
|
const ret = new AbortController();
|
|
2578
2603
|
return ret;
|
|
@@ -2664,6 +2689,10 @@ export default function() {
|
|
|
2664
2689
|
const ret = arg0.onSubmittedWorkDone();
|
|
2665
2690
|
return ret;
|
|
2666
2691
|
};
|
|
2692
|
+
imports.wbg.__wbg_open_133269b8b8f0081c = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4, arg5, arg6) {
|
|
2693
|
+
const ret = arg0.open(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4), getStringFromWasm0(arg5, arg6));
|
|
2694
|
+
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
2695
|
+
}, arguments) };
|
|
2667
2696
|
imports.wbg.__wbg_open_6c3f5ef5a0204c5d = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
|
2668
2697
|
const ret = arg0.open(getStringFromWasm0(arg1, arg2), getStringFromWasm0(arg3, arg4));
|
|
2669
2698
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
|
@@ -3604,7 +3633,7 @@ export default function() {
|
|
|
3604
3633
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
|
3605
3634
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
|
3606
3635
|
};
|
|
3607
|
-
imports.wbg.
|
|
3636
|
+
imports.wbg.__wbg_stack_b7fd76da75766c1c = function(arg0, arg1) {
|
|
3608
3637
|
const ret = arg1.stack;
|
|
3609
3638
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
3610
3639
|
const len1 = WASM_VECTOR_LEN;
|
|
@@ -3677,7 +3706,7 @@ export default function() {
|
|
|
3677
3706
|
const ret = JSON.stringify(arg0);
|
|
3678
3707
|
return ret;
|
|
3679
3708
|
}, arguments) };
|
|
3680
|
-
imports.wbg.
|
|
3709
|
+
imports.wbg.__wbg_structuredClone_024361f560ed9530 = function() { return handleError(function (arg0) {
|
|
3681
3710
|
const ret = window.structuredClone(arg0);
|
|
3682
3711
|
return ret;
|
|
3683
3712
|
}, arguments) };
|
|
@@ -3795,7 +3824,7 @@ export default function() {
|
|
|
3795
3824
|
const ret = arg0.touches;
|
|
3796
3825
|
return ret;
|
|
3797
3826
|
};
|
|
3798
|
-
imports.wbg.
|
|
3827
|
+
imports.wbg.__wbg_trace_a6c36d2bbe62dead = function(arg0, arg1) {
|
|
3799
3828
|
console.trace(getStringFromWasm0(arg0, arg1));
|
|
3800
3829
|
};
|
|
3801
3830
|
imports.wbg.__wbg_type_00566e0d2e337e2e = function(arg0, arg1) {
|
|
@@ -3992,7 +4021,7 @@ export default function() {
|
|
|
3992
4021
|
imports.wbg.__wbg_viewport_e615e98f676f2d39 = function(arg0, arg1, arg2, arg3, arg4) {
|
|
3993
4022
|
arg0.viewport(arg1, arg2, arg3, arg4);
|
|
3994
4023
|
};
|
|
3995
|
-
imports.wbg.
|
|
4024
|
+
imports.wbg.__wbg_warn_a1547c8a0fd56adb = function(arg0, arg1) {
|
|
3996
4025
|
console.warn(getStringFromWasm0(arg0, arg1));
|
|
3997
4026
|
};
|
|
3998
4027
|
imports.wbg.__wbg_width_4f334fc47ef03de1 = function(arg0) {
|
|
@@ -4051,48 +4080,52 @@ export default function() {
|
|
|
4051
4080
|
const ret = false;
|
|
4052
4081
|
return ret;
|
|
4053
4082
|
};
|
|
4054
|
-
imports.wbg.
|
|
4055
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4083
|
+
imports.wbg.__wbindgen_closure_wrapper112250 = function(arg0, arg1, arg2) {
|
|
4084
|
+
const ret = makeMutClosure(arg0, arg1, 24151, __wbg_adapter_69);
|
|
4056
4085
|
return ret;
|
|
4057
4086
|
};
|
|
4058
|
-
imports.wbg.
|
|
4059
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4087
|
+
imports.wbg.__wbindgen_closure_wrapper112252 = function(arg0, arg1, arg2) {
|
|
4088
|
+
const ret = makeMutClosure(arg0, arg1, 24151, __wbg_adapter_69);
|
|
4060
4089
|
return ret;
|
|
4061
4090
|
};
|
|
4062
|
-
imports.wbg.
|
|
4063
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4091
|
+
imports.wbg.__wbindgen_closure_wrapper114760 = function(arg0, arg1, arg2) {
|
|
4092
|
+
const ret = makeMutClosure(arg0, arg1, 24475, __wbg_adapter_74);
|
|
4064
4093
|
return ret;
|
|
4065
4094
|
};
|
|
4066
|
-
imports.wbg.
|
|
4067
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4095
|
+
imports.wbg.__wbindgen_closure_wrapper118355 = function(arg0, arg1, arg2) {
|
|
4096
|
+
const ret = makeMutClosure(arg0, arg1, 24759, __wbg_adapter_77);
|
|
4068
4097
|
return ret;
|
|
4069
4098
|
};
|
|
4070
|
-
imports.wbg.
|
|
4099
|
+
imports.wbg.__wbindgen_closure_wrapper1426 = function(arg0, arg1, arg2) {
|
|
4071
4100
|
const ret = makeMutClosure(arg0, arg1, 15, __wbg_adapter_46);
|
|
4072
4101
|
return ret;
|
|
4073
4102
|
};
|
|
4074
|
-
imports.wbg.
|
|
4075
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4103
|
+
imports.wbg.__wbindgen_closure_wrapper22290 = function(arg0, arg1, arg2) {
|
|
4104
|
+
const ret = makeMutClosure(arg0, arg1, 3611, __wbg_adapter_52);
|
|
4105
|
+
return ret;
|
|
4106
|
+
};
|
|
4107
|
+
imports.wbg.__wbindgen_closure_wrapper31706 = function(arg0, arg1, arg2) {
|
|
4108
|
+
const ret = makeMutClosure(arg0, arg1, 5594, __wbg_adapter_55);
|
|
4076
4109
|
return ret;
|
|
4077
4110
|
};
|
|
4078
|
-
imports.wbg.
|
|
4079
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4111
|
+
imports.wbg.__wbindgen_closure_wrapper7854 = function(arg0, arg1, arg2) {
|
|
4112
|
+
const ret = makeMutClosure(arg0, arg1, 1310, __wbg_adapter_49);
|
|
4080
4113
|
return ret;
|
|
4081
4114
|
};
|
|
4082
|
-
imports.wbg.
|
|
4083
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4115
|
+
imports.wbg.__wbindgen_closure_wrapper84337 = function(arg0, arg1, arg2) {
|
|
4116
|
+
const ret = makeMutClosure(arg0, arg1, 19749, __wbg_adapter_58);
|
|
4084
4117
|
return ret;
|
|
4085
4118
|
};
|
|
4086
|
-
imports.wbg.
|
|
4087
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4119
|
+
imports.wbg.__wbindgen_closure_wrapper84339 = function(arg0, arg1, arg2) {
|
|
4120
|
+
const ret = makeMutClosure(arg0, arg1, 19749, __wbg_adapter_61);
|
|
4088
4121
|
return ret;
|
|
4089
4122
|
};
|
|
4090
|
-
imports.wbg.
|
|
4091
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4123
|
+
imports.wbg.__wbindgen_closure_wrapper84341 = function(arg0, arg1, arg2) {
|
|
4124
|
+
const ret = makeMutClosure(arg0, arg1, 19749, __wbg_adapter_58);
|
|
4092
4125
|
return ret;
|
|
4093
4126
|
};
|
|
4094
|
-
imports.wbg.
|
|
4095
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
4127
|
+
imports.wbg.__wbindgen_closure_wrapper88095 = function(arg0, arg1, arg2) {
|
|
4128
|
+
const ret = makeMutClosure(arg0, arg1, 20307, __wbg_adapter_66);
|
|
4096
4129
|
return ret;
|
|
4097
4130
|
};
|
|
4098
4131
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
package/re_viewer_bg.wasm
CHANGED
|
Binary file
|
package/re_viewer_bg.wasm.d.ts
CHANGED
|
@@ -32,6 +32,14 @@ export const rust_lz4_wasm_shim_free: (a: number) => void;
|
|
|
32
32
|
export const rust_lz4_wasm_shim_memcpy: (a: number, b: number, c: number) => number;
|
|
33
33
|
export const rust_lz4_wasm_shim_memmove: (a: number, b: number, c: number) => number;
|
|
34
34
|
export const rust_lz4_wasm_shim_memset: (a: number, b: number, c: number) => number;
|
|
35
|
+
export const rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
|
|
36
|
+
export const rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
37
|
+
export const rust_zstd_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
|
|
38
|
+
export const rust_zstd_wasm_shim_calloc: (a: number, b: number) => number;
|
|
39
|
+
export const rust_zstd_wasm_shim_free: (a: number) => void;
|
|
40
|
+
export const rust_zstd_wasm_shim_memcpy: (a: number, b: number, c: number) => number;
|
|
41
|
+
export const rust_zstd_wasm_shim_memmove: (a: number, b: number, c: number) => number;
|
|
42
|
+
export const rust_zstd_wasm_shim_memset: (a: number, b: number, c: number) => number;
|
|
35
43
|
export const __wbg_intounderlyingbytesource_free: (a: number, b: number) => void;
|
|
36
44
|
export const intounderlyingbytesource_type: (a: number) => number;
|
|
37
45
|
export const intounderlyingbytesource_autoAllocateChunkSize: (a: number) => number;
|
|
@@ -46,14 +54,6 @@ export const intounderlyingsink_write: (a: number, b: any) => any;
|
|
|
46
54
|
export const intounderlyingsink_close: (a: number) => any;
|
|
47
55
|
export const intounderlyingsink_abort: (a: number, b: any) => any;
|
|
48
56
|
export const ring_core_0_17_14__bn_mul_mont: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
49
|
-
export const rust_zstd_wasm_shim_qsort: (a: number, b: number, c: number, d: number) => void;
|
|
50
|
-
export const rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
51
|
-
export const rust_zstd_wasm_shim_memcmp: (a: number, b: number, c: number) => number;
|
|
52
|
-
export const rust_zstd_wasm_shim_calloc: (a: number, b: number) => number;
|
|
53
|
-
export const rust_zstd_wasm_shim_free: (a: number) => void;
|
|
54
|
-
export const rust_zstd_wasm_shim_memcpy: (a: number, b: number, c: number) => number;
|
|
55
|
-
export const rust_zstd_wasm_shim_memmove: (a: number, b: number, c: number) => number;
|
|
56
|
-
export const rust_zstd_wasm_shim_memset: (a: number, b: number, c: number) => number;
|
|
57
57
|
export const __externref_table_alloc: () => number;
|
|
58
58
|
export const __wbindgen_export_1: WebAssembly.Table;
|
|
59
59
|
export const __wbindgen_exn_store: (a: number) => void;
|
|
@@ -63,13 +63,14 @@ export const __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
|
63
63
|
export const __wbindgen_export_6: WebAssembly.Table;
|
|
64
64
|
export const __externref_table_dealloc: (a: number) => void;
|
|
65
65
|
export const closure14_externref_shim_multivalue_shim: (a: number, b: number, c: any) => [number, number];
|
|
66
|
-
export const
|
|
67
|
-
export const
|
|
68
|
-
export const
|
|
69
|
-
export const
|
|
70
|
-
export const
|
|
71
|
-
export const
|
|
72
|
-
export const
|
|
73
|
-
export const
|
|
74
|
-
export const
|
|
66
|
+
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__he34a9ae45f20c6fd: (a: number, b: number) => void;
|
|
67
|
+
export const closure3610_externref_shim: (a: number, b: number, c: any) => void;
|
|
68
|
+
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hec908fa8b4e5a092: (a: number, b: number) => void;
|
|
69
|
+
export const closure19748_externref_shim: (a: number, b: number, c: any) => void;
|
|
70
|
+
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h5b108304cf502912_multivalue_shim: (a: number, b: number) => [number, number];
|
|
71
|
+
export const closure20306_externref_shim: (a: number, b: number, c: any) => void;
|
|
72
|
+
export const closure24150_externref_shim: (a: number, b: number, c: any) => void;
|
|
73
|
+
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h1eaaa1f5cdf1492d: (a: number, b: number) => void;
|
|
74
|
+
export const closure24758_externref_shim: (a: number, b: number, c: any) => void;
|
|
75
|
+
export const closure28813_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
75
76
|
export const __wbindgen_start: () => void;
|