All Versions
4
Latest Version
Avg Release Cycle
-
Latest Release
-

Changelog History

  • v0.3.1 Changes

    • [FIX] Fix compilation for CSS with separate (unnested) pseudoclasses.

    • [FIX] Fix compilation for CSS placed within media queries.

  • v0.3.0 Changes

    • [BREAKING] Component spec format changed from using . as a delimiter between module and export name to ?.

    Update:

      Label {
        base: mylib.Label;
        color: red;
      }
    

    To:

      Label {
        base: mylib?Label;
        color: red;
      }
    
  • v0.2.0 Changes

    • ๐Ÿ’… [FEATURE] When specifying base for a styled component it is treated as an import specification if it doesn't represent an HTML tag name.

    For example:

      Label {
        base: mylib/Label;
        color: red;
      }
    

    Will generate a CSS class and inject it to component imported from mylib/Label module.

  • v0.1.0 Changes

    • ๐Ÿš€ [FEATURE] Initial release.