summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/rdp.module.ts
diff options
context:
space:
mode:
authorSudarshan Kumar <sudarshan.kumar@att.com>2020-01-31 17:10:17 +0530
committerSudarshan Kumar <sudarshan.kumar@att.com>2020-02-03 07:45:35 +0000
commit5505e42484efac0273627795583179d58f81a1ee (patch)
treeaaa7a249a6f8c6eec80babbd37ffaa29a0ca3152 /ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/rdp.module.ts
parent2edccd7e8ef958d4891ba6de87a449daeb7593fe (diff)
Added RDP Library
added RDP Library Issue-ID: PORTAL-826 Change-Id: If00af4c55b568bb4e41c789b6b18749d8bc96858 Signed-off-by: Sudarshan Kumar <sudarshan.kumar@att.com>
Diffstat (limited to 'ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/rdp.module.ts')
-rw-r--r--ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/rdp.module.ts67
1 files changed, 67 insertions, 0 deletions
diff --git a/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/rdp.module.ts b/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/rdp.module.ts
new file mode 100644
index 00000000..e33ad4e6
--- /dev/null
+++ b/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/rdp.module.ts
@@ -0,0 +1,67 @@
+import { NgModule } from '@angular/core';
+import { CommonModule } from '@angular/common';
+
+import { MaterialModule } from '../../material-module';
+import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
+import { HttpClientModule } from '@angular/common/http';
+import { ReactiveFormsModule, FormsModule } from '@angular/forms';
+import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
+import { RdpDataTableComponent } from './rdp-data-table/rdp-data-table.component';
+import { RdpColumnComponent } from './rdp-column/rdp-column.component';
+import { RdpDataTableEditComponent } from './rdp-data-table/rdp-data-table-edit/rdp-data-table-edit.component';
+import { RdpInputEditorComponent } from './rdp-cell-editor/rdp-input-editor/rdp-input-editor.component';
+import { RdpSelectEditorComponent } from './rdp-cell-editor/rdp-select-editor/rdp-select-editor.component';
+import { RdpTextareaEditorComponent } from './rdp-cell-editor/rdp-textarea-editor/rdp-textarea-editor.component';
+import { RdpCheckboxEditorComponent } from './rdp-cell-editor/rdp-checkbox-editor/rdp-checkbox-editor.component';
+import { RdpDatepickerEditorComponent } from './rdp-cell-editor/rdp-datepicker-editor/rdp-datepicker-editor.component';
+import { RdpAutocompleteEditorComponent } from './rdp-cell-editor/rdp-autocomplete-editor/rdp-autocomplete-editor.component';
+import { RdpRadioEditorComponent } from './rdp-cell-editor/rdp-radio-editor/rdp-radio-editor.component';
+import { RdpDataTableService } from './shared/rdp-data-table.service';
+import { RdpScrollContainerComponent } from './rdp-scroll-container/rdp-scroll-container.component';
+import { RdpButtonComponent } from './rdp-cell-editor/rdp-button/rdp-button.component';
+import { RdpIconButtonComponent } from './rdp-cell-editor/rdp-icon-button/rdp-icon-button.component';
+import { RdpModalService } from './services/rdp-modal.service';
+
+
+@NgModule({
+ declarations: [
+ RdpDataTableComponent,
+ RdpColumnComponent,
+ RdpDataTableEditComponent,
+ RdpInputEditorComponent,
+ RdpSelectEditorComponent,
+ RdpTextareaEditorComponent,
+ RdpCheckboxEditorComponent,
+ RdpRadioEditorComponent,
+ RdpDatepickerEditorComponent,
+ RdpAutocompleteEditorComponent,
+ RdpScrollContainerComponent,
+ RdpButtonComponent,
+ RdpIconButtonComponent
+ ],
+ imports: [
+ CommonModule,
+ MaterialModule,
+ HttpClientModule,
+ ReactiveFormsModule,
+ FormsModule,
+ NgbModule
+ ],
+ exports: [
+ RdpDataTableComponent,
+ RdpColumnComponent,
+ RdpInputEditorComponent,
+ RdpSelectEditorComponent,
+ RdpTextareaEditorComponent,
+ RdpCheckboxEditorComponent,
+ RdpRadioEditorComponent,
+ RdpDatepickerEditorComponent,
+ RdpAutocompleteEditorComponent,
+ RdpScrollContainerComponent,
+ RdpButtonComponent,
+ RdpIconButtonComponent
+ ],
+ entryComponents: [RdpDataTableEditComponent],
+ providers: [RdpDataTableService, RdpModalService]
+})
+export class RdpModule { }