store icon indicating copy to clipboard operation
store copied to clipboard

🤖 Framework agnostic, type-safe store w/ reactive framework adapters

Results 12 store issues
Sort by recently updated
recently updated
newest added

This PR: - [x] Adds initial implementation of the Svelte adapter - [x] Adds initial tests for the Solid adapter Regarding the questions in the issue: 1. Packaging - I...

### Describe the bug From package.json of 0.3.1: ``` "peerDependencies": { "react": "^17.0.0 || ^18.0.0", "react-dom": "^17.0.0 || ^18.0.0" }, ``` ### Steps to Reproduce the Bug or Issue -...

### Describe the bug 1. Quick start page for react is not opening, the page is stuck on displaying infinite spinning loader. 2. Codesandbox link for react example of useStore...

This PR implements an initial `Derived` class implementation: ```ts const count = new Store(10); const doubleCount = new Derived([count], () => { return count.state * 2; }) doubleCount.subscribe(() => console.log(doubleCount.state));...

This PR adds the ability to pass a value to our listeners (optionally) thru our APIs. This is not _really_ intended to be used by the general public, but rather...

It would be really cool to see a Svelte adapter for this project. I have a few questions I'm unclear about that would need to be solved: - Packaging -...

enhancement
good first issue
help wanted

We should have an early Quick Start guide [in the style of our Forms docs](https://tanstack.com/form/latest/docs/framework/react/quick-start) that includes a demo codebase for `store` like a counter or something similar. File to...

documentation
good first issue

We should have an early Reference doc [in the style of our Forms docs](https://tanstack.com/form/latest/docs/framework/react/reference/useField) that includes: - `useStore` composition - Passed properties - Return type File to edit: https://github.com/TanStack/store/blob/main/docs/framework/vue/reference/useStore.md

documentation
good first issue

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Pending Approval These branches will be created by Renovate only once you click...

dependencies