"The reactive variable 'head' should be wrapped in a function for reactivity."
eslint-plugin-solid means:
The reactive variable 'head' should be wrapped in a function for reactivity. This includes event handler bindings on native elements, which are not reactive like other JSX props.
The reactive variable 'head' should be wrapped in a function for reactivity. This includes event handler bindings on native elements, which are not reactive like other JSX props.
How to create a generic Input when passing prop `class` to override styles?
cva (class-variance-authority) which allows me to create variants.
I want to allow users to pass class to override the input....Waiting for context provider to load before rendering children
How does reactivity works in createStore?
createStore for an Auth service. ...Possible to use routeData outside a component ?
How to update store with arary
Is it possible to have generic children for a generic component?
Components Props and Text
1. How can I add required props? 2. How can I add text to a Component like in the Example?...
invalidateAll
CORS when running solid client from VPS
How to untrack() or on() a props value?
untrack() a props value the way you'd untrack() a signal in a createEffect for example. Since the reactive values in props are wrapped in a getter, it seems impossible to get the Accessor that can be used in untrack() or on().
I suppose I could derive a new Accessor with something like:
```...Setting innerhtml causes error
(e) =>{
setText(e.currentTarget.innerText || "")}
(e) =>{
setText(e.currentTarget.innerText || "")}
Manually refetching server data, causes double request
Any workarounds or guidance for circular dependency warnings?
use:clickOutside not defined
ReferenceError: clickOutside is not defined. What am I missing here? I've added the TS declaration as mentioned in the docs here https://www.solidjs.com/docs/latest/api#use___ . My linter is complaining but I don't think it would have any impact on the solid compilation anyway?Is it possible to create fully functional component without JSX/TSX syntax?
Typescript type for generic html props passthrough?
React.HTMLProps option. Is there recommended approach?Don't send component logic to client conditionally on data?
Adding aws-amplify libs adds 5s each time I change a line of code
"aws-amplify": "^5.0.15", to my project, as well as
```
{
find: "./runtimeConfig",...Component is not updated when prop is changed
<ShowDocument documentId={showDoc()} onClose={closePanel} /> my issues is that when signal showDoc() in the prop "documentId" is updated the component ShowDocument is not updated, and will continue to show what was there when it was first rendered.
```
const ShowDocument = (props: { documentId: string | undefined; onClose: () => void }) => {
console.log("ShowDocument: ", props.documentId);
const { getSecureDocumentLink } = useDocuments();...