braid-design-system

Themeable design system for the SEEK Group

MIT License

Downloads
20.9K
Stars
1.5K
Committers
33

Bot releases are hidden (Show)

braid-design-system - v0.0.31

Published by seek-oss-ci over 5 years ago

0.0.31 (2019-02-22)

Bug Fixes

  • TextLink: Add TextLink and TextLinkRenderer components (#102) (29ae7ae)
braid-design-system - v0.0.30

Published by seek-oss-ci over 5 years ago

0.0.30 (2019-02-20)

Bug Fixes

braid-design-system - v0.0.29

Published by seek-oss-ci over 5 years ago

0.0.29 (2019-02-20)

Bug Fixes

  • Box: Support responsive padding, margin and display (#100) (7cd69a6)
braid-design-system - v0.0.28

Published by seek-oss-ci over 5 years ago

0.0.28 (2019-02-19)

NOTE: This is a breaking change, but we're releasing it as a fix to maintain the alpha v0.0.x versioning scheme.

Bug Fixes

  • Shrink API surface area, remove ChecklistCard (#95) (04297c3)

Component Inheritance

High level components no longer inherit the props of lower level components.

Most notably, any white space props will need to be hoisted out into a separate usage of Box. For example:

-<Text paddingBottom="small">Hello</Text>

+<Box paddingBottom="small">
+  <Text>Hello</Text>
+</Box>

Alternatively, you can replace your component with a lower level Box component:

-<Card marginBottom="none">
+<Box backgroundColor="card" />

This is a very deep change to the system, so please reach out to Braid maintainers if you need help.

ChecklistCard

We have removed the ChecklistCard component. If needed, it can be implemented manually in your app with Card and Divider components. For example:

<Card>
  <Box paddingLeft="gutter" paddingRight="gutter" paddingTop="small" paddingBottom="small">
    <Checkbox {...props} />
  </Box>
  <Divider />
  <Box paddingLeft="gutter" paddingRight="gutter" paddingTop="small" paddingBottom="small">
    <Checkbox {...props} />
  </Box>
</Card>

Since Card no longer inherits from Box, if you customised the Card in any way, you will need to use a Box instead:

-<Card>
+<Box backgroundColor="card" borderColor="standard" marginBottom="medium">
braid-design-system - v0.0.27

Published by seek-oss-ci over 5 years ago

0.0.27 (2019-02-13)

Bug Fixes

  • Export themes accesible to loadable (#91) (2676476)
braid-design-system - v0.0.26

Published by seek-oss-ci over 5 years ago

0.0.26 (2019-02-13)

Bug Fixes

  • ChecklistCard: Ensure divider doesn’t cover error border (#92) (fc3c4a5)
braid-design-system - v0.0.25

Published by seek-oss-ci over 5 years ago

0.0.25 (2019-02-08)

Bug Fixes

  • ChecklistCard: Show error border on entire row (#90) (ac5651b)
braid-design-system - v0.0.24

Published by seek-oss-ci almost 6 years ago

0.0.24 (2019-01-17)

Bug Fixes

  • Migrate remaining components to TypeScript (#80) (eb60b2e)
braid-design-system - v0.0.23

Published by seek-oss-ci almost 6 years ago

0.0.23 (2019-01-09)

Bug Fixes

  • Fix compilation error in TypeScript 3.2 (#78) (bd578e6)
braid-design-system - v0.0.22

Published by seek-oss-ci almost 6 years ago

0.0.22 (2019-01-07)

Bug Fixes

  • Add ‘themes’ directory to package ‘sideEffects’ list (#77) (fb21de2)
braid-design-system - v0.0.21

Published by seek-oss-ci almost 6 years ago

0.0.21 (2018-12-19)

Bug Fixes

braid-design-system - v0.0.20

Published by seek-oss-ci almost 6 years ago

0.0.20 (2018-12-07)

Bug Fixes

  • Text: Align JobStreet large text with other themes (#69) (083ed89)
braid-design-system - v0.0.19

Published by seek-oss-ci almost 6 years ago

0.0.19 (2018-11-29)

Bug Fixes

braid-design-system - v0.0.18

Published by seek-oss-ci almost 6 years ago

0.0.18 (2018-11-28)

Bug Fixes

  • FieldLabel: Migrate FieldLabel to TypeScript (#60) (8338892)
braid-design-system - v0.0.17

Published by seek-oss-ci almost 6 years ago

0.0.17 (2018-11-27)

Bug Fixes

  • ThemeConsumer: Deprecate in favour of more specific consumers (#58) (7abb509)
braid-design-system - v0.0.16

Published by seek-oss-ci almost 6 years ago

0.0.16 (2018-11-27)

Bug Fixes

  • Migrate Bullet & BulletList to TypeScript (#57) (1a79f86)
braid-design-system - v0.0.15

Published by seek-oss-ci almost 6 years ago

0.0.15 (2018-11-27)

Bug Fixes

braid-design-system - v0.0.14

Published by seek-oss-ci almost 6 years ago

0.0.14 (2018-11-27)

Bug Fixes

braid-design-system - v0.0.13

Published by seek-oss-ci almost 6 years ago

0.0.13 (2018-11-26)

Bug Fixes

braid-design-system - v0.0.12

Published by seek-oss-ci almost 6 years ago

0.0.12 (2018-11-21)

Bug Fixes

Package Rankings
Top 2.35% on Npmjs.org
Badges
Extracted from project README
npm
Related Projects