Transform property on all elements
Context store issue with array
[solved] createEffect signal is Undefined
user is not updating (the output near Profile). The signal does get populated. Clues? Tutorial link with real-world example?
Thanks....
Hydration fails with start-cloudflare-pages
data-hk attributes in the SSR-generated page have a single number (e.g. data-hk="1", data-hk="2", ..., data-hk="88"), unlike the dev mode ssr where I get an hierarchical value such as 0-0-0-0-0-0-0-0-0-1-0-0-0-0-0-0-0-2-0-1-1-4-0-1-1-4-0-1-0-1-0 ).
Seems like start-cloudflare-pages is unable to track the hierarchy while rendering the SSR page. Any pointers how to further debug this?...client-side solid-router prepends every relative link with hash, even when not desired
Passing signal from one template's function to a different template function
createSignal() in header.jsx how can I use that value in footer.jsx
Any pointers would be appreciated....Monorepo error with SolidStart `__vite_ssr_import_0__.template is not a function`
undefined context for dynamically added component
success method via context. Users can pass in any components as the first param of the success method to be displayed inside a toast.
Users can use ToastBody as the first param, which will contain a close button. The close button will close the toast via onClose method exposed in the context.
...Do we have an ExtractProps helper?
Property 'pathLength' does not exist on type 'CircleSVGAttributes<SVGCircleElement>'
pathLength property but I get the TS error above, not sure if the property is missing in the types or what
```
<circle
cx="50"...Events (oninput on keyup) stopped working?
import { createSignal } from "solid-js";export default function FormExample() { const [value, setValue] = createSignal(""); function handleInput(e: Event) { console.log("WTF"); const target = e.target as HTMLInputElement; setValue(target.value); } return ( <div> <div> The value is {value()}</div> <input type="text" oninput={handleInput} /> </div> );}
import { createSignal } from "solid-js";export default function FormExample() { const [value, setValue] = createSignal(""); function handleInput(e: Event) { console.log("WTF"); const target = e.target as HTMLInputElement; setValue(target.value); } return ( <div> <div> The value is {value()}</div> <input type="text" oninput={handleInput} /> </div> );}
How to add calculated getter in a existing store?
const [store, setStore] = createStore({firstName: "Foo", lastName: "Bar"})using createResource on node
filesystem primitive that abstracts different file systems (virtual on localStorage, typescript-vfs, web filesystem api, web filesystem access api, node, tauri); synchronous file systems return signals on read access, whereas asynchronous file systems are supposed to return resources. Unfortunately, I get an error on node with asynchronous file systems; sharedContext is not defined. Is that correct?Trying to update a value at index in a store array, updates all elements
Redirect to current location from createServerAction$()
looking for better solid solution

Questions on the `owner` of using children() helper inside a context
createStore array containing arrays
Track Variable Changes
`createServerData` with `fetch` is returning `undefined` in `createEffect`