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
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'applications',
|
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': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'dashboards',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title' : 'Dashboards',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'dashboard',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'project',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title': 'Project',
|
2017-10-14 15:44:11 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/apps/dashboards/project'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'calendar',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'mail',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'chat',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'file-manager',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'contacts',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'to-do',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'scrumboard',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'pages',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title' : 'Pages',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'pages',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'authentication',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title' : 'Authentication',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'lock',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'login',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title': 'Login',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/login'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'login-v2',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'register',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title': 'Register',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/auth/register'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'register-v2',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'forgot-password',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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-14 15:44:11 +00:00
|
|
|
'id' : 'forgot-password-v2',
|
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
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'reset-password',
|
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-14 15:44:11 +00:00
|
|
|
'id' : 'reset-password-v2',
|
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
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'lock-screen',
|
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'
|
2017-10-13 11:22:59 +00:00
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'mail-confirmation',
|
2017-10-13 11:22:59 +00:00
|
|
|
'title': 'Mail Confirmation',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/pages/auth/mail-confirm'
|
2017-09-11 09:30:01 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'coming-soon',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'errors',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title' : 'Errors',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'error',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : '404',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : '500',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'invoice',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title' : 'Invoice',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'receipt',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'modern',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title': 'Modern',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/invoices/modern'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'compact',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title': 'Compact',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'item',
|
2017-09-11 09:30:01 +00:00
|
|
|
'url' : '/pages/invoices/compact'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'maintenance',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
2017-10-13 09:21:00 +00:00
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'pricing',
|
2017-10-13 09:21:00 +00:00
|
|
|
'title' : 'Pricing',
|
|
|
|
'type' : 'collapse',
|
|
|
|
'icon' : 'attach_money',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'style-1',
|
2017-10-13 09:21:00 +00:00
|
|
|
'title': 'Style 1',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/pages/pricing/style-1'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'style-2',
|
2017-10-13 09:21:00 +00:00
|
|
|
'title': 'Style 2',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/pages/pricing/style-2'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'style-3',
|
2017-10-13 09:21:00 +00:00
|
|
|
'title': 'Style 3',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/pages/pricing/style-3'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'profile',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'search',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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-10-13 12:37:30 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Faq',
|
|
|
|
'type' : 'item',
|
|
|
|
'icon' : 'help',
|
|
|
|
'url' : '/pages/faq'
|
2017-10-25 10:09:35 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': 'Knowledge Base',
|
|
|
|
'type' : 'item',
|
|
|
|
'icon' : 'import_contacts',
|
|
|
|
'url' : '/pages/knowledge-base'
|
2017-09-11 09:30:01 +00:00
|
|
|
}
|
|
|
|
]
|
2017-07-09 10:38:38 +00:00
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'user-interface',
|
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': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'forms',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'icons',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'typography',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'helper-classes',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'page-layouts',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'carded',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title' : 'Carded',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'full-width',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'full-width-2',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'left-sidenav',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
2017-10-23 11:39:44 +00:00
|
|
|
{
|
|
|
|
'id' : 'left-sidenav-tabbed',
|
|
|
|
'title': 'Left Sidenav Tabbed',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/ui/page-layouts/carded/left-sidenav-tabbed'
|
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'left-sidenav-2',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
2017-10-23 11:39:44 +00:00
|
|
|
{
|
|
|
|
'id' : 'left-sidenav-2-tabbed',
|
|
|
|
'title': 'Left Sidenav 2 Tabbed',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/ui/page-layouts/carded/left-sidenav-2-tabbed'
|
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'right-sidenav',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
2017-10-23 11:39:44 +00:00
|
|
|
{
|
|
|
|
'id' : 'right-sidenav-tabbed',
|
|
|
|
'title': 'Right Sidenav Tabbed',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/ui/page-layouts/carded/right-sidenav-tabbed'
|
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'right-sidenav-2',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
2017-10-23 11:39:44 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
'id' : 'right-sidenav-2-tabbed',
|
|
|
|
'title': 'Right Sidenav 2 Tabbed',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/ui/page-layouts/carded/right-sidenav-2-tabbed'
|
2017-09-11 09:30:01 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'simple',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title' : 'Simple',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'collapse',
|
2017-09-11 09:30:01 +00:00
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'full-width',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'left-sidenav',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'left-sidenav-2',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'left-sidenav-3',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'right-sidenav',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'right-sidenav-2',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'right-sidenav-3',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'tabbed',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'blank',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'colors',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'services',
|
2017-09-11 09:30:01 +00:00
|
|
|
'title' : 'Services',
|
2017-09-21 09:08:52 +00:00
|
|
|
'type' : 'group',
|
2017-09-11 09:30:01 +00:00
|
|
|
'icon' : 'settings',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'config',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'splash-screen',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'components',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'angular-material-elements',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title' : 'Angular Material Elements',
|
|
|
|
'type' : 'collapse',
|
|
|
|
'icon' : 'layers',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'form-controls',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title' : 'Form Controls',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'autocomplete',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Autocomplete',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/autocomplete'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'checkbox',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Checkbox',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/checkbox'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'datepicker',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Datepicker',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/datepicker'
|
|
|
|
},
|
2017-10-10 14:19:06 +00:00
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'form-field',
|
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
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'input',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Input',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/input'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'radio-button',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Radio button',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/radio-button'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'select',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Select',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/select'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'slider',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Slider',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/slider'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'slide-toggle',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Slide toggle',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/slide-toggle'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'navigation',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title' : 'Navigation',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'menu',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Menu',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/menu'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'sidenav',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Sidenav',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/sidenav'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'toolbar',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Toolbar',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/toolbar'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'layout',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title' : 'Layout',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'list',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'List',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/list'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'grid-list',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Grid list',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/grid-list'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'card',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Card',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/card'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'stepper',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Stepper',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/stepper'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'tabs',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Tabs',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/tabs'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'expansion-panel',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Expansion Panel',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/expansion-panel'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'buttons-indicators',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title' : 'Buttons & Indicators',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'button',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Button',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/button'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'button-toggle',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Button toggle',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/button-toggle'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'chips',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Chips',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/chips'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'icon',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Icon',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/icon'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'progress-spinner',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Progress spinner',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/progress-spinner'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'progress-bar',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Progress bar',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/progress-bar'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'popups-modals',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title' : 'Popups & Modals',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'dialog',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Dialog',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/dialog'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'tooltip',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Tooltip',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/tooltip'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'snackbar',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Snackbar',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/snackbar'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'data-table',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title' : 'Data table',
|
|
|
|
'type' : 'group',
|
|
|
|
'children': [
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'table',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Table',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/data-table'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'sort-header',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Sort header',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/sort-header'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'paginator',
|
2017-09-27 16:40:59 +00:00
|
|
|
'title': 'Paginator',
|
|
|
|
'type' : 'item',
|
|
|
|
'url' : '/components/angular-material/paginator'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'countdown',
|
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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'highlightjs',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'material-color-picker',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
2017-10-24 12:41:44 +00:00
|
|
|
{
|
|
|
|
'id' : 'multi-language',
|
|
|
|
'title': 'Multi Language',
|
|
|
|
'type' : 'item',
|
|
|
|
'icon' : 'settings_input_component',
|
|
|
|
'url' : '/components/multi-language'
|
|
|
|
},
|
2017-09-11 09:30:01 +00:00
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'navigation',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'search-bar',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'shortcuts',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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'
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'widget',
|
2017-09-11 09:30:01 +00:00
|
|
|
'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
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : '3rd-party-components',
|
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-10-14 15:44:11 +00:00
|
|
|
'id' : 'datatables',
|
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-10-14 15:44:11 +00:00
|
|
|
'id' : 'ngxdatatable',
|
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-10-13 08:57:54 +00:00
|
|
|
},
|
|
|
|
{
|
2017-10-14 15:44:11 +00:00
|
|
|
'id' : 'google-maps',
|
2017-10-13 08:57:54 +00:00
|
|
|
'title': 'Google Maps',
|
|
|
|
'type' : 'item',
|
|
|
|
'icon' : 'place',
|
|
|
|
'url' : '/components-third-party/google-maps'
|
2017-09-11 09:30:01 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2017-07-09 10:38:38 +00:00
|
|
|
];
|
|
|
|
}
|
2017-07-08 16:12:52 +00:00
|
|
|
}
|