Releases: coderdiaz/jacaranda
Releases · coderdiaz/jacaranda
0.1.0-beta.7
Changelog
Features 🚀
- Improved hierarchy to apply styles.
0.1.0-beta.6
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
Changelog
Features 🚀
- Added support for allow multiples variants using
compoundVariants
.
0.1.0-beta.4
Changelog
🚀 Features
- Added new
styled
function to styling components based on design tokens. - Improved functions to allow usage of
Stylesheet.create
fromreact-native
for better performance and management.
0.1.0-beta.3
Changelog
⚠️ Breaking changes
- Renamed function
styles
tosva
.
Improvements
- Added new tokens exported from the definition.
0.1.0-beta.2
Changelog
⚠️ Breaking changes
- Renamed function from
createTokens
todefineTokens
.
Docs
- Updated documentation.
0.1.0-beta.1
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
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.