Skip to content

Releases: rkoeninger/hyjinks

v0.0.3

16 Mar 00:34
Compare
Choose a tag to compare
v0.0.3 Pre-release
Pre-release
Updated project to 0.0.3

v0.0.2

25 Dec 15:52
Compare
Choose a tag to compare
v0.0.2 Pre-release
Pre-release

Rendering functions added/renamed:

hyjinks.core/tag->string (clj and cljs) - serializes tag and children to HTML string.
hyjinks.dom/tag->dom (cljs only) - builds tree of DOM elements
hyjinks.react/tag->react (cljs only) builds tree of React DOM elements
XHTML-style self-closing tags no longer the default for elements without children. Now, elements that are officially void elements (img, br...) are always empty and other tags always have an open/close pair.

Vector/list can be used for the :className attribute and will be joined with spaces upon rendering.

added in tag->string.

ClojureScript unit tests run on CI.

v0.0.1

11 Apr 03:41
Compare
Choose a tag to compare
v0.0.1 Pre-release
Pre-release

Initial, mostly functional release.

Tag values has toString overrides to serialize to string.

Clojurescript code has (render-dom) to render to React DOM.