Releases: Respo/respo.cljs
Releases · Respo/respo.cljs
Stable release
0.12.2 release 0.12.2
check params for defplugin
Details e740679 .
Initial work on respo.caches and defplugin
Details #25 .
Stable release
0.12.1 release 0.12.1
fix name: update-states
Details 9e3c154 .
add util function for simplifying states
Details #24 .
Stable release of new states syntax
0.12.0 release 0.12.0
Trying to fix CI
0.12.0-a1-build1 trying to fix CI
Breaking: refactor states
The code:
(cursor-> "xxx-id" comp-task states p1 p2)
now changes to:
(comp-task (>> states "xxx-id") p1 p2)
And mutation->
action->
have been removed.
Find details in #23 .
Add at-place? in defeffect
at-place?
checks if mounting/unmounting happen directly at this component, and assigned as true
. Child components also trigger mount/unmount hooks, but with at-place?
being false
. It can be useful when we need to disable DOM operations when a component is removed with its parents.
Now it's used like:
(defeffect effect-a [text] [action parent-element *local at-place?])