blob: d93e627c471f0ffa289d98ee4eb47216b4bc859d [file] [log] [blame]
Matteo Scandolof6acdbe2016-12-13 10:29:37 -08001import {xosHeader} from './header/header';
2import {xosFooter} from './footer/footer';
3import {xosNav} from './nav/nav';
4import routesConfig from './routes';
5import {xosLogin} from './login/login';
Matteo Scandolo9f87f302016-12-13 18:11:10 -08006import {xosTable} from './table/table';
Matteo Scandolof2c3ed62016-12-15 14:32:50 -08007import {RuntimeStates} from './services/runtime-states';
8import {NavigationService} from './services/navigation';
Matteo Scandolo5655bdc2016-12-16 08:32:15 -08009import {PageTitle} from './services/page-title';
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080010
11export const xosCore = 'xosCore';
12
13angular
14 .module('xosCore', ['ui.router'])
15 .config(routesConfig)
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080016 .provider('RuntimeStates', RuntimeStates)
17 .service('NavigationService', NavigationService)
Matteo Scandolo5655bdc2016-12-16 08:32:15 -080018 .service('PageTitle', PageTitle)
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080019 .component('xosHeader', xosHeader)
20 .component('xosFooter', xosFooter)
21 .component('xosNav', xosNav)
Matteo Scandolo9f87f302016-12-13 18:11:10 -080022 .component('xosLogin', xosLogin)
23 .component('xosTable', xosTable);