@carefirst/library 4.6.6 → 4.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/icon/icon.component.mjs +3 -3
- package/esm2022/lib/components/notification/notification.component.mjs +23 -2
- package/esm2022/lib/interfaces/icon.interface.mjs +2 -1
- package/esm2022/lib/interfaces/notification.interface.mjs +1 -1
- package/fesm2022/carefirst-library.mjs +25 -3
- package/fesm2022/carefirst-library.mjs.map +1 -1
- package/lib/components/notification/notification.component.d.ts +7 -2
- package/lib/interfaces/icon.interface.d.ts +1 -1
- package/lib/interfaces/notification.interface.d.ts +1 -0
- package/package.json +1 -1
@@ -1,11 +1,16 @@
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
2
|
+
import type { OnChanges, SimpleChanges } from '@angular/core';
|
2
3
|
import type { NotificationPayloadI } from '../../interfaces/notification.interface';
|
3
4
|
import * as i0 from "@angular/core";
|
4
|
-
export declare class NotificationComponent {
|
5
|
+
export declare class NotificationComponent implements OnChanges {
|
5
6
|
data: NotificationPayloadI | undefined;
|
6
7
|
dataChange: EventEmitter<NotificationPayloadI | undefined>;
|
7
8
|
buttonClick: EventEmitter<string | number>;
|
8
9
|
closeClick: EventEmitter<string | number>;
|
10
|
+
autoClose: EventEmitter<void>;
|
11
|
+
private autoCloseTimeOut?;
|
12
|
+
ngOnChanges(changes: SimpleChanges): void;
|
13
|
+
private startAutoCloseTimer;
|
9
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "cf-notification", never, { "data": { "alias": "data"; "required": false; }; }, { "dataChange": "dataChange"; "buttonClick": "buttonClick"; "closeClick": "closeClick"; }, never, ["*"], false, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "cf-notification", never, { "data": { "alias": "data"; "required": false; }; }, { "dataChange": "dataChange"; "buttonClick": "buttonClick"; "closeClick": "closeClick"; "autoClose": "autoClose"; }, never, ["*"], false, never>;
|
11
16
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
export declare const iconsC: readonly ["home", "cog", "profile", "scan", "person", "appointment", "clock", "calendar", "email", "phone", "sign-out", "sign-in", "close", "check-mark", "rating-star-blank", "rating-star-filled", "back-arrow", "bell", "lock", "show-password", "hide-password", "circle-check", "circle-alert", "circle-close", "direction-switch", "direction-switch-flat", "direction-switch-block", "chat-bubbles", "phone-down", "mic", "no-mic", "button-forward-arrow", "button-check-box", "social-media-whatsapp", "social-media-facebook", "social-media-linkedin", "social-media-instagram", "social-media-google-mail", "instant-video-service", "instant-telephonic-service", "scheduled-video-service", "scheduled-telephonic-service", "vital-scan-service", "open-back-arrow", "open-forward-arrow", "open-up-arrow", "open-down-arrow", "single-document", "lightning", "microsoft-365", "user-dependent", "plus", "minus", "close-box", "speech-bubble", "camera-switch", "retry", "download", "upload", "upload-document", "print", "search", "flame", "bank-cards", "bank-card", "swipe-bank-card", "coin", "sign-out-curved", "sign-in-curved", "calendar-blank", "wallet", "info", "three-dot-colon", "adjustment"];
|
1
|
+
export declare const iconsC: readonly ["home", "cog", "profile", "scan", "person", "appointment", "clock", "calendar", "email", "phone", "sign-out", "sign-in", "close", "check-mark", "rating-star-blank", "rating-star-filled", "back-arrow", "bell", "lock", "show-password", "hide-password", "circle-check", "circle-alert", "circle-close", "direction-switch", "direction-switch-flat", "direction-switch-block", "chat-bubbles", "phone-down", "mic", "no-mic", "button-forward-arrow", "button-check-box", "social-media-whatsapp", "social-media-facebook", "social-media-linkedin", "social-media-instagram", "social-media-google-mail", "instant-video-service", "instant-telephonic-service", "scheduled-video-service", "scheduled-telephonic-service", "vital-scan-service", "open-back-arrow", "open-forward-arrow", "open-up-arrow", "open-down-arrow", "single-document", "lightning", "microsoft-365", "user-dependent", "plus", "minus", "close-box", "speech-bubble", "camera-switch", "retry", "download", "upload", "upload-document", "print", "search", "flame", "bank-cards", "bank-card", "swipe-bank-card", "coin", "sign-out-curved", "sign-in-curved", "calendar-blank", "wallet", "info", "three-dot-colon", "adjustment", "triangle-alert"];
|
2
2
|
export type IconsT = (typeof iconsC)[number];
|
3
3
|
export declare const iconColorC: readonly ["primary", "secondary", "success", "warning", "error", "white", "accent"];
|
4
4
|
export type IconColorT = (typeof iconColorC)[number];
|