diff --git a/package.json b/package.json index 521cb2c..640058b 100644 --- a/package.json +++ b/package.json @@ -6,14 +6,14 @@ "license": "MIT", "devDependencies": { "http-server": "^0.12.3", - "shadow-cljs": "^2.11.7" + "shadow-cljs": "^2.16.12" }, "dependencies": { - "@fluentui/react": "^8.7.1", - "@uifabric/icons": "^7.5.23", + "@fluentui/react": "^8.50.0", + "@fluentui/font-icons-mdl2": "^8.1.20", "create-react-class": "^15.7.0", - "react": "^17.0.1", - "react-dom": "^17.0.1" + "react": "^17.0.2", + "react-dom": "^17.0.2" }, "author": "Denis Fuenzalida", "scripts": { diff --git a/shadow-cljs.edn b/shadow-cljs.edn index 0f4adcc..1fab9c8 100644 --- a/shadow-cljs.edn +++ b/shadow-cljs.edn @@ -1,5 +1,5 @@ {:source-paths ["src"] - :dependencies [[reagent "1.0.0"]] + :dependencies [[reagent "1.1.0"]] :dev-http {8080 "target/"} :builds {:app {:target :browser :output-dir "target" diff --git a/src/fabric_todos/core.cljs b/src/fabric_todos/core.cljs index ad0a311..4ce678a 100644 --- a/src/fabric_todos/core.cljs +++ b/src/fabric_todos/core.cljs @@ -1,6 +1,6 @@ (ns fabric-todos.core (:require ["@fluentui/react" :as f] - ["@uifabric/icons" :as ui] + ["@fluentui/font-icons-mdl2" :refer [initializeIcons]] [reagent.dom :as rdom] [fabric-todos.header :as header] [fabric-todos.todo-list :as todo-list] @@ -25,7 +25,7 @@ (defn main! [] (println "starting...") - (ui/initializeIcons) + (initializeIcons) (init-ui)) (defn ^:dev/after-load reload! []