blob: 1a1bb7cf58e5b626a1bac767980be64fc0bfee6a [file] [log] [blame]
Matteo Scandolo686547a2017-08-08 13:05:25 -07001
2/*
3 * Copyright 2017-present Open Networking Foundation
4
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18
Matteo Scandoloa5d03d52016-07-21 11:35:46 -070019/**
20 * © OpenCORD
21 *
22 * Visit http://guide.xosproject.org/devguide/addview/ for more information
23 *
24 * Created by teone on 3/24/16.
25 */
26
27(function () {
28 'use strict';
29
30 /**
31 * @ngdoc overview
32 * @name xos.uiComponents
33 * @description
34 * # xos.uiComponents
35 * A collection of UI components useful for Dashboard development. <br/>
36 * Currently available components are:
37 * - [xosAlert](/#/module/xos.uiComponents.directive:xosAlert)
38 * - [xosForm](/#/module/xos.uiComponents.directive:xosForm)
39 * - [xosPagination](/#/module/xos.uiComponents.directive:xosPagination)
40 * - [xosSmartTable](/#/module/xos.uiComponents.directive:xosSmartTable)
41 * - [xosTable](/#/module/xos.uiComponents.directive:xosTable)
42 * - [xosValidation](/#/module/xos.uiComponents.directive:xosValidation)
43 **/
44
45 angular.module('xos.uiComponents', [
46 'chart.js',
Matteo Scandolo65116c42016-09-21 17:06:23 -070047 'RecursionHelper',
48 'dndLists'
Matteo Scandoloa5d03d52016-07-21 11:35:46 -070049 ])
50})();