Skip to content

v15.1.0

Choose a tag to compare

@emplums emplums released this 13 Nov 02:05
9b6efc8

😻 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 px to 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 a themeGet function, any of the spacing or font values will need to have the extra px removed:
const Box = styled.div`
   padding: ${themeGet('spacing.3')}px;
`

should now be:

const Box = styled.div`
    padding: ${themeGet('spacing.3')};
`