Releases: doczjs/docz
Releases · doczjs/docz
v0.6.1
v0.6.0
Changelog
🐞 Bug Fixes
- docz: prevent default components object with no render (4535aef)
- docz-core: add error when dest is working directory (b1c87b5)
- docz-core: process.env vars for scripts (f6b6260)
- docz-core: serve static files from public (c866856)
- docz-theme-default: open menu if has some link active (8399aad)
🚀 Features
- docz-core: add
onCreateApp
plugin method (13c07e7)
v0.5.9
v0.5.8
v0.5.7
v0.5.6
Changelog
🐞 Bug Fixes
- docz: add theme config transform before merge (dc3448a)
- docz-theme-default: sidebar search (8fd77ec)
🚀 Features
- docz: add classname and style props for Playground (1b64ed3)
- docz-core: add webpack-serve-waitpage (83c493b)
Playground with style
Now you able to add className
or style
properties on Playground component like that:
import { Playground } from 'docz'
import { Button } from './Button'
<Playground className="some-class">
<Button>Click me</Button>
</Playground>