mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 04:25:08 +00:00
Moved Angular Material Elements examples
Prepared the navigation for the documentation update
This commit is contained in:
parent
52cfeec2e7
commit
9c88524185
|
@ -25,7 +25,7 @@
|
||||||
"assets": [
|
"assets": [
|
||||||
"src/favicon.ico",
|
"src/favicon.ico",
|
||||||
"src/assets",
|
"src/assets",
|
||||||
"src/app/main/components/angular-material"
|
"src/app/main/angular-material-elements"
|
||||||
],
|
],
|
||||||
"styles": [
|
"styles": [
|
||||||
"src/styles.scss"
|
"src/styles.scss"
|
||||||
|
|
|
@ -34,16 +34,12 @@ const appRoutes: Routes = [
|
||||||
loadChildren: './main/ui/ui.module#UIModule'
|
loadChildren: './main/ui/ui.module#UIModule'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path : 'services',
|
path : 'documentation',
|
||||||
loadChildren: './main/services/services.module#ServicesModule'
|
loadChildren: './main/documentation/documentation.module#DocumentationModule'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path : 'components',
|
path : 'angular-material-elements',
|
||||||
loadChildren: './main/components/components.module#ComponentsModule'
|
loadChildren: './main/angular-material-elements/angular-material-elements.module#AngularMaterialElementsModule'
|
||||||
},
|
|
||||||
{
|
|
||||||
path : 'components-third-party',
|
|
||||||
loadChildren: './main/components-third-party/components-third-party.module#ComponentsThirdPartyModule'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path : '**',
|
path : '**',
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
<div class="page-layout simple fullwidth angular-material-element" fusePerfectScrollbar>
|
<div class="page-layout simple fullwidth angular-material-elements">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="row" fxLayoutAlign.gt-xs="space-between center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="row"
|
||||||
|
fxLayoutAlign.gt-xs="space-between center">
|
||||||
|
|
||||||
<div fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="column" fxLayoutAlign.gt-xs="center start">
|
<div fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="column" fxLayoutAlign.gt-xs="center start">
|
||||||
<div class="black-fg" fxLayout="row" fxLayoutAlign="start center">
|
<div class="black-fg" fxLayout="row" fxLayoutAlign="start center">
|
||||||
|
@ -14,7 +15,8 @@
|
||||||
<div class="h2 mt-16">{{title}}</div>
|
<div class="h2 mt-16">{{title}}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a mat-raised-button class="reference-button mat-white-bg mt-16 mt-sm-0" href="https://material.angular.io/" target="_blank">
|
<a mat-raised-button class="reference-button mat-white-bg mt-16 mt-sm-0" href="https://material.angular.io/"
|
||||||
|
target="_blank">
|
||||||
<mat-icon class="mr-8">link</mat-icon>
|
<mat-icon class="mr-8">link</mat-icon>
|
||||||
<span>Reference</span>
|
<span>Reference</span>
|
||||||
</a>
|
</a>
|
|
@ -1,6 +1,6 @@
|
||||||
:host {
|
:host {
|
||||||
|
|
||||||
.angular-material-element {
|
.angular-material-elements {
|
||||||
|
|
||||||
> .content {
|
> .content {
|
||||||
max-width: 960px;
|
max-width: 960px;
|
|
@ -3,14 +3,14 @@ import { ActivatedRoute } from '@angular/router';
|
||||||
import { Subject } from 'rxjs';
|
import { Subject } from 'rxjs';
|
||||||
import { takeUntil } from 'rxjs/operators';
|
import { takeUntil } from 'rxjs/operators';
|
||||||
|
|
||||||
import { COMPONENT_MAP } from 'app/main/components/angular-material/example-components';
|
import { COMPONENT_MAP } from 'app/main/angular-material-elements/example-components';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector : 'angular-material',
|
selector : 'angular-material',
|
||||||
templateUrl: './angular-material-examples.component.html',
|
templateUrl: './angular-material-elements.component.html',
|
||||||
styleUrls : ['./angular-material-examples.component.scss']
|
styleUrls : ['./angular-material-elements.component.scss']
|
||||||
})
|
})
|
||||||
export class AngularMaterialExamplesComponent implements OnInit, OnDestroy
|
export class AngularMaterialElementsComponent implements OnInit, OnDestroy
|
||||||
{
|
{
|
||||||
id: string;
|
id: string;
|
||||||
title: string;
|
title: string;
|
|
@ -2,21 +2,21 @@ import { NgModule } from '@angular/core';
|
||||||
import { RouterModule, Routes } from '@angular/router';
|
import { RouterModule, Routes } from '@angular/router';
|
||||||
|
|
||||||
import { FuseSharedModule } from '@fuse/shared.module';
|
import { FuseSharedModule } from '@fuse/shared.module';
|
||||||
import { FuseHighlightModule } from '@fuse/components';
|
import { FuseHighlightModule } from '@fuse/components/index';
|
||||||
import { FuseWidgetModule } from '@fuse/components/widget/widget.module';
|
import { FuseWidgetModule } from '@fuse/components/widget/widget.module';
|
||||||
|
|
||||||
import { MaterialModule } from 'app/main/components/angular-material/material.module';
|
import { MaterialModule } from 'app/main/angular-material-elements/material.module';
|
||||||
import { EXAMPLE_LIST } from 'app/main/components/angular-material/example-components';
|
import { EXAMPLE_LIST } from 'app/main/angular-material-elements/example-components';
|
||||||
import { AngularMaterialExamplesComponent } from 'app/main/components/angular-material/angular-material-examples.component';
|
import { AngularMaterialElementsComponent } from 'app/main/angular-material-elements/angular-material-elements.component';
|
||||||
import { ExampleViewerComponent } from 'app/main/components/angular-material/example-viewer/example-viewer';
|
import { ExampleViewerComponent } from 'app/main/angular-material-elements/example-viewer/example-viewer';
|
||||||
|
|
||||||
const routes: Routes = [
|
const routes: Routes = [
|
||||||
{
|
{
|
||||||
path : 'angular-material',
|
path : '',
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path : ':id',
|
path : ':id',
|
||||||
component: AngularMaterialExamplesComponent
|
component: AngularMaterialElementsComponent
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,7 @@ const routes: Routes = [
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations : [
|
declarations : [
|
||||||
[...EXAMPLE_LIST],
|
[...EXAMPLE_LIST],
|
||||||
AngularMaterialExamplesComponent,
|
AngularMaterialElementsComponent,
|
||||||
ExampleViewerComponent
|
ExampleViewerComponent
|
||||||
],
|
],
|
||||||
imports : [
|
imports : [
|
||||||
|
@ -39,7 +39,7 @@ const routes: Routes = [
|
||||||
],
|
],
|
||||||
entryComponents: EXAMPLE_LIST,
|
entryComponents: EXAMPLE_LIST,
|
||||||
})
|
})
|
||||||
export class AngularMaterialExamplesModule
|
export class AngularMaterialElementsModule
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@import "src/@fuse/scss/fuse";
|
@import "../../../../@fuse/scss/fuse";
|
||||||
|
|
||||||
example-viewer {
|
example-viewer {
|
||||||
display: block;
|
display: block;
|
|
@ -3,10 +3,10 @@ import { MatSnackBar } from '@angular/material';
|
||||||
import 'prismjs/components/prism-scss';
|
import 'prismjs/components/prism-scss';
|
||||||
import 'prismjs/components/prism-typescript';
|
import 'prismjs/components/prism-typescript';
|
||||||
|
|
||||||
import { fuseAnimations } from '@fuse/animations';
|
import { fuseAnimations } from '@fuse/animations/index';
|
||||||
import { FuseCopierService } from '@fuse/services/copier.service';
|
import { FuseCopierService } from '@fuse/services/copier.service';
|
||||||
|
|
||||||
import { EXAMPLE_COMPONENTS } from 'app/main/components/angular-material/example-components';
|
import { EXAMPLE_COMPONENTS } from 'app/main/angular-material-elements/example-components';
|
||||||
|
|
||||||
export interface LiveExample
|
export interface LiveExample
|
||||||
{
|
{
|
|
@ -5,8 +5,8 @@ import { NgxDatatableModule } from '@swimlane/ngx-datatable';
|
||||||
|
|
||||||
import { FuseSharedModule } from '@fuse/shared.module';
|
import { FuseSharedModule } from '@fuse/shared.module';
|
||||||
|
|
||||||
import { GoogleMapsModule } from 'app/main/components-third-party/google-maps/google-maps.module';
|
import { GoogleMapsModule } from 'app/main/documentation/components-third-party/google-maps/google-maps.module';
|
||||||
import { NgxDatatableDocsComponent } from 'app/main/components-third-party/datatable/ngx-datatable.component';
|
import { NgxDatatableDocsComponent } from 'app/main/documentation/components-third-party/datatable/ngx-datatable.component';
|
||||||
|
|
||||||
const routes = [
|
const routes = [
|
||||||
{
|
{
|
|
@ -1,7 +1,8 @@
|
||||||
<div id="ngx-datatable" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="ngx-datatable" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="row" fxLayoutAlign.gt-xs="space-between center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="row"
|
||||||
|
fxLayoutAlign.gt-xs="space-between center">
|
||||||
<div fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="column" fxLayoutAlign.gt-xs="center start">
|
<div fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="column" fxLayoutAlign.gt-xs="center start">
|
||||||
<div class="black-fg" fxLayout="row" fxLayoutAlign="start center">
|
<div class="black-fg" fxLayout="row" fxLayoutAlign="start center">
|
||||||
<mat-icon class="secondary-text s-16">home</mat-icon>
|
<mat-icon class="secondary-text s-16">home</mat-icon>
|
|
@ -1,7 +1,8 @@
|
||||||
<div id="countdown" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="countdown" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="row" fxLayoutAlign.gt-xs="space-between center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="row"
|
||||||
|
fxLayoutAlign.gt-xs="space-between center">
|
||||||
<div fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="column" fxLayoutAlign.gt-xs="center start">
|
<div fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="column" fxLayoutAlign.gt-xs="center start">
|
||||||
<div class="black-fg" fxLayout="row" fxLayoutAlign="start center">
|
<div class="black-fg" fxLayout="row" fxLayoutAlign="start center">
|
||||||
<mat-icon class="secondary-text s-16">home</mat-icon>
|
<mat-icon class="secondary-text s-16">home</mat-icon>
|
|
@ -6,7 +6,7 @@ import { MatButtonModule, MatIconModule } from '@angular/material';
|
||||||
import { AgmCoreModule } from '@agm/core';
|
import { AgmCoreModule } from '@agm/core';
|
||||||
|
|
||||||
import { FuseSharedModule } from '@fuse/shared.module';
|
import { FuseSharedModule } from '@fuse/shared.module';
|
||||||
import { FuseHighlightModule } from '@fuse/components';
|
import { FuseHighlightModule } from '@fuse/components/index';
|
||||||
|
|
||||||
import { GoogleMapsDocsComponent } from './google-maps.component';
|
import { GoogleMapsDocsComponent } from './google-maps.component';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="cards" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="cards" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="space-between center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="space-between center">
|
|
@ -1,7 +1,7 @@
|
||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import * as shape from 'd3-shape';
|
import * as shape from 'd3-shape';
|
||||||
|
|
||||||
import { fuseAnimations } from '@fuse/animations';
|
import { fuseAnimations } from '@fuse/animations/index';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector : 'cards-docs',
|
selector : 'cards-docs',
|
|
@ -5,19 +5,17 @@ import { NgxChartsModule } from '@swimlane/ngx-charts';
|
||||||
|
|
||||||
import { FuseSharedModule } from '@fuse/shared.module';
|
import { FuseSharedModule } from '@fuse/shared.module';
|
||||||
|
|
||||||
import { AngularMaterialExamplesModule } from 'app/main/components/angular-material/angular-material-examples.module';
|
import { FuseCountdownModule, FuseHighlightModule, FuseMaterialColorPickerModule, FuseWidgetModule } from '@fuse/components/index';
|
||||||
|
import { CardsDocsComponent } from 'app/main/documentation/components/cards/cards.component';
|
||||||
import { FuseCountdownModule, FuseHighlightModule, FuseMaterialColorPickerModule, FuseWidgetModule } from '@fuse/components';
|
import { CountdownDocsComponent } from 'app/main/documentation/components/countdown/countdown.component';
|
||||||
import { CardsDocsComponent } from 'app/main/components/cards/cards.component';
|
import { HighlightDocsComponent } from 'app/main/documentation/components/highlight/highlight.component';
|
||||||
import { CountdownDocsComponent } from 'app/main/components/countdown/countdown.component';
|
import { MaterialColorPickerDocsComponent } from 'app/main/documentation/components/material-color-picker/material-color-picker.component';
|
||||||
import { HighlightDocsComponent } from 'app/main/components/highlight/highlight.component';
|
import { MultiLanguageDocsComponent } from 'app/main/documentation/components/multi-language/multi-language.component';
|
||||||
import { MaterialColorPickerDocsComponent } from 'app/main/components/material-color-picker/material-color-picker.component';
|
import { NavigationDocsComponent } from 'app/main/documentation/components/navigation/navigation.component';
|
||||||
import { MultiLanguageDocsComponent } from 'app/main/components/multi-language/multi-language.component';
|
import { SearchBarDocsComponent } from 'app/main/documentation/components/search-bar/search-bar.component';
|
||||||
import { NavigationDocsComponent } from 'app/main/components/navigation/navigation.component';
|
import { SidebarDocsComponent } from 'app/main/documentation/components/sidebar/sidebar.component';
|
||||||
import { SearchBarDocsComponent } from 'app/main/components/search-bar/search-bar.component';
|
import { ShortcutsDocsComponent } from 'app/main/documentation/components/shortcuts/shortcuts.component';
|
||||||
import { SidebarDocsComponent } from 'app/main/components/sidebar/sidebar.component';
|
import { WidgetDocsComponent } from 'app/main/documentation/components/widget/widget.component';
|
||||||
import { ShortcutsDocsComponent } from 'app/main/components/shortcuts/shortcuts.component';
|
|
||||||
import { WidgetDocsComponent } from 'app/main/components/widget/widget.component';
|
|
||||||
|
|
||||||
const routes = [
|
const routes = [
|
||||||
{
|
{
|
||||||
|
@ -95,9 +93,7 @@ const routes = [
|
||||||
FuseCountdownModule,
|
FuseCountdownModule,
|
||||||
FuseHighlightModule,
|
FuseHighlightModule,
|
||||||
FuseMaterialColorPickerModule,
|
FuseMaterialColorPickerModule,
|
||||||
FuseWidgetModule,
|
FuseWidgetModule
|
||||||
|
|
||||||
AngularMaterialExamplesModule
|
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
export class ComponentsModule
|
export class ComponentsModule
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="countdown" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="countdown" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="highlight" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="highlight" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="material-color-picker" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="material-color-picker" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="multi-language" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="multi-language" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="navigation" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="navigation" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="search-bar" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="search-bar" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="shortcuts" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="shortcuts" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="sidebar" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="sidebar" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="widget" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="widget" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
27
src/app/main/documentation/documentation.module.ts
Normal file
27
src/app/main/documentation/documentation.module.ts
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
import { NgModule } from '@angular/core';
|
||||||
|
|
||||||
|
import { RouterModule, Routes } from '@angular/router';
|
||||||
|
|
||||||
|
const routes: Routes = [
|
||||||
|
{
|
||||||
|
path : 'components',
|
||||||
|
loadChildren: './components/components.module#ComponentsModule'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path : 'components-third-party',
|
||||||
|
loadChildren: './components-third-party/components-third-party.module#ComponentsThirdPartyModule'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path : 'services',
|
||||||
|
loadChildren: './services/services.module#ServicesModule'
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
@NgModule({
|
||||||
|
imports: [
|
||||||
|
RouterModule.forChild(routes)
|
||||||
|
]
|
||||||
|
})
|
||||||
|
export class DocumentationModule
|
||||||
|
{
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="config" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="config" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
|
@ -3,10 +3,10 @@ import { RouterModule } from '@angular/router';
|
||||||
import { MatIconModule } from '@angular/material';
|
import { MatIconModule } from '@angular/material';
|
||||||
|
|
||||||
import { FuseSharedModule } from '@fuse/shared.module';
|
import { FuseSharedModule } from '@fuse/shared.module';
|
||||||
import { FuseHighlightModule } from '@fuse/components';
|
import { FuseHighlightModule } from '@fuse/components/index';
|
||||||
|
|
||||||
import { ConfigServiceDocsComponent } from 'app/main/services/config/config.component';
|
import { ConfigServiceDocsComponent } from 'app/main/documentation/services/config/config.component';
|
||||||
import { SplashScreenServiceDocsComponent } from 'app/main/services/splash-screen/splash-screen.component';
|
import { SplashScreenServiceDocsComponent } from 'app/main/documentation/services/splash-screen/splash-screen.component';
|
||||||
|
|
||||||
const routes = [
|
const routes = [
|
||||||
{
|
{
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="splash-screen" class="page-layout simple fullwidth" fusePerfectScrollbar>
|
<div id="splash-screen" class="page-layout simple fullwidth">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
|
@ -1,7 +1,8 @@
|
||||||
<div id="material-colors" class="page-layout simple tabbed" fxLayout="column" fusePerfectScrollbar>
|
<div id="material-colors" class="page-layout simple tabbed" fxLayout="column">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="row" fxLayoutAlign.gt-xs="space-between center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="row"
|
||||||
|
fxLayoutAlign.gt-xs="space-between center">
|
||||||
|
|
||||||
<div fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="column" fxLayoutAlign.gt-xs="center start">
|
<div fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="column" fxLayoutAlign.gt-xs="center start">
|
||||||
<div class="black-fg" fxLayout="row" fxLayoutAlign="start center">
|
<div class="black-fg" fxLayout="row" fxLayoutAlign="start center">
|
||||||
|
@ -76,7 +77,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="color" fxLayout="column" fxFlex="1 0 auto" *ngIf="selectedColor != 'black' && selectedColor != 'white'">
|
<div class="color" fxLayout="column" fxFlex="1 0 auto"
|
||||||
|
*ngIf="selectedColor != 'black' && selectedColor != 'white'">
|
||||||
|
|
||||||
<div class="colored-bg p-8"
|
<div class="colored-bg p-8"
|
||||||
*ngFor="let hue of ['50','100','200','300','400','500','600','700','800','900','A100','A200','A400','A700']"
|
*ngFor="let hue of ['50','100','200','300','400','500','600','700','800','900','A100','A200','A400','A700']"
|
||||||
|
|
|
@ -2,14 +2,6 @@
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
|
|
||||||
.color-tabs {
|
|
||||||
|
|
||||||
.mat-tab-body {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.color-tabs-content {
|
.color-tabs-content {
|
||||||
|
|
||||||
.color {
|
.color {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="forms" class="page-layout simple fullwidth" fxLayout="column" fusePerfectScrollbar>
|
<div id="forms" class="page-layout simple fullwidth" fxLayout="column">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="helper-classes" class="page-layout simple tabbed" fxLayout="column" fusePerfectScrollbar>
|
<div id="helper-classes" class="page-layout simple tabbed" fxLayout="column">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="helper-classes" class="page-layout simple tabbed" fxLayout="column" fusePerfectScrollbar>
|
<div id="helper-classes" class="page-layout simple tabbed" fxLayout="column">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="row"
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="column" fxLayoutAlign="center center" fxLayout.gt-xs="row"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="typography" class="page-layout simple tabbed" fxLayout="column" fusePerfectScrollbar>
|
<div id="typography" class="page-layout simple tabbed" fxLayout="column">
|
||||||
|
|
||||||
<!-- HEADER -->
|
<!-- HEADER -->
|
||||||
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
<div class="header mat-accent-bg p-24 h-160" fxLayout="row" fxLayoutAlign="start center">
|
||||||
|
|
|
@ -571,7 +571,7 @@ export const navigation: FuseNavigation[] = [
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'angular-material-elements',
|
id : 'angular-material-elements-elements',
|
||||||
title : 'Angular Material Elements',
|
title : 'Angular Material Elements',
|
||||||
type : 'group',
|
type : 'group',
|
||||||
children: [
|
children: [
|
||||||
|
@ -585,55 +585,55 @@ export const navigation: FuseNavigation[] = [
|
||||||
id : 'autocomplete',
|
id : 'autocomplete',
|
||||||
title: 'Autocomplete',
|
title: 'Autocomplete',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/autocomplete'
|
url : '/angular-material-elements/autocomplete'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'checkbox',
|
id : 'checkbox',
|
||||||
title: 'Checkbox',
|
title: 'Checkbox',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/checkbox'
|
url : '/angular-material-elements/checkbox'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'datepicker',
|
id : 'datepicker',
|
||||||
title: 'Datepicker',
|
title: 'Datepicker',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/datepicker'
|
url : '/angular-material-elements/datepicker'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'form-field',
|
id : 'form-field',
|
||||||
title: 'Form field',
|
title: 'Form field',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/form-field'
|
url : '/angular-material-elements/form-field'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'input',
|
id : 'input',
|
||||||
title: 'Input',
|
title: 'Input',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/input'
|
url : '/angular-material-elements/input'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'radio-button',
|
id : 'radio-button',
|
||||||
title: 'Radio button',
|
title: 'Radio button',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/radio-button'
|
url : '/angular-material-elements/radio-button'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'select',
|
id : 'select',
|
||||||
title: 'Select',
|
title: 'Select',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/select'
|
url : '/angular-material-elements/select'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'slider',
|
id : 'slider',
|
||||||
title: 'Slider',
|
title: 'Slider',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/slider'
|
url : '/angular-material-elements/slider'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'slide-toggle',
|
id : 'slide-toggle',
|
||||||
title: 'Slide toggle',
|
title: 'Slide toggle',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/slide-toggle'
|
url : '/angular-material-elements/slide-toggle'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -647,19 +647,19 @@ export const navigation: FuseNavigation[] = [
|
||||||
id : 'menu',
|
id : 'menu',
|
||||||
title: 'Menu',
|
title: 'Menu',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/menu'
|
url : '/angular-material-elements/menu'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'sidenav',
|
id : 'sidenav',
|
||||||
title: 'Sidebar',
|
title: 'Sidebar',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/sidenav'
|
url : '/angular-material-elements/sidenav'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'toolbar',
|
id : 'toolbar',
|
||||||
title: 'Toolbar',
|
title: 'Toolbar',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/toolbar'
|
url : '/angular-material-elements/toolbar'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -673,67 +673,67 @@ export const navigation: FuseNavigation[] = [
|
||||||
id : 'badge',
|
id : 'badge',
|
||||||
title: 'Badge',
|
title: 'Badge',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/badge'
|
url : '/angular-material-elements/badge'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'bottom-sheet',
|
id : 'bottom-sheet',
|
||||||
title: 'Bottom Sheet',
|
title: 'Bottom Sheet',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/bottom-sheet'
|
url : '/angular-material-elements/bottom-sheet'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'card',
|
id : 'card',
|
||||||
title: 'Card',
|
title: 'Card',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/card'
|
url : '/angular-material-elements/card'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'divider',
|
id : 'divider',
|
||||||
title: 'Divider',
|
title: 'Divider',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/divider'
|
url : '/angular-material-elements/divider'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'elevation',
|
id : 'elevation',
|
||||||
title: 'Elevation',
|
title: 'Elevation',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/elevation'
|
url : '/angular-material-elements/elevation'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'expansion-panel',
|
id : 'expansion-panel',
|
||||||
title: 'Expansion Panel',
|
title: 'Expansion Panel',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/expansion-panel'
|
url : '/angular-material-elements/expansion-panel'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'grid-list',
|
id : 'grid-list',
|
||||||
title: 'Grid list',
|
title: 'Grid list',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/grid-list'
|
url : '/angular-material-elements/grid-list'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'list',
|
id : 'list',
|
||||||
title: 'List',
|
title: 'List',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/list'
|
url : '/angular-material-elements/list'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'stepper',
|
id : 'stepper',
|
||||||
title: 'Stepper',
|
title: 'Stepper',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/stepper'
|
url : '/angular-material-elements/stepper'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'tabs',
|
id : 'tabs',
|
||||||
title: 'Tabs',
|
title: 'Tabs',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/tabs'
|
url : '/angular-material-elements/tabs'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'tree',
|
id : 'tree',
|
||||||
title: 'Tree',
|
title: 'Tree',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/tree'
|
url : '/angular-material-elements/tree'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -747,37 +747,37 @@ export const navigation: FuseNavigation[] = [
|
||||||
id : 'button',
|
id : 'button',
|
||||||
title: 'Button',
|
title: 'Button',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/button'
|
url : '/angular-material-elements/button'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'button-toggle',
|
id : 'button-toggle',
|
||||||
title: 'Button toggle',
|
title: 'Button toggle',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/button-toggle'
|
url : '/angular-material-elements/button-toggle'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'chips',
|
id : 'chips',
|
||||||
title: 'Chips',
|
title: 'Chips',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/chips'
|
url : '/angular-material-elements/chips'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'icon',
|
id : 'icon',
|
||||||
title: 'icon',
|
title: 'icon',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/icon'
|
url : '/angular-material-elements/icon'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'progress-spinner',
|
id : 'progress-spinner',
|
||||||
title: 'Progress spinner',
|
title: 'Progress spinner',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/progress-spinner'
|
url : '/angular-material-elements/progress-spinner'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'progress-bar',
|
id : 'progress-bar',
|
||||||
title: 'Progress bar',
|
title: 'Progress bar',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/progress-bar'
|
url : '/angular-material-elements/progress-bar'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -791,19 +791,19 @@ export const navigation: FuseNavigation[] = [
|
||||||
id : 'dialog',
|
id : 'dialog',
|
||||||
title: 'Dialog',
|
title: 'Dialog',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/dialog'
|
url : '/angular-material-elements/dialog'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'snackbar',
|
id : 'snackbar',
|
||||||
title: 'Snackbar',
|
title: 'Snackbar',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/snackbar'
|
url : '/angular-material-elements/snackbar'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'tooltip',
|
id : 'tooltip',
|
||||||
title: 'Tooltip',
|
title: 'Tooltip',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/tooltip'
|
url : '/angular-material-elements/tooltip'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -817,119 +817,189 @@ export const navigation: FuseNavigation[] = [
|
||||||
id : 'paginator',
|
id : 'paginator',
|
||||||
title: 'Paginator',
|
title: 'Paginator',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/paginator'
|
url : '/angular-material-elements/paginator'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'sort-header',
|
id : 'sort-header',
|
||||||
title: 'Sort header',
|
title: 'Sort header',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/sort-header'
|
url : '/angular-material-elements/sort-header'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'table',
|
id : 'table',
|
||||||
title: 'Table',
|
title: 'Table',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components/angular-material/table'
|
url : '/angular-material-elements/table'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id : 'documentation',
|
||||||
|
title : 'Documentation',
|
||||||
|
type : 'group',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
id : 'changelog',
|
||||||
|
title: 'Changelog',
|
||||||
|
type : 'item',
|
||||||
|
icon : 'update',
|
||||||
|
url : '/documentation/changelog',
|
||||||
|
badge : {
|
||||||
|
title : '6.1.0',
|
||||||
|
bg : '#EC0C8E',
|
||||||
|
fg : '#FFFFFF'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'getting-started',
|
||||||
|
title : 'Getting Started',
|
||||||
|
type : 'collapsable',
|
||||||
|
icon : 'import_contacts',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
id : 'introduction',
|
||||||
|
title: 'Introduction',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/getting-started/introduction'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'installation',
|
||||||
|
title: 'Installation',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/getting-started/installation'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'working-with-fuse',
|
||||||
|
title : 'Working with Fuse',
|
||||||
|
type : 'collapsable',
|
||||||
|
icon : 'import_contacts',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
id : 'server',
|
||||||
|
title: 'Server',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/working-with-fuse/server'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'production',
|
||||||
|
title: 'Production',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/working-with-fuse/production'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'directory-structure',
|
||||||
|
title: 'Directory structure',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/working-with-fuse/directory-structure'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'updating-fuse',
|
||||||
|
title: 'Updating Fuse',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/working-with-fuse/directory-structure'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'template-layouts',
|
||||||
|
title: 'Template Layouts',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/working-with-fuse/template-layouts'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'page-layouts',
|
||||||
|
title: 'Page Layouts',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/working-with-fuse/page-layouts'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
id : 'components',
|
id : 'components',
|
||||||
title : 'Components',
|
title : 'Components',
|
||||||
type : 'group',
|
type : 'collapsable',
|
||||||
icon : 'settings_input_component',
|
icon : 'import_contacts',
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
id : 'cards',
|
id : 'cards',
|
||||||
title: 'Cards',
|
title: 'Cards',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings_input_component',
|
url : '/documentation/components/cards'
|
||||||
url : '/components/cards'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'countdown',
|
id : 'countdown',
|
||||||
title: 'Countdown',
|
title: 'Countdown',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings_input_component',
|
url : '/documentation/components/countdown'
|
||||||
url : '/components/countdown'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'highlight',
|
id : 'highlight',
|
||||||
title: 'Highlight',
|
title: 'Highlight',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings_input_component',
|
url : '/documentation/components/highlight'
|
||||||
url : '/components/highlight'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'material-color-picker',
|
id : 'material-color-picker',
|
||||||
title: 'Material Color Picker',
|
title: 'Material Color Picker',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings_input_component',
|
url : '/documentation/components/material-color-picker'
|
||||||
url : '/components/material-color-picker'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'multi-language',
|
id : 'multi-language',
|
||||||
title: 'Multi Language',
|
title: 'Multi Language',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings_input_component',
|
url : '/documentation/components/multi-language'
|
||||||
url : '/components/multi-language'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'navigation',
|
id : 'navigation',
|
||||||
title: 'Navigation',
|
title: 'Navigation',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings_input_component',
|
url : '/documentation/components/navigation'
|
||||||
url : '/components/navigation'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'search-bar',
|
id : 'search-bar',
|
||||||
title: 'Search Bar',
|
title: 'Search Bar',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings_input_component',
|
url : '/documentation/components/search-bar'
|
||||||
url : '/components/search-bar'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'sidebar',
|
id : 'sidebar',
|
||||||
title: 'Sidebar',
|
title: 'Sidebar',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings_input_component',
|
url : '/documentation/components/sidebar'
|
||||||
url : '/components/sidebar'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'shortcuts',
|
id : 'shortcuts',
|
||||||
title: 'Shortcuts',
|
title: 'Shortcuts',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings_input_component',
|
url : '/documentation/components/shortcuts'
|
||||||
url : '/components/shortcuts'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'widget',
|
id : 'widget',
|
||||||
title: 'Widget',
|
title: 'Widget',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings_input_component',
|
url : '/documentation/components/widget'
|
||||||
url : '/components/widget'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : '3rd-party-components',
|
id : '3rd-party-components',
|
||||||
title : '3rd Party components',
|
title : '3rd Party components',
|
||||||
type : 'group',
|
type : 'collapsable',
|
||||||
icon : 'settings_input_component',
|
icon : 'import_contacts',
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
id : 'datatables',
|
id : 'datatables',
|
||||||
title : 'Datatables',
|
title : 'Datatables',
|
||||||
type : 'collapsable',
|
type : 'collapsable',
|
||||||
icon : 'border_all',
|
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
id : 'ngxdatatable',
|
id : 'ngxdatatable',
|
||||||
title: 'ngx-datatable',
|
title: 'ngx-datatable',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
url : '/components-third-party/datatables/ngx-datatable'
|
url : '/documentation/components-third-party/datatables/ngx-datatable'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -937,31 +1007,63 @@ export const navigation: FuseNavigation[] = [
|
||||||
id : 'google-maps',
|
id : 'google-maps',
|
||||||
title: 'Google Maps',
|
title: 'Google Maps',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'place',
|
url : '/documentation/components-third-party/google-maps'
|
||||||
url : '/components-third-party/google-maps'
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'directives',
|
||||||
|
title : 'Directives',
|
||||||
|
type : 'collapsable',
|
||||||
|
icon : 'import_contacts',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
id : 'fuse-if-on-dom',
|
||||||
|
title: 'fuseIfOnDom',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/directives/fuse-if-on-dom'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'fuse-inner-scroll',
|
||||||
|
title: 'fuseInnerScroll',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/directives/fuse-inner-scroll'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'fuse-mat-sidenav',
|
||||||
|
title: 'fuseMatSidenav',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/directives/fuse-mat-sidenav'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id : 'fuse-perfect-scrollbar',
|
||||||
|
title: 'fusePerfectScrollbar',
|
||||||
|
type : 'item',
|
||||||
|
url : '/documentation/directives/fuse-perfect-scrollbar'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'services',
|
id : 'services',
|
||||||
title : 'Services',
|
title : 'Services',
|
||||||
type : 'group',
|
type : 'collapsable',
|
||||||
icon : 'settings',
|
icon : 'import_contacts',
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
id : 'config',
|
id : 'config',
|
||||||
title: 'Config',
|
title: 'Config',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings',
|
url : '/documentation/services/config'
|
||||||
url : '/services/config'
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id : 'splash-screen',
|
id : 'splash-screen',
|
||||||
title: 'Splash Screen',
|
title: 'Splash Screen',
|
||||||
type : 'item',
|
type : 'item',
|
||||||
icon : 'settings',
|
url : '/documentation/services/splash-screen'
|
||||||
url : '/services/splash-screen'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue
Block a user