Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 68 69 70 71 72 73 | 1x 1x 1x 1x | import { CommonModule } from '@angular/common';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { EditorModule } from '@tinymce/tinymce-angular';
import { WvrSharedModule } from '@wvr/elements';
import { TlAlertComponent } from '../tl-alert/tl-alert.component';
import { TlButtonComponent } from '../tl-button/tl-button.component';
import { TlCardComponent } from '../tl-card/tl-card.component';
import { TlDropDownComponent } from '../tl-dropdown/tl-dropdown.component';
import { TlDropDownMenuSectionComponent } from '../tl-dropdown-menu/tl-dropdown-menu-section/tl-dropdown-menu-section.component';
import { TlDropDownMenuComponent } from '../tl-dropdown-menu/tl-dropdown-menu.component';
import { TlFooterComponent } from '../tl-footer/tl-footer.component';
import { TlHeaderComponent } from '../tl-header/tl-header.component';
import { TlIconComponent } from '../tl-icon/tl-icon.component';
import { TlItWorksComponent } from '../tl-it-works/tl-it-works.component';
import { TlMegaMenuSectionComponent } from '../tl-mega-menu/tl-mega-menu-section/tl-mega-menu-section.component';
import { TlMegaMenuComponent } from '../tl-mega-menu/tl-mega-menu.component';
import { TlModalComponent } from '../tl-modal/tl-modal.component';
import { TlNavListComponent } from '../tl-nav-list/tl-nav-list.component';
import { TlTabComponent } from '../tl-tabs/tl-tab/tl-tab.component';
import { TlTabsComponent } from '../tl-tabs/tl-tabs.component';
import { TlThemesComponent } from '../tl-themes/tl-themes.component';
import { TlWysiwygComponent } from '../tl-wysiwyg/tl-wysiwyg.component';
/** This property contains a list of components classes. */
export const TL_COMPONENTS = [
TlAlertComponent,
TlButtonComponent,
TlCardComponent,
TlDropDownComponent,
TlDropDownMenuSectionComponent,
TlDropDownMenuComponent,
TlFooterComponent,
TlHeaderComponent,
TlItWorksComponent,
TlIconComponent,
TlMegaMenuComponent,
TlMegaMenuSectionComponent,
TlModalComponent,
TlNavListComponent,
TlTabsComponent,
TlTabComponent,
TlThemesComponent,
TlWysiwygComponent
];
export const TL_PIPES = [];
const MODULES = [
CommonModule,
EditorModule,
FormsModule,
ReactiveFormsModule,
WvrSharedModule
];
@NgModule({
imports: [
...MODULES
],
exports: [
...TL_COMPONENTS,
...TL_PIPES
],
declarations: [
...TL_COMPONENTS,
...TL_PIPES
],
providers: [],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class TLSharedModule { }
|