|
|
|
@ -16,6 +16,7 @@
|
|
|
|
|
[tooltip]="element.name"
|
|
|
|
|
/>
|
|
|
|
|
</td>
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell></td>
|
|
|
|
|
</ng-container>
|
|
|
|
|
|
|
|
|
|
<ng-container matColumnDef="nameWithSymbol">
|
|
|
|
@ -38,6 +39,7 @@
|
|
|
|
|
<small class="text-muted">{{ element.symbol }}</small>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell>Total</td>
|
|
|
|
|
</ng-container>
|
|
|
|
|
|
|
|
|
|
<ng-container matColumnDef="dateOfFirstActivity">
|
|
|
|
@ -62,6 +64,11 @@
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td
|
|
|
|
|
*matFooterCellDef
|
|
|
|
|
class="d-none d-lg-table-cell justify-content-end px-1"
|
|
|
|
|
mat-footer-cell
|
|
|
|
|
></td>
|
|
|
|
|
</ng-container>
|
|
|
|
|
|
|
|
|
|
<ng-container matColumnDef="valueInBaseCurrency">
|
|
|
|
@ -86,6 +93,14 @@
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
<td *matFooterCellDef class="d-none d-lg-table-cell px-1" mat-footer-cell>
|
|
|
|
|
<gf-value
|
|
|
|
|
[isCurrency]="true"
|
|
|
|
|
[locale]="locale"
|
|
|
|
|
[value]="totalValue"
|
|
|
|
|
></gf-value>
|
|
|
|
|
</td>
|
|
|
|
|
</ng-container>
|
|
|
|
|
|
|
|
|
|
<ng-container matColumnDef="allocationInPercentage">
|
|
|
|
@ -107,6 +122,7 @@
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell></td>
|
|
|
|
|
</ng-container>
|
|
|
|
|
|
|
|
|
|
<ng-container matColumnDef="performance">
|
|
|
|
@ -130,6 +146,16 @@
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell>
|
|
|
|
|
<div class="d-flex justify-content-end">
|
|
|
|
|
<gf-value
|
|
|
|
|
[colorizeSign]="true"
|
|
|
|
|
[isCurrency]="true"
|
|
|
|
|
[locale]="locale"
|
|
|
|
|
[value]="totalChange"
|
|
|
|
|
></gf-value>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</ng-container>
|
|
|
|
|
|
|
|
|
|
<ng-container matColumnDef="performanceInPercentage" stickyEnd>
|
|
|
|
@ -156,6 +182,16 @@
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
<td *matFooterCellDef class="px-1" mat-footer-cell>
|
|
|
|
|
<div class="d-flex justify-content-end">
|
|
|
|
|
<gf-value
|
|
|
|
|
[colorizeSign]="true"
|
|
|
|
|
[isPercent]="true"
|
|
|
|
|
[locale]="locale"
|
|
|
|
|
[value]="totalChangePercentage"
|
|
|
|
|
></gf-value>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</ng-container>
|
|
|
|
|
|
|
|
|
|
<tr *matHeaderRowDef="displayedColumns" mat-header-row></tr>
|
|
|
|
@ -175,6 +211,11 @@
|
|
|
|
|
})
|
|
|
|
|
"
|
|
|
|
|
></tr>
|
|
|
|
|
<tr
|
|
|
|
|
*matFooterRowDef="displayedColumns"
|
|
|
|
|
mat-footer-row
|
|
|
|
|
[ngClass]="{ hidden: isLoading }"
|
|
|
|
|
></tr>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|