Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@storybook/design-system

storybookjs22.9kMIT7.15.18TypeScript support: included

Storybook design system

readme

Storybook Design System

NPM JavaScript Style Guide

Used by

Note: this design system is not used in Storybook's UI. The stack is different and theming requirements of Storybook add complexity beyond the scope of this project. However, Storybook's visual design is identical to what's here.

Tech stack

Building components

Maintaining the system

Why

The Storybook design system codifies existing UI components into a central, well-maintained repository. It is built to address having to paste the same components into multiple projects again and again. This simplifies building UI's with Storybook's design patterns.

What we're doing

  • Build and maintain a design system in the open
  • Share UI components between multiple apps
  • Dogfood upcoming Storybook features
  • Welcome contributors of all levels and backgrounds

What we're not doing

  • Rewrite all new components from scratch
  • Overhaul the visual design of components
  • Typescript (the consumer apps don't use it)
  • Compete with more general design systems like ANT or Material.

Install

npm install --save @storybook/design-system

Global Styles

Components within the design system assume that a set of global styles have been configured. Depending upon the needs of the application, this can be done several ways:

Option 1: Render the GlobalStyle component

Useful when you don't need any custom body styling in the application, typically this would be placed in a layout component that wraps all pages, or a top-level App component.

import { global } from '@storybook/design-system';
const { GlobalStyle } = global;
/* Render the global styles once per page */
<GlobalStyle />

Option 2: Use the bodyStyles to apply styling

Useful when you want build upon the shared global styling.

import { Global, css } from '@storybook/theming';
import { global } from '@storybook/design-system';
const { bodyStyles } = global;

const customGlobalStyle = css`
  body {
    ${bodyStyles}// Custom body styling for the app
  }
`;

const CustomGlobalStyle = () => <Global styles={customGlobalStyle} />;
/* Render the global styles once per page */
<CustomGlobalStyle />

Font Loading

Rather than @import fonts in the GlobalStyle component, the design system's font URL is exported with the intention of using it in a <link> tag as the href. Different frameworks and environments handle component re-renders in their own way (a re-render would cause the font to be re-fetched), so this approach allows the design system consumers to choose the font loading method that is most appropriate for their environment.

import { global } from '@storybook/design-system';

const fontLink = document.createElement('link');

fontLink.href = global.fontUrl;
fontLink.rel = 'stylesheet';

document.head.appendChild(fontLink);
import React from 'react';
import { global } from '@storybook/design-system';

const Layout = ({ children }) => (
  <html>
    <head>
      <link href={global.fontUrl} rel="stylesheet" />
    </head>

    <body>{children}</body>
  </html>
);

export default Layout;

Development Scripts

yarn release

Bump the version

Push a release to GitHub and npm

Push a changelog to GitHub

Notes:

  • Requires authentication with npm adduser
  • auto is used to generate a changelog and push it to GitHub. In order for this to work correctly, environment variables called GH_TOKEN and NPM_TOKEN are needed that reference a GitHub personal access token and a NPM "Publish" token with the appropriate permissions to update the repo.

License

MIT © shilman

changelog

v7.15.18 (Wed May 28 2025)

🐛 Bug Fix

Authors: 2


v7.15.17 (Tue Jan 02 2024)

🐛 Bug Fix

Authors: 1


v7.15.16 (Fri Dec 22 2023)

🐛 Bug Fix

Authors: 1


v7.15.15 (Thu Aug 03 2023)

🐛 Bug Fix

Authors: 1


v7.15.14 (Thu Aug 03 2023)

🐛 Bug Fix

Authors: 1


v7.15.13 (Thu Jul 13 2023)

🐛 Bug Fix

Authors: 1


v7.15.12 (Mon Jun 19 2023)

🐛 Bug Fix

  • Update Tooltips to use Word Break on long words #420 (@thafryer)

Authors: 1


v7.15.11 (Thu Jun 01 2023)

🐛 Bug Fix

Authors: 1


v7.15.10 (Fri May 12 2023)

🐛 Bug Fix

Authors: 1


v7.15.9 (Fri Apr 07 2023)

🐛 Bug Fix

Authors: 1


v7.15.8 (Mon Apr 03 2023)

⚠️ Pushed to master

Authors: 1


v7.15.7 (Fri Mar 24 2023)

🐛 Bug Fix

Authors: 1


v7.15.6 (Fri Mar 24 2023)

⚠️ Pushed to master

Authors: 1


v7.15.1 (Fri Mar 24 2023)

⚠️ Pushed to master

  • Avoid React.FC, improve types and fix lint errors (@ghengeveld)
  • Use latest Storybook 7 RC (@ghengeveld)
  • Fix types for optional fields on ProgressDots (@ghengeveld)
  • Include spreaded rest props in type definition (@ghengeveld)
  • Change tooltip wrapper element to span to prevent nesting buttons (@ghengeveld)
  • Use human readable numbers in Cardinal (@ghengeveld)
  • Export ButtonAction component (@ghengeveld)

Authors: 1


v7.15.1 (Thu Mar 23 2023)

⚠️ Pushed to master

Authors: 1


v7.15.1 (Tue Mar 21 2023)

⚠️ Pushed to master

Authors: 1


v7.15.1 (Tue Mar 21 2023)

⚠️ Pushed to master

Authors: 1


v7.15.1 (Tue Mar 21 2023)

⚠️ Pushed to master

Authors: 1


v7.15.0 (Thu Mar 16 2023)

🚀 Enhancement

Authors: 1


v7.14.0 (Mon Mar 13 2023)

🚀 Enhancement

Authors: 2


v7.13.2 (Thu Mar 09 2023)

🐛 Bug Fix

Authors: 1


v7.13.1 (Mon Feb 06 2023)

🐛 Bug Fix

Authors: 1


v7.13.0 (Sun Feb 05 2023)

🚀 Enhancement

Authors: 1


v7.12.3 (Thu Feb 02 2023)

🐛 Bug Fix

Authors: 1


v7.12.2 (Thu Feb 02 2023)

🐛 Bug Fix

Authors: 1


v7.12.1 (Thu Feb 02 2023)

🐛 Bug Fix

  • Ensure loading state is monochrome to fit into Chromatic & SB loading #403 (@domyen)

Authors: 1


v7.12.0 (Thu Feb 02 2023)

🚀 Enhancement

Authors: 1


v7.11.1 (Wed Feb 01 2023)

🐛 Bug Fix

Authors: 1


v7.11.0 (Fri Jan 20 2023)

🚀 Enhancement

Authors: 1


v7.10.0 (Fri Dec 09 2022)

🚀 Enhancement

Authors: 1


v7.9.2 (Fri Nov 25 2022)

🐛 Bug Fix

Authors: 1


v7.9.1 (Fri Nov 25 2022)

🐛 Bug Fix

  • feat(WithTooltip): support Storybook 7 root element #394 (@yannbf)

Authors: 1


v7.9.0 (Fri Oct 14 2022)

🚀 Enhancement

Authors: 1


v7.8.6 (Thu Oct 06 2022)

🐛 Bug Fix

Authors: 1


v7.8.5 (Fri Sep 02 2022)

🐛 Bug Fix

Authors: 1


v7.8.4 (Mon Aug 29 2022)

🐛 Bug Fix

Authors: 1


v7.8.3 (Fri Aug 26 2022)

🐛 Bug Fix

Authors: 1


v7.8.2 (Fri Aug 12 2022)

🐛 Bug Fix

Authors: 1


v7.8.1 (Fri Aug 12 2022)

🐛 Bug Fix

  • add inverse styling for link and selectable variants of the cardinal #384 (@winkerVSbecks)

Authors: 1


v7.8.0 (Thu Aug 11 2022)

🚀 Enhancement

Authors: 1


v7.7.8 (Tue Aug 09 2022)

🐛 Bug Fix

Authors: 2


v7.7.7 (Thu Jul 14 2022)

🐛 Bug Fix

Authors: 1


v7.7.6 (Tue Jul 12 2022)

🐛 Bug Fix

Authors: 1


v7.7.5 (Mon Jul 11 2022)

🐛 Bug Fix

Authors: 1


v7.7.4 (Mon Jul 11 2022)

🐛 Bug Fix

Authors: 1


v7.7.3 (Mon Jul 11 2022)

🐛 Bug Fix

Authors: 1


v7.7.2 (Thu Jul 07 2022)

🐛 Bug Fix

Authors: 1


v7.7.1 (Wed Jul 06 2022)

🐛 Bug Fix

Authors: 1


v7.7.0 (Tue Jul 05 2022)

🚀 Enhancement

Authors: 1


v7.6.1 (Thu Jun 30 2022)

🐛 Bug Fix

  • Checkbox: checkboxColor is not actually required #365 (@kylesuss)

Authors: 1


v7.6.0 (Thu Jun 30 2022)

🚀 Enhancement

Authors: 1


v7.5.0 (Thu Jun 30 2022)

🚀 Enhancement

Authors: 2


v7.4.1 (Mon Jun 20 2022)

🐛 Bug Fix

Authors: 1


v7.4.0 (Fri Jun 17 2022)

🚀 Enhancement

  • Add typography styles and a couple of missing colors to shared styles #362 (@winkerVSbecks)

Authors: 1


v7.3.9 (Thu Jun 16 2022)

🐛 Bug Fix

Authors: 1


v7.3.8 (Fri May 27 2022)

🐛 Bug Fix

  • Only change the look of a link when it is hovered over or tabbed to #359 (@andrewortwein)

Authors: 1


v7.3.7 (Thu May 26 2022)

🐛 Bug Fix

  • Don't compile story files and remove emotion sourcemaps #358 (@tmeasday)

Authors: 1


v7.3.6 (Tue May 24 2022)

🐛 Bug Fix

Authors: 1


v7.3.5 (Mon May 23 2022)

🐛 Bug Fix

  • Update to a looser version of @storybook/theming #356 (@tmeasday)

Authors: 1


v7.3.4 (Tue Apr 26 2022)

🐛 Bug Fix

Authors: 1


v7.3.3 (Fri Apr 08 2022)

🐛 Bug Fix

  • FormErrorState: make suppressErrorMessages optional with default #351 (@kylesuss)

Authors: 1


v7.3.2 (Wed Apr 06 2022)

🐛 Bug Fix

  • FormErrorState: Allow outside control of error messages #349 (@kylesuss)

Authors: 1


v7.3.1 (Fri Mar 11 2022)

🐛 Bug Fix

  • Refine styling to be more compact in mobile view #343 (@domyen)

Authors: 1


v7.3.0 (Mon Feb 07 2022)

🚀 Enhancement

Authors: 1


v7.2.7 (Sat Feb 05 2022)

🐛 Bug Fix

Authors: 1


v7.2.6 (Sat Jan 22 2022)

🐛 Bug Fix

  • Ensure tertiary Selects are displayed as inline-block instead of blocks #335 (@domyen)

Authors: 1


v7.2.5 (Sat Jan 22 2022)

🐛 Bug Fix

  • Update Spinner colors to default to blue instead of pink #334 (@domyen)

Authors: 1


v7.2.4 (Sat Jan 22 2022)

🐛 Bug Fix

Authors: 1


v7.2.3 (Sat Jan 22 2022)

🐛 Bug Fix

  • Improve Select styling and fix Safari bug #331 (@domyen)

Authors: 1


v7.2.2 (Thu Jan 20 2022)

🐛 Bug Fix

  • Update Icons: markup, unordered list. Add icons: bold, ordered list CH-1332 #330 (@MichaelArestad)

Authors: 1


v7.2.1 (Thu Jan 13 2022)

🐛 Bug Fix

Authors: 1


v7.2.0 (Wed Dec 15 2021)

🚀 Enhancement

Authors: 1


v7.1.1 (Fri Dec 10 2021)

🐛 Bug Fix

Authors: 1


v7.1.0 (Fri Dec 10 2021)

🚀 Enhancement

Authors: 1


v7.0.3 (Mon Nov 29 2021)

🐛 Bug Fix

🔩 Dependency Updates

Authors: 3


v7.0.2 (Thu Nov 11 2021)

🐛 Bug Fix

Authors: 1


v7.0.1 (Wed Nov 10 2021)

🐛 Bug Fix

Authors: 1


v7.0.0 (Wed Nov 10 2021)

💥 Breaking Change

🐛 Bug Fix

Authors: 4


v6.4.1 (Thu Oct 21 2021)

🐛 Bug Fix

Authors: 1


v6.4.0 (Thu Oct 21 2021)

🚀 Enhancement

Authors: 1


v6.3.0 (Tue Oct 19 2021)

🚀 Enhancement

Authors: 1


v6.2.0 (Fri Sep 17 2021)

🚀 Enhancement

Authors: 1


v6.1.0 (Tue Sep 14 2021)

🚀 Enhancement

Authors: 1


v6.0.1 (Tue Aug 24 2021)

🐛 Bug Fix

Authors: 2


v6.0.0 (Mon Aug 23 2021)

💥 Breaking Change

Authors: 1


v5.6.8 (Tue Aug 17 2021)

🐛 Bug Fix

  • Support external portalContainer in WithTooltip #291 (@kylesuss)

Authors: 1


v5.6.7 (Mon Aug 16 2021)

🐛 Bug Fix

Authors: 1


v5.6.6 (Fri Aug 13 2021)

🐛 Bug Fix

  • add types being generated before publishing & fix 2 typing issues #287 (@ndelangen)

Authors: 1


v5.6.5 (Mon Aug 09 2021)

🐛 Bug Fix

Authors: 1


v5.6.4 (Mon Aug 02 2021)

🐛 Bug Fix

Authors: 1


v5.6.3 (Wed Jul 14 2021)

🐛 Bug Fix

Authors: 1


v5.6.2 (Thu Jul 08 2021)

🐛 Bug Fix

Authors: 1


v5.6.1 (Thu Jul 08 2021)

🐛 Bug Fix

Authors: 1


v5.6.0 (Mon Jun 28 2021)

🚀 Enhancement

Authors: 1


v5.5.7 (Mon Jun 28 2021)

🐛 Bug Fix

Authors: 2


v5.5.5 (Wed Jun 23 2021)

🐛 Bug Fix

⚠️ Pushed to master

  • Merge branch 'master' of github.com:storybookjs/design-system (@kylesuss)

Authors: 1


v5.5.5 (Wed Jun 23 2021)


v5.5.4 (Tue May 25 2021)

🐛 Bug Fix

Authors: 1


v5.5.3 (Thu May 13 2021)

🐛 Bug Fix

Authors: 1


v5.5.2 (Wed May 12 2021)

🐛 Bug Fix

  • Fix #262 iOS styling for stacked inputs #263 (@domyen)

Authors: 1


v5.5.1 (Thu May 06 2021)

🐛 Bug Fix

⚠️ Pushed to master

🔩 Dependency Updates

Authors: 3


v5.5.0 (Thu Apr 01 2021)

🚀 Enhancement

Authors: 1


v5.4.9 (Thu Feb 25 2021)

🐛 Bug Fix

Authors: 2


v5.4.8 (Mon Feb 22 2021)

🐛 Bug Fix

Authors: 1


v5.4.7 (Wed Jan 13 2021)

🐛 Bug Fix

  • Add function support for errors on textarea, startFocused behavior #246 (@kylesuss)

Authors: 1


v5.4.6 (Tue Jan 05 2021)

🐛 Bug Fix

  • Update tertiary Select variant to match new designs #245 (@kylesuss)
  • Use focus-visible to hide outlines when using mouse #241 (@domyen)

Authors: 2


v5.4.5 (Tue Dec 22 2020)

🐛 Bug Fix

Authors: 1


v5.4.4 (Wed Dec 09 2020)

🐛 Bug Fix

Authors: 2


v5.4.3 (Fri Dec 04 2020)

🐛 Bug Fix

Authors: 1


v5.4.1 (Mon Nov 30 2020)

🐛 Bug Fix

Authors: 1


v5.4.1 (Mon Nov 30 2020)

🐛 Bug Fix

Authors: 1


v5.4.0 (Fri Nov 27 2020)

🚀 Enhancement

🐛 Bug Fix

Authors: 1


v5.3.2 (Wed Nov 25 2020)

🐛 Bug Fix

Authors: 1


v5.3.1 (Tue Nov 24 2020)

🐛 Bug Fix

Authors: 1


v5.3.0 (Mon Nov 23 2020)

🚀 Enhancement

🐛 Bug Fix

  • remove gradient background from tooltips #230 (@domyen)
  • Add default tooltips for copied and uncopied states #229 (@winkerVSbecks)
  • Update Storybook to 6.1.1 and change component organization #228 (@domyen)

Authors: 2


v5.2.1 (Fri Nov 20 2020)

🐛 Bug Fix

🔩 Dependency Updates

Authors: 2


v5.2.0 (Fri Nov 20 2020)

🚀 Enhancement

🐛 Bug Fix

🔩 Dependency Updates

Authors: 4


v5.1.27 (Tue Oct 13 2020)

🐛 Bug Fix

🔩 Dependency Updates

Authors: 3


v5.1.26 (Tue Aug 18 2020)

🐛 Bug Fix

Authors: 1


v5.1.25 (Fri Aug 14 2020)

🐛 Bug Fix

Authors: 1


v5.1.24 (Tue Aug 11 2020)

🐛 Bug Fix

Authors: 1


v5.1.23 (Mon Aug 10 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 2


v5.1.23 (Mon Aug 10 2020)

🐛 Bug Fix

Authors: 1


v5.1.22 (Mon Aug 10 2020)

🐛 Bug Fix

  • Setup slot in the CodeSnippets for non-code things (like messages) #199 (@kylesuss)

⚠️ Pushed to master

Authors: 1


v5.1.22 (Mon Aug 10 2020)

🐛 Bug Fix

  • Setup slot in the CodeSnippets for non-code things (like messages) #199 (@kylesuss)

Authors: 1


v5.1.21 (Mon Aug 10 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v5.1.21 (Mon Aug 10 2020)

🐛 Bug Fix

Authors: 1


v5.1.20 (Mon Aug 10 2020)

🐛 Bug Fix

  • Make single line codesnippets more handsome #197 (@domyen)

⚠️ Pushed to master

Authors: 2


v5.1.20 (Mon Aug 10 2020)

🐛 Bug Fix

  • Make single line codesnippets more handsome #197 (@domyen)

Authors: 1


v5.1.19 (Mon Aug 10 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 2


v5.1.19 (Mon Aug 10 2020)

🐛 Bug Fix

Authors: 2


v5.1.18 (Sun Aug 09 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v5.1.18 (Sun Aug 09 2020)

🐛 Bug Fix

Authors: 1


v5.1.17 (Fri Aug 07 2020)

🐛 Bug Fix

  • Add stories and refine styles more based on integration QA #193 (@domyen)

⚠️ Pushed to master

Authors: 2


v5.1.17 (Fri Aug 07 2020)

🐛 Bug Fix

  • Add stories and refine styles more based on integration QA #193 (@domyen)

Authors: 1


v5.1.16 (Fri Aug 07 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v5.1.16 (Fri Aug 07 2020)

🐛 Bug Fix

Authors: 1


v5.1.15 (Fri Aug 07 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 2


v5.1.15 (Fri Aug 07 2020)

🐛 Bug Fix

Authors: 1


v5.1.14 (Thu Aug 06 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v5.1.14 (Thu Aug 06 2020)

🐛 Bug Fix

Authors: 1


v5.1.13 (Thu Aug 06 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v5.1.13 (Thu Aug 06 2020)

🐛 Bug Fix

Authors: 1


v5.1.12 (Wed Aug 05 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v5.1.12 (Wed Aug 05 2020)

🐛 Bug Fix

Authors: 1


v5.1.11 (Tue Aug 04 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v5.1.11 (Tue Aug 04 2020)

🐛 Bug Fix

Authors: 1


v5.1.10 (Mon Aug 03 2020)

🐛 Bug Fix

  • Port over ShadowBoxCTA from learnstorybook.com #185 (@kylesuss)

⚠️ Pushed to master

Authors: 1


v5.1.10 (Mon Aug 03 2020)

🐛 Bug Fix

  • Port over ShadowBoxCTA from learnstorybook.com #185 (@kylesuss)

⚠️ Pushed to master

Authors: 1


v5.1.9 (Mon Aug 03 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v5.1.9 (Mon Aug 03 2020)

🐛 Bug Fix

Authors: 1


v5.1.8 (Mon Aug 03 2020)

🐛 Bug Fix

  • Pass top level menu state to consumers of the TOC component #183 (@kylesuss)

⚠️ Pushed to master

Authors: 1


v5.1.8 (Mon Aug 03 2020)

🐛 Bug Fix

  • Pass top level menu state to consumers of the TOC component #183 (@kylesuss)

Authors: 1


v5.1.7 (Sat Aug 01 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v5.1.7 (Sat Aug 01 2020)

🐛 Bug Fix

Authors: 1


v5.1.6 (Fri Jul 31 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v5.1.6 (Fri Jul 31 2020)

🐛 Bug Fix

Authors: 1


v5.1.4 (Fri Jul 24 2020)

🐛 Bug Fix

  • Use 'as' prop to control button, link styles and avoid transient props #178 (@kylesuss)

⚠️ Pushed to master

Authors: 1


v5.1.3 (Thu Jul 23 2020)

🐛 Bug Fix

  • Do not dynamically generate styled button component in render #177 (@kylesuss)

⚠️ Pushed to master

Authors: 1


v5.1.3 (Thu Jul 23 2020)

🐛 Bug Fix

  • Do not dynamically generate styled button component in render #177 (@kylesuss)

Authors: 1


v5.1.2 (Thu Jul 23 2020)

🐛 Bug Fix

  • Do not dynamically generate styled link component in render #176 (@kylesuss)
  • Update styled-components dependency #173 (@domyen)

⚠️ Pushed to master

Authors: 2


v5.1.2 (Thu Jul 23 2020)

🐛 Bug Fix

  • Do not dynamically generate styled link component in render #176 (@kylesuss)
  • Update styled-components dependency #173 (@domyen)

Authors: 2


v5.1.1 (Tue Jul 07 2020)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v5.1.1 (Tue Jul 07 2020)

🐛 Bug Fix

Authors: 1


v5.1.0 (Fri Jun 05 2020)

🚀 Enhancement

🐛 Bug Fix

⚠️ Pushed to master

Authors: 3


v5.0.4 (Sat Mar 21 2020)

🐛 Bug Fix

  • Refine outline and inverse button styling for :hover and :focus states #160 (@domyen)

Authors: 1


v5.0.3 (Thu Mar 19 2020)

⚠️ Pushed to master

Authors: 1


v5.0.2 (Tue Mar 17 2020)

🐛 Bug Fix

  • Add new button styles inspired by LearnStorybook.com #158 (@domyen)

Authors: 1


v5.0.1 (Mon Mar 16 2020)

🐛 Bug Fix

Authors: 1


v5.0.0 (Sun Mar 01 2020)

💥 Breaking Change

Authors: 1


v4.0.0 (Thu Feb 27 2020)

💥 Breaking Change

🐛 Bug Fix

🏠 Internal

⚠️ Pushed to master

Authors: 5


v3.0.0 (Sun Jan 19 2020)

💥 Breaking Change

⚠️ Pushed to master

  • Change onlyPublishWithReleaseLabel setting (@kylesuss)

Authors: 1


v3.0.0 (Sun Jan 19 2020)

💥 Breaking Change

Authors: 1


v2.0.5 (Tue Jan 07 2020)

🐛 Bug Fix

Authors: 1


v2.0.2 (Thu Dec 26 2019)

🐛 Bug Fix

Authors: 2


v2.0.2 (Thu Dec 26 2019)

🐛 Bug Fix

Authors: 2


v2.0.2 (Thu Dec 26 2019)

🐛 Bug Fix

Authors: 2


v2.0.1 (Thu Nov 28 2019)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 1


v2.0.0 (Thu Nov 28 2019)

💥 Breaking Change

  • Rename 'loading' prop to 'isLoading' to avoid unknown attribute warnings #122 (@ghengeveld)

🧹 Chores

Authors: 2

v1.1.7 (Fri Oct 18 2019)

🐛 Bug Fix

  • Add yaml syntax highlighting to Highlight component #97 (@kylesuss)

📝 Documentation

  • Replace custom colors/typography stories with DocBlocks. #95 (@leerob)

Authors: 2


v1.1.6 (Tue Oct 08 2019)

🐛 Bug Fix

  • Fix wrapping, overflow on Highlight component #90 (@kylesuss)

Authors: 1


v1.1.5 (Tue Oct 08 2019)

🐛 Bug Fix

  • Add left, right padding back to Highlight component #89 (@kylesuss)

Authors: 1


v1.1.4 (Tue Oct 08 2019)

🐛 Bug Fix

  • Remove default styling for Highlight code, pre selectors, conflict with globals #88 (@kylesuss)

Authors: 1


v1.1.3 (Tue Oct 08 2019)

🐛 Bug Fix

  • Add back global styles for code, pre elements #87 (@kylesuss)

Authors: 1


v1.1.1 (Mon Oct 07 2019)


v1.1.1 (Mon Oct 07 2019)


v1.1.0 (Mon Oct 07 2019)

🚀 Enhancement

  • Build out Highlight component to auto format, consolidate global code styling #80 (@kylesuss)

🐛 Bug Fix

Authors: 2


v1.0.0 (Wed Sep 11 2019)

💥 Breaking Change

  • Remove font import from GlobalStyle, export fontUrl #77 (@kylesuss)

🐛 Bug Fix

Authors: 3


v0.0.45 (Thu Aug 29 2019)

🐛 Bug Fix

  • Add icons for unfold and alternative share #72 (@domyen)

Authors: 1


v0.0.43 (Tue Jul 23 2019)

⚠️ Pushed to master

Authors: 2


v0.0.42 (Thu Jul 11 2019)

🐛 Bug Fix

Authors: 2


v0.0.41 (Tue Jul 02 2019)

⚠️ Pushed to master

Authors: 1


v0.0.40 (Tue Jul 02 2019)

🐛 Bug Fix

Authors: 2


v0.0.39 (Tue Jul 02 2019)

🐛 Bug Fix

Authors: 1


v0.0.38 (Tue Jul 02 2019)

🐛 Bug Fix

Authors: 1


v0.0.37 (Mon Jul 01 2019)

🐛 Bug Fix

  • Make button text bolder to increase readability #49 (@domyen)

Authors: 1


v0.0.36 (Mon Jul 01 2019)

🐛 Bug Fix

  • Memoize LinkWrapper in tooltip/ListItem for perf #48 (@kylesuss)

Authors: 1


v0.0.35 (Sat Jun 29 2019)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 3


v0.0.34 (Fri Jun 28 2019)

🐛 Bug Fix

Authors: 2


v0.0.33 (Fri Jun 28 2019)

🐛 Bug Fix

  • Refactor tooltip ListItem for flexibility in to/href prop names #42 (@kylesuss)

Authors: 1


v0.0.32 (Thu Jun 27 2019)

🐛 Bug Fix

Authors: 1


v0.0.31 (Thu Jun 27 2019)

🐛 Bug Fix

Authors: 3


v0.0.30 (Thu Jun 27 2019)

🐛 Bug Fix

Authors: 1


v0.0.29 (Wed Jun 26 2019)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 2


v0.0.28 (Wed Jun 26 2019)

🐛 Bug Fix

  • Update form components to support secondary styling #32 (@kylesuss)
  • Update Icon comments for formatting in docs mode #30 (@kylesuss)

Authors: 1


v0.0.27 (Wed Jun 26 2019)

🐛 Bug Fix

Authors: 2


v0.0.26 (Mon Jun 24 2019)

🐛 Bug Fix

⚠️ Pushed to master

  • Add closeAlt icon from Storybook's UI (@domyen)
  • Add :checked:focus state on the checkboxes && updated stories (@domyen)

Authors: 3


v0.0.25 (Thu Jun 20 2019)

🐛 Bug Fix

  • Only pass appropriate link props to Tooltip ListItem #24 (@kylesuss)

Authors: 1


v0.0.24 (Wed Jun 19 2019)

🐛 Bug Fix

Authors: 1


v0.0.23 (Tue Jun 18 2019)

🐛 Bug Fix

⚠️ Pushed to master

Authors: 5


v0.0.22 (Wed Jun 12 2019)

🐛 Bug Fix

  • Destructure LinkWrapper props to avoid passing them down #11 (@kylesuss)

Authors: 1


v0.0.21 (Wed Jun 12 2019)

🐛 Bug Fix

  • Fix LinkWrapper props to avoid collisions w React, Gatsby, etc links #10 (@kylesuss)

⚠️ Pushed to master

Authors: 2


v0.0.20 (Thu Jun 06 2019)

🐛 Bug Fix

Authors: 1


v0.0.19 (Thu Jun 06 2019)

🐛 Bug Fix

  • Fix Link transition perf by specifying properties #8 (@kylesuss)

Authors: 1


v0.0.18 (Thu Jun 06 2019)

🐛 Bug Fix

  • Add Highlight component w/ bash, JS, TS, CSS, JSON support #7 (@kylesuss)

Authors: 1


v0.0.17 (Tue Jun 04 2019)


v0.0.16 (Mon Jun 04 2019)

🐛 Bug Fix

  • Apply link styles to LinkWrapper #6 (@kylesuss)
  • Document yarn release, add .yarnrc & .eslintignore #5 (@kylesuss)

Authors: 1


v0.0.11 (Mon Jun 03 2019)

🐛 Bug Fix

  • Update org name to storybookjs from storybooks #4 (@kylesuss)
  • Bump version to: 0.0.12 #3 (@kylesuss)
  • Solidify button appearance combos, document active state #2 (@kylesuss)

⚠️ Pushed to master

Authors: 2


v0.0.10 (Wed May 22 2019)

⚠️ Pushed to master

Authors: 2


v0.0.9 (Fri May 17 2019)

⚠️ Pushed to master

Authors: 1


v0.0.8 (Fri May 17 2019)

⚠️ Pushed to master

Authors: 2


v0.0.7 (Tue May 14 2019)

⚠️ Pushed to master

  • Change dir structure and add new components (@domyen)

Authors: 1


v0.0.6 (Tue May 14 2019)

⚠️ Pushed to master

  • Remove non DS components (@domyen)
  • Change heading of "design system" to make it nicer when imported (@domyen)

Authors: 1


v0.0.5 (Tue May 14 2019)

⚠️ Pushed to master

Authors: 1


v0.0.4 (Tue May 14 2019)


v0.0.2 (Tue May 14 2019)

⚠️ Pushed to master

Authors: 1


v0.0.2 (Tue May 14 2019)

⚠️ Pushed to master

Authors: 1