mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-29 04:36:11 +01:00
feat(angular): update demo to angular 15
This commit is contained in:
parent
d8f2780bf8
commit
37adf4ca69
18 changed files with 5413 additions and 1482 deletions
|
|
@ -1,6 +1,6 @@
|
|||
@import '../../../@theme/styles/themes';
|
||||
@import '~bootstrap/scss/mixins/breakpoints';
|
||||
@import '~@nebular/theme/styles/global/breakpoints';
|
||||
@import 'bootstrap/scss/mixins/breakpoints';
|
||||
@import '@nebular/theme/styles/global/breakpoints';
|
||||
|
||||
@include nb-install-component() {
|
||||
nb-card {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
@import '../../styles/themes';
|
||||
@import '~bootstrap/scss/mixins/breakpoints';
|
||||
@import '~@nebular/theme/styles/global/breakpoints';
|
||||
@import 'bootstrap/scss/mixins/breakpoints';
|
||||
@import '@nebular/theme/styles/global/breakpoints';
|
||||
|
||||
@include nb-install-component() {
|
||||
.switch-label {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
@import '../../styles/themes';
|
||||
@import '~bootstrap/scss/mixins/breakpoints';
|
||||
@import '~@nebular/theme/styles/global/breakpoints';
|
||||
@import 'bootstrap/scss/mixins/breakpoints';
|
||||
@import '@nebular/theme/styles/global/breakpoints';
|
||||
|
||||
@include nb-install-component() {
|
||||
border-radius: nb-theme(button-rectangle-border-radius);
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
@import '../../styles/themes';
|
||||
@import '~bootstrap/scss/mixins/breakpoints';
|
||||
@import '~@nebular/theme/styles/global/breakpoints';
|
||||
@import 'bootstrap/scss/mixins/breakpoints';
|
||||
@import '@nebular/theme/styles/global/breakpoints';
|
||||
|
||||
@include nb-install-component() {
|
||||
nb-layout-column.small {
|
||||
|
|
|
|||
|
|
@ -103,8 +103,8 @@ export class DashboardComponent implements OnInit, OnDestroy {
|
|||
}
|
||||
|
||||
ngOnInit() {
|
||||
this.metaDataService.updateTitle('Ngx-admin IoT dashboard on Angular 9+ and Nebular');
|
||||
this.metaDataService.updateDescription('IoT dashboard on Ngx-admin is Angular 9+ Bootstrap 4+ admin' +
|
||||
this.metaDataService.updateTitle('Ngx-admin IoT dashboard on Angular 15+ and Nebular');
|
||||
this.metaDataService.updateDescription('IoT dashboard on Ngx-admin is Angular 15+ Bootstrap 4+ admin' +
|
||||
' dashboard template. Over 40+ Angular Components and 60+ Usage Examples. Completely FREE and MIT licensed.');
|
||||
this.metaDataService.updateKeywords('ngx admin, ngx admin dashboard, ngx iot dashboard, ngx-admin iot template');
|
||||
|
||||
|
|
|
|||
|
|
@ -16,10 +16,10 @@ export class ECommerceComponent implements OnInit, OnDestroy {
|
|||
private metaDataService: MetadataService) {}
|
||||
|
||||
ngOnInit() {
|
||||
this.metaDataService.updateTitle('Ngx-admin e-commerce dashboard on Angular 9+ and Nebular.');
|
||||
this.metaDataService.updateDescription('E-commerce dashboard on Ngx-admin is Angular 9+ Bootstrap 4+ admin' +
|
||||
this.metaDataService.updateTitle('Ngx-admin e-commerce dashboard on Angular 15+ and Nebular.');
|
||||
this.metaDataService.updateDescription('E-commerce dashboard on Ngx-admin is Angular 15+ Bootstrap 4+ admin' +
|
||||
' dashboard template. Over 40+ Angular Components and 60+ Usage Examples. Completely FREE and MIT licensed.');
|
||||
this.metaDataService.updateKeywords('ngx-admin dashboard, ngx ecommerce dashboard, angular 9+');
|
||||
this.metaDataService.updateKeywords('ngx-admin dashboard, ngx ecommerce dashboard, angular 15+');
|
||||
|
||||
this.abService.onAbEvent(AbService.VARIANT_HIDE_CALL_ACTION)
|
||||
.pipe(takeWhile(() => this.alive))
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ export class PagesComponent implements OnInit, OnDestroy {
|
|||
.subscribe((data: { tag: string; item: NbMenuItem }) => {
|
||||
if (data.item.title !== 'E-commerce' && data.item.title !== 'IoT Dashboard')
|
||||
this.metaDataService.updateTitle(`Ngx-admin dashboard by Akveo | ${data.item.title}`);
|
||||
this.metaDataService.updateDescription('Ngx-admin is Angular 9+ Bootstrap 4+ admin dashboard template.' +
|
||||
this.metaDataService.updateDescription('Ngx-admin is Angular 15+ Bootstrap 4+ admin dashboard template.' +
|
||||
' Over 40+ Angular Components, 60+ Usage Examples and UI features.');
|
||||
this.metaDataService.updateKeywords('ngx-admin, ngx admin dashboard features, ngx admin forms,' +
|
||||
' ngx-admin maps, ngx-admin UI features, ngx-admin tables, ngx admin overlays, ngx-admin extra components');
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
@import '~bootstrap/scss/mixins/breakpoints';
|
||||
@import '~@nebular/theme/styles/global/breakpoints';
|
||||
@import 'bootstrap/scss/mixins/breakpoints';
|
||||
@import '@nebular/theme/styles/global/breakpoints';
|
||||
@import '../@theme/styles/themes';
|
||||
|
||||
@include nb-install-component() {
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ export class NgxStarterComponent implements OnInit {
|
|||
|
||||
// tslint:disable:max-line-length
|
||||
ngOnInit(): void {
|
||||
this.metadataService.updateTitle('Ngx-admin themes for e-commerce dashboard on Angular 9+ and Nebular');
|
||||
this.metadataService.updateTitle('Ngx-admin themes for e-commerce dashboard on Angular 15+ and Nebular');
|
||||
this.metadataService.updateDescription('Choose a theme for ngx-admin e-commerce dashboard: Material, Light and Dark, Cosmic and Corporate.');
|
||||
this.metadataService.updateKeywords('Ngx-admin themes, material theme, ngx-admin cosmic, ngx-admin corporate theme, dark theme ngx-admin');
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<title>Ngx-admin e-commerce dashboard on Angular 9+ and Nebular.</title>
|
||||
<title>Ngx-admin e-commerce dashboard on Angular 15+ and Nebular.</title>
|
||||
<meta name="description" content="Free Angular 8 Bootstrap admin dashboard template.">
|
||||
<meta name="keywords" content="admin,dashboard,template,angular 8,bootstrap,panel,html,css,javascript">
|
||||
<meta property="og:image" content="https://i.imgur.com/tQwozJJ.jpg"/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue