mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 00:10:14 +01:00
Merge branch 'feat/material-demo' of https://github.com/akveo/ngx-admin into feat/material-demo
This commit is contained in:
commit
9e86f88fa2
6 changed files with 10 additions and 16 deletions
5
package-lock.json
generated
5
package-lock.json
generated
|
|
@ -2705,6 +2705,11 @@
|
||||||
"resolved": "https://registry.npmjs.org/@nebular/auth/-/auth-5.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/@nebular/auth/-/auth-5.0.0.tgz",
|
||||||
"integrity": "sha512-oD8XP8hqgjvKRE90Qrixb2n2qbYpkwUnpiqOHcLvDN7i+MVGpr8aZOogidTGZi+BkBlG7P6fAkPFjlhAmXlxzg=="
|
"integrity": "sha512-oD8XP8hqgjvKRE90Qrixb2n2qbYpkwUnpiqOHcLvDN7i+MVGpr8aZOogidTGZi+BkBlG7P6fAkPFjlhAmXlxzg=="
|
||||||
},
|
},
|
||||||
|
"@nebular/bootstrap": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@nebular/bootstrap/-/bootstrap-5.0.0.tgz",
|
||||||
|
"integrity": "sha512-/aVCqZKWRFz2wet07/+EsAzDNCoU3EyBhQFhwkqNtK2QMYu66d1uQqrC0TwxkMHye5uXfsndM64gXSYe/ZumZA=="
|
||||||
|
},
|
||||||
"@nebular/eva-icons": {
|
"@nebular/eva-icons": {
|
||||||
"version": "5.0.0",
|
"version": "5.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/@nebular/eva-icons/-/eva-icons-5.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/@nebular/eva-icons/-/eva-icons-5.0.0.tgz",
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,7 @@
|
||||||
"@angular/router": "^9.0.4",
|
"@angular/router": "^9.0.4",
|
||||||
"@asymmetrik/ngx-leaflet": "3.0.1",
|
"@asymmetrik/ngx-leaflet": "3.0.1",
|
||||||
"@nebular/auth": "5.0.0",
|
"@nebular/auth": "5.0.0",
|
||||||
|
"@nebular/bootstrap": "^5.0.0",
|
||||||
"@nebular/eva-icons": "5.0.0",
|
"@nebular/eva-icons": "5.0.0",
|
||||||
"@nebular/security": "5.0.0",
|
"@nebular/security": "5.0.0",
|
||||||
"@nebular/theme": "5.0.0",
|
"@nebular/theme": "5.0.0",
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
<nb-icon icon="download"></nb-icon>
|
<nb-icon icon="download"></nb-icon>
|
||||||
<span class="subtitle number">470.000</span>
|
<span class="subtitle number">470.000</span>
|
||||||
</nb-action>
|
</nb-action>
|
||||||
<nb-action class="control-item contact-us" matRipple [matRippleUnbounded]="true" [matRippleCentered]="true">
|
<nb-action class="control-item contact-us" matRipple [matRippleUnbounded]="false" [matRippleCentered]="true">
|
||||||
<a nbButton ghost href="mailto:contact@akveo.com" (click)="trackEmailClick()">
|
<a nbButton ghost href="mailto:contact@akveo.com" (click)="trackEmailClick()">
|
||||||
<nb-icon icon="email-outline" pack="eva"></nb-icon>
|
<nb-icon icon="email-outline" pack="eva"></nb-icon>
|
||||||
<span>contact@akveo.com</span>
|
<span>contact@akveo.com</span>
|
||||||
|
|
@ -53,7 +53,7 @@
|
||||||
</nb-action>
|
</nb-action>
|
||||||
<nb-action class="control-item email" icon="email-outline" matRipple [matRippleUnbounded]="true" [matRippleCentered]="true"></nb-action>
|
<nb-action class="control-item email" icon="email-outline" matRipple [matRippleUnbounded]="true" [matRippleCentered]="true"></nb-action>
|
||||||
<nb-action class="control-item notifications" icon="bell-outline" matRipple [matRippleUnbounded]="true" [matRippleCentered]="true"></nb-action>
|
<nb-action class="control-item notifications" icon="bell-outline" matRipple [matRippleUnbounded]="true" [matRippleCentered]="true"></nb-action>
|
||||||
<nb-action class="user-action" *nbIsGranted="['view', 'user']" matRipple [matRippleUnbounded]="true" [matRippleCentered]="true">
|
<nb-action class="user-action" *nbIsGranted="['view', 'user']" matRipple [matRippleUnbounded]="false" [matRippleCentered]="true">
|
||||||
<nb-user [nbContextMenu]="userMenu"
|
<nb-user [nbContextMenu]="userMenu"
|
||||||
[onlyPicture]="userPictureOnly"
|
[onlyPicture]="userPictureOnly"
|
||||||
[name]="user?.name"
|
[name]="user?.name"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
import {NgModule} from '@angular/core';
|
import {NgModule} from '@angular/core';
|
||||||
import {RouterModule, Routes} from '@angular/router';
|
import {RouterModule, Routes} from '@angular/router';
|
||||||
import {StarterScreenComponent} from './starter-screen.component';
|
|
||||||
import {NgxStarterComponent} from './starter.component';
|
import {NgxStarterComponent} from './starter.component';
|
||||||
|
|
||||||
const routes: Routes = [{
|
const routes: Routes = [{
|
||||||
|
|
@ -9,7 +8,7 @@ const routes: Routes = [{
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: '',
|
path: '',
|
||||||
component: StarterScreenComponent,
|
component: NgxStarterComponent,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}];
|
}];
|
||||||
|
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
import { Component } from '@angular/core';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'ngx-starter-screen',
|
|
||||||
styleUrls: ['./starter.component.scss'],
|
|
||||||
templateUrl: './starter.component.html',
|
|
||||||
})
|
|
||||||
export class StarterScreenComponent {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
import {NgModule} from '@angular/core';
|
import {NgModule} from '@angular/core';
|
||||||
import {StarterScreenComponent} from './starter-screen.component';
|
|
||||||
import {StarterRoutingModule} from './starter-routing.module';
|
import {StarterRoutingModule} from './starter-routing.module';
|
||||||
import {NgxStarterComponent} from './starter.component';
|
import {NgxStarterComponent} from './starter.component';
|
||||||
import {NbActionsModule, NbButtonModule, NbCardModule, NbIconModule, NbLayoutModule} from '@nebular/theme';
|
import {NbActionsModule, NbButtonModule, NbCardModule, NbIconModule, NbLayoutModule} from '@nebular/theme';
|
||||||
|
|
@ -20,7 +19,7 @@ const NB_MODULES = [
|
||||||
NbActionsModule,
|
NbActionsModule,
|
||||||
],
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
StarterScreenComponent,
|
NgxStarterComponent,
|
||||||
NgxStarterComponent,
|
NgxStarterComponent,
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue