blob: d94e59ddcb7b4d3fe803460129de185c6c7a7359 [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
16 * A collection of UI components useful for Dashboard development.
17 * Currently available components are:
18 * - [xosAlert](/#/module/xos.uiComponents.directive:xosAlert)
19 * - [xosForm](/#/module/xos.uiComponents.directive:xosForm)
20 * - [xosPagination](/#/module/xos.uiComponents.directive:xosPagination)
21 * - [xosSmartTable](/#/module/xos.uiComponents.directive:xosSmartTable)
22 * - [xosTable](/#/module/xos.uiComponents.directive:xosTable)
23 * - [xosValidation](/#/module/xos.uiComponents.directive:xosValidation)
Matteo Scandoloaa683dd2016-04-14 15:34:12 -070024 **/
25
Matteo Scandolo91fe03d2016-03-24 15:29:52 -070026 angular.module('xos.uiComponents', [
Matteo Scandolob9fb6252016-05-26 15:09:55 -070027 'chart.js',
28 'RecursionHelper'
Matteo Scandolo91fe03d2016-03-24 15:29:52 -070029 ])
30})();