Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 2.53 KB

base-card-view-update.interface.md

File metadata and controls

53 lines (38 loc) · 2.53 KB
Title Added Status Last reviewed
Base Card View Update Interface
v6.0.0
Active
2022-11-25

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

Name Type Description
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