-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- abandoning previous implementation of soda-ash that wrapped semantic-ui in favor of semantic-ui-react;
- Loading branch information
Showing
86 changed files
with
235 additions
and
9,784 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,9 @@ | ||
## 0.1.0-beta | ||
## 0.2.0-SNAPSHOT | ||
|
||
* adds the following elements | ||
* list | ||
* rail | ||
* step | ||
* remove :group? and replace with plural version of the element.<sup>1</sup> In other words, adds the following: | ||
* buttons | ||
* icons | ||
* images | ||
* labels | ||
* segments | ||
* targets semantic-ui-react version "0.64.0-0" | ||
|
||
<sup>1</sup> Breaking change. Example for how to update affected elements: | ||
--- | ||
|
||
``` | ||
;; 0.1.0-alpha2 | ||
[s/button {:soda {:tag :div | ||
:group? true | ||
:color :red}} | ||
... ] | ||
*DONT USE ANYTHING BEFORE VERSION 0.2.0.* | ||
|
||
;; 0.1.0-beta | ||
[s/buttons {:soda {:color :red}} ;; <-- note the extra "s" | ||
... ] | ||
``` | ||
|
||
|
||
## 0.1.0-alpha2 [source](https://github.com/gadfly361/soda-ash/tree/4f266c3d3a9dbca240238a3c6f3d2f62cf80586a) | ||
|
||
* initial release | ||
* targets Semantic UI version 2.1.8 and Reagent 0.5.1 | ||
|
||
## 0.1.0-alpha1 | ||
|
||
* broken release (forgot to set :source-paths) | ||
|
||
## 0.1.0-alpha | ||
|
||
* broken release (forgot to set :source-paths) | ||
The previous versions were incomplete and wrapped semantic-ui instead of semantic-ui-react. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,15 @@ | ||
(defproject soda-ash "0.1.0-beta" | ||
(defproject soda-ash "0.2.0-SNAPSHOT" | ||
:description "Soda-ash is an interface between clojurescript's reagent | ||
and Semantic UI" | ||
and Semantic UI React" | ||
:url "https://github.com/gadfly361/soda-ash" | ||
:license {:name "MIT"} | ||
:scm {:name "git" | ||
:url "https://github.com/gadfly361/soda-ash"} | ||
:url "https://github.com/gadfly361/soda-ash"} | ||
|
||
:min-lein-version "2.5.3" | ||
|
||
:source-paths ["src/main/cljs"] ;; needed for clojars | ||
|
||
:dependencies | ||
[[org.clojure/clojure "1.7.0"] | ||
[org.clojure/clojurescript "1.7.170"] | ||
[reagent "0.5.1" :exclusions [cljsjs/react]] | ||
[cljsjs/react-with-addons "0.13.3-0"]] | ||
|
||
:plugins | ||
[[lein-cljsbuild "1.1.1"]] | ||
|
||
:clean-targets ^{:protect false} | ||
["resources/public/js/compiled" "target"] | ||
|
||
|
||
:profiles | ||
{:dev | ||
{:dependencies | ||
[[devcards "0.2.0-8" :exclusions [cljsjs/react]]] | ||
|
||
:plugins | ||
[[lein-figwheel "0.5.0-2"]] | ||
|
||
:cljsbuild | ||
{:builds | ||
[{:id "devcards" | ||
:source-paths ["src/devcards" "src/main/cljs"] | ||
:figwheel {:devcards true } | ||
:compiler {:main "soda-ash.core-card" | ||
:asset-path "js/compiled/devcards_out" | ||
:output-to "resources/public/js/compiled/devcards.js" | ||
:output-dir "resources/public/js/compiled/devcards_out" | ||
:source-map-timestamp true }} | ||
|
||
{:id "hostedcards" | ||
:source-paths ["src/devcards" "src/main/cljs"] | ||
:compiler {:main "soda-ash.core-card" | ||
:devcards true | ||
:asset-path "js/compiled/devcards_out" | ||
:output-to "resources/public/js/compiled/devcards.js" | ||
:optimizations :advanced}}]}} | ||
|
||
:test | ||
{:dependencies | ||
[[cljs-react-test "0.1.3-SNAPSHOT"] | ||
[prismatic/dommy "1.1.0"]] | ||
|
||
:plugins | ||
[[lein-doo "0.1.6"]] | ||
|
||
:cljsbuild | ||
{:builds | ||
[{:id "unit" | ||
:source-paths ["src/main/cljs" "src/test/cljs"] | ||
:compiler {:output-to "resources/public/js/compiled/test.js" | ||
:main soda-ash.runner | ||
:optimizations :none}}]}}}) | ||
[[org.clojure/clojure "1.8.0"] | ||
[org.clojure/clojurescript "1.9.229"] | ||
[reagent "0.6.0"] | ||
[cljsjs/semantic-ui-react "0.64.0-0"]]) |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.