* Add Edit icon

This commit is contained in:
sivakumar414ram
2019-12-11 19:47:19 +05:30
parent 2cc7fe7efe
commit e3f7e3da09
6 changed files with 77 additions and 24 deletions

View File

@@ -152,9 +152,14 @@ export class CardViewComponent implements OnInit, OnDestroy {
}),
new CardViewArrayItemModel({
label: 'CardView Array of items',
value: of(['Zlatan', 'Lionel Messi', 'Mohamed', 'Ronaldo']),
value: of([
{ icon: 'directions_bike', value: 'Zlatan' },
{ icon: 'directions_bike', value: 'Lionel Messi'},
{ value: 'Mohamed', directions_bike: 'save'},
{ value: 'Ronaldo'}
]),
key: 'array',
icon: 'directions_bike',
icon: 'edit',
default: 'Empty',
noOfItemsToDisplay: 2
})