blob: f213ca1545910f38f23605c4c48a514d9dac259b [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';
Sean Condonb2c483c2019-01-16 20:28:55 +000026import { QuickhelpComponent } from './layer/quickhelp/quickhelp.component';
Sean Condon5ca00262018-09-06 17:55:25 +010027
28@NgModule({
29 imports: [
30 CommonModule
31 ],
32 declarations: [
33 DetectBrowserDirective,
34 TableResizeDirective,
35 IconComponent,
36 VeilComponent,
37 FlashComponent,
38 ConfirmComponent,
Sean Condonb2c483c2019-01-16 20:28:55 +000039 QuickhelpComponent,
Sean Condon5ca00262018-09-06 17:55:25 +010040 MastComponent,
41 TableFilterPipe
42 ],
43 exports: [
44 DetectBrowserDirective,
45 TableResizeDirective,
46 IconComponent,
47 VeilComponent,
48 FlashComponent,
49 ConfirmComponent,
Sean Condonb2c483c2019-01-16 20:28:55 +000050 QuickhelpComponent,
Sean Condon5ca00262018-09-06 17:55:25 +010051 MastComponent,
52 TableFilterPipe
53 ]
54})
55export class Gui2FwLibModule { }