mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-30 01:46:24 +01:00
14f02a0b50
Thanks to @justinvdm for the help Merges: #2275
43 lines
722 B
Markdown
43 lines
722 B
Markdown
# Wagtail client-side components
|
|
|
|
This library aims to give developers the ability to subclass and configure Wagtail's UI components.
|
|
|
|
## Usage
|
|
|
|
```
|
|
npm install wagtail
|
|
```
|
|
|
|
```javascript
|
|
import { Explorer } from 'wagtail';
|
|
|
|
...
|
|
|
|
<Explorer onChoosePage={(page)=> { console.log(`You picked ${page}`); }} />
|
|
|
|
```
|
|
|
|
## Available components
|
|
|
|
TODO
|
|
|
|
- [ ] Explorer
|
|
- [ ] Modal
|
|
- [ ] DatePicker
|
|
- [ ] LinkChooser
|
|
- [ ] DropDown
|
|
|
|
## Building in development
|
|
|
|
Run `webpack` from the Wagtail project root.
|
|
|
|
```
|
|
webpack
|
|
```
|
|
|
|
## How to release
|
|
|
|
The front-end is bundled at the same time as the Wagtail project, via `setuptools`. You'll need to set the `__semver__` property to a npm-compliant version number in `wagtail.wagtailcore`.
|
|
|
|
|