alfresco-ng2-components/docs/content-services/interfaces/content-metadata-custom-panel.interface.md
MichalKinas 4cc4498b0e
[ACS-5611] Add custom metadata side panels to metadata card component (#8974)
* [ACS-5611] Add custom panels to metadata card component

* [ACS-5611] Add custom metadata panels unit tests

* [ACS-5611] CR fixes

* [ACS-5611] CR fixes
2023-10-09 13:47:45 +02:00

1.1 KiB

Title, Added, Status, Last reviewed
Title Added Status Last reviewed
Content Metadata Custom Panel interface v6.4.0 Active 2023-10-06

Content Metadata Custom Panel interface

Specifies required properties for custom metadata panel to be displayed in ContentMetadataCardComponent.

Basic usage

export interface ContentMetadataCustomPanel {
    panelTitle: string;
    component: string;
}

Properties

Name Type Default value Description
panelTitle string Title for the panel the will be displayed in expansion panel header.
component string Id of the registered Dynamic component to be displayed inside expansion panel.

See also