mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-03-16 22:10:28 +00:00
This is where developers expect it to be, similar to Django and other projects. The version info still exists at the old `wagtail.wagtailcore` location, for backwards compatibility. Fixes #2557 |
||
|---|---|---|
| .. | ||
| scss | ||
| src | ||
| template | ||
| tests/components | ||
| .npmignore | ||
| package.json | ||
| README.md | ||
Wagtail client-side components
This library aims to give developers the ability to subclass and configure Wagtail's UI components.
Usage
npm install wagtail
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.