/** * 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 { ElementRef, 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 MagStatusComponent implements OnInit { private magConfigService; private magCodeCacheService; status: 'success' | 'error' | 'default' | 'processing' | 'warning'; type: 'status' | 'color' | 'code'; color?: string; magColorName?: 'pink' | 'red' | 'yellow' | 'orange' | 'cyan' | 'green' | 'blue' | 'purple' | 'geekblue' | 'magenta' | 'volcano' | 'gold' | 'lime'; title?: string; /** * deprecated */ value?: string; magValue?: string; group?: string; defaultStatus: 'success' | 'error' | 'default' | 'processing' | 'warning'; defaultColor?: string; defaultMagColorName?: string; random: boolean; contentWrapper?: ElementRef; display: boolean; constructor(magConfigService: MagConfigService, magCodeCacheService: MagCodeCacheService); ngOnInit(): void; /** * 컴포넌트에 입력된 값을 기준으로 화면에 적용할 컬러를 선정한다. * 컬러 설정 우선 순위 : color > magColorName > group & value > defaultColor > defaultMagColor > random */ adjustColor(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }