Skip to content

Commit

Permalink
Version 5.0.0-alpha.32-0
Browse files Browse the repository at this point in the history
  • Loading branch information
arttuka committed May 8, 2021
1 parent 9c04b11 commit ba1b096
Show file tree
Hide file tree
Showing 10 changed files with 142 additions and 138 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

See [Material UI changelog](https://github.com/mui-org/material-ui/blob/next/CHANGELOG.md) for changes in Material UI.

## 5.0.0-alpha.32-0

**[compare](https://github.com/arttuka/reagent-material-ui/compare/v5.0.0-alpha.29-0...v5.0.0-alpha.32-0)**

- Update Material UI to v5.0.0-alpha.32

## 5.0.0-alpha.29-0

**[compare](https://github.com/arttuka/reagent-material-ui/compare/v5.0.0-alpha.27-1...v5.0.0-alpha.29-0)**
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Their examples are very good. and this library tries to follow the original idea

To add Material UI to an existing Reagent project, just add this library to your dependencies:
```
[arttuka/reagent-material-ui "5.0.0-alpha.29-0"]
[arttuka/reagent-material-ui "5.0.0-alpha.32-0"]
```

Most of the library is in the form of regular Reagent components. Each component is contained in a namespace that mirrors
Expand Down Expand Up @@ -48,7 +48,7 @@ The adapters from Material-UI Lab are not included in this library.
To use npm dependencies with Figwheel Main, you need to exclude prebuilt JS files (React from CLJSJS and Material UI from this library).
To do so, add these exclusions to your dependency. See the example project for working configuration.

[arttuka/reagent-material-ui "5.0.0-alpha.29-0" :exclusions [cljsjs/react cljsjs/react-dom cljsjs/react-dom-server arttuka/reagent-material-ui-js]]
[arttuka/reagent-material-ui "5.0.0-alpha.32-0" :exclusions [cljsjs/react cljsjs/react-dom cljsjs/react-dom-server arttuka/reagent-material-ui-js]]

#### Material UI component names with shadow-cljs

Expand Down Expand Up @@ -80,9 +80,9 @@ The build process also includes `lein cljfmt`.

The project follows Material UI's version numbering.

* Current `@material-ui/core` version: `5.0.0-alpha.29`
* Current `@material-ui/icons` version: `5.0.0-alpha.29`
* Current `@material-ui/lab` version: `5.0.0-alpha.29`
* Current `@material-ui/core` version: `5.0.0-alpha.32`
* Current `@material-ui/icons` version: `5.0.0-alpha.32`
* Current `@material-ui/lab` version: `5.0.0-alpha.32`

### License

Expand Down
2 changes: 1 addition & 1 deletion deps.cljs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:npm-deps
{"@material-ui/core" "5.0.0-alpha.29"
{"@material-ui/core" "5.0.0-alpha.32"
"@emotion/react" "^11.0.0"
"@emotion/styled" "^11.0.0"
"react" "^17.0.0"
Expand Down
2 changes: 1 addition & 1 deletion example/deps.edn
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:paths ["src" "target" "resources"]
:deps {arttuka/reagent-material-ui {:mvn/version "5.0.0-alpha.29-0"
:deps {arttuka/reagent-material-ui {:mvn/version "5.0.0-alpha.32-0"
#_#_ :exclusions [cljsjs/react cljsjs/react-dom cljsjs/react-dom-server arttuka/reagent-material-ui-js]}
com.bhauman/figwheel-main {:mvn/version "0.2.12"}}
:aliases {:run-dev {:main-opts ["-m" "figwheel.main" "-b" "dev" "-r"]}
Expand Down
236 changes: 117 additions & 119 deletions example/package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "5.0.0-alpha.29",
"@material-ui/lab": "5.0.0-alpha.29",
"@material-ui/core": "5.0.0-alpha.32",
"@material-ui/lab": "5.0.0-alpha.32",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-transition-group": "^4.4.1",
"shadow-cljs": "^2.12.4"
"shadow-cljs": "^2.12.5"
},
"scripts": {
"watch": "shadow-cljs watch dev"
},
"devDependencies": {
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0"
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0"
}
}
4 changes: 2 additions & 2 deletions example/project.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(defproject reagent-material-ui-example "1.0.0"
:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojure/clojurescript "1.10.844"]
[arttuka/reagent-material-ui "5.0.0-alpha.29-0"
[arttuka/reagent-material-ui "5.0.0-alpha.32-0"
#_#_ :exclusions [cljsjs/react cljsjs/react-dom cljsjs/react-dom-server arttuka/reagent-material-ui-js]]]
:source-paths ["src"]
:profiles {:dev {:dependencies [[com.bhauman/figwheel-main "0.2.12" :exclusions [org.clojure/clojurescript]]]
:profiles {:dev {:dependencies [[com.bhauman/figwheel-main "0.2.13" :exclusions [org.clojure/clojurescript]]]
:resource-paths ["target"]}}
:clean-targets ^{:protect false} ["target" "resources/public/js" ".shadow-cljs"]
:aliases {"run:dev" ["trampoline" "run" "-m" "figwheel.main" "-b" "dev" "-r"]
Expand Down
2 changes: 1 addition & 1 deletion example/shadow-cljs.edn
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:dependencies [[reagent "1.0.0"]
[arttuka/reagent-material-ui "5.0.0-alpha.29-0"]]
[arttuka/reagent-material-ui "5.0.0-alpha.32-0"]]
:source-paths ["src"]
:builds {:dev {:target :browser
:output-dir "resources/public/js"
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject arttuka/reagent-material-ui "5.0.0-alpha.29-0"
(defproject arttuka/reagent-material-ui "5.0.0-alpha.32-0"
:description "Reagent wrapper library for Material UI v5 alpha"
:url "https://github.com/arttuka/reagent-material-ui"
:license {:name "Eclipse Public License 2.0"
Expand All @@ -7,7 +7,7 @@
[reagent "1.0.0"]
[com.andrewmcveigh/cljs-time "0.5.2"]
[camel-snake-kebab "0.4.2"]
[arttuka/reagent-material-ui-js "5.0.0-alpha.29-0"]]
[arttuka/reagent-material-ui-js "5.0.0-alpha.32-0"]]
:plugins [[lein-cljfmt "0.7.0"]
[lein-cljsbuild "1.1.8"]
[lein-doo "0.1.11"]]
Expand Down
2 changes: 1 addition & 1 deletion reagent-material-ui-js/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject arttuka/reagent-material-ui-js "5.0.0-alpha.29-0"
(defproject arttuka/reagent-material-ui-js "5.0.0-alpha.32-0"
:description "Packaged Javascript files for reagent-material-ui"
:url "https://github.com/arttuka/reagent-material-ui"
:license {:name "Eclipse Public License 2.0"
Expand Down

0 comments on commit ba1b096

Please sign in to comment.