@rerun-io/web-viewer 0.13.0-rc.1 → 0.13.0-rc.3
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 +1 -1
- package/package.json +1 -1
- package/re_viewer_bg.js +54 -54
- package/re_viewer_bg.wasm +0 -0
- package/re_viewer_bg.wasm.d.ts +6 -6
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.
|
|
44
|
+
- A hosted `.rrd` file, such as <https://app.rerun.io/version/0.13.0-rc.3/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/package.json
CHANGED
package/re_viewer_bg.js
CHANGED
|
@@ -222,7 +222,7 @@ function makeMutClosure(arg0, arg1, dtor, f) {
|
|
|
222
222
|
return real;
|
|
223
223
|
}
|
|
224
224
|
function __wbg_adapter_32(arg0, arg1) {
|
|
225
|
-
wasm.
|
|
225
|
+
wasm.wasm_bindgen__convert__closures__invoke0_mut__h7a88cb66f4895db6(arg0, arg1);
|
|
226
226
|
}
|
|
227
227
|
|
|
228
228
|
function __wbg_adapter_35(arg0, arg1) {
|
|
@@ -230,13 +230,17 @@ function __wbg_adapter_35(arg0, arg1) {
|
|
|
230
230
|
}
|
|
231
231
|
|
|
232
232
|
function __wbg_adapter_38(arg0, arg1) {
|
|
233
|
-
wasm.
|
|
233
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h4baafeabde40570c(arg0, arg1);
|
|
234
234
|
}
|
|
235
235
|
|
|
236
|
-
function __wbg_adapter_41(arg0, arg1) {
|
|
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) {
|
|
237
241
|
try {
|
|
238
242
|
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
239
|
-
wasm.
|
|
243
|
+
wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h01bbc91e4b840a59(retptr, arg0, arg1);
|
|
240
244
|
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
241
245
|
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
242
246
|
if (r1) {
|
|
@@ -247,20 +251,16 @@ function __wbg_adapter_41(arg0, arg1) {
|
|
|
247
251
|
}
|
|
248
252
|
}
|
|
249
253
|
|
|
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__h7befa32b8ae66b11(arg0, arg1, addHeapObject(arg2));
|
|
252
|
-
}
|
|
253
|
-
|
|
254
254
|
function __wbg_adapter_47(arg0, arg1, arg2) {
|
|
255
255
|
wasm.wasm_bindgen__convert__closures__invoke1_mut__h25e9ecc499155f63(arg0, arg1, addHeapObject(arg2));
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
function __wbg_adapter_52(arg0, arg1, arg2) {
|
|
259
|
-
wasm.
|
|
259
|
+
wasm.wasm_bindgen__convert__closures__invoke1_mut__h1b3ceebe837742e9(arg0, arg1, addHeapObject(arg2));
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
function __wbg_adapter_61(arg0, arg1, arg2) {
|
|
263
|
-
wasm.
|
|
263
|
+
wasm.wasm_bindgen__convert__closures__invoke1_mut__hab76d8ea0dc32f42(arg0, arg1, addHeapObject(arg2));
|
|
264
264
|
}
|
|
265
265
|
|
|
266
266
|
function __wbg_adapter_64(arg0, arg1, arg2) {
|
|
@@ -574,6 +574,16 @@ 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
|
+
|
|
577
587
|
export function __wbindgen_object_drop_ref(arg0) {
|
|
578
588
|
takeObject(arg0);
|
|
579
589
|
};
|
|
@@ -588,16 +598,6 @@ export function __wbindgen_string_new(arg0, arg1) {
|
|
|
588
598
|
return addHeapObject(ret);
|
|
589
599
|
};
|
|
590
600
|
|
|
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;
|
|
@@ -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
|
|
642
|
+
export function __wbg_new_edb6ada93e0524df() {
|
|
643
643
|
const ret = new Error();
|
|
644
644
|
return addHeapObject(ret);
|
|
645
645
|
};
|
|
646
646
|
|
|
647
|
-
export function
|
|
647
|
+
export function __wbg_stack_eb94eb0a17488c83(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;
|
|
@@ -3339,19 +3339,19 @@ export function __wbg_error_1f4e3e298a7c97f6(arg0) {
|
|
|
3339
3339
|
console.error(getObject(arg0));
|
|
3340
3340
|
};
|
|
3341
3341
|
|
|
3342
|
-
export function
|
|
3342
|
+
export function __wbg_warn_7ea11f895a2887a5(arg0, arg1) {
|
|
3343
3343
|
console.warn(getStringFromWasm0(arg0, arg1));
|
|
3344
3344
|
};
|
|
3345
3345
|
|
|
3346
|
-
export function
|
|
3346
|
+
export function __wbg_info_595b74ea304ff27a(arg0, arg1) {
|
|
3347
3347
|
console.info(getStringFromWasm0(arg0, arg1));
|
|
3348
3348
|
};
|
|
3349
3349
|
|
|
3350
|
-
export function
|
|
3350
|
+
export function __wbg_debug_38ff192dc6027fbe(arg0, arg1) {
|
|
3351
3351
|
console.debug(getStringFromWasm0(arg0, arg1));
|
|
3352
3352
|
};
|
|
3353
3353
|
|
|
3354
|
-
export function
|
|
3354
|
+
export function __wbg_trace_ad837c899ba9198e(arg0, arg1) {
|
|
3355
3355
|
console.trace(getStringFromWasm0(arg0, arg1));
|
|
3356
3356
|
};
|
|
3357
3357
|
|
|
@@ -3716,73 +3716,73 @@ export function __wbindgen_memory() {
|
|
|
3716
3716
|
return addHeapObject(ret);
|
|
3717
3717
|
};
|
|
3718
3718
|
|
|
3719
|
-
export function
|
|
3720
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3719
|
+
export function __wbindgen_closure_wrapper779(arg0, arg1, arg2) {
|
|
3720
|
+
const ret = makeMutClosure(arg0, arg1, 3, __wbg_adapter_32);
|
|
3721
3721
|
return addHeapObject(ret);
|
|
3722
3722
|
};
|
|
3723
3723
|
|
|
3724
|
-
export function
|
|
3725
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3724
|
+
export function __wbindgen_closure_wrapper3063(arg0, arg1, arg2) {
|
|
3725
|
+
const ret = makeMutClosure(arg0, arg1, 853, __wbg_adapter_35);
|
|
3726
3726
|
return addHeapObject(ret);
|
|
3727
3727
|
};
|
|
3728
3728
|
|
|
3729
|
-
export function
|
|
3730
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3729
|
+
export function __wbindgen_closure_wrapper6912(arg0, arg1, arg2) {
|
|
3730
|
+
const ret = makeMutClosure(arg0, arg1, 2188, __wbg_adapter_38);
|
|
3731
3731
|
return addHeapObject(ret);
|
|
3732
3732
|
};
|
|
3733
3733
|
|
|
3734
|
-
export function
|
|
3735
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3734
|
+
export function __wbindgen_closure_wrapper6914(arg0, arg1, arg2) {
|
|
3735
|
+
const ret = makeMutClosure(arg0, arg1, 2188, __wbg_adapter_41);
|
|
3736
3736
|
return addHeapObject(ret);
|
|
3737
3737
|
};
|
|
3738
3738
|
|
|
3739
|
-
export function
|
|
3740
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3739
|
+
export function __wbindgen_closure_wrapper6916(arg0, arg1, arg2) {
|
|
3740
|
+
const ret = makeMutClosure(arg0, arg1, 2188, __wbg_adapter_44);
|
|
3741
3741
|
return addHeapObject(ret);
|
|
3742
3742
|
};
|
|
3743
3743
|
|
|
3744
|
-
export function
|
|
3745
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3744
|
+
export function __wbindgen_closure_wrapper14940(arg0, arg1, arg2) {
|
|
3745
|
+
const ret = makeMutClosure(arg0, arg1, 5226, __wbg_adapter_47);
|
|
3746
3746
|
return addHeapObject(ret);
|
|
3747
3747
|
};
|
|
3748
3748
|
|
|
3749
|
-
export function
|
|
3750
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3749
|
+
export function __wbindgen_closure_wrapper14942(arg0, arg1, arg2) {
|
|
3750
|
+
const ret = makeMutClosure(arg0, arg1, 5226, __wbg_adapter_47);
|
|
3751
3751
|
return addHeapObject(ret);
|
|
3752
3752
|
};
|
|
3753
3753
|
|
|
3754
|
-
export function
|
|
3755
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3754
|
+
export function __wbindgen_closure_wrapper21476(arg0, arg1, arg2) {
|
|
3755
|
+
const ret = makeMutClosure(arg0, arg1, 7811, __wbg_adapter_52);
|
|
3756
3756
|
return addHeapObject(ret);
|
|
3757
3757
|
};
|
|
3758
3758
|
|
|
3759
|
-
export function
|
|
3760
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3759
|
+
export function __wbindgen_closure_wrapper21478(arg0, arg1, arg2) {
|
|
3760
|
+
const ret = makeMutClosure(arg0, arg1, 7811, __wbg_adapter_52);
|
|
3761
3761
|
return addHeapObject(ret);
|
|
3762
3762
|
};
|
|
3763
3763
|
|
|
3764
|
-
export function
|
|
3765
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3764
|
+
export function __wbindgen_closure_wrapper21480(arg0, arg1, arg2) {
|
|
3765
|
+
const ret = makeMutClosure(arg0, arg1, 7811, __wbg_adapter_52);
|
|
3766
3766
|
return addHeapObject(ret);
|
|
3767
3767
|
};
|
|
3768
3768
|
|
|
3769
|
-
export function
|
|
3770
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3769
|
+
export function __wbindgen_closure_wrapper21482(arg0, arg1, arg2) {
|
|
3770
|
+
const ret = makeMutClosure(arg0, arg1, 7811, __wbg_adapter_52);
|
|
3771
3771
|
return addHeapObject(ret);
|
|
3772
3772
|
};
|
|
3773
3773
|
|
|
3774
|
-
export function
|
|
3775
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3774
|
+
export function __wbindgen_closure_wrapper26095(arg0, arg1, arg2) {
|
|
3775
|
+
const ret = makeMutClosure(arg0, arg1, 9420, __wbg_adapter_61);
|
|
3776
3776
|
return addHeapObject(ret);
|
|
3777
3777
|
};
|
|
3778
3778
|
|
|
3779
|
-
export function
|
|
3780
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3779
|
+
export function __wbindgen_closure_wrapper27208(arg0, arg1, arg2) {
|
|
3780
|
+
const ret = makeMutClosure(arg0, arg1, 10069, __wbg_adapter_64);
|
|
3781
3781
|
return addHeapObject(ret);
|
|
3782
3782
|
};
|
|
3783
3783
|
|
|
3784
|
-
export function
|
|
3785
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
3784
|
+
export function __wbindgen_closure_wrapper27245(arg0, arg1, arg2) {
|
|
3785
|
+
const ret = makeMutClosure(arg0, arg1, 10075, __wbg_adapter_67);
|
|
3786
3786
|
return addHeapObject(ret);
|
|
3787
3787
|
};
|
|
3788
3788
|
|
package/re_viewer_bg.wasm
CHANGED
|
Binary file
|
package/re_viewer_bg.wasm.d.ts
CHANGED
|
@@ -76,15 +76,15 @@ 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
|
|
79
|
+
export function wasm_bindgen__convert__closures__invoke0_mut__h7a88cb66f4895db6(a: number, b: number): void;
|
|
80
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
|
|
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;
|
|
82
83
|
export function __wbindgen_add_to_stack_pointer(a: number): number;
|
|
83
|
-
export function
|
|
84
|
-
export function _dyn_core__ops__function__FnMut__A____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h7befa32b8ae66b11(a: number, b: number, c: number): void;
|
|
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
85
|
export function wasm_bindgen__convert__closures__invoke1_mut__h25e9ecc499155f63(a: number, b: number, c: number): void;
|
|
86
|
-
export function
|
|
87
|
-
export function
|
|
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
88
|
export function wasm_bindgen__convert__closures__invoke1_mut__hb1d106b0b2b5ed5e(a: number, b: number, c: number): void;
|
|
89
89
|
export function wasm_bindgen__convert__closures__invoke1_mut__h523a5392ddd4fbfe(a: number, b: number, c: number): void;
|
|
90
90
|
export function __wbindgen_free(a: number, b: number, c: number): void;
|