blob: 4a59988aab1c677f47ff7d49d2f769bbaff85fc0 [file] [log] [blame]
Sean Condon5ca00262018-09-06 17:55:25 +01001/*
2 * Copyright 2018-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Sean Condon14d442f2019-12-09 14:16:19 +000016import {NgModule} from '@angular/core';
17import {CommonModule} from '@angular/common';
18import {DetectBrowserDirective} from './detectbrowser.directive';
19import {IconComponent} from './svg/icon/icon.component';
20import {VeilComponent} from './layer/veil/veil.component';
21import {FlashComponent} from './layer/flash/flash.component';
22import {ConfirmComponent} from './layer/confirm/confirm.component';
23import {MastComponent} from './mast/mast/mast.component';
24import {TableFilterPipe} from './widget/tablefilter.pipe';
25import {TableResizeDirective} from './widget/tableresize.directive';
26import {QuickhelpComponent} from './layer/quickhelp/quickhelp.component';
27import {LoadingComponent} from './layer/loading/loading.component';
28import {ZoomableDirective} from './svg/zoomable.directive';
29import {NameInputComponent} from './util/name-input/name-input.component';
Sean Condon5ca00262018-09-06 17:55:25 +010030
31@NgModule({
Sean Condon14d442f2019-12-09 14:16:19 +000032 imports: [
33 CommonModule
34 ],
35 declarations: [
36 DetectBrowserDirective,
37 TableResizeDirective,
38 IconComponent,
39 VeilComponent,
40 FlashComponent,
41 ConfirmComponent,
42 QuickhelpComponent,
43 MastComponent,
44 TableFilterPipe,
45 LoadingComponent,
46 ZoomableDirective,
47 NameInputComponent
48 ],
49 exports: [
50 DetectBrowserDirective,
51 TableResizeDirective,
52 IconComponent,
53 VeilComponent,
54 FlashComponent,
55 ConfirmComponent,
56 QuickhelpComponent,
57 MastComponent,
58 TableFilterPipe,
59 LoadingComponent,
60 ZoomableDirective,
61 NameInputComponent
62 ]
Sean Condon5ca00262018-09-06 17:55:25 +010063})
Sean Condon14d442f2019-12-09 14:16:19 +000064export class Gui2FwLibModule {
65}