File tree Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Expand file tree Collapse file tree 1 file changed +30
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Development
4
4
5
- [ Commits] ( https://github.com/jhudson8/react-css-builder/compare/v0.1.0...master )
5
+ [ Commits] ( https://github.com/jhudson8/react-css-builder/compare/v0.2.0...master )
6
+
7
+ ## v0.2.0 - February 8th, 2015
8
+ - API Changes - 932eb52
9
+
10
+ ReactCSSBuilder.register -> ReactCSSBuilder.create
11
+ StyleContext.val -> StyleContext.css
12
+
13
+ ```
14
+ require('react-css-builder').register({
15
+ myClass: function(css) {
16
+ return css.
17
+ // stuff with StyleContext
18
+ .val();
19
+ }
20
+ });
21
+ ```
22
+ should now be
23
+ ```
24
+ require('react-css-builder').create({
25
+ myClass: function(css) {
26
+ return css.
27
+ // stuff with StyleContext
28
+ .css();
29
+ }
30
+ });
31
+ ```
32
+
33
+
34
+ [ Commits] ( https://github.com/jhudson8/react-css-builder/compare/v0.1.0...v0.2.0 )
6
35
7
36
## v0.1.0 - February 4th, 2015
8
37
- add enhanced styleset selectors - b3c5eb8
You can’t perform that action at this time.
0 commit comments