UNPKG

fundamental-ngx

Version:

SAP Fiori Fundamentals, implemented in Angular

17 lines (16 loc) 691 B
import { ElementRef } from '@angular/core'; import { AbstractFdNgxClass } from '../utils/abstract-fd-ngx-class'; /** * Badge component, used to indicate status. * Colors, generally in combination with text, are used to easily highlight the state of an object. */ export declare class BadgeComponent extends AbstractFdNgxClass { /** Color coded status for the badge. Options are 'success', 'warning', and 'error'. Leave empty for default badge. */ status: any; /** Modifier for the badge. Options are 'pill' and 'filled'. Leave empty for normal. */ modifier: any; /** @hidden */ _setProperties(): void; /** @hidden */ constructor(elementRef: ElementRef); }