2017-01-26 09:56:53 +01:00
|
|
|
import './callbacks.js';
|
|
|
|
|
2017-02-06 22:24:05 +08:00
|
|
|
// import and re-export
|
2017-07-03 10:54:10 +09:00
|
|
|
export * from 'meteor/vulcan:lib';
|
|
|
|
|
|
|
|
export * from './default_mutations.js';
|
|
|
|
export * from './default_resolvers.js';
|
2017-02-06 22:24:05 +08:00
|
|
|
|
2018-09-12 11:59:00 +09:00
|
|
|
export { default as Layout } from './components/Layout.jsx';
|
|
|
|
export { default as App } from './components/App.jsx';
|
|
|
|
export { default as Icon } from './components/Icon.jsx';
|
|
|
|
export { default as Loading } from './components/Loading.jsx';
|
|
|
|
export { default as ShowIf } from './components/ShowIf.jsx';
|
2018-01-03 15:13:50 +09:00
|
|
|
export { default as NewButton } from './components/NewButton.jsx';
|
2017-10-26 16:04:26 +09:00
|
|
|
export { default as EditButton } from './components/EditButton.jsx';
|
2018-07-13 21:47:36 +02:00
|
|
|
export { default as MutationButton } from './components/MutationButton.jsx';
|
2017-02-17 20:45:11 +09:00
|
|
|
export { default as Error404 } from './components/Error404.jsx';
|
2017-06-13 01:48:07 -07:00
|
|
|
export { default as DynamicLoading } from './components/DynamicLoading.jsx';
|
2017-06-20 10:43:45 +09:00
|
|
|
export { default as HeadTags } from './components/HeadTags.jsx';
|
2017-07-05 10:31:37 +09:00
|
|
|
export { default as Avatar } from './components/Avatar.jsx';
|
2017-07-25 18:39:26 +09:00
|
|
|
export { default as Card } from './components/Card.jsx';
|
2017-08-02 16:19:15 +09:00
|
|
|
export { default as Datatable } from './components/Datatable.jsx';
|
2017-08-07 16:02:29 +09:00
|
|
|
export { default as Flash } from './components/Flash.jsx';
|
2017-08-31 12:54:09 +09:00
|
|
|
export { default as HelloWorld } from './components/HelloWorld.jsx';
|
|
|
|
export { default as Welcome } from './components/Welcome.jsx';
|
2017-12-17 17:42:06 +09:00
|
|
|
export { default as RouterHook } from './components/RouterHook.jsx';
|
2017-02-06 22:24:05 +08:00
|
|
|
|
2018-09-12 11:59:00 +09:00
|
|
|
export { default as withAccess } from './containers/withAccess.js';
|
|
|
|
export { default as withMessages } from './containers/withMessages.js';
|
2018-06-05 11:51:25 +09:00
|
|
|
export { default as withMulti } from './containers/withMulti.js';
|
|
|
|
export { default as withSingle } from './containers/withSingle.js';
|
2018-06-02 18:49:53 +09:00
|
|
|
export { default as withCreate } from './containers/withCreate.js';
|
|
|
|
export { default as withUpdate } from './containers/withUpdate.js';
|
|
|
|
export { default as withDelete } from './containers/withDelete.js';
|
2016-11-30 16:58:28 +09:00
|
|
|
export { default as withCurrentUser } from './containers/withCurrentUser.js';
|
2016-12-06 16:25:50 +09:00
|
|
|
export { default as withMutation } from './containers/withMutation.js';
|
2018-01-31 18:29:49 -06:00
|
|
|
export { default as withUpsert } from './containers/withUpsert.js';
|
2018-06-02 18:49:53 +09:00
|
|
|
|
2018-11-14 11:51:27 +01:00
|
|
|
export { default as withComponents } from './containers/withComponents';
|
2018-06-02 18:49:53 +09:00
|
|
|
|
|
|
|
// OpenCRUD backwards compatibility
|
|
|
|
export { default as withNew } from './containers/withCreate.js';
|
|
|
|
export { default as withEdit } from './containers/withUpdate.js';
|
|
|
|
export { default as withRemove } from './containers/withDelete.js';
|
2018-06-05 11:51:25 +09:00
|
|
|
export { default as withList } from './containers/withMulti.js';
|
|
|
|
export { default as withDocument } from './containers/withSingle.js';
|