Matteo Scandolo | 91fe03d | 2016-03-24 15:29:52 -0700 | [diff] [blame] | 1 | /** |
| 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 Scandolo | aa683dd | 2016-04-14 15:34:12 -0700 | [diff] [blame] | 12 | /** |
| 13 | * @ngdoc overview |
| 14 | * @name xos.uiComponents |
Matteo Scandolo | 4b93a89 | 2016-04-28 14:34:31 -0700 | [diff] [blame] | 15 | * @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 Scandolo | aa683dd | 2016-04-14 15:34:12 -0700 | [diff] [blame] | 24 | **/ |
| 25 | |
Matteo Scandolo | 91fe03d | 2016-03-24 15:29:52 -0700 | [diff] [blame] | 26 | angular.module('xos.uiComponents', [ |
Matteo Scandolo | b9fb625 | 2016-05-26 15:09:55 -0700 | [diff] [blame] | 27 | 'chart.js', |
| 28 | 'RecursionHelper' |
Matteo Scandolo | 91fe03d | 2016-03-24 15:29:52 -0700 | [diff] [blame] | 29 | ]) |
| 30 | })(); |