Thomas Brandého
Thomas Brandého
**Describe the bug** When using a catchall route `"path/[...slug]"`, the slug ComputedVar is correctly created, but it can't be passed to the `pc.foreach` component, because it is detected as a...
Earlier today I was trying to set my CSS to do something basic, aka defining a color for `hover` on one component. However, the doc page about styling doesn't reference...
**Describe the bug** When you pass the wrong kind of argument to an event trigger (var instead of event handler), it result in a runtime JS error instead of compilation...
**Describe the bug** When using `pc.foreach()` with a list of `str` as iterable input, the BaseVar that you obtain for rendering does not possess the correct type **To Reproduce** Steps...
**Describe the bug** Trying to use event chains, I ran into a couple problems: **To Reproduce** Problems encountered: 1. `partial` work if I'm using a single event handler, but not...
## Description ### Changes: - Small refactoring in the hydrate middleware - Add some security check to Icon component (to prevent some JS error being thrown) - Throw error if...
## Description: Add a new classmethod `add_var` to `pc.State` allowing to add dynamically a var to a State, that can then be used in the same way as a var...
**Describe the bug** Changing a var in one substate does not trigger computed vars in other substate **To Reproduce** Assuming we have the following states: ``` class State(pc.State): my_var: str...
For development and testing purpose, it would be really nice to provide a version of pynecone that is not guaranteed to be stable but contains the latest commits. Something like...
**Describe the bug** If I have 2 checkboxes using the same Var `State.opened`, checking one should check the other, but it is currently not the case. (I used 2 checkboxes...