2017-09-21 09:08:52 +00:00
|
|
|
export class NavigationModel
|
2017-07-08 16:12:52 +00:00
|
|
|
{
|
2017-09-21 11:08:37 +00:00
|
|
|
public model: any[];
|
2017-07-09 10:38:38 +00:00
|
|
|
|
|
|
|
constructor()
|
|
|
|
{
|
2017-09-21 09:08:52 +00:00
|
|
|
this.model = [
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
|
|
|
'title' : 'Applications',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'apps',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title' : 'Dashboards',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'dashboard',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title': 'Project',
|
|
|
|
'url' : '/apps/dashboards/project'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Calendar',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'today',
|
|
|
|
'url' : '/apps/calendar'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Mail',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'email',
|
|
|
|
'url' : '/apps/mail',
|
|
|
|
'badge': {
|
|
|
|
'title': 25,
|
|
|
|
'bg' : '#F44336',
|
|
|
|
'fg' : '#FFFFFF'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Chat',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'chat',
|
|
|
|
'url' : '/apps/chat',
|
|
|
|
'badge': {
|
|
|
|
'title': 13,
|
|
|
|
'bg' : '#09d261',
|
|
|
|
'fg' : '#FFFFFF'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'File Manager',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'folder',
|
|
|
|
'url' : '/apps/file-manager'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Contacts',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'account_box',
|
|
|
|
'url' : '/apps/contacts'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'To-Do',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'check_box',
|
|
|
|
'url' : '/apps/todo',
|
|
|
|
'badge': {
|
|
|
|
'title': 3,
|
|
|
|
'bg' : '#FF6F00',
|
|
|
|
'fg' : '#FFFFFF'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Scrumboard',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'assessment',
|
|
|
|
'url' : '/apps/scrumboard'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Pages',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'pages',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title' : 'Authentication',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'lock',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Login',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/login'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Login v2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/login-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Register',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/register'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Register v2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/register-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Forgot Password',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/forgot-password'
|
|
|
|
},
|
2017-10-09 11:17:27 +00:00
|
|
|
{
|
2017-10-12 11:28:58 +00:00
|
|
|
'title': 'Forgot Password v2',
|
2017-10-09 11:17:27 +00:00
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/pages/auth/forgot-password-2'
|
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
|
|
|
'title': 'Reset Password',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/reset-password'
|
|
|
|
},
|
2017-10-09 11:17:27 +00:00
|
|
|
{
|
2017-10-12 11:28:58 +00:00
|
|
|
'title': 'Reset Password v2',
|
2017-10-09 11:17:27 +00:00
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/pages/auth/reset-password-2'
|
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
|
|
|
'title': 'Lock Screen',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/lock'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Coming Soon',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'alarm',
|
|
|
|
'url' : '/pages/coming-soon'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Errors',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'error',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': '404',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/errors/error-404'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': '500',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/errors/error-500'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Invoice',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'receipt',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Modern',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/invoices/modern'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Compact',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/invoices/compact'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Maintenance',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'build',
|
|
|
|
'url' : '/pages/maintenance'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Profile',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'person',
|
|
|
|
'url' : '/pages/profile'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Search',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'search',
|
|
|
|
'url' : '/pages/search'
|
|
|
|
}
|
|
|
|
]
|
2017-07-09 10:38:38 +00:00
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
|
|
|
'title' : 'User Interface',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'web',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Forms',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'web_asset',
|
|
|
|
'url' : '/ui/forms'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Icons',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'photo',
|
|
|
|
'url' : '/ui/icons'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Typography',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'text_fields',
|
|
|
|
'url' : '/ui/typography'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Helper Classes',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'help',
|
|
|
|
'url' : '/ui/helper-classes'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Page Layouts',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'view_quilt',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title' : 'Carded',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Full Width',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/full-width'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Full Width 2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/full-width-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Left Sidenav',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/left-sidenav'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Left Sidenav 2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/left-sidenav-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Right Sidenav',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/right-sidenav'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Right Sidenav 2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/carded/right-sidenav-2'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Simple',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Full Width',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/full-width'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Left Sidenav',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/left-sidenav'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Left Sidenav 2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/left-sidenav-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Left Sidenav 3',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/left-sidenav-3'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Right Sidenav',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/right-sidenav'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Right Sidenav 2',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/right-sidenav-2'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Right Sidenav 3',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/right-sidenav-3'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Tabbed',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/simple/tabbed'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Blank',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/ui/page-layouts/blank'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Colors',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'color_lens',
|
|
|
|
'url' : '/ui/colors'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Services',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Config',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings',
|
|
|
|
'url' : '/services/config'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Splash Screen',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings',
|
|
|
|
'url' : '/services/splash-screen'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Components',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'children': [
|
2017-09-27 16:40:59 +00:00
|
|
|
{
|
|
|
|
'title' : 'Angular Material Elements',
|
|
|
|
'type' : 'collapse',
|
|
|
|
'icon' : 'layers',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title' : 'Form Controls',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Autocomplete',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/autocomplete'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Checkbox',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/checkbox'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Datepicker',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/datepicker'
|
|
|
|
},
|
2017-10-10 14:19:06 +00:00
|
|
|
{
|
|
|
|
'title': 'Form field',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/form-field'
|
|
|
|
},
|
2017-09-27 16:40:59 +00:00
|
|
|
{
|
|
|
|
'title': 'Input',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/input'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Radio button',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/radio-button'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Select',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/select'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Slider',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/slider'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Slide toggle',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/slide-toggle'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Navigation',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Menu',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/menu'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Sidenav',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/sidenav'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Toolbar',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/toolbar'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Layout',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'List',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/list'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Grid list',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/grid-list'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Card',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/card'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Stepper',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/stepper'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Tabs',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/tabs'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Expansion Panel',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/expansion-panel'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Buttons & Indicators',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Button',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/button'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Button toggle',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/button-toggle'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Chips',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/chips'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Icon',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/icon'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Progress spinner',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/progress-spinner'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Progress bar',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/progress-bar'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Popups & Modals',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Dialog',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/dialog'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Tooltip',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/tooltip'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Snackbar',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/snackbar'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : 'Data table',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
|
|
|
'title': 'Table',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/data-table'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Sort header',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/sort-header'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Paginator',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/paginator'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
|
|
|
'title': 'Countdown',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/countdown'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Highlight.js',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/highlightjs'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Material Color Picker',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/material-color-picker'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Navigation',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/navigation'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Price Tables',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/price-tables'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Search Bar',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/search-bar'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Shortcuts',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/shortcuts'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Widget',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/widget'
|
2017-09-21 09:08:52 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title' : '3rd Party components',
|
|
|
|
'type' : 'group',
|
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'children': [
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
2017-09-21 09:08:52 +00:00
|
|
|
'title' : 'Datatables',
|
|
|
|
'type' : 'collapse',
|
|
|
|
'icon' : 'border_all',
|
2017-09-11 09:30:01 +00:00
|
|
|
'children': [
|
|
|
|
{
|
2017-09-21 09:08:52 +00:00
|
|
|
'title': 'ngx-datatable',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components-third-party/datatables/ngx-datatable'
|
2017-09-11 09:30:01 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2017-07-09 10:38:38 +00:00
|
|
|
];
|
|
|
|
}
|
2017-07-08 16:12:52 +00:00
|
|
|
}
|