Skip to content

Releases: styleguidist/react-styleguidist

v10.5.0

13 Jan 14:43
f96137c
Compare
Choose a tag to compare

10.5.0 (2020-01-13)

Docs

New

v10.4.2

09 Jan 14:45
Compare
Choose a tag to compare

10.4.2 (2020-01-09)

Build

fix

Fix

v10.4.1

06 Jan 08:26
Compare
Choose a tag to compare

10.4.1 (2020-01-06)

Fix

v11.0.0-beta2

03 Jan 08:56
Compare
Choose a tag to compare
v11.0.0-beta2 Pre-release
Pre-release

Changes after v11.0.0-beta1.

Prefer default exports over named exports

Use the default export of a component when autoimporting in examples. Might break some of your examples if your component have both, default and named, exports.

#1504 by @Lazyuki

v10.4.0

02 Jan 13:24
Compare
Choose a tag to compare

10.4.0 (2020-01-02)

Build

chore

  • Add By me a coffee button (35e5d65)

Docs

New

v11.0.0-beta1

27 Dec 13:28
Compare
Choose a tag to compare
v11.0.0-beta1 Pre-release
Pre-release

Breaking changes

TypeScript support out of the box

We're using react-docgen@5.0.0 now that supports TypeScript out of the box, no need for react-docgen-typescript anymore.

#750, #1354, #1500 by @okonet and @thecodejack

Remove initialState/setState/state

Remove custom state management for examples, use React Hooks instead.

- initialState = { value: '' }
+ const [value, setValue] = React.useState('')
<Textarea
-  value={state.value}
+  value={value}
-  onChange={e => setState({ value: e.target.value })}
+  onChange={e => setValue(e.target.value)}
/>

#1499, #1501 by @thecodejack

v10.3.2

11 Dec 19:07
Compare
Choose a tag to compare

10.3.2 (2019-12-11)

Fix

v10.3.1

11 Dec 14:48
Compare
Choose a tag to compare

10.3.1 (2019-12-11)

Fix

v10.3.0

10 Dec 20:10
29a6375
Compare
Choose a tag to compare

10.3.0 (2019-12-10)

Bug fixes

New features

v10.2.1

18 Nov 08:37
Compare
Choose a tag to compare

10.2.1 (2019-11-18)

Build

  • Add funding field to package.json (266f5d4)

Chore

Docs

Fix