On the component, create a NodeMinial object (this implements MinimalNodeEntryEntity), and just set its id using the input nodeId.
@Input() nodeId;
yourNode: NodeMinimal;
ngOnInit() {
this.yourNode = new NodeMinimal();
this.yourNode.id = nodeId;
}On the template, wait until the inimalNode ID is set and pass it as the node input parameter.
<adf-version-manager *ngIf="yourNode.id" [node]="yourNode"> </adf-version-manager>