voby
voby copied to clipboard
A high-performance framework with fine-grained observable-based reactivity for building rich applications.
Once we get the website up and running some proper documentation should be hosted in it.
I tested the following type signature, and it correctly inferred the list of variable parameter types, so maybe we can use it to simplify the signature of the useResolved function....
Reference: https://github.com/solidjs/solid/issues/2048
Here's a template for a `Row`: ``` export const Row = template( (props: { style?: JSX.StyleProperties; children?: JSX.Children }) => { props = { ...props, style: { display: "flex", flexDirection:...
Is it possible to implement the `createRenderer` API in solid in voby? This allows voby to be used in a wider range of scenarios.
- One should be able to say which kinda of elements a directive works with. - Inferred types for `createDirective` and `Directive.ref` should be perfect.
UIBench
@fabiospampinato would be interesting to see how voby does on https://localvoid.github.io/uibench/ (by author of https://github.com/localvoid/ivi) could reveal some more optimization nuggets!
In order for KeepAlive to work perfectly with the context it has to get reparented when rendered somewhere else, and the context has to be updated, which is not really...
Reading a memo that reads a resource could not trigger Suspense properly today, if the memo already executed and calling it just returns the old value.