alert.component.d.ts 1.1 KB

12345678910111213141516171819
  1. import { EventEmitter } from '@angular/core';
  2. import { TypeEnum } from '../../../model/components/type.enum';
  3. import { VariantEnum } from '../../../model/components/variant.enum';
  4. import * as i0 from "@angular/core";
  5. /**
  6. * The alert component is responsible to show alerts for diverse elements. Including `FormErrorComponent` among others.
  7. */
  8. export declare class AlertComponent {
  9. dismissable: boolean;
  10. fullSize: boolean;
  11. text: string;
  12. type: TypeEnum | string;
  13. variant: VariantEnum | string;
  14. withIcon: boolean;
  15. dismiss: EventEmitter<void>;
  16. get icon(): string;
  17. static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
  18. static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "ct-alert", never, { "dismissable": { "alias": "dismissable"; "required": false; }; "fullSize": { "alias": "fullSize"; "required": false; }; "text": { "alias": "text"; "required": true; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "withIcon": { "alias": "withIcon"; "required": false; }; }, { "dismiss": "dismiss"; }, never, never, true, never>;
  19. }