fix(docs): popover and themes page

This commit is contained in:
Alex 2020-04-01 14:46:32 +03:00 committed by Sergey Andrievskiy
parent 7a1c74cb18
commit 413cbdbd01
9 changed files with 39 additions and 22 deletions

View file

@ -1,5 +1,5 @@
import { NgModule } from '@angular/core';
import {NbPopoverModule} from '@nebular/theme';
import {NbBadgeModule, NbPopoverModule} from '@nebular/theme';
import { MaterialThemeLinkComponent } from './components/material-theme-link/material-theme-link.component';
import { CapitalizePipe } from './pipes/capitalize.pipe';
import { EvaIconsPipe } from './pipes/eva-icons.pipe';
@ -9,7 +9,7 @@ const component = [MaterialThemeLinkComponent];
const pipes = [CapitalizePipe, EvaIconsPipe];
@NgModule({
imports: [RouterModule, NbPopoverModule],
imports: [RouterModule, NbPopoverModule, NbBadgeModule],
declarations: [...component, ...pipes],
exports: [NbPopoverModule, ...component, ...pipes],
})