2016-06-17 13:48:33 +00:00
|
|
|
/**
|
|
|
|
|
* Entry point for the wagtail package.
|
|
|
|
|
* Re-exports components and other modules via a cleaner API.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import Button from './components/Button/Button';
|
|
|
|
|
import Icon from './components/Icon/Icon';
|
|
|
|
|
import PublicationStatus from './components/PublicationStatus/PublicationStatus';
|
2017-02-12 15:29:56 +00:00
|
|
|
import LoadingSpinner from './components/LoadingSpinner/LoadingSpinner';
|
|
|
|
|
import Transition from './components/Transition/Transition';
|
|
|
|
|
import Explorer, {
|
|
|
|
|
ExplorerToggle,
|
|
|
|
|
initExplorer,
|
|
|
|
|
} from './components/Explorer';
|
2017-12-05 17:50:20 +00:00
|
|
|
import draftail from './components/Draftail';
|
2016-06-17 13:48:33 +00:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
Button,
|
|
|
|
|
Icon,
|
|
|
|
|
PublicationStatus,
|
2017-02-12 15:29:56 +00:00
|
|
|
LoadingSpinner,
|
|
|
|
|
Transition,
|
|
|
|
|
Explorer,
|
|
|
|
|
ExplorerToggle,
|
|
|
|
|
initExplorer,
|
2017-12-05 17:50:20 +00:00
|
|
|
draftail,
|
2016-06-17 13:48:33 +00:00
|
|
|
};
|