Skip to content

Commit

Permalink
[ACS-5566] - add configurable columns to document list
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikiwanekhyland authored and MichalKinas committed Oct 25, 2023
1 parent b25a3ad commit ad1668d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.LIBRARIES.MENU.FAVORITE_LIBRARIES.TITL
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
<ng-template let-context>
<adf-dynamic-column [id]="column.template" [context]="context"> </adf-dynamic-column>
Expand All @@ -54,6 +55,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.LIBRARIES.MENU.FAVORITE_LIBRARIES.TITL
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
</data-column>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.FAVORITES.TITLE' | translate }}</h1>
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
<ng-template let-context>
<adf-dynamic-column [id]="column.template" [context]="context"> </adf-dynamic-column>
Expand All @@ -49,6 +50,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.FAVORITES.TITLE' | translate }}</h1>
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
</data-column>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
[class]="column.class"
[sortable]="column.sortable"
[sortingKey]="column.sortingKey || column.key"
[isHidden]="column.isHidden"
>
<ng-template let-context>
<adf-dynamic-column [id]="column.template" [context]="context"> </adf-dynamic-column>
Expand All @@ -60,6 +61,7 @@
[class]="column.class"
[sortable]="column.sortable"
[sortingKey]="column.sortingKey || column.key"
[isHidden]="column.isHidden"
>
</data-column>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.LIBRARIES.MENU.MY_LIBRARIES.TITLE' | t
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
<ng-template let-context>
<adf-dynamic-column [id]="column.template" [context]="context"> </adf-dynamic-column>
Expand All @@ -53,6 +54,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.LIBRARIES.MENU.MY_LIBRARIES.TITLE' | t
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
</data-column>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.RECENT.TITLE' | translate }}</h1>
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
<ng-template let-context>
<adf-dynamic-column [id]="column.template" [context]="context"> </adf-dynamic-column>
Expand All @@ -49,6 +50,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.RECENT.TITLE' | translate }}</h1>
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
</data-column>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.SHARED.TITLE' | translate }}</h1>
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
<ng-template let-context>
<adf-dynamic-column [id]="column.template" [context]="context"> </adf-dynamic-column>
Expand All @@ -48,6 +49,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.SHARED.TITLE' | translate }}</h1>
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
</data-column>
</ng-container>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.TRASHCAN.TITLE' | translate }}</h1>
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
<ng-template let-context>
<adf-dynamic-column [id]="column.template" [context]="context"> </adf-dynamic-column>
Expand All @@ -54,6 +55,7 @@ <h1 class="aca-page-title">{{ 'APP.BROWSE.TRASHCAN.TITLE' | translate }}</h1>
[format]="column.format"
[class]="column.class"
[sortable]="column.sortable"
[isHidden]="column.isHidden"
>
</data-column>
</ng-container>
Expand Down

0 comments on commit ad1668d

Please sign in to comment.