From 7d94271bc898692aea115d459cc70ed2e2e77954 Mon Sep 17 00:00:00 2001 From: freddie Date: Wed, 1 May 2024 10:18:21 +0100 Subject: [PATCH 1/3] docs: add zustand-context to third party libs --- docs/integrations/third-party-libraries.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/integrations/third-party-libraries.md b/docs/integrations/third-party-libraries.md index f303c619be..9e523f20ed 100644 --- a/docs/integrations/third-party-libraries.md +++ b/docs/integrations/third-party-libraries.md @@ -36,6 +36,7 @@ This can be done using third-party libraries created by the community. - [zundo](https://github.com/charkour/zundo) — 🍜 Undo and redo middleware for Zustand, enabling time-travel in your apps. - [zukeeper](https://github.com/oslabs-beta/Zukeeper) - Native devtools with state and action tracking, diffing, tree display, and time travel - [zustand-ards](https://github.com/ivoilic/zustand-ards) - 💁 Simple opinionated utilities for example alternative selector formats and default shallow hooks +- [zustand-context](https://github.com/fredericoo/zustand-context) — Create a zustand store in React Context,containing an initial value, or use it in your components with isolated, mockable instances. - [zustand-constate](https://github.com/ntvinhit/zustand-constate) — Context-based state management based on Zustand and taking ideas from Constate. - [zustand-computed](https://github.com/chrisvander/zustand-computed) — A Zustand middleware to create computed states. - [zustand-di](https://github.com/charkour/zustand-di) - use react props to init zustand stores From e84a74899844d5560c649da4ea7f9860ab6773cb Mon Sep 17 00:00:00 2001 From: freddie Date: Wed, 1 May 2024 10:20:57 +0100 Subject: [PATCH 2/3] docs: typo --- docs/integrations/third-party-libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/third-party-libraries.md b/docs/integrations/third-party-libraries.md index 9e523f20ed..2680364015 100644 --- a/docs/integrations/third-party-libraries.md +++ b/docs/integrations/third-party-libraries.md @@ -36,7 +36,7 @@ This can be done using third-party libraries created by the community. - [zundo](https://github.com/charkour/zundo) — 🍜 Undo and redo middleware for Zustand, enabling time-travel in your apps. - [zukeeper](https://github.com/oslabs-beta/Zukeeper) - Native devtools with state and action tracking, diffing, tree display, and time travel - [zustand-ards](https://github.com/ivoilic/zustand-ards) - 💁 Simple opinionated utilities for example alternative selector formats and default shallow hooks -- [zustand-context](https://github.com/fredericoo/zustand-context) — Create a zustand store in React Context,containing an initial value, or use it in your components with isolated, mockable instances. +- [zustand-context](https://github.com/fredericoo/zustand-context) — Create a zustand store in React Context, containing an initial value, or use it in your components with isolated, mockable instances. - [zustand-constate](https://github.com/ntvinhit/zustand-constate) — Context-based state management based on Zustand and taking ideas from Constate. - [zustand-computed](https://github.com/chrisvander/zustand-computed) — A Zustand middleware to create computed states. - [zustand-di](https://github.com/charkour/zustand-di) - use react props to init zustand stores From 88095b23f1b40f68f73c904091cf11ab85c0e06c Mon Sep 17 00:00:00 2001 From: freddie Date: Wed, 1 May 2024 13:05:33 +0100 Subject: [PATCH 3/3] docs: sort alphabetically --- docs/integrations/third-party-libraries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/integrations/third-party-libraries.md b/docs/integrations/third-party-libraries.md index 2680364015..ad4f188e7b 100644 --- a/docs/integrations/third-party-libraries.md +++ b/docs/integrations/third-party-libraries.md @@ -36,9 +36,9 @@ This can be done using third-party libraries created by the community. - [zundo](https://github.com/charkour/zundo) — 🍜 Undo and redo middleware for Zustand, enabling time-travel in your apps. - [zukeeper](https://github.com/oslabs-beta/Zukeeper) - Native devtools with state and action tracking, diffing, tree display, and time travel - [zustand-ards](https://github.com/ivoilic/zustand-ards) - 💁 Simple opinionated utilities for example alternative selector formats and default shallow hooks -- [zustand-context](https://github.com/fredericoo/zustand-context) — Create a zustand store in React Context, containing an initial value, or use it in your components with isolated, mockable instances. -- [zustand-constate](https://github.com/ntvinhit/zustand-constate) — Context-based state management based on Zustand and taking ideas from Constate. - [zustand-computed](https://github.com/chrisvander/zustand-computed) — A Zustand middleware to create computed states. +- [zustand-constate](https://github.com/ntvinhit/zustand-constate) — Context-based state management based on Zustand and taking ideas from Constate. +- [zustand-context](https://github.com/fredericoo/zustand-context) — Create a zustand store in React Context, containing an initial value, or use it in your components with isolated, mockable instances. - [zustand-di](https://github.com/charkour/zustand-di) - use react props to init zustand stores - [zustand-forms](https://github.com/Conduct/zustand-forms) — Fast, type safe form states as Zustand stores. - [zustand-middleware-computed-state](https://github.com/cmlarsen/zustand-middleware-computed-state) — A dead simple middleware for adding computed state to Zustand.