blob: f8bc222e3f9029caa02c3e6d1b0bff491b78d9ab [file] [log] [blame]
Matteo Scandolo91fe03d2016-03-24 15:29:52 -07001/**
2 * © OpenCORD
3 *
4 * Visit http://guide.xosproject.org/devguide/addview/ for more information
5 *
6 * Created by teone on 3/24/16.
7 */
8
9(function () {
10 'use strict';
11
Matteo Scandoloaa683dd2016-04-14 15:34:12 -070012 /**
13 * @ngdoc overview
14 * @name xos.uiComponents
Matteo Scandolo4b93a892016-04-28 14:34:31 -070015 * @description
Matteo Scandolo0ae5d352016-07-15 17:04:14 -070016 * # xos.uiComponents
17 * A collection of UI components useful for Dashboard development. <br/>
Matteo Scandolo4b93a892016-04-28 14:34:31 -070018 * Currently available components are:
19 * - [xosAlert](/#/module/xos.uiComponents.directive:xosAlert)
20 * - [xosForm](/#/module/xos.uiComponents.directive:xosForm)
21 * - [xosPagination](/#/module/xos.uiComponents.directive:xosPagination)
22 * - [xosSmartTable](/#/module/xos.uiComponents.directive:xosSmartTable)
23 * - [xosTable](/#/module/xos.uiComponents.directive:xosTable)
24 * - [xosValidation](/#/module/xos.uiComponents.directive:xosValidation)
Matteo Scandoloaa683dd2016-04-14 15:34:12 -070025 **/
26
Matteo Scandolo91fe03d2016-03-24 15:29:52 -070027 angular.module('xos.uiComponents', [
Matteo Scandolob9fb6252016-05-26 15:09:55 -070028 'chart.js',
29 'RecursionHelper'
Matteo Scandolo91fe03d2016-03-24 15:29:52 -070030 ])
31})();