github styleguidist/react-styleguidist v6.2.0

latest releases: v13.1.2, v13.1.1, v13.1.0...
6 years ago

Support Styleguidist on Open Collective

New features

New option editorConfig to change CodeMirror options

highlightTheme is now deprecated, please update your config:

module.exports = {
-  highlightTheme: 'base16-light',
+  editorConfig: {
+    theme: 'base16-light'
+  }
};

Now you can change any CodeMirror options.

(#648, #662 by @SaraVieira)

Allow descriptions for sections

module.exports = {
  sections: [
    {
      name: 'Installation',
      content: 'docs/installation.md',
      description: 'The description for the installation section'
    }
  ]
}

(#743 by @SaraVieira)

Add TypeScript files to default components and ignore patterns

(#749, part of #750)

Bug fixes

  • Fix global access to all components in isolation mode (#738)
  • Fix color issue in Safari (#739)
  • Allow overriding of renderer-only components (#710)
  • Do not overflow floated elements in examples (#772, #773 by @roblevintennis)
  • HTML escaping in Add example block (#741)
  • Fix infinite loop caused by markdown-to-jsx (#742)

Don't miss a new react-styleguidist release

NewReleases is sending notifications on new releases.