solid-primitives icon indicating copy to clipboard operation
solid-primitives copied to clipboard

A library of high-quality primitives that extend SolidJS reactivity.

Results 83 solid-primitives issues
Sort by recently updated
recently updated
newest added

Fixed the import statement directed at the `jsx` file: `import { useRequest } from "solid-start/server/ServerContext.jsx";` Resolution: `import { useRequest } from "solid-start/server";`

Utilities for working with nested reactivity in a modular way. - `createLens` - Given a path within a Store object, return a derived or "focused" getter and setter pair. -...

### Describe the bug Hi guys, not sure if you are aware, but a type on a link shows a stacktrace where you dynamically import stuff from you _generated directory....

bug
documentation

### Describe The Problem To Be Solved I'm migrating from [`on-change`](https://github.com/sindresorhus/on-change) to using `captureStoreUpdates()`. When using `captureStoreUpdates()`, setting a new value `mutable.settings.model = model` will produce the `path: ["settings"]`. However,...

enhancement

### Describe The Problem To Be Solved Hi, so when I am creating components almost always I need to pass some callbacks to `onClick` or anything else like that, but...

Hi, I'm using a Hasura GraphQL server for my Solid project. Hasura returns the following data with a 200 if any database validation errors occur. ```json { "errors": [ {...

Added new config option "normalize" If true all values will be returned as reactive functions, meaning it will resolve values of type MaybeAccessor to Accessor. This helps a lot for...

### Describe the bug ![image](https://github.com/solidjs-community/solid-primitives/assets/10906415/d32c757f-2a2f-414f-b0c8-60574271e892) This example was taken from the documentation's [Spread component props](../tree/main/packages/destructure#spread-component-props) snippet. ### Minimal Reproduction Link https://stackblitz.com/edit/github-14fosr?file=src%2FListItem.tsx

### Describe The Problem To Be Solved documentation for @solid-primitives/presence is missing an implementation for stores, to showcase it is possible. I just suggest adding a example that uses store....

documentation
enhancement

### Describe the bug I noticed that `combineProps` throws a type error when upgrading to typescript 5.3. In typescript { const combinedProps = combineProps([props]) const children = children // This...