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`
Netlify Fails to accept `dist`
npm run build and created the /dist dir. I drag that dir to netlify and it gives an error (but no error code). This is my first attempt. I searched here, didn't see anything relevant, and followed the directinos on netlify site (https://www.netlify.com/blog/how-to-deploy-solidjs/). "Looks like something went wrong!"
No errors on build npm run build other than css/responsive.css doesn't exist at build time, it will remain unchanged to be resolved at runtime which are in /public/assets
Any suggestions where/how to start my search?...Is there a way to hook into the router's match (client)?
router.location in the <Routes> component? I want to alter the matched route that I rewrote on the server using a middleware.
```tsx
export const Routes = (props: RoutesProps) => {
const router = useRouter();...What to save to database with authjs to preserve privacy?
Cannot reference properties of object stored in a signal after being fetched from API
onMount hook. The signal stores an array of the fetched data. I can reference all top level members of that array, but when I try to reference their properties I get an error.
This only happens for me when I fetch the data from an API. When I pass in the static data via prop or just initialize the signal with the data, it doesn't happen.
A reproduction of the problem is below (and also here: https://playground.solidjs.com/anonymous/cd6419ab-38e5-43c8-846e-44dcc9233896)...`crossOrigin` and `playsInline` types don't work with solid & typescript
tsc --jsx preserve -t es2020 --outDir js --noEmit false on my solidjs site, I get the following compile errors. What gives?
```bash
src/components/MainPlayer.tsx:117:18 - error TS2322: Type '{ children: Element; playsInline: true; }' is not assignable to type 'AudioHTMLAttributes<HTMLAudioElement>'.
Property 'playsInline' does not exist on type 'AudioHTMLAttributes<HTMLAudioElement>'.
...
solid-js reactivity eslint with functions
routeData not being refreshed when navigating
with-auth unused export

Anyone has tested Tauri App with Solid Start ?
Getting accurate scrollWidth is hard
Parent Component createEffect that gets the correct scrollWidth of a div when I console log it. That's great. From here it's not so great. `createEffect(() => { if (data() === 'ready') {...