projects/openvidu-components-angular/src/lib/directives/template/internals.directive.ts
The *ovParticipantPanelAfterLocalParticipant directive allows you to inject custom HTML or Angular templates immediately after the local participant item in the participant panel. This enables you to extend the participant panel with additional controls, information, or UI elements.
Usage example:
Example :<ov-participant-panel>
<ng-container *ovParticipantPanelAfterLocalParticipant>
<div class="custom-content">
<!-- Your custom HTML here -->
<span>Custom content after local participant</span>
</div>
</ng-container>
</ov-participant-panel>| Selector | [ovParticipantPanelAfterLocalParticipant] |
Properties |
constructor(template: TemplateRef
|
|||||||||
|
Parameters :
|
| Public container |
Type : ViewContainerRef
|
| Public template |
Type : TemplateRef<any>
|