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 Given the following code: ```js ``` Solid generates the following SSR code: ```js ssrElement('a', {...props}, undefined, true) ``` which has a problem: spreading evaluates all getters,...

bug

I just want to render without containers. First of all, this is the design, if there is a better way, that's fine. # Summary Before. - We have to render...

### Describe the bug I've been using SolidJS together with Deno successfully, I just use hyper DOM expressions instead of JSX and I think I even prefer it like this....

### Describe the bug Hi, I've been trying to build SolidJS today, but can't seem to get it to work. Following the guidelines in CONTRIBUTING.md, I run `pnpm install` and...

dependencies

### Describe the bug Hi all. I am facing a problem after upgrading to SolidJS 1.5 (https://github.com/swordev/suid/issues/92) and I don't know if this behavior change is documented. ### Your Example...

question
documentation

### Describe the bug Conditional refs within a `` block do not work as expected: ``` {(num: number) => ( num === 1 ? console.log(oneRef) : console.log(twoRef) } > number:...

enhancement

### Describe the bug Currently Solid is not importable via JSPM or UNPKG. This also happens to any packages using a similar package layout as Solid.js or [Preact](https://github.com/preactjs/preact/issues/3665). These two...

enhancement

### Update This issue originally suggested that circular references in stores triggered loss of proxying, but after further investigation by @maciek50322 , it turns out that the issue is when...

## Summary It is possible for `cleanNode` to be called recursively. This PR adds a simple `isCleaning` lock to ensure that `cleanNode` isn't called on the same node twice. Minimal...

### Describe the bug SVG supports the definition of namespace prefixes, but these attributes are missing in SolidJS, as indicated by the error in the title. ### Your Example Website...

typescript