mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
feat(buttons): add the buttons components
This commit is contained in:
parent
916289eb94
commit
9ebf30ac68
29 changed files with 854 additions and 66 deletions
|
|
@ -2,50 +2,52 @@ import { NgaMenuItem } from '@nga/theme';
|
|||
|
||||
import { List } from 'immutable';
|
||||
|
||||
export const menuItems: List<NgaMenuItem> = List([
|
||||
{
|
||||
title: 'Dashboard',
|
||||
icon: 'ion ion-ios-home-outline',
|
||||
link: '/pages/dashboard',
|
||||
home: true,
|
||||
},
|
||||
{
|
||||
title: 'FEATURES',
|
||||
group: true,
|
||||
},
|
||||
{
|
||||
title: 'UI Features',
|
||||
icon: 'ion ion-ios-keypad-outline',
|
||||
link: '/pages/ui-features',
|
||||
},
|
||||
{
|
||||
title: 'Components',
|
||||
icon: 'ion ion-ios-gear-outline',
|
||||
link: '/pages/components',
|
||||
},
|
||||
{
|
||||
title: 'Maps',
|
||||
icon: 'ion ion-ios-location-outline',
|
||||
link: '/pages/maps',
|
||||
},
|
||||
{
|
||||
title: 'Charts',
|
||||
icon: 'ion ion-arrow-graph-up-right',
|
||||
link: '/pages/charts',
|
||||
},
|
||||
{
|
||||
title: 'Editors',
|
||||
icon: 'ion ion-edit',
|
||||
link: '/pages/editors',
|
||||
children: List([
|
||||
{
|
||||
title: 'TinyMCE',
|
||||
link: '/pages/editors/tinymce',
|
||||
},
|
||||
{
|
||||
title: 'CKEditor',
|
||||
link: '/pages/editors/ckeditor',
|
||||
},
|
||||
]),
|
||||
},
|
||||
]);
|
||||
export const menuItems: List<NgaMenuItem> = List([{
|
||||
title: 'Dashboard',
|
||||
icon: 'ion ion-ios-home-outline',
|
||||
link: '/pages/dashboard',
|
||||
home: true,
|
||||
}, {
|
||||
title: 'FEATURES',
|
||||
group: true,
|
||||
}, {
|
||||
title: 'UI Features',
|
||||
icon: 'ion ion-ios-keypad-outline',
|
||||
link: '/pages/ui-features',
|
||||
children: List([{
|
||||
title: 'Buttons',
|
||||
link: '/pages/ui-features/buttons',
|
||||
}, {
|
||||
title: 'Grid',
|
||||
link: '/pages/ui-features/grid',
|
||||
}, {
|
||||
title: 'Icons',
|
||||
link: '/pages/ui-features/icons',
|
||||
}, {
|
||||
title: 'Modals',
|
||||
link: '/pages/ui-features/modals',
|
||||
}]),
|
||||
}, {
|
||||
title: 'Components',
|
||||
icon: 'ion ion-ios-gear-outline',
|
||||
link: '/pages/components',
|
||||
}, {
|
||||
title: 'Maps',
|
||||
icon: 'ion ion-ios-location-outline',
|
||||
link: '/pages/maps',
|
||||
}, {
|
||||
title: 'Charts',
|
||||
icon: 'ion ion-arrow-graph-up-right',
|
||||
link: '/pages/charts',
|
||||
}, {
|
||||
title: 'Editors',
|
||||
icon: 'ion ion-edit',
|
||||
link: '/pages/editors',
|
||||
children: List([{
|
||||
title: 'TinyMCE',
|
||||
link: '/pages/editors/tinymce',
|
||||
}, {
|
||||
title: 'CKEditor',
|
||||
link: '/pages/editors/ckeditor',
|
||||
}]),
|
||||
}]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue