alfresco-ng2-components/docs/content-services/interfaces/base-card-view-content-update.interface.md
Denys Vuika 3b4ce3b857
[ACS-5839] migrate to latest JS-API types (#8859)
* [ci:force] migrate Minimal Node to Node

* [ci:force] remove js-api wrappers and use real types

* [ci:force] remove js-api wrappers and use real types

* [ci:force] fix linting errors

* [ci:force] fix linting errors

* [ci:force] security fixes

* [ci:force] sonarcloud bug fixes

* [ci:force] dead code elimination, sonar suggested fixes
2023-08-29 20:56:40 +01:00

2.6 KiB

Title, Added, Status, Last reviewed
Title Added Status Last reviewed
Base Card View Content Update interface v6.0.0 Active 2022-11-25

Base Card View Content Update interface

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