mirror of
https://github.com/zitadel/zitadel.git
synced 2025-02-25 18:55:27 -06:00
* show warn for missing smtp * org table, failed events, views table fallback, org table filters * log notification providers, user filter, copy to clip fix * lint Co-authored-by: Livio Amstutz <livio.a@gmail.com>
19 lines
438 B
TypeScript
19 lines
438 B
TypeScript
import { Component, Input } from '@angular/core';
|
|
|
|
export enum InfoSectionType {
|
|
INFO = 'INFO',
|
|
SUCCESS = 'SUCCESS',
|
|
WARN = 'WARN',
|
|
ALERT = 'ALERT',
|
|
}
|
|
|
|
@Component({
|
|
selector: 'cnsl-info-section',
|
|
templateUrl: './info-section.component.html',
|
|
styleUrls: ['./info-section.component.scss'],
|
|
})
|
|
export class InfoSectionComponent {
|
|
@Input() type: InfoSectionType = InfoSectionType.INFO;
|
|
@Input() fitWidth: boolean = false;
|
|
}
|