feat(dashboard): add new E-commerce dashboard (#1754)

This commit is contained in:
ESadouski 2018-08-08 16:45:31 +03:00 committed by Dmitry Nehaychik
parent 3482404b88
commit 56e4709a55
106 changed files with 6333 additions and 19 deletions

View file

@ -17,6 +17,7 @@ import {
NbCheckboxModule,
NbPopoverModule,
NbContextMenuModule,
NbProgressBarModule,
} from '@nebular/theme';
import { NbSecurityModule } from '@nebular/security';
@ -32,7 +33,13 @@ import {
TinyMCEComponent,
ThemeSwitcherListComponent,
} from './components';
import { CapitalizePipe, PluralPipe, RoundPipe, TimingPipe } from './pipes';
import {
CapitalizePipe,
PluralPipe,
RoundPipe,
TimingPipe,
NumberWithCommasPipe,
} from './pipes';
import {
OneColumnLayoutComponent,
SampleLayoutComponent,
@ -59,7 +66,8 @@ const NB_MODULES = [
NbPopoverModule,
NbContextMenuModule,
NgbModule,
NbSecurityModule, // *nbIsGranted directive
NbSecurityModule, // *nbIsGranted directive,
NbProgressBarModule,
];
const COMPONENTS = [
@ -87,6 +95,7 @@ const PIPES = [
PluralPipe,
RoundPipe,
TimingPipe,
NumberWithCommasPipe,
];
const NB_THEME_PROVIDERS = [