referenceError _$HY is not defined, on 0.3.7 prod, but not on 0.2.32
How do i create library?
Typing nested routeData
createSelection() primitive odd behaviour in contentEditable div's
What's the most idiomatic way of forwarding an onClick event handler?
Button component that wraps a <button>, what's the best way to forward the onClick handler? Seems handlers can be functions or tuples. When passing the prop directly to the button,
<button onClick={props.onClick}>...</button>
<button onClick={props.onClick}>...</button>
Load more button
How is the type of the onclick event ?
Loading CSS issue (FOUC) on optional parameter

Any advantages by tanstack libraries for solidjs users?
Setting a deeply nested store property changes produces new reference for property's parent?
createStore({ a: { b: { c: "end" } } });, a createEffect that references either the store or store.a will not re-run when c is changed, but will re-run when using store.a.b or store.a.b.c..
It was surprising that the effect ran when referencing store.a.b . The modification to c is done with setStore("a", "b", "c", "rand" + Math.random());....Can I avoid the getter while keeping the reactivity?
const [organization] = useSelectedOrganization();
const formatMoney = () => moneyFormatter(organization);
const [organization] = useSelectedOrganization();
const formatMoney = () => moneyFormatter(organization);
Combining Solid store with query engine?
ESLint error: ref is never reassigned, use const
let myForm: HTMLFormElement as unused, despite it being passed to a ref prop later on in the code,
```tsx
function MyComponent() {
let myForm: HTMLFormElement = undefined;...children.forEach typescript problem
Solid Router with Suspense does not fire signals
lazy. The Suspense works properly and a loading message is displayed when the page is initially loading. However, there are some cases where signals do not fire during page navigation. The minimum reproduction I got is at https://gist.github.com/iczero/46eff94d6f8e6dbbf19c5254969759ed. The first setProgress does not fire, but the second one does. If the first one is wrapped in queueMicrotask, it does fire. If the Suspense outside the router is removed, the issue goes away.
Is this intended behavior? Is there a better way of showing a fallback while the router is loading without wrapping the router in Suspense?...Using pending & error states with createRouteAction
handleSubmit function that, assuming the post request goes through, a user will be navigated to the next page. My function looks like the following:
```
const handleSumbit = async() => {
await doThisAction()...direct link?

Dependency on `window`?
babel-preset-solid and for some reason the generated output has a dependency on window:
```function delegateEvents(eventNames, document = window.document) {
const e = document[$$EVENTS] || (document[$$EVENTS] = new Set());
for (let i = 0, l = eventNames.length; i < l; i++) {...Issue with reactivity when using mergeProps
[Select] props.selectedOption {id: '2', name: 'bar'}I expected
undefined and if I remove the mergeProps call, the selected option will be undefined as expected.
(note that the code itself doesn't make much sense but I removed as much code as possible from the real app)...Regular Solid - the Correct way to use createResource?
createResource to get my user data.
I'm then just updating another user signal with data returned from the createResource. I'm doing this because this user signal is used through out the app... so when it's populated the correct data is displayed.
But this has me thinking... why not just use regular fetch in an onMount to get the data and update the user signal....