/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { AfterViewInit, OnInit } from '@angular/core'; import { MagInitConfig } from 'ng-stalk/core/model'; import { MagCodeCacheService, MagConfigService } from 'ng-stalk/core/service'; import * as i0 from "@angular/core"; export declare class MagBadgeStatusComponent implements OnInit, AfterViewInit { private magConfigService; private magCodeCacheService; status?: 'success' | 'error' | 'default' | 'processing' | 'warning'; color?: string; magColorName?: 'green' | 'red' | 'darkblue' | 'blue' | 'yellow' | 'orange' | 'pink' | 'purple'; title?: string; value?: string; group?: string; defaultColor?: string; defaultMagColorName?: string; random: boolean; display: boolean; constructor(magConfigService: MagConfigService, magCodeCacheService: MagCodeCacheService); ngOnInit(): void; ngAfterViewInit(): void; /** * 컴포넌트에 입력된 값을 기준으로 화면에 적용할 컬러를 선정한다. * 컬러 설정 우선 순위 : color > magColorName > group & value > defaultColor > defaultMagColor > random */ adjustColor(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }