Releases: Respo/inflow-popup.cljs
Releases · Respo/inflow-popup.cljs
Stable release
upgrade to latest respo and deps-library
Details #6 .
Add :on-popup in comp-popup
0.2.8 add :on-popup in comp-popup; bump 0.2.8
Add comp-popup
New component comp-popup
is added, which is like comp-dialog
but the states is maintained in the component. Still comes from respo-alerts. The new component should more easier to be used.
Update to respo.core
Switching to respo.core
in respo@0.9.x
Support element as item
Now menu item can be an element:
(comp-menu-dialog
(fn [result d! m!] (println "result" result))
(fn [mutate!] (mutate! %cursor (update state :show-menu? not)))
{:haskell "Haskell",
:clojure "Clojure",
:elixir (div
{:style {}}
(div {} (<> "Elixir"))
(div {} (<> "...with an extra line")))})
Plus some style changes.
new component comp-menu-dialog
New menu component:
(if (:show-menu? state)
(comp-menu-dialog
(fn [result d! m!] (println "result" result))
(fn [mutate!] (mutate! %cursor (update state :show-menu? not)))
{:haskell "Haskell", :clojure "Clojure"}))
Previews http://repo.respo.site/inflow-popup/
update respo 0.8.14
Update deps
- Respo 0.8 has changed a lot. Upgrade implementation.