Breaking changes
Improved state
Previously setState
in examples was causing component rerender which was braking animation and other things.
Default state definition was changed. Instead of:
'count' in state || setState({ count : 1})
You should do:
initialState = { count: 1 };
(#51, #134 by @saschatimme)
Collapsible code examples
Now code examples are collapsed by default, you can change it by showCode option.
New features
Basic isolated links implementation
Now you can open any component in a separate page:
The UI requires more work, any help is appreciated.