trame icon indicating copy to clipboard operation
trame copied to clipboard

Trame lets you weave various components and technologies into a Web Application solely written in Python.

Results 22 trame issues
Sort by recently updated
recently updated
newest added

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.5.2 to 4.5.3. Changelog Sourced from vite's changelog. 4.5.3 (2024-03-24) fix: fs.deny with globs with directories (#16250) (96a7f3a), closes #16250 Commits aac695e release: v4.5.3 96a7f3a fix: fs.deny...

dependencies

I tried using the vtkCompositePolyDataMapper to show a pyvista.MultiBlock Object in VtkLocalView, but it reported a JavaScript error. ``` Can not forward events without a current renderer on the interactor...

**Describe the bug** If I have a set of actors added to a renderer, and I attempt to remove them all, all but the last of them is removed. This...

available-with-wasm

**Describe the bug** Trying to use `SetInteractorStyle` always seems to fail, I always get `vtkInteractorStyleTrackballCamera`. Specifically I can't use a custom subclass. **To Reproduce** The script below was taken from...

available-with-wasm

Hi, This is a repost of a another issue available here: https://github.com/Kitware/trame-router/issues/4 since I'm not sure what the best repo for it is. **Describe the bug** Some HtmlElements don't show...

This PR adds type hints to the `trame/app` subpackage.

I found a bug with exporting the plotter to an HTML file ```self.plotter.export_html()```. When I open it in a browser, it works normally. However, when I open trame in desktop...

I'd like to load different files based on the query string Modiefied part of https://github.com/Kitware/trame/blob/master/trame/tools/serve.py : ``` async def _index_handler(self, request): if request.query_string: print(request.query) return aiohttp.web.HTTPFound(f"index.html?{request.query_string}") return aiohttp.web.HTTPFound("index.html") async def...

**Describe the bug** Vtk Text Actors won't show up when using "Local" rendering method. **To Reproduce** Steps to reproduce the behavior: 1. run the python code 2. switch between "local"...

**Describe the bug** Using `isinstance` on a `@TrameApp()` decorated class throws a `TypeError`. ``` TypeError: isinstance() arg 2 must be a type, a tuple of types, or a union ```...