mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-24 19:21:32 +00:00

* fix: is default * fix: feature tile in org, iam, neutral color for info boxes * lint * consolidation, ui elements * feat(console): angular 12, migrate deprecated grpc to @grpc/grpc-js (#1741) * update cli core * update material * mig * migrate grpc to grpc-js * audit * lint * node lts version, ng12 deprecation * rem comment * disable inlinestyles * fix iam feature link, binding
18 lines
375 B
TypeScript
18 lines
375 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
|
|
enum InfoSectionType {
|
|
INFO = 'INFO',
|
|
SUCCESS = 'SUCCESS',
|
|
WARN = 'WARN',
|
|
}
|
|
|
|
@Component({
|
|
selector: 'cnsl-info-section',
|
|
templateUrl: './info-section.component.html',
|
|
styleUrls: ['./info-section.component.scss'],
|
|
})
|
|
export class InfoSectionComponent {
|
|
|
|
@Input() type: InfoSectionType = InfoSectionType.INFO;
|
|
}
|