mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* refactoring infinite pagination * fix lint * fix import reuqest pagination from core * fix failing unit test
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<header
|
|
mat-dialog-title
|
|
data-automation-id="content-node-selector-title">{{data?.title}}
|
|
</header>
|
|
|
|
<mat-dialog-content>
|
|
<adf-content-node-selector-panel
|
|
[currentFolderId]="data?.currentFolderId"
|
|
[dropdownHideMyFiles]="data?.dropdownHideMyFiles"
|
|
[dropdownSiteList]="data?.dropdownSiteList"
|
|
[rowFilter]="data?.rowFilter"
|
|
[imageResolver]="data?.imageResolver"
|
|
[isSelectionValid]="data?.isSelectionValid"
|
|
[breadcrumbTransform]="data?.breadcrumbTransform"
|
|
[excludeSiteContent]="data?.excludeSiteContent"
|
|
[where]="data?.where"
|
|
(select)="onSelect($event)">
|
|
</adf-content-node-selector-panel>
|
|
</mat-dialog-content>
|
|
|
|
<mat-dialog-actions align="end">
|
|
<button
|
|
mat-button
|
|
(click)="close()"
|
|
data-automation-id="content-node-selector-actions-cancel">{{ 'NODE_SELECTOR.CANCEL' | translate }}
|
|
</button>
|
|
|
|
<button mat-button
|
|
[disabled]="!chosenNode"
|
|
class="adf-choose-action"
|
|
(click)="onClick()"
|
|
data-automation-id="content-node-selector-actions-choose">{{ buttonActionName | translate }}
|
|
</button>
|
|
</mat-dialog-actions>
|