solid
solid copied to clipboard
A declarative, efficient, and flexible JavaScript library for building user interfaces.
Babel is not installed as a dev dependency
### Describe the bug An effect which calls dispose of its owning root will continue to fire if `onCleanup` in the same root accesses something reactive. ### Your Example Website...
### Describe the bug I was experimenting with rendering props and found a strange behaviour. When nesting a component with a render prop inside the `` component, Solid goes into...
### Describe the bug A TypeScript typing error. The title described the issue in full. ### Your Example Website or App https://stackblitz.com/edit/vitejs-vite-qztpd4?file=src/App.tsx ### Steps to Reproduce the Bug or Issue...
### Describe the bug I've just implemented a custom renderer to [GTK4](https://gtk.org/), using solid-js/universal. It works pretty well, even though it requires some little workarounds. Gtk.Box, which is one of...
### Describe the bug Reactivity is tracked on the ref callback of `` element. The element re-renders, when signal count() changes. ```js function functionWithReactiveSideEffects(){ count() // read signal } ```...
### Describe the bug I have tried enabling the scheduling in the solid implementation of the last UI benchmark: https://github.com/uhyo/ui-library-benchmark. ```ts import { enableScheduling } from "solid-js" enableScheduling() ``` But...
**Questions:** How should JSX attributes `foo` and `foo={true}` behave for an HTML element, as in `` or ``? Should the behavior differ for components and/or spreads? **Current behavior in Solid:**...
### Describe the bug Like #1007, `createResource` also does not correctly handle falsy errors. ### Your Example Website or App https://playground.solidjs.com/?hash=-1153565294&version=1.4.1 ### Steps to Reproduce the Bug or Issue -...