Skip to content

Commit 3353de2

Browse files
committed
refactor(avatar): remove NgOptimizedImage directive, add object-fit: cover
1 parent 3e0c104 commit 3353de2

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

projects/coreui-angular/src/lib/avatar/avatar.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<ng-content>
22
@if (src()) {
33
@defer (prefetch on idle) {
4-
<img [ngSrc]="src() ?? ''" fill="" class="avatar-img" alt="{{alt()}}" />
4+
<img src="{{src() ?? ''}}" class="avatar-img" alt="{{alt()}}" />
55
} @placeholder () {
66
<svg aria-label="Avatar placeholder"
77
focusable="false"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
:host {
2+
.avatar-img {
3+
object-fit: cover;
4+
}
5+
}

projects/coreui-angular/src/lib/avatar/avatar.component.ts

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1-
import { NgClass, NgOptimizedImage } from '@angular/common';
1+
import { NgClass } from '@angular/common';
22
import { Component, computed, input, InputSignal } from '@angular/core';
33

44
import { Colors, Shapes, Sizes, TextColors } from '../coreui.types';
55
import { TextColorDirective } from '../utilities';
66

77
@Component({
8-
selector: 'c-avatar',
9-
templateUrl: './avatar.component.html',
10-
imports: [NgClass, NgOptimizedImage],
11-
hostDirectives: [
12-
{
13-
directive: TextColorDirective,
14-
inputs: ['cTextColor: textColor']
15-
}
16-
],
17-
host: { class: 'avatar', '[class]': 'hostClasses()' }
8+
selector: 'c-avatar',
9+
templateUrl: './avatar.component.html',
10+
styleUrls: ['./avatar.component.scss'],
11+
imports: [NgClass],
12+
hostDirectives: [
13+
{
14+
directive: TextColorDirective,
15+
inputs: ['cTextColor: textColor']
16+
}
17+
],
18+
host: { class: 'avatar', '[class]': 'hostClasses()' }
1819
})
1920
export class AvatarComponent {
2021
/**

0 commit comments

Comments
 (0)