Sean Condon | 5ca0026 | 2018-09-06 17:55:25 +0100 | [diff] [blame] | 1 | /* |
| 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 Condon | 14d442f | 2019-12-09 14:16:19 +0000 | [diff] [blame] | 16 | import {NgModule} from '@angular/core'; |
| 17 | import {CommonModule} from '@angular/common'; |
| 18 | import {DetectBrowserDirective} from './detectbrowser.directive'; |
| 19 | import {IconComponent} from './svg/icon/icon.component'; |
| 20 | import {VeilComponent} from './layer/veil/veil.component'; |
| 21 | import {FlashComponent} from './layer/flash/flash.component'; |
| 22 | import {ConfirmComponent} from './layer/confirm/confirm.component'; |
| 23 | import {MastComponent} from './mast/mast/mast.component'; |
| 24 | import {TableFilterPipe} from './widget/tablefilter.pipe'; |
| 25 | import {TableResizeDirective} from './widget/tableresize.directive'; |
| 26 | import {QuickhelpComponent} from './layer/quickhelp/quickhelp.component'; |
| 27 | import {LoadingComponent} from './layer/loading/loading.component'; |
| 28 | import {ZoomableDirective} from './svg/zoomable.directive'; |
| 29 | import {NameInputComponent} from './util/name-input/name-input.component'; |
Sean Condon | 5ca0026 | 2018-09-06 17:55:25 +0100 | [diff] [blame] | 30 | |
| 31 | @NgModule({ |
Sean Condon | 14d442f | 2019-12-09 14:16:19 +0000 | [diff] [blame] | 32 | 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 Condon | 5ca0026 | 2018-09-06 17:55:25 +0100 | [diff] [blame] | 63 | }) |
Sean Condon | 14d442f | 2019-12-09 14:16:19 +0000 | [diff] [blame] | 64 | export class Gui2FwLibModule { |
| 65 | } |