icon-selector/icon-selector-modal/icon-selector-modal.component.ts
| changeDetection | ChangeDetectionStrategy.OnPush |
| selector | c8y-icon-selector-modal |
| imports |
C8yTranslatePipe
|
| templateUrl | ./icon-selector-modal.component.html |
IconSelectorComponent
C8yTranslatePipe
ModalComponent
<c8y-modal
[title]="title | translate"
(onDismiss)="close()"
(onClose)="saveChanges()"
headerClasses="text-center"
[disabled]="!selectionExplicitlySet"
[labels]="{ cancel: 'Cancel', ok: saveButtonLabel | translate }"
>
<c8y-icon-selector
[selectedIcon]="currentSelection"
[iconCategoriesToExclude]="iconCategoriesToExclude"
[showIconClass]="showIconClass"
(onSelect)="selectionChange($event)"
></c8y-icon-selector>
</c8y-modal>