Mateusz Paprocki
Mateusz Paprocki
> buffers are now a custom class bokeh.core.serialization.Buffer and not a tuple(?) which can be unpacked. Yes, see here https://github.com/bokeh/bokeh/blob/branch-3.0/bokeh/protocol/message.py#L271-L277. I'm wondering if panel really has to go that low-level....
> range no longer working with ColumnDataSource We may restore that as discussed in the referenced issue. I also implemented actual serialization support for range iterators, but actually supporting this...
There is a potential workaround for the "single document" error: ```py doc = Document() doc.add_root(p) doc.add_root(radio) ipw.VBox([ BokehModel(p), ipw.HBox([ BokehModel(radio), label, ]), ]) ``` This way `p` and `radio` will...
Looks similar to this https://github.com/bokeh/bokeh/issues/12069 one, which is easily reproducible in bokeh. I didn't have chance yet to investigate why this happens.
No, it's a secondary issue that was fixed (no more "invalid bbox" messages). The misplaced tick label is still a problem.
It looks like the imported module is resolved relative to pyscript's URL, not the current page's, which is an interesting behavior. The original implementation was only tested against absolute URLs.
I approve the version and agree to 4.
I approve.
We do this coercion in `Text` glyph in bokehjs (for better or worse; I'm not a big supporter of doing so, but this was asked for before). @mosc9575, is there...
Currently grid doesn't respect fixed inner box dimensions at all. I fill fix that, but the result will be as follows:  Currently inner alignment is computed after layout computed...