blob: 17536f6f4e039e7643790e2ece7a734f2aa9e04d [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 Scandolod58d5042016-12-16 16:59:21 -080010import {ConfigHelpers} from './services/helpers/config.helpers';
Matteo Scandoloee655a12016-12-19 15:38:43 -080011import {xosLinkWrapper} from './link-wrapper/link-wrapper';
12import {XosFormHelpers} from './form/form-helpers';
13import {xosForm} from './form/form';
14import {xosField} from './field/field';
Matteo Scandolo266907e2016-12-20 13:41:42 -080015import 'angular-toastr';
Matteo Scandolo6f45e262017-01-09 14:47:26 -080016import {xosAlert} from './alert/alert';
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080017
18export const xosCore = 'xosCore';
19
20angular
Matteo Scandolo67c105f2017-01-09 09:30:52 -080021 .module('xosCore', [
22 'ui.router',
23 'toastr',
24 'ui.bootstrap.typeahead'
25 ])
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080026 .config(routesConfig)
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080027 .provider('RuntimeStates', RuntimeStates)
28 .service('NavigationService', NavigationService)
Matteo Scandolo5655bdc2016-12-16 08:32:15 -080029 .service('PageTitle', PageTitle)
Matteo Scandoloee655a12016-12-19 15:38:43 -080030 .service('XosFormHelpers', XosFormHelpers)
Matteo Scandolod58d5042016-12-16 16:59:21 -080031 .service('ConfigHelpers', ConfigHelpers)
Matteo Scandoloee655a12016-12-19 15:38:43 -080032 .directive('xosLinkWrapper', xosLinkWrapper)
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080033 .component('xosHeader', xosHeader)
34 .component('xosFooter', xosFooter)
35 .component('xosNav', xosNav)
Matteo Scandolo9f87f302016-12-13 18:11:10 -080036 .component('xosLogin', xosLogin)
Matteo Scandoloee655a12016-12-19 15:38:43 -080037 .component('xosTable', xosTable)
38 .component('xosForm', xosForm)
Matteo Scandolo6f45e262017-01-09 14:47:26 -080039 .component('xosField', xosField)
40 .component('xosAlert', xosAlert);