v15.1.0
😻 New Components
💅 Enhancements
- Updated dependencies #634 #633 #631 #628 #627 #625 #624 #623
- Removed unused dependencies #636
- Updated FlexProps #621 #640
- Improved documentation searchability #586
- Added Philosophy docs #547
- Added
pxto space, font size &, radii theme values #496 🚨This is actually a breaking change, that we didn't catch before releasing - if you are importing the Primer Components theme directly and using it to generate values via athemeGetfunction, any of the spacing or font values will need to have the extrapxremoved:
const Box = styled.div`
padding: ${themeGet('spacing.3')}px;
`
should now be:
const Box = styled.div`
padding: ${themeGet('spacing.3')};
`