react-sweet-state
react-sweet-state copied to clipboard
Shared state management solution for React
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
Thank you for this awesome library!! I used it on a large financial Application based on React Native and loved it. New React offical Docs encourage people to use Next.js...
One of the main premises of react-sweet-state is separating things into multiple more manageable stores, thus it is important to keep individual store's state small both for readability and performance...
Bumps [terser](https://github.com/terser/terser) from 5.12.1 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...
Can you add in https://atlassian.github.io/react-sweet-state/#/introduction/comparison how this library compares to others in terms of bundle size? And do you know this information off-hand? For example, the docs say: > sweet-state...
Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) Commits c6bdaca Version 2.6.4 8870da9 Update built files 4df6754 update changelog 8f7f903...
### Background As we discussed in SweetState brownbag session, I was wondering if it makes sense to add a function to extend an existing store. The idea is that I...
I have some `axios` interceptor written that in some circumstances should dispatch an action from core store. I tried exporting a store object and importing it into the file, but...
Hi team, I occasionally find myself wanting to make more fine-grained decisions about what to do in `onUpdate`, requiring me to understand how _exactly_ the props changed. However, as I...
When global containers are nested, they share the global store instance; // The store instance here, // is the same as this one The same is not true for nested...