Thomas Brandého

Results 151 comments of Thomas Brandého

As of a recent PR, we're not using black anymore (aside for .pyi files, but they're not edited manually anyway), but `ruff-format` instead. Run `pre-commit` on your PR to make...

> I think i'm still unclear on the _why_ for this change. @picklelo do we really want to override the radix default link behavior? > > In my sample app,...

I see. Maybe we could use a prop `label=` instead of passing the text as children? Or even better would be if we could pass a variable to the checkbox,...

Currently the method `get_delta()` called in `process()` does not get the computed var of children or siblings state.

I see. The usecase where I ran into that problem: I have a `class FilterState(MainState)` that is shared between different pages to display different values. Each page will have something...

@HellAmbro I think the way you are doing it is correct. However, on_load event chain are still broken (the function execute, but not the one chained (in your case `pc.redirect`)...

Using a print statement in the render function will be executed during compilation time. This means the value that actually show up is the name of the variable used by...

pc.redirect is an event (as denoted by the EventSpec type that is returned by your page_not_found() method. It's normal your code does not work. What you want to do is...

We can add it to an `others` folder for now.