solid icon indicating copy to clipboard operation
solid copied to clipboard

A declarative, efficient, and flexible JavaScript library for building user interfaces.

Results 213 solid issues
Sort by recently updated
recently updated
newest added

### Describe the bug `createAsync`/`createResource` mixes results when run server side, when component has "unstable" execution. due to secondary rerun of the suspended component. and incorrect mapping. ### Your Example...

### Describe the bug I'm creating a DND library on top of dnd-kit/dom and have run into this issue. By nature, sorting libraries use optimistic updates in the DOM tree...

### Describe the bug The follow code generates the type error: ```ts import { createStore } from "solid-js/store"; type defaultStore = { a: boolean; }; const aa = (init: T)...