Hello, I am attempting to upgrade my custom ADF application from v6.8.0 to v7.0.0 and have been unsuccessful getting the
DiagramComponent <adf-diagram> to be recognized.
In the version ADF 6.8.0 app.module.ts file I would include ProcessDiagramComponent like this:
import { InsightsModule } from '@alfresco/adf-insights';
...
import InsightsModule.forRoot() ...
declarations: [
ProcessDiagramComponent
Here's the template implementation:
<adf-diagram [processInstanceId]="processInstanceId"
(error)="diagramErr($event)"
(success)="diagramSuccess($event)">
</adf-diagram>
After upgrading to ADF 7.0.0 it now tells me InsightsModule is deprecated and that ProcessDiagramComponent is not found.
Is the Diagram Component still available in version 7.0.0?