Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 2.62 KB

base-card-view-content-update.interface.md

File metadata and controls

52 lines (37 loc) · 2.62 KB
Title Added Status Last reviewed
Base Card View Content Update interface
v6.0.0
Active
2022-11-25

Specifies required properties and methods for Card View Content Update service. Extends from BaseCardViewUpdate.

Basic usage

export interface BaseCardViewContentUpdate {
    itemUpdated$: Subject<UpdateNotification>;
    updatedAspect$: Subject<Node>;

    update(property: CardViewBaseItemModel, newValue: any);
    updateElement(notification: CardViewBaseItemModel);
    updateNodeAspect(node: Node);
}

Properties

Name Type Default value Description
itemUpdated$ Subject<UpdateNotification> The current updated item.
updatedAspect$ Subject<MinimalNode>(@alfresco/js-api) Subject holding the current node

Methods

See also