mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
feat: update npm packages
This commit is contained in:
parent
f6d9ec88ad
commit
7a22737611
321 changed files with 19716 additions and 84 deletions
39
docs/app/shared/landing-shared.module.ts
Normal file
39
docs/app/shared/landing-shared.module.ts
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
import { NgModule } from '@angular/core';
|
||||
import {NbBadgeModule, NbButtonModule, NbCardModule, NbDialogModule, 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';
|
||||
import { RouterModule } from '@angular/router';
|
||||
import { DownloadFormComponent } from './components/download-form/download-form.component';
|
||||
import { PremiumFormComponent } from './components/premium-form/premium-form.component';
|
||||
|
||||
const component = [
|
||||
MaterialThemeLinkComponent,
|
||||
DownloadFormComponent,
|
||||
PremiumFormComponent,
|
||||
];
|
||||
const pipes = [
|
||||
CapitalizePipe,
|
||||
EvaIconsPipe,
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
RouterModule,
|
||||
NbPopoverModule,
|
||||
NbBadgeModule,
|
||||
NbCardModule,
|
||||
NbDialogModule.forChild(),
|
||||
NbButtonModule,
|
||||
],
|
||||
declarations: [
|
||||
...component,
|
||||
...pipes,
|
||||
],
|
||||
exports: [
|
||||
NbPopoverModule,
|
||||
...component,
|
||||
...pipes,
|
||||
],
|
||||
})
|
||||
export class LandingSharedModule {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue