mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* Remove the drag and drop Change the design button Fix the Event with the name inside the Readme * Fix unit test * Rollback id button
30 lines
912 B
HTML
30 lines
912 B
HTML
<div id="attachment-process-list" *ngIf="processId">
|
|
<h5>Attachments</h5>
|
|
<div class="adf-no-form-container">
|
|
<adf-upload-drag-area
|
|
[parentId]="processId"
|
|
[showNotificationBar]="false">
|
|
<adf-process-attachment-list #processAttachList
|
|
*ngIf="processId"
|
|
[processInstanceId]="processId"
|
|
(attachmentClick)="onAttachmentClick($event)">
|
|
</adf-process-attachment-list>
|
|
</adf-upload-drag-area>
|
|
|
|
<adf-create-process-attachment
|
|
[processInstanceId]="processId"
|
|
(success)="onFileUploadComplete($event)">
|
|
</adf-create-process-attachment>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div *ngIf="fileShowed">
|
|
<alfresco-viewer
|
|
[(showViewer)]="fileShowed"
|
|
[blobFile]="content"
|
|
[displayName]="contentName"
|
|
[overlayMode]="true">
|
|
</alfresco-viewer>
|
|
</div>
|