added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / layout / onboarding / create-test / create-test.module.ts
diff --git a/otf-frontend/client/src/app/layout/onboarding/create-test/create-test.module.ts b/otf-frontend/client/src/app/layout/onboarding/create-test/create-test.module.ts
new file mode 100644 (file)
index 0000000..576948d
--- /dev/null
@@ -0,0 +1,61 @@
+/*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
+#                                                                              #\r
+#   Licensed under the Apache License, Version 2.0 (the "License");            #\r
+#   you may not use this file except in compliance with the License.           #\r
+#   You may obtain a copy of the License at                                    #\r
+#                                                                              #\r
+#       http://www.apache.org/licenses/LICENSE-2.0                             #\r
+#                                                                              #\r
+#   Unless required by applicable law or agreed to in writing, software        #\r
+#   distributed under the License is distributed on an "AS IS" BASIS,          #\r
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
+#   See the License for the specific language governing permissions and        #\r
+#   limitations under the License.                                             #\r
+##############################################################################*/\r
+\r
+\r
+import { NgModule } from '@angular/core';\r
+import { CommonModule } from '@angular/common';\r
+\r
+import { CreateTestRoutingModule } from './create-test-routing.module';\r
+import { CreateTestComponent } from './create-test.component';\r
+import { PageHeaderModule } from '../../../shared';\r
+import { PERFECT_SCROLLBAR_CONFIG, PerfectScrollbarConfigInterface } from 'ngx-perfect-scrollbar';\r
+import { FilterPipeModule } from 'ngx-filter-pipe';\r
+import { FormsModule } from '@angular/forms';\r
+import { MatCheckboxModule } from '@angular/material/checkbox';\r
+import { MatRadioModule } from '@angular/material/radio';\r
+import { MatInputModule } from '@angular/material/input';\r
+import { MatIconModule } from '@angular/material/icon';\r
+import { MatButtonModule, MatDialogModule, MAT_DIALOG_DEFAULT_OPTIONS, MAT_CHECKBOX_CLICK_ACTION, MatCardModule } from '@angular/material';\r
+import { CreateTestFormModule } from '../../../shared/modules/create-test-form/create-test-form.module';\r
+\r
+const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = {\r
+  suppressScrollY: true\r
+};\r
+\r
+@NgModule({\r
+  imports: [\r
+    CommonModule,\r
+    CreateTestRoutingModule,\r
+    CreateTestFormModule,\r
+    PageHeaderModule,\r
+    FilterPipeModule,\r
+    FormsModule,\r
+    MatButtonModule,\r
+    MatDialogModule,\r
+    MatCheckboxModule,\r
+    MatRadioModule,\r
+    MatInputModule,\r
+    MatIconModule,\r
+    CreateTestFormModule,\r
+    MatCardModule\r
+  ],\r
+  declarations: [CreateTestComponent],\r
+  providers: [\r
+    {provide: PERFECT_SCROLLBAR_CONFIG, useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG},\r
+    {provide: MAT_DIALOG_DEFAULT_OPTIONS, useValue: {hasBackdrop: true}},\r
+    {provide: MAT_CHECKBOX_CLICK_ACTION, useValue: 'check'}\r
+  ]\r
+})\r
+export class CreateTestModule { }\r