summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/portalsdk-tag-library/projects/portalsdk-tag-lib/src/lib/rdp/rdp.module.ts
blob: e33ad4e62cc4f5f96a98ecbbcaa558502bae4baa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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 { }