mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
* [ADF-4755] [CardViewDateItemComponent] Provide a way to reset date. * Added clear icon to reset date to empty. * Added Translation key to the new icon. * * Added displayClearAction flag to toggle clear action.* Added None as default for the selectItem components.* Added displayNoneOption flag to toggle the default none option. * * Fixed comments. * * Added translation key for 'none' option. * * Updated dateItem css to the match recent changes. * * Fixed failing unit tests* Updated TaskHeader components with the displayClearAction. * * Updated demo shell card-view component to test the latest changes
14 lines
522 B
HTML
14 lines
522 B
HTML
<div class="adf-property-list">
|
|
<div *ngFor="let property of properties">
|
|
<div [attr.data-automation-id]="'header-'+property.key" class="adf-property">
|
|
<adf-card-view-item-dispatcher
|
|
[property]="property"
|
|
[editable]="editable"
|
|
[displayEmpty]="displayEmpty"
|
|
[displayNoneOption]="displayNoneOption"
|
|
[displayClearAction]="displayClearAction">
|
|
</adf-card-view-item-dispatcher>
|
|
</div>
|
|
</div>
|
|
</div>
|