Specifies required properties and methods for Card View Update service.

Basic usage

export interface BaseCardViewUpdate {
    itemUpdated$: Subject<UpdateNotification>;
    itemClicked$: Subject<ClickNotification>;
    updateItem$: Subject<CardViewBaseItemModel>;

    update(property: CardViewBaseItemModel, newValue: any);
    clicked(property: CardViewBaseItemModel);
    updateElement(notification: CardViewBaseItemModel);
}

Properties

NameTypeDescription
itemUpdated$Subject<UpdateNotification>The current updated item.
itemClicked$Subject<ClickNotification>The current clicked item.
updateItem$Subject<CardViewBaseItemModel>The current model for the update item.

Methods

See also

© 2023 Alfresco Software, Inc. All Rights Reserved.