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 - v12.0.0

Published by seek-oss-ci about 5 years ago

12.0.0 (2019-09-17)

Features

  • BulletList: Add support for changing text size & bullet spacing (#331) (32e0d14)

BREAKING CHANGES

  • BulletList: Setting component="li" on Text no longer renders a bullet. Please migrate to Bullet. Also no longer renders white space after the last Bullet, please validate your usage.

See usage: https://seek-oss.github.io/braid-design-system/components/BulletList.

Migration Guide

Setting the component prop on Text to "li" no longer renders a bullet list item. Consumers depending on this behaviour should migrate to Bullet and leverage the new apis on BulletList to achieve the desired outcome.

Text size of bullets

Consumers using Text instead of Bullet to support customising the text size should now migrate to Bullet and set the size on BulletList as follows:

-<BulletList>
+<BulletList size="small">
-  <Text component="li" size="small">...</Text>
+  <Bullet>...</Bullet>
   ...
</BulletList>

Space between bullets

Consumers using Text to remove default spacing in between Bullets should now migrate to Bullet and instead configure the space on BulletList. Eg:

-<BulletList>
+<BulletList space="none">
-  <Text component="li">...</Text>
+  <Bullet>...</Bullet>
   ...
</BulletList>

Alternatively you can also increase the spacing as required, using the space scale, eg:

-<BulletList>
+<BulletList space="large">
  <Bullet>...</Bullet>
   ...
</BulletList>
braid-design-system - v11.2.0

Published by seek-oss-ci about 5 years ago

11.2.0 (2019-09-16)

Features

  • Autosuggest: Allow suggestions to be cleared (#330) (e4ffed9)
braid-design-system - v11.1.1

Published by seek-oss-ci about 5 years ago

11.1.1 (2019-09-16)

Bug Fixes

  • seekAsia: Increase medium font weight to 600 (#326) (41e294e)
braid-design-system - v11.1.0

Published by seek-oss-ci about 5 years ago

11.1.0 (2019-09-16)

Features

  • Box: Support flex align, touchable size, full border radius (#329) (466d4c6)
braid-design-system - v11.0.1

Published by seek-oss-ci about 5 years ago

11.0.1 (2019-09-12)

Bug Fixes

  • Fix ordering issues with CSS reset in production builds (#325) (022ef1b)
braid-design-system - v11.0.0

Published by seek-oss-ci about 5 years ago

11.0.0 (2019-09-11)

Bug Fixes

BREAKING CHANGES

  • Introduced reset module that must be imported prior to components.
+import 'braid-design-system/reset';
import { BraidProvider } from 'braid-design-system'
braid-design-system - v10.1.2

Published by seek-oss-ci about 5 years ago

10.1.2 (2019-09-09)

Bug Fixes

  • Autosuggest: Exclude ‘highlights’ from ‘onChange’ values (#319) (595c1aa)
braid-design-system - v10.1.1

Published by seek-oss-ci about 5 years ago

10.1.1 (2019-09-06)

Bug Fixes

  • deps: Move autosuggest-highlight types to dependencies (#318) (b6db9f4)
braid-design-system - v10.1.0

Published by seek-oss-ci about 5 years ago

10.1.0 (2019-09-06)

Features

braid-design-system - v10.0.0

Published by seek-oss-ci about 5 years ago

10.0.0 (2019-09-06)

Bug Fixes

  • Rename Badge tone & background secondary to neutral (#315) (89363e6)

BREAKING CHANGES

  • The secondary tone for Badge has been renamed to neutral, as a side effect the background property on Box has also been updated — secondary to neutral and secondaryLight to neutralLight.
braid-design-system - v9.0.0

Published by seek-oss-ci about 5 years ago

9.0.0 (2019-09-05)

Features

  • Update icon artwork & prefix all names with Icon (#313) (883b071)

BREAKING CHANGES

  • All icon artwork has been updated and standardised. In addition, all icon names are now prefixed with Icon to improve discoverability.

Migration Guide

Design

The icon suite has been redesigned to be built from a common set of guidelines, providing a more consistent look and feel across the suite.

It is recommended consumers review their current usages of icons as the size/ratio of the assets has been standardised.

Rename

To aid discoverability all icons have been renamed to be prefixed with Icon. Consumers will be need to rename their imports as follows:

  • BookmarkIcon > IconBookmark
  • ChevronIcon > IconChevron
  • ErrorIcon > IconCritical
  • InfoIcon > IconInfo
  • TickCircleIcon > IconPositive
  • TickIcon > IconTick
braid-design-system - v8.0.1

Published by seek-oss-ci about 5 years ago

8.0.1 (2019-09-04)

Bug Fixes

braid-design-system - v8.0.0

Published by seek-oss-ci about 5 years ago

8.0.0 (2019-09-04)

Bug Fixes

BREAKING CHANGES

  • Removed BraidLoadableProvider.

This component is currently causing build errors, so we’re removing it for now.

braid-design-system - v7.2.0

Published by seek-oss-ci about 5 years ago

7.2.0 (2019-09-03)

Bug Fixes

Features

braid-design-system - v7.1.0

Published by seek-oss-ci about 5 years ago

7.1.0 (2019-09-02)

Features

braid-design-system - v7.0.0

Published by seek-oss-ci about 5 years ago

7.0.0 (2019-09-02)

Bug Fixes

  • Use correct casing for JobsDB theme entry point (#304) (dd974e1)

BREAKING CHANGES

  • braid-design-system/themes/jobsDB is now braid-design-system/themes/jobsDb.
braid-design-system - v6.0.1

Published by seek-oss-ci about 5 years ago

6.0.1 (2019-08-30)

Bug Fixes

  • Text: Ensure text context values are memoized (#302) (ff0435c)
braid-design-system - v6.0.0

Published by seek-oss-ci about 5 years ago

6.0.0 (2019-08-30)

Features

  • Columns: Add configurable widths, gutters & responsive layout (#299) (b80dd44)

BREAKING CHANGES

  • Columns: Columns no longer collapse on mobile by default. To retain the previous behaviour set collapse on Columns, e.g. <Columns collapse>. Default gutter has changed from ‘large’ to ‘gutter’, so a design review is recommended.
braid-design-system - v5.0.0

Published by seek-oss-ci about 5 years ago

5.0.0 (2019-08-28)

Bug Fixes

  • Increase line height for H4 and large text in 'seekAnz' (#301) (b84830f)

BREAKING CHANGES

  • Design review recommended
braid-design-system - v4.1.0

Published by seek-oss-ci about 5 years ago

4.1.0 (2019-08-21)

Features

  • Box: Add shorthand props for margin and padding (#293) (e844b0e)
Package Rankings
Top 2.35% on Npmjs.org
Badges
Extracted from project README
npm
Related Projects