jolt_hooks 2.0.1
jolt_hooks: ^2.0.1 copied to clipboard
Flutter hooks integration for the Jolt reactive state management system, providing declarative hooks for signals, computed values, effects, and more.
2.0.0 #
- Graduate package to a stable release. See pre-releases prior to this version for changelog entries.
2.0.0-beta.3 #
- REFACTOR(jolt_flutter,jolt_hooks): unify hook calling style for better extensibility. (fc27ba2e)
2.0.0-beta.2 #
- Update a dependency to the latest release.
2.0.0-beta.1 #
BREAKING CHANGES:
-
API signature changes:
JoltHook(signal)(passing instance) →JoltHook(() => signal)(passing factory function)JoltEffectHook(effect)(passing instance) →JoltEffectHook(() => effect)(passing factory function)
Migration guide:
- Custom hooks need to change parameters from instances to factory functions
- Official hooks (
useSignal,useComputed, etc.) require no changes
-
CHORE: update dependencies (jolt-v2.0.0)
-
REFACTOR(core): optimize reactive system core and improve code quality. (444957b6)
-
REFACTOR: restructure core interfaces and implementation classes. (e552ab33)
-
FEAT: implement Setup Widget with type-based hook hot reload. (e71cf18c)
1.0.2 #
- Update a dependency to the latest release.
1.0.1 #
- REFACTOR(jolt_hooks): optimize useJoltWidget dependency tracking and rebuild logic for better performance. (af143da1)
1.0.0 #
- REFACTOR: simplify EffectScope API, add detach parameter. (eed8cc1a)
- FIX(jolt_hooks): sync upstream asyncSignal. (7bbac97f)
- FIX: add missing tests for jolt, rename currentValue to cachedValue. (87de3c6a)
- FEAT: add cleanup function support for Effect, Watcher and EffectScope. (d0e8b367)
- FEAT: add useJoltWidget hook. (e5d5addb)
- DOCS: improve code documentation. (c152870a)
0.0.6 #
- chore: update dependencies
0.0.5+1 #
- chore: use
melosfor monorepo management - chore: update dependencies
0.0.5 #
- Initial version.