Skip to content

v0.0.5

Compare
Choose a tag to compare
@vmarcosp vmarcosp released this 06 Jul 21:50
· 124 commits to main since this release

Description

Breaking Changes 💥

  • Streamlined configuration for status-left and status-right by unifying them into one object.
    Before:
    export default {
      statusLeft: <Component />,
      statusRight:  <Component />
     }
    Now:
    export default {
      status: {
        statusLeft: <Component />,
        statusRight:  <Component />
      }
     }

Features 🚀

  • Added support for status-bg via the status.bg field, example:
       export default { status: { bg: '#000' } }
  • Automatically set status-bg color based on the selected theme

Full Changelog: v0.0.4...v0.0.5