Add "material theme link" component

This commit is contained in:
eugene-sinitsyn 2020-03-12 13:31:36 +03:00
parent 9aa4b9c53f
commit ea600e94c7
18 changed files with 135 additions and 32 deletions

View file

@ -9,6 +9,17 @@ import { ModuleWithProviders, NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { LazyLoadImageModule } from 'ng-lazyload-image';
import {
NbLayoutModule,
NbThemeModule,
NbMenuModule,
NbCheckboxModule,
NbCardModule,
NbSidebarModule,
NbTabsetModule,
} from '@nebular/theme';
import { LandingSharedModule } from '../shared/landing-shared.module';
// components
import {
@ -26,21 +37,6 @@ import {
import { ngxLandingServices } from './services';
// services
// pipes
import { EvaIconsPipe } from './pipes/eva-icons.pipe';
import { CapitalizePipe } from './pipes/capitalize.pipe';
// pipes
import {
NbLayoutModule,
NbThemeModule,
NbMenuModule,
NbCheckboxModule,
NbCardModule,
NbSidebarModule,
NbTabsetModule,
} from '@nebular/theme';
const BASE_MODULES = [
CommonModule,
FormsModule,
@ -67,14 +63,10 @@ const COMPONENTS = [
NgxDocsFooterComponent,
];
const PIPES = [
EvaIconsPipe,
CapitalizePipe,
];
@NgModule({
imports: [
RouterModule,
LandingSharedModule,
...BASE_MODULES,
@ -82,8 +74,6 @@ const PIPES = [
],
declarations: [
...COMPONENTS,
...PIPES,
],
exports: [
RouterModule,
@ -93,10 +83,6 @@ const PIPES = [
...NB_MODULES,
...COMPONENTS,
...PIPES,
],
entryComponents: [
],
})
export class NgxLandingThemeModule {