mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* adding debounce time in object picker unify search api fix multiples duplicate result remove limit of 4 character to search * remove three.min.js * remove unused import * tlsint fix and remove file * rename sitesApiService to sitesService as all the other services * fix test timeout async
15 lines
527 B
HTML
15 lines
527 B
HTML
<div *ngIf="pagination?.hasMoreItems" class="adf-infinite-pagination">
|
|
<button mat-button
|
|
*ngIf="!isLoading"
|
|
class="adf-infinite-pagination-load-more"
|
|
(click)="onLoadMore($event)"
|
|
data-automation-id="adf-infinite-pagination-button">
|
|
<ng-content></ng-content>
|
|
</button>
|
|
|
|
<mat-progress-bar *ngIf="isLoading"
|
|
mode="indeterminate"
|
|
class="adf-infinite-pagination-spinner"
|
|
data-automation-id="adf-infinite-pagination-spinner"></mat-progress-bar>
|
|
</div>
|