|
@ -16,6 +16,7 @@ |
|
|
[tooltip]="element.name" |
|
|
[tooltip]="element.name" |
|
|
/> |
|
|
/> |
|
|
</td> |
|
|
</td> |
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell></td> |
|
|
</ng-container> |
|
|
</ng-container> |
|
|
|
|
|
|
|
|
<ng-container matColumnDef="nameWithSymbol"> |
|
|
<ng-container matColumnDef="nameWithSymbol"> |
|
@ -42,6 +43,7 @@ |
|
|
<small class="text-muted">{{ element.symbol }}</small> |
|
|
<small class="text-muted">{{ element.symbol }}</small> |
|
|
</div> |
|
|
</div> |
|
|
</td> |
|
|
</td> |
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell>Total</td> |
|
|
</ng-container> |
|
|
</ng-container> |
|
|
|
|
|
|
|
|
<ng-container matColumnDef="dateOfFirstActivity"> |
|
|
<ng-container matColumnDef="dateOfFirstActivity"> |
|
@ -66,6 +68,7 @@ |
|
|
/> |
|
|
/> |
|
|
</div> |
|
|
</div> |
|
|
</td> |
|
|
</td> |
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell></td> |
|
|
</ng-container> |
|
|
</ng-container> |
|
|
<ng-container |
|
|
<ng-container |
|
|
matColumnDef="marketPrice" |
|
|
matColumnDef="marketPrice" |
|
@ -89,6 +92,7 @@ |
|
|
/> |
|
|
/> |
|
|
</div> |
|
|
</div> |
|
|
</td> |
|
|
</td> |
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell></td> |
|
|
</ng-container> |
|
|
</ng-container> |
|
|
|
|
|
|
|
|
<ng-container |
|
|
<ng-container |
|
@ -116,6 +120,14 @@ |
|
|
/> |
|
|
/> |
|
|
</div> |
|
|
</div> |
|
|
</td> |
|
|
</td> |
|
|
|
|
|
|
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell> |
|
|
|
|
|
<gf-value |
|
|
|
|
|
[isCurrency]="true" |
|
|
|
|
|
[locale]="locale" |
|
|
|
|
|
[value]="totalValue" |
|
|
|
|
|
></gf-value> |
|
|
|
|
|
</td> |
|
|
</ng-container> |
|
|
</ng-container> |
|
|
|
|
|
|
|
|
<ng-container |
|
|
<ng-container |
|
@ -140,6 +152,7 @@ |
|
|
/> |
|
|
/> |
|
|
</div> |
|
|
</div> |
|
|
</td> |
|
|
</td> |
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell></td> |
|
|
</ng-container> |
|
|
</ng-container> |
|
|
|
|
|
|
|
|
<ng-container |
|
|
<ng-container |
|
@ -168,6 +181,15 @@ |
|
|
/> |
|
|
/> |
|
|
</div> |
|
|
</div> |
|
|
</td> |
|
|
</td> |
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell> |
|
|
|
|
|
<div class="d-flex justify-content-end"> |
|
|
|
|
|
<gf-value |
|
|
|
|
|
[isCurrency]="true" |
|
|
|
|
|
[locale]="locale" |
|
|
|
|
|
[value]="totalChange" |
|
|
|
|
|
></gf-value> |
|
|
|
|
|
</div> |
|
|
|
|
|
</td> |
|
|
</ng-container> |
|
|
</ng-container> |
|
|
|
|
|
|
|
|
<ng-container matColumnDef="performanceInPercentage" stickyEnd> |
|
|
<ng-container matColumnDef="performanceInPercentage" stickyEnd> |
|
@ -194,6 +216,15 @@ |
|
|
/> |
|
|
/> |
|
|
</div> |
|
|
</div> |
|
|
</td> |
|
|
</td> |
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell> |
|
|
|
|
|
<div class="d-flex justify-content-end"> |
|
|
|
|
|
<gf-value |
|
|
|
|
|
[isPercent]="true" |
|
|
|
|
|
[locale]="locale" |
|
|
|
|
|
[value]="totalChangePercentage" |
|
|
|
|
|
></gf-value> |
|
|
|
|
|
</div> |
|
|
|
|
|
</td> |
|
|
</ng-container> |
|
|
</ng-container> |
|
|
|
|
|
|
|
|
<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr> |
|
|
<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr> |
|
@ -213,6 +244,11 @@ |
|
|
}) |
|
|
}) |
|
|
" |
|
|
" |
|
|
></tr> |
|
|
></tr> |
|
|
|
|
|
<tr |
|
|
|
|
|
*matFooterRowDef="displayedColumns" |
|
|
|
|
|
mat-footer-row |
|
|
|
|
|
[ngClass]="{ hidden: isLoading }" |
|
|
|
|
|
></tr> |
|
|
</table> |
|
|
</table> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|