solid
solid copied to clipboard
A declarative, efficient, and flexible JavaScript library for building user interfaces.
### Describe the bug This causes an error: ```js import html from 'solid-js/html' html` Example ` ``` Error: ``` Uncaught TypeError: Cannot read properties of null (reading 'firstChild') ``` ###...
### Describe the bug When there is a certain attribute such as `//` on an element, ```js html`` ``` it causes `
### Describe the bug The `html` template tag assigns value to the wrong JS properties on HTML elements in some situations. ### Your Example Website or App https://playground.solidjs.com/anonymous/541373a7-092d-4556-b8c7-3ff93caa268e ### Steps...
### Describe the bug This JSX code, ```js function Example() { return inspect element } ``` outputs the attribute `foo="123"` to the DOM, as expected. [JSX playground example](https://playground.solidjs.com/anonymous/4ea1522c-e8c7-434c-b0d5-5943325e58d2) This `html`...
### Describe the bug I have this component: ```jsx function Div(props) { return ( ) } ``` And I use it like this: ```jsx console.log('id', el.id)}>Div ``` ### Your Example...
### Describe the bug When I import `solid-js/html` as an ES module from Node.js, I get the following error: ``` SyntaxError: The requested module 'solid-js/web' does not provide an export...
### Describe the bug I'm using the `Portal` component for a toast element where I noticed that the wrapper `div` element is messing up the styles of the elements. I...
### Describe the bug When using solid-js with tagged template literals (using the html tag from solid-js/html), components that contains SVG fragments do not render when added in the context...
### Describe the bug It appears that the timing of the Hydration Script placement in Astro doesn't work in all cases see: https://github.com/solidjs/solid/issues/1934#issuecomment-1786062976 Opening a separate issue to address this...
### Describe the bug The syntax for creating native event handlers (the ones prefixed with on: ) gives type errors. ### Your Example Website or App https://playground.solidjs.com/anonymous/c04dc47c-bac3-45bb-8114-9d520029b79f ### Steps to...