blob: d275a9f0e4b1c554ecb1c1dc2d721e9c5b88e3f7 [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 Scandolo1aee1982017-02-17 08:33:23 -08007import {XosRuntimeStates} from './services/runtime-states';
8import {IXosNavigationService} 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 Scandoloac8c8c22017-01-09 15:04:32 -080017import {xosValidation} from './validation/validation';
Matteo Scandolo9d7940c2017-01-19 18:28:43 -080018import {xosSidePanel} from './side-panel/side-panel';
19import {XosSidePanel} from './side-panel/side-panel.service';
Matteo Scandolo4222a432017-01-23 12:18:40 -080020import {XosComponentInjector} from './services/helpers/component-injector.helpers';
Matteo Scandolo5053cbe2017-01-31 17:37:56 -080021import {XosKeyboardShortcut} from './services/keyboard-shortcut';
22import {xosKeyBindingPanel} from './key-binding/key-binding-panel';
Matteo Scandolo8b2370c2017-02-02 17:19:07 -080023import {xosPagination} from './pagination/pagination';
24import {PaginationFilter} from './pagination/pagination.filter';
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080025
26export const xosCore = 'xosCore';
27
28angular
Matteo Scandolo67c105f2017-01-09 09:30:52 -080029 .module('xosCore', [
30 'ui.router',
31 'toastr',
32 'ui.bootstrap.typeahead'
33 ])
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080034 .config(routesConfig)
Matteo Scandolo1aee1982017-02-17 08:33:23 -080035 .provider('XosRuntimeStates', XosRuntimeStates)
36 .service('XosNavigationService', IXosNavigationService)
Matteo Scandolo5655bdc2016-12-16 08:32:15 -080037 .service('PageTitle', PageTitle)
Matteo Scandoloee655a12016-12-19 15:38:43 -080038 .service('XosFormHelpers', XosFormHelpers)
Matteo Scandolod58d5042016-12-16 16:59:21 -080039 .service('ConfigHelpers', ConfigHelpers)
Matteo Scandolo9d7940c2017-01-19 18:28:43 -080040 .service('XosSidePanel', XosSidePanel)
Matteo Scandolo5053cbe2017-01-31 17:37:56 -080041 .service('XosKeyboardShortcut', XosKeyboardShortcut)
Matteo Scandolo4222a432017-01-23 12:18:40 -080042 .service('XosComponentInjector', XosComponentInjector)
Matteo Scandoloee655a12016-12-19 15:38:43 -080043 .directive('xosLinkWrapper', xosLinkWrapper)
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080044 .component('xosHeader', xosHeader)
45 .component('xosFooter', xosFooter)
46 .component('xosNav', xosNav)
Matteo Scandolo9f87f302016-12-13 18:11:10 -080047 .component('xosLogin', xosLogin)
Matteo Scandolo8b2370c2017-02-02 17:19:07 -080048 .component('xosPagination', xosPagination)
Matteo Scandoloee655a12016-12-19 15:38:43 -080049 .component('xosTable', xosTable)
50 .component('xosForm', xosForm)
Matteo Scandolo6f45e262017-01-09 14:47:26 -080051 .component('xosField', xosField)
Matteo Scandoloac8c8c22017-01-09 15:04:32 -080052 .component('xosAlert', xosAlert)
Matteo Scandolo9d7940c2017-01-19 18:28:43 -080053 .component('xosValidation', xosValidation)
Matteo Scandolo5053cbe2017-01-31 17:37:56 -080054 .component('xosSidePanel', xosSidePanel)
Matteo Scandolo8b2370c2017-02-02 17:19:07 -080055 .component('xosKeyBindingPanel', xosKeyBindingPanel)
56 .filter('pagination', PaginationFilter);