Skip to content

Releases: Respo/respo.cljs

Stable release

16 Jun 16:41
Compare
Choose a tag to compare
0.12.2

release 0.12.2

check params for defplugin

14 Jun 16:05
Compare
Choose a tag to compare
Pre-release

Details e740679 .

Initial work on respo.caches and defplugin

14 Jun 16:04
Compare
Choose a tag to compare

Details #25 .

Stable release

22 Mar 13:29
Compare
Choose a tag to compare
0.12.1

release 0.12.1

fix name: update-states

22 Mar 11:02
Compare
Choose a tag to compare
Pre-release

Details 9e3c154 .

add util function for simplifying states

22 Mar 10:49
Compare
Choose a tag to compare

Details #24 .

Stable release of new states syntax

22 Mar 02:50
Compare
Choose a tag to compare
0.12.0

release 0.12.0

Trying to fix CI

20 Mar 16:40
Compare
Choose a tag to compare
Trying to fix CI Pre-release
Pre-release
0.12.0-a1-build1

trying to fix CI

Breaking: refactor states

20 Mar 16:36
Compare
Choose a tag to compare
Pre-release

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

05 Nov 15:45
Compare
Choose a tag to compare

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?])