feat(badge): add soft to the ionic theme (#29573)

Co-authored-by: Brandy Carney <brandyscarney@users.noreply.github.com>
This commit is contained in:
Maria Hutt
2024-05-31 11:47:13 -07:00
committed by GitHub
parent e9fd407e90
commit 777521f218
21 changed files with 171 additions and 4 deletions

View File

@ -344,14 +344,14 @@ export declare interface IonBackdrop extends Components.IonBackdrop {
@ProxyCmp({
defineCustomElementFn: defineIonBadge,
inputs: ['color', 'mode', 'size', 'theme']
inputs: ['color', 'mode', 'shape', 'size', 'theme']
})
@Component({
selector: 'ion-badge',
changeDetection: ChangeDetectionStrategy.OnPush,
template: '<ng-content></ng-content>',
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
inputs: ['color', 'mode', 'size', 'theme'],
inputs: ['color', 'mode', 'shape', 'size', 'theme'],
standalone: true
})
export class IonBadge {