@rerun-io/web-viewer 0.13.0-rc.3 → 0.13.0

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 CHANGED
@@ -41,7 +41,7 @@ viewer.stop();
41
41
  ```
42
42
 
43
43
  The `rrd` in the snippet above should be a URL pointing to either:
44
- - A hosted `.rrd` file, such as <https://app.rerun.io/version/0.13.0-rc.3/examples/dna.rrd>
44
+ - A hosted `.rrd` file, such as <https://app.rerun.io/version/0.13.0/examples/dna.rrd>
45
45
  - A WebSocket connection to the SDK opened via the [`serve`](https://www.rerun.io/docs/reference/sdk-operating-modes#serve) API
46
46
 
47
47
  If `rrd` is not set, the viewer will display the same welcome screen as <https://app.rerun.io>.
package/index.d.ts CHANGED
@@ -37,4 +37,73 @@ declare module '@rerun-io/web-viewer' {
37
37
  }
38
38
  }
39
39
 
40
+ declare module '@rerun-io/web-viewer/re_viewer.js' {
41
+ /* tslint:disable */
42
+ /* eslint-disable */
43
+ /**
44
+ * Used to set the "email" property in the analytics config,
45
+ * in the same way as `rerun analytics email YOURNAME@rerun.io`.
46
+ *
47
+ * This one just panics when it fails, as it's only ever really run
48
+ * by rerun employees manually in `app.rerun.io`.
49
+ * */
50
+ export function set_email(email: string): void;
51
+
52
+ export class IntoUnderlyingByteSource {
53
+ free(): void;
54
+
55
+ start(controller: ReadableByteStreamController): void;
56
+
57
+ pull(controller: ReadableByteStreamController): Promise<any>;
58
+
59
+ cancel(): void;
60
+
61
+ readonly autoAllocateChunkSize: number;
62
+
63
+ readonly type: string;
64
+ }
65
+
66
+ export class IntoUnderlyingSink {
67
+ free(): void;
68
+
69
+ write(chunk: any): Promise<any>;
70
+
71
+ close(): Promise<any>;
72
+
73
+ abort(reason: any): Promise<any>;
74
+ }
75
+
76
+ export class IntoUnderlyingSource {
77
+ free(): void;
78
+
79
+ pull(controller: ReadableStreamDefaultController): Promise<any>;
80
+
81
+ cancel(): void;
82
+ }
83
+
84
+ export class WebHandle {
85
+ free(): void;
86
+
87
+ constructor();
88
+ /**
89
+ * - `url` is an optional URL to either an .rrd file over http, or a Rerun WebSocket server.
90
+ * - `manifest_url` is an optional URL to an `examples_manifest.json` file over http.
91
+ * - `force_wgpu_backend` is an optional string to force a specific backend, either `webgl` or `webgpu`.
92
+ * */
93
+ start(canvas_id: string, url?: string, manifest_url?: string, force_wgpu_backend?: string): Promise<void>;
94
+
95
+ destroy(): void;
96
+
97
+ has_panicked(): boolean;
98
+
99
+ panic_message(): string | undefined;
100
+
101
+ panic_callstack(): string | undefined;
102
+
103
+ add_receiver(url: string): void;
104
+
105
+ remove_receiver(url: string): void;
106
+ }
107
+ }
108
+
40
109
  //# sourceMappingURL=index.d.ts.map
package/index.d.ts.map CHANGED
@@ -2,13 +2,20 @@
2
2
  "version": 3,
3
3
  "file": "index.d.ts",
4
4
  "names": [
5
- "WebViewer"
5
+ "WebViewer",
6
+ "set_email",
7
+ "IntoUnderlyingByteSource",
8
+ "IntoUnderlyingSink",
9
+ "IntoUnderlyingSource",
10
+ "WebHandle"
6
11
  ],
7
12
  "sources": [
8
- "index.js"
13
+ "index.js",
14
+ "re_viewer.d.ts"
9
15
  ],
10
16
  "sourcesContent": [
17
+ null,
11
18
  null
12
19
  ],
13
- "mappings": ";cAuBaA,SAASA"
20
+ "mappings": ";cAuBaA,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBCbNC,SAASA;;eAGZC,wBAAwBA;;;;;;;;;;;;;;eAuBxBC,kBAAkBA;;;;;;;;;;eAmBlBC,oBAAoBA;;;;;;;;eAapBC,SAASA"
14
21
  }
package/package.json CHANGED
@@ -1,14 +1,20 @@
1
1
  {
2
2
  "name": "@rerun-io/web-viewer",
3
- "version": "0.13.0-rc.3",
3
+ "version": "0.13.0",
4
4
  "description": "Embed the Rerun web viewer in your app",
5
- "private": false,
5
+ "licenses": [
6
+ {
7
+ "type": "MIT"
8
+ },
9
+ {
10
+ "type": "Apache-2.0"
11
+ }
12
+ ],
6
13
  "scripts": {
7
14
  "build:wasm": "cargo run -p re_build_web_viewer -- --release --module -o rerun_js/web-viewer",
8
15
  "build:wasm:debug": "cargo run -p re_build_web_viewer -- --debug --module -o rerun_js/web-viewer",
9
- "build:types": "dts-buddy",
10
- "build": "npm run build:wasm && npm run build:types",
11
- "prepublishOnly": "tsc --noEmit && dts-buddy"
16
+ "build:types": "tsc --noEmit && dts-buddy",
17
+ "build": "npm run build:wasm && npm run build:types"
12
18
  },
13
19
  "repository": {
14
20
  "type": "git",
@@ -20,10 +26,15 @@
20
26
  "url": "https://github.com/rerun-io/rerun/issues"
21
27
  },
22
28
  "homepage": "https://rerun.io",
29
+ "type": "module",
23
30
  "exports": {
24
31
  ".": {
25
32
  "types": "./index.d.ts",
26
33
  "import": "./index.js"
34
+ },
35
+ "./re_viewer.js": {
36
+ "types": "./re_viewer.d.ts",
37
+ "import": "./re_viewer.js"
27
38
  }
28
39
  },
29
40
  "files": [
package/re_viewer_bg.js CHANGED
@@ -222,25 +222,21 @@ function makeMutClosure(arg0, arg1, dtor, f) {
222
222
  return real;
223
223
  }
224
224
  function __wbg_adapter_32(arg0, arg1) {
225
- wasm.wasm_bindgen__convert__closures__invoke0_mut__h7a88cb66f4895db6(arg0, arg1);
225
+ wasm.wasm_bindgen__convert__closures__invoke0_mut__hb613c0750316bc0a(arg0, arg1);
226
226
  }
227
227
 
228
228
  function __wbg_adapter_35(arg0, arg1) {
229
- wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h07d706503689bf39(arg0, arg1);
229
+ wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h46958959de1b1156(arg0, arg1);
230
230
  }
231
231
 
232
232
  function __wbg_adapter_38(arg0, arg1) {
233
- wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h4baafeabde40570c(arg0, arg1);
233
+ wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h2c7be37f5c824b88(arg0, arg1);
234
234
  }
235
235
 
236
- function __wbg_adapter_41(arg0, arg1, arg2) {
237
- wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h1c57d1e9474fd02b(arg0, arg1, addHeapObject(arg2));
238
- }
239
-
240
- function __wbg_adapter_44(arg0, arg1) {
236
+ function __wbg_adapter_41(arg0, arg1) {
241
237
  try {
242
238
  const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
243
- wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h01bbc91e4b840a59(retptr, arg0, arg1);
239
+ wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h0dbc5b7f8efe765a(retptr, arg0, arg1);
244
240
  var r0 = getInt32Memory0()[retptr / 4 + 0];
245
241
  var r1 = getInt32Memory0()[retptr / 4 + 1];
246
242
  if (r1) {
@@ -251,24 +247,28 @@ function __wbg_adapter_44(arg0, arg1) {
251
247
  }
252
248
  }
253
249
 
250
+ function __wbg_adapter_44(arg0, arg1, arg2) {
251
+ wasm._dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h9282375b9949f658(arg0, arg1, addHeapObject(arg2));
252
+ }
253
+
254
254
  function __wbg_adapter_47(arg0, arg1, arg2) {
255
- wasm.wasm_bindgen__convert__closures__invoke1_mut__h25e9ecc499155f63(arg0, arg1, addHeapObject(arg2));
255
+ wasm.wasm_bindgen__convert__closures__invoke1_mut__h3cae7188acf295ab(arg0, arg1, addHeapObject(arg2));
256
256
  }
257
257
 
258
258
  function __wbg_adapter_52(arg0, arg1, arg2) {
259
- wasm.wasm_bindgen__convert__closures__invoke1_mut__h1b3ceebe837742e9(arg0, arg1, addHeapObject(arg2));
259
+ wasm.wasm_bindgen__convert__closures__invoke1_mut__h706870e7dcd8d5d2(arg0, arg1, addHeapObject(arg2));
260
260
  }
261
261
 
262
262
  function __wbg_adapter_61(arg0, arg1, arg2) {
263
- wasm.wasm_bindgen__convert__closures__invoke1_mut__hab76d8ea0dc32f42(arg0, arg1, addHeapObject(arg2));
263
+ wasm.wasm_bindgen__convert__closures__invoke1_mut__hd16f88bfd653b181(arg0, arg1, addHeapObject(arg2));
264
264
  }
265
265
 
266
266
  function __wbg_adapter_64(arg0, arg1, arg2) {
267
- wasm.wasm_bindgen__convert__closures__invoke1_mut__hb1d106b0b2b5ed5e(arg0, arg1, addHeapObject(arg2));
267
+ wasm.wasm_bindgen__convert__closures__invoke1_mut__hbcb665b093f6c4f0(arg0, arg1, addHeapObject(arg2));
268
268
  }
269
269
 
270
270
  function __wbg_adapter_67(arg0, arg1, arg2) {
271
- wasm.wasm_bindgen__convert__closures__invoke1_mut__h523a5392ddd4fbfe(arg0, arg1, addHeapObject(arg2));
271
+ wasm.wasm_bindgen__convert__closures__invoke1_mut__h156b5c97f2d9e5f9(arg0, arg1, addHeapObject(arg2));
272
272
  }
273
273
 
274
274
  /**
@@ -326,7 +326,7 @@ function getArrayF32FromWasm0(ptr, len) {
326
326
  return getFloat32Memory0().subarray(ptr / 4, ptr / 4 + len);
327
327
  }
328
328
  function __wbg_adapter_1289(arg0, arg1, arg2, arg3) {
329
- wasm.wasm_bindgen__convert__closures__invoke2_mut__h700cd2dd85a51a5a(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
329
+ wasm.wasm_bindgen__convert__closures__invoke2_mut__h65eec356cd8cd669(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));
330
330
  }
331
331
 
332
332
  /**
@@ -574,16 +574,6 @@ export class WebHandle {
574
574
  }
575
575
  }
576
576
 
577
- export function __wbindgen_cb_drop(arg0) {
578
- const obj = takeObject(arg0).original;
579
- if (obj.cnt-- == 1) {
580
- obj.a = 0;
581
- return true;
582
- }
583
- const ret = false;
584
- return ret;
585
- };
586
-
587
577
  export function __wbindgen_object_drop_ref(arg0) {
588
578
  takeObject(arg0);
589
579
  };
@@ -598,6 +588,16 @@ export function __wbindgen_string_new(arg0, arg1) {
598
588
  return addHeapObject(ret);
599
589
  };
600
590
 
591
+ export function __wbindgen_cb_drop(arg0) {
592
+ const obj = takeObject(arg0).original;
593
+ if (obj.cnt-- == 1) {
594
+ obj.a = 0;
595
+ return true;
596
+ }
597
+ const ret = false;
598
+ return ret;
599
+ };
600
+
601
601
  export function __wbindgen_string_get(arg0, arg1) {
602
602
  const obj = getObject(arg1);
603
603
  const ret = typeof(obj) === 'string' ? obj : undefined;
@@ -614,7 +614,7 @@ export function __wbindgen_number_get(arg0, arg1) {
614
614
  getInt32Memory0()[arg0 / 4 + 0] = !isLikeNone(ret);
615
615
  };
616
616
 
617
- export function __wbg_error_fef71bc9b670aec4(arg0, arg1) {
617
+ export function __wbg_error_293b76f9b24545e5(arg0, arg1) {
618
618
  let deferred0_0;
619
619
  let deferred0_1;
620
620
  try {
@@ -626,12 +626,12 @@ export function __wbg_error_fef71bc9b670aec4(arg0, arg1) {
626
626
  }
627
627
  };
628
628
 
629
- export function __wbg_new_17c866ad40da987b() {
629
+ export function __wbg_new_3593ee20f04d9651() {
630
630
  const ret = new Error();
631
631
  return addHeapObject(ret);
632
632
  };
633
633
 
634
- export function __wbg_stack_1c1cef4675b9e0ca(arg0, arg1) {
634
+ export function __wbg_stack_9b8d97e5d584945b(arg0, arg1) {
635
635
  const ret = getObject(arg1).stack;
636
636
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
637
637
  const len1 = WASM_VECTOR_LEN;
@@ -639,12 +639,12 @@ export function __wbg_stack_1c1cef4675b9e0ca(arg0, arg1) {
639
639
  getInt32Memory0()[arg0 / 4 + 0] = ptr1;
640
640
  };
641
641
 
642
- export function __wbg_new_edb6ada93e0524df() {
642
+ export function __wbg_new_0f0803801b2eea1d() {
643
643
  const ret = new Error();
644
644
  return addHeapObject(ret);
645
645
  };
646
646
 
647
- export function __wbg_stack_eb94eb0a17488c83(arg0, arg1) {
647
+ export function __wbg_stack_c111b951722eb564(arg0, arg1) {
648
648
  const ret = getObject(arg1).stack;
649
649
  const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
650
650
  const len1 = WASM_VECTOR_LEN;
@@ -2284,6 +2284,26 @@ export function __wbg_unmap_950f4eeb07607956(arg0) {
2284
2284
  getObject(arg0).unmap();
2285
2285
  };
2286
2286
 
2287
+ export function __wbg_instanceof_GpuCanvasContext_15a09368cfe47ea8(arg0) {
2288
+ let result;
2289
+ try {
2290
+ result = getObject(arg0) instanceof GPUCanvasContext;
2291
+ } catch (_) {
2292
+ result = false;
2293
+ }
2294
+ const ret = result;
2295
+ return ret;
2296
+ };
2297
+
2298
+ export function __wbg_configure_e226c3745a43426f(arg0, arg1) {
2299
+ getObject(arg0).configure(getObject(arg1));
2300
+ };
2301
+
2302
+ export function __wbg_getCurrentTexture_c18952d00d5ca291(arg0) {
2303
+ const ret = getObject(arg0).getCurrentTexture();
2304
+ return addHeapObject(ret);
2305
+ };
2306
+
2287
2307
  export function __wbg_createView_238c196d0cfdd954(arg0, arg1) {
2288
2308
  const ret = getObject(arg0).createView(getObject(arg1));
2289
2309
  return addHeapObject(ret);
@@ -2983,26 +3003,6 @@ export function __wbg_get_f2ba4265e9e1e12b(arg0, arg1) {
2983
3003
  return isLikeNone(ret) ? 0 : addHeapObject(ret);
2984
3004
  };
2985
3005
 
2986
- export function __wbg_instanceof_GpuCanvasContext_15a09368cfe47ea8(arg0) {
2987
- let result;
2988
- try {
2989
- result = getObject(arg0) instanceof GPUCanvasContext;
2990
- } catch (_) {
2991
- result = false;
2992
- }
2993
- const ret = result;
2994
- return ret;
2995
- };
2996
-
2997
- export function __wbg_configure_e226c3745a43426f(arg0, arg1) {
2998
- getObject(arg0).configure(getObject(arg1));
2999
- };
3000
-
3001
- export function __wbg_getCurrentTexture_c18952d00d5ca291(arg0) {
3002
- const ret = getObject(arg0).getCurrentTexture();
3003
- return addHeapObject(ret);
3004
- };
3005
-
3006
3006
  export function __wbg_getBindGroupLayout_4493a09dd3332cc7(arg0, arg1) {
3007
3007
  const ret = getObject(arg0).getBindGroupLayout(arg1 >>> 0);
3008
3008
  return addHeapObject(ret);
@@ -3339,19 +3339,19 @@ export function __wbg_error_1f4e3e298a7c97f6(arg0) {
3339
3339
  console.error(getObject(arg0));
3340
3340
  };
3341
3341
 
3342
- export function __wbg_warn_7ea11f895a2887a5(arg0, arg1) {
3342
+ export function __wbg_warn_b5dc3e32994cad51(arg0, arg1) {
3343
3343
  console.warn(getStringFromWasm0(arg0, arg1));
3344
3344
  };
3345
3345
 
3346
- export function __wbg_info_595b74ea304ff27a(arg0, arg1) {
3346
+ export function __wbg_info_5293f6586c89f1a6(arg0, arg1) {
3347
3347
  console.info(getStringFromWasm0(arg0, arg1));
3348
3348
  };
3349
3349
 
3350
- export function __wbg_debug_38ff192dc6027fbe(arg0, arg1) {
3350
+ export function __wbg_debug_48a13a036851c48f(arg0, arg1) {
3351
3351
  console.debug(getStringFromWasm0(arg0, arg1));
3352
3352
  };
3353
3353
 
3354
- export function __wbg_trace_ad837c899ba9198e(arg0, arg1) {
3354
+ export function __wbg_trace_1dd764f9a878b5db(arg0, arg1) {
3355
3355
  console.trace(getStringFromWasm0(arg0, arg1));
3356
3356
  };
3357
3357
 
@@ -3716,72 +3716,72 @@ export function __wbindgen_memory() {
3716
3716
  return addHeapObject(ret);
3717
3717
  };
3718
3718
 
3719
- export function __wbindgen_closure_wrapper779(arg0, arg1, arg2) {
3720
- const ret = makeMutClosure(arg0, arg1, 3, __wbg_adapter_32);
3719
+ export function __wbindgen_closure_wrapper2451(arg0, arg1, arg2) {
3720
+ const ret = makeMutClosure(arg0, arg1, 690, __wbg_adapter_32);
3721
3721
  return addHeapObject(ret);
3722
3722
  };
3723
3723
 
3724
- export function __wbindgen_closure_wrapper3063(arg0, arg1, arg2) {
3725
- const ret = makeMutClosure(arg0, arg1, 853, __wbg_adapter_35);
3724
+ export function __wbindgen_closure_wrapper3070(arg0, arg1, arg2) {
3725
+ const ret = makeMutClosure(arg0, arg1, 856, __wbg_adapter_35);
3726
3726
  return addHeapObject(ret);
3727
3727
  };
3728
3728
 
3729
- export function __wbindgen_closure_wrapper6912(arg0, arg1, arg2) {
3730
- const ret = makeMutClosure(arg0, arg1, 2188, __wbg_adapter_38);
3729
+ export function __wbindgen_closure_wrapper6955(arg0, arg1, arg2) {
3730
+ const ret = makeMutClosure(arg0, arg1, 2206, __wbg_adapter_38);
3731
3731
  return addHeapObject(ret);
3732
3732
  };
3733
3733
 
3734
- export function __wbindgen_closure_wrapper6914(arg0, arg1, arg2) {
3735
- const ret = makeMutClosure(arg0, arg1, 2188, __wbg_adapter_41);
3734
+ export function __wbindgen_closure_wrapper6957(arg0, arg1, arg2) {
3735
+ const ret = makeMutClosure(arg0, arg1, 2206, __wbg_adapter_41);
3736
3736
  return addHeapObject(ret);
3737
3737
  };
3738
3738
 
3739
- export function __wbindgen_closure_wrapper6916(arg0, arg1, arg2) {
3740
- const ret = makeMutClosure(arg0, arg1, 2188, __wbg_adapter_44);
3739
+ export function __wbindgen_closure_wrapper6959(arg0, arg1, arg2) {
3740
+ const ret = makeMutClosure(arg0, arg1, 2206, __wbg_adapter_44);
3741
3741
  return addHeapObject(ret);
3742
3742
  };
3743
3743
 
3744
- export function __wbindgen_closure_wrapper14940(arg0, arg1, arg2) {
3745
- const ret = makeMutClosure(arg0, arg1, 5226, __wbg_adapter_47);
3744
+ export function __wbindgen_closure_wrapper14965(arg0, arg1, arg2) {
3745
+ const ret = makeMutClosure(arg0, arg1, 5229, __wbg_adapter_47);
3746
3746
  return addHeapObject(ret);
3747
3747
  };
3748
3748
 
3749
- export function __wbindgen_closure_wrapper14942(arg0, arg1, arg2) {
3750
- const ret = makeMutClosure(arg0, arg1, 5226, __wbg_adapter_47);
3749
+ export function __wbindgen_closure_wrapper14967(arg0, arg1, arg2) {
3750
+ const ret = makeMutClosure(arg0, arg1, 5229, __wbg_adapter_47);
3751
3751
  return addHeapObject(ret);
3752
3752
  };
3753
3753
 
3754
- export function __wbindgen_closure_wrapper21476(arg0, arg1, arg2) {
3755
- const ret = makeMutClosure(arg0, arg1, 7811, __wbg_adapter_52);
3754
+ export function __wbindgen_closure_wrapper21499(arg0, arg1, arg2) {
3755
+ const ret = makeMutClosure(arg0, arg1, 7813, __wbg_adapter_52);
3756
3756
  return addHeapObject(ret);
3757
3757
  };
3758
3758
 
3759
- export function __wbindgen_closure_wrapper21478(arg0, arg1, arg2) {
3760
- const ret = makeMutClosure(arg0, arg1, 7811, __wbg_adapter_52);
3759
+ export function __wbindgen_closure_wrapper21501(arg0, arg1, arg2) {
3760
+ const ret = makeMutClosure(arg0, arg1, 7813, __wbg_adapter_52);
3761
3761
  return addHeapObject(ret);
3762
3762
  };
3763
3763
 
3764
- export function __wbindgen_closure_wrapper21480(arg0, arg1, arg2) {
3765
- const ret = makeMutClosure(arg0, arg1, 7811, __wbg_adapter_52);
3764
+ export function __wbindgen_closure_wrapper21503(arg0, arg1, arg2) {
3765
+ const ret = makeMutClosure(arg0, arg1, 7813, __wbg_adapter_52);
3766
3766
  return addHeapObject(ret);
3767
3767
  };
3768
3768
 
3769
- export function __wbindgen_closure_wrapper21482(arg0, arg1, arg2) {
3770
- const ret = makeMutClosure(arg0, arg1, 7811, __wbg_adapter_52);
3769
+ export function __wbindgen_closure_wrapper21505(arg0, arg1, arg2) {
3770
+ const ret = makeMutClosure(arg0, arg1, 7813, __wbg_adapter_52);
3771
3771
  return addHeapObject(ret);
3772
3772
  };
3773
3773
 
3774
- export function __wbindgen_closure_wrapper26095(arg0, arg1, arg2) {
3774
+ export function __wbindgen_closure_wrapper26117(arg0, arg1, arg2) {
3775
3775
  const ret = makeMutClosure(arg0, arg1, 9420, __wbg_adapter_61);
3776
3776
  return addHeapObject(ret);
3777
3777
  };
3778
3778
 
3779
- export function __wbindgen_closure_wrapper27208(arg0, arg1, arg2) {
3779
+ export function __wbindgen_closure_wrapper27230(arg0, arg1, arg2) {
3780
3780
  const ret = makeMutClosure(arg0, arg1, 10069, __wbg_adapter_64);
3781
3781
  return addHeapObject(ret);
3782
3782
  };
3783
3783
 
3784
- export function __wbindgen_closure_wrapper27245(arg0, arg1, arg2) {
3784
+ export function __wbindgen_closure_wrapper27267(arg0, arg1, arg2) {
3785
3785
  const ret = makeMutClosure(arg0, arg1, 10075, __wbg_adapter_67);
3786
3786
  return addHeapObject(ret);
3787
3787
  };
package/re_viewer_bg.wasm CHANGED
Binary file
@@ -76,17 +76,17 @@ export function intounderlyingsink_abort(a: number, b: number): number;
76
76
  export function __wbindgen_malloc(a: number, b: number): number;
77
77
  export function __wbindgen_realloc(a: number, b: number, c: number, d: number): number;
78
78
  export const __wbindgen_export_2: WebAssembly.Table;
79
- export function wasm_bindgen__convert__closures__invoke0_mut__h7a88cb66f4895db6(a: number, b: number): void;
80
- export function _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h07d706503689bf39(a: number, b: number): void;
81
- export function _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h4baafeabde40570c(a: number, b: number): void;
82
- export function _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h1c57d1e9474fd02b(a: number, b: number, c: number): void;
79
+ export function wasm_bindgen__convert__closures__invoke0_mut__hb613c0750316bc0a(a: number, b: number): void;
80
+ export function _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h46958959de1b1156(a: number, b: number): void;
81
+ export function _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h2c7be37f5c824b88(a: number, b: number): void;
83
82
  export function __wbindgen_add_to_stack_pointer(a: number): number;
84
- export function _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h01bbc91e4b840a59(a: number, b: number, c: number): void;
85
- export function wasm_bindgen__convert__closures__invoke1_mut__h25e9ecc499155f63(a: number, b: number, c: number): void;
86
- export function wasm_bindgen__convert__closures__invoke1_mut__h1b3ceebe837742e9(a: number, b: number, c: number): void;
87
- export function wasm_bindgen__convert__closures__invoke1_mut__hab76d8ea0dc32f42(a: number, b: number, c: number): void;
88
- export function wasm_bindgen__convert__closures__invoke1_mut__hb1d106b0b2b5ed5e(a: number, b: number, c: number): void;
89
- export function wasm_bindgen__convert__closures__invoke1_mut__h523a5392ddd4fbfe(a: number, b: number, c: number): void;
83
+ export function _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h0dbc5b7f8efe765a(a: number, b: number, c: number): void;
84
+ export function _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h9282375b9949f658(a: number, b: number, c: number): void;
85
+ export function wasm_bindgen__convert__closures__invoke1_mut__h3cae7188acf295ab(a: number, b: number, c: number): void;
86
+ export function wasm_bindgen__convert__closures__invoke1_mut__h706870e7dcd8d5d2(a: number, b: number, c: number): void;
87
+ export function wasm_bindgen__convert__closures__invoke1_mut__hd16f88bfd653b181(a: number, b: number, c: number): void;
88
+ export function wasm_bindgen__convert__closures__invoke1_mut__hbcb665b093f6c4f0(a: number, b: number, c: number): void;
89
+ export function wasm_bindgen__convert__closures__invoke1_mut__h156b5c97f2d9e5f9(a: number, b: number, c: number): void;
90
90
  export function __wbindgen_free(a: number, b: number, c: number): void;
91
91
  export function __wbindgen_exn_store(a: number): void;
92
- export function wasm_bindgen__convert__closures__invoke2_mut__h700cd2dd85a51a5a(a: number, b: number, c: number, d: number): void;
92
+ export function wasm_bindgen__convert__closures__invoke2_mut__h65eec356cd8cd669(a: number, b: number, c: number, d: number): void;