UNPKG

801 BMarkdownView Raw
1## 0.3.1
2
3* [FIX] Fix compilation for CSS with separate (unnested) pseudoclasses.
4
5* [FIX] Fix compilation for CSS placed within media queries.
6
7## 0.3.0
8
9* [BREAKING] Component spec format changed from using `.` as a delimiter between
10 module and export name to `?`.
11
12 Update:
13
14 Label {
15 base: mylib.Label;
16 color: red;
17 }
18
19 To:
20
21 Label {
22 base: mylib?Label;
23 color: red;
24 }
25
26## 0.2.0
27
28* [FEATURE] When specifying `base` for a styled component it is treated as an
29 import specification if it doesn't represent an HTML tag name.
30
31 For example:
32
33 Label {
34 base: mylib/Label;
35 color: red;
36 }
37
38 Will generate a CSS class and inject it to component imported from
39 `mylib/Label` module.
40
41## 0.1.0
42
43* [FEATURE] Initial release.