2.0 KiB

Title, Added, Status, Last reviewed
Title Added Status Last reviewed
Aspect List component v2.0.0 Active 2024-05-07

Aspect List Component

import { AspectListComponent } from '@alfresco/adf-content-services';

This component will show in an expandable row list with checkboxes all the aspect of a node, if a node id is given, or otherwise a complete list.

The aspects are filtered via the app.config.json in the following way :

{
    "aspect-visible": {
        "default": [
            "as:aspectThatWillBeShowedIfPresent"
        ]
    }
}

Basic Usage

<adf-aspect-list
    [nodeId]="nodeId"
    (valueChanged)="onValueChanged($event)" 
    (updateCounter)="onUpdateCounter($event)">
</adf-aspect-list>

Class members

Properties

Name Type Default value Description
nodeId string "" Node Id of the node that we want to update
excludedAspects string[] undefined List of aspects' ids which should not be displayed.

Events

Name Type Description
valueChanged EventEmitter<string[]> Emitted every time the user select a new aspect
updateCounter EventEmitter<number> Emitted every time the number of selected aspects changes

See also