mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-2304] Add option to Content Node Selector to transform the breadcrumb folder node * [ADF-2304] update documentation with recent changes * [ADF-2304] added example of using the breadcrumbTransform
37 lines
1.4 KiB
HTML
37 lines
1.4 KiB
HTML
<header matDialogTitle
|
|
class="adf-content-node-selector-dialog-title"
|
|
data-automation-id="content-node-selector-title">{{title || data?.title}}
|
|
</header>
|
|
|
|
<section matDialogContent
|
|
class="adf-content-node-selector-dialog-content">
|
|
<adf-content-node-selector-panel
|
|
[currentFolderId]="currentFolderId || data?.currentFolderId"
|
|
[dropdownHideMyFiles]="dropdownHideMyFiles || data?.dropdownHideMyFiles"
|
|
[dropdownSiteList]="dropdownSiteList || data?.dropdownSiteList"
|
|
[rowFilter]="rowFilter || data?.rowFilter"
|
|
[imageResolver]="imageResolver || data?.imageResolver"
|
|
[isSelectionValid]="data?.isSelectionValid"
|
|
[breadcrumbTransform]="data?.breadcrumbTransform"
|
|
(select)="onSelect($event)">
|
|
</adf-content-node-selector-panel>
|
|
</section>
|
|
|
|
<footer matDialogActions class="adf-content-node-selector-actions">
|
|
<button
|
|
mat-button
|
|
class="adf-content-node-selector-actions-cancel"
|
|
(click)="close()"
|
|
data-automation-id="content-node-selector-actions-cancel">{{ 'NODE_SELECTOR.CANCEL' | translate }}
|
|
</button>
|
|
|
|
<button mat-button
|
|
[disabled]="!chosenNode"
|
|
class="adf-content-node-selector-actions-choose"
|
|
(click)="onClick()"
|
|
data-automation-id="content-node-selector-actions-choose">{{ buttonActionName | translate }}
|
|
</button>
|
|
|
|
</footer>
|
|
|