blob: 6004bceccd62c710bdbad19f148fe5a018fcae80 [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 */
16import { 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';
26
27@NgModule({
28 imports: [
29 CommonModule
30 ],
31 declarations: [
32 DetectBrowserDirective,
33 TableResizeDirective,
34 IconComponent,
35 VeilComponent,
36 FlashComponent,
37 ConfirmComponent,
38 MastComponent,
39 TableFilterPipe
40 ],
41 exports: [
42 DetectBrowserDirective,
43 TableResizeDirective,
44 IconComponent,
45 VeilComponent,
46 FlashComponent,
47 ConfirmComponent,
48 MastComponent,
49 TableFilterPipe
50 ]
51})
52export class Gui2FwLibModule { }