1
- import { NgModule } from '@angular/core' ;
2
- import { CommonModule } from '@angular/common' ;
3
- import { FormsModule , ReactiveFormsModule } from '@angular/forms' ;
4
- import { HttpModule } from '@angular/http' ;
5
- import { ToastyModule } from 'ng2-toasty' ;
6
- import { NgBusyModule , BusyConfig , BUSY_CONFIG_DEFAULTS } from 'ng-busy' ;
7
- import { ErrorHandler } from './model/error-handler' ;
8
- import { CapitalizePipe } from './pipes/capitalize.pipe' ;
9
- import { TriStateCheckboxComponent } from './components/tri-state-checkbox.component' ;
10
- import { TriStateButtonComponent } from './components/tri-state-button.component' ;
11
- import { ClickOutsideDirective } from './directives/click-outside.directive' ;
12
- import { SearchfilterPipe } from './pipes/search-filter.pipe' ;
13
- import { KeyValuePipe } from './pipes/key-value-filter.pipe' ;
14
- import { NgxPaginationModule } from 'ngx-pagination' ;
15
- import { PropertyTableComponent } from './components/property-table/property-table.component' ;
16
- import { ProgressbarModule } from 'ngx-bootstrap/progressbar' ;
17
- import { ModalModule } from 'ngx-bootstrap/modal' ;
18
- import { BsDropdownModule } from 'ngx-bootstrap/dropdown' ;
19
- import { TooltipModule } from 'ngx-bootstrap/tooltip' ;
20
- import { TabComponent , TabsComponent } from './components/tabs.component' ;
21
- import { ParserService } from './services/parser.service' ;
22
- import { SharedAppsService } from './services/shared-apps.service' ;
23
- import { DataflowDateTimePipe } from './pipes/dataflow-date-time.pipe' ;
24
- import { DataflowDurationPipe } from './pipes/dataflow-duration.pipe' ;
25
- import { MapValuesPipe } from './pipes/map-values-pipe.pipe' ;
26
- import { FloModule } from 'spring-flo' ;
27
- import { HandleComponent } from './flo/handle/handle.component' ;
28
- import { DecorationComponent } from './flo/decoration/decoration.component' ;
29
- import { PropertiesDialogComponent } from './flo/properties/properties-dialog.component' ;
30
- import { GraphViewComponent } from './flo/graph-view/graph-view.component' ;
31
- import { SharedAboutService } from './services/shared-about.service' ;
32
- import { MasterCheckboxComponent } from './components/master-checkbox.component' ;
33
- import { SortComponent } from './components/sort/sort.component' ;
34
- import { TruncatePipe } from './pipes/truncate.pipe' ;
35
- import { OrderByPipe } from './pipes/orderby.pipe' ;
36
- import { ConfirmService } from './components/confirm/confirm.service' ;
37
- import { ConfirmComponent } from './components/confirm/confirm.component' ;
38
- import { BusyService } from './services/busy.service' ;
39
- import { StreamDslComponent } from './components/dsl/dsl.component' ;
1
+ import { NgModule } from '@angular/core' ;
2
+ import { CommonModule } from '@angular/common' ;
3
+ import { FormsModule , ReactiveFormsModule } from '@angular/forms' ;
4
+
5
+ import { HttpModule } from '@angular/http' ;
6
+
7
+ import { ToastyModule } from 'ng2-toasty' ;
8
+
9
+ import { NgBusyModule , BusyConfig , BUSY_CONFIG_DEFAULTS } from 'ng-busy' ;
10
+ import { ErrorHandler } from './model/error-handler' ;
11
+ import { CapitalizePipe } from './pipes/capitalize.pipe' ;
12
+ import { TriStateCheckboxComponent } from './components/tri-state-checkbox.component' ;
13
+ import { TriStateButtonComponent } from './components/tri-state-button.component' ;
14
+ import { ClickOutsideDirective } from './directives/click-outside.directive' ;
15
+ import { SearchfilterPipe } from './pipes/search-filter.pipe' ;
16
+
17
+ import { KeyValuePipe } from './pipes/key-value-filter.pipe' ;
18
+
19
+ import { NgxPaginationModule } from 'ngx-pagination' ;
20
+ import { PropertyTableComponent } from './components/property-table/property-table.component' ;
21
+
22
+ import { ProgressbarModule } from 'ngx-bootstrap/progressbar' ;
23
+ import { ModalModule } from 'ngx-bootstrap/modal' ;
24
+ import { BsDropdownModule } from 'ngx-bootstrap/dropdown' ;
25
+ import { TooltipModule } from 'ngx-bootstrap/tooltip' ;
26
+
27
+ import { TabComponent , TabsComponent } from './components/tabs.component' ;
28
+
29
+ import { ParserService } from './services/parser.service' ;
30
+ import { SharedAppsService } from './services/shared-apps.service' ;
31
+ import { DataflowDateTimePipe } from './pipes/dataflow-date-time.pipe' ;
32
+ import { DataflowDurationPipe } from './pipes/dataflow-duration.pipe' ;
33
+ import { MapValuesPipe } from './pipes/map-values-pipe.pipe' ;
34
+ import { FloModule } from 'spring-flo' ;
35
+ import { HandleComponent } from './flo/handle/handle.component' ;
36
+ import { DecorationComponent } from './flo/decoration/decoration.component' ;
37
+ import { PropertiesDialogComponent } from './flo/properties/properties-dialog.component' ;
38
+ import { GraphViewComponent } from './flo/graph-view/graph-view.component' ;
39
+ import { SharedAboutService } from './services/shared-about.service' ;
40
+ import { MasterCheckboxComponent } from './components/master-checkbox.component' ;
41
+ import { SortComponent } from './components/sort/sort.component' ;
42
+ import { TruncatePipe } from './pipes/truncate.pipe' ;
43
+ import { OrderByPipe } from './pipes/orderby.pipe' ;
44
+ import { ConfirmService } from './components/confirm/confirm.service' ;
45
+ import { ConfirmComponent } from './components/confirm/confirm.component' ;
46
+ import { BusyService } from './services/busy.service' ;
47
+ import { AutoResizeDirective } from './directives/auto-resize.directive' ;
40
48
41
49
const busyConfig : BusyConfig = {
42
50
message : 'Processing..' ,
@@ -77,6 +85,7 @@ const busyConfig: BusyConfig = {
77
85
MasterCheckboxComponent ,
78
86
SortComponent ,
79
87
ClickOutsideDirective ,
88
+ AutoResizeDirective ,
80
89
PropertyTableComponent ,
81
90
TabsComponent ,
82
91
TabComponent ,
@@ -89,8 +98,7 @@ const busyConfig: BusyConfig = {
89
98
GraphViewComponent ,
90
99
TruncatePipe ,
91
100
OrderByPipe ,
92
- ConfirmComponent ,
93
- StreamDslComponent
101
+ ConfirmComponent
94
102
] ,
95
103
entryComponents : [
96
104
ConfirmComponent
@@ -129,7 +137,7 @@ const busyConfig: BusyConfig = {
129
137
TruncatePipe ,
130
138
OrderByPipe ,
131
139
ConfirmComponent ,
132
- StreamDslComponent
140
+ AutoResizeDirective
133
141
]
134
142
} )
135
143
export class SharedModule {
0 commit comments