Skip to content

Releases: coderdiaz/jacaranda

0.1.0-beta.7

08 Mar 22:46
a06be68
Compare
Choose a tag to compare
0.1.0-beta.7 Pre-release
Pre-release

Changelog

Features 🚀

  • Improved hierarchy to apply styles.

0.1.0-beta.6

08 Mar 21:45
01a77d0
Compare
Choose a tag to compare
0.1.0-beta.6 Pre-release
Pre-release

Changelog

Feature 🚀

  • Added support for using component props to define styles using styled components. Check the example below:
    const StyledView = styled(View)<{ direction?: 'row' | 'column' }>((props) => {
       flexDirection: props.direction,
    });
    
    // Usage
    <StyledView direction="row" />

0.1.0-beta.5

08 Mar 17:43
a423179
Compare
Choose a tag to compare
0.1.0-beta.5 Pre-release
Pre-release

Changelog

Features 🚀

  • Added support for allow multiples variants using compoundVariants.

0.1.0-beta.4

08 Mar 01:41
561b6aa
Compare
Choose a tag to compare
0.1.0-beta.4 Pre-release
Pre-release

Changelog

🚀 Features

  • Added new styled function to styling components based on design tokens.
  • Improved functions to allow usage of Stylesheet.create from react-native for better performance and management.

0.1.0-beta.3

26 Feb 21:59
8eadd98
Compare
Choose a tag to compare
0.1.0-beta.3 Pre-release
Pre-release

Changelog

⚠️ Breaking changes

  • Renamed function styles to sva.

Improvements

  • Added new tokens exported from the definition.

0.1.0-beta.2

26 Feb 05:50
eb66d68
Compare
Choose a tag to compare
0.1.0-beta.2 Pre-release
Pre-release

Changelog

⚠️ Breaking changes

  • Renamed function from createTokens to defineTokens.

Docs

  • Updated documentation.

0.1.0-beta.1

25 Feb 07:42
15f2952
Compare
Choose a tag to compare
0.1.0-beta.1 Pre-release
Pre-release

Changelog

  • [Fix] Fixed issue with typings when styles were applied to React Native elements.
  • [Docs] Added new example of usage with Expo + TypeScript.

Enjoy! ✨

0.1.0-beta.0

25 Feb 07:01
83e0f2e
Compare
Choose a tag to compare
0.1.0-beta.0 Pre-release
Pre-release

First pre-release

  • Created functionality to allow token definitions and variants from styles with React Native.
  • Added tests to check code functionality.

If you have any improvements or feedback, please put your issue in the issues section.