Skip to content

Commit c49603c

Browse files
committed
upgrade deps
1 parent bd06045 commit c49603c

File tree

3 files changed

+46
-16
lines changed

3 files changed

+46
-16
lines changed

calcit.edn

Lines changed: 41 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shadow-cljs.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[respo/markdown "0.2.4"]
1111
[respo/feather "0.1.1"]
1212
[respo/reel "0.3.5"]
13-
[respo/composer "0.1.17-a1"]
13+
[respo/composer "0.1.17"]
1414
[medley "1.2.0"]
1515
[cumulo/util "0.1.10"]
1616
[org.clojure/core.incubator "0.1.4"]]

src/app/container.cljs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
(reel)
1919
(let [store (:store reel)
2020
states (:states store)
21-
templates (extract-templates (read-string (inline "composer.edn")))
21+
composer-data (read-string (inline "composer.edn"))
22+
templates (extract-templates composer-data)
2223
view-model (vm/get-view-model store)]
2324
(div
2425
{:style ui/global}
@@ -32,7 +33,8 @@
3233
:states states,
3334
:state-fns (->> vm/states-manager
3435
(map (fn [[alias manager]] [alias (:init manager)]))
35-
(into {}))}
36+
(into {})),
37+
:presets (get-in composer-data [:settings :presets])}
3638
(fn [d! op context options]
3739
(vm/on-action d! op (dissoc context :templates :state-fns) options view-model states)))
3840
(when dev? (comp-inspect "Store" store {}))

0 commit comments

Comments
 (0)