@carefirst/library 2.0.25 → 2.0.27
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/components/badge/badge.component.mjs +2 -2
- package/esm2022/lib/components/chat-bubble/chat-bubble.component.mjs +9 -4
- package/esm2022/lib/components/page/page.component.mjs +3 -8
- package/fesm2022/carefirst-library.mjs +11 -11
- package/fesm2022/carefirst-library.mjs.map +1 -1
- package/lib/components/chat-bubble/chat-bubble.component.d.ts +3 -1
- package/lib/components/page/page.component.d.ts +1 -3
- package/package.json +1 -1
@@ -4,10 +4,12 @@ export declare class ChatBubbleComponent implements OnChanges {
|
|
4
4
|
type: 'outgoing' | 'incoming';
|
5
5
|
date: string;
|
6
6
|
message: string;
|
7
|
+
darkMode?: string | boolean | undefined;
|
7
8
|
inputType: typeof this.type;
|
8
9
|
inputDate: typeof this.date;
|
9
10
|
inputMessage: typeof this.message;
|
11
|
+
inputDarkMode: boolean;
|
10
12
|
ngOnChanges(changes: SimpleChanges): void;
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChatBubbleComponent, never>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChatBubbleComponent, "cf-chat-bubble", never, { "type": { "alias": "type"; "required": false; }; "date": { "alias": "date"; "required": false; }; "message": { "alias": "message"; "required": false; }; }, {}, never, never, false, never>;
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatBubbleComponent, "cf-chat-bubble", never, { "type": { "alias": "type"; "required": false; }; "date": { "alias": "date"; "required": false; }; "message": { "alias": "message"; "required": false; }; "darkMode": { "alias": "darkMode"; "required": false; }; }, {}, never, never, false, never>;
|
13
15
|
}
|
@@ -7,7 +7,6 @@ export declare class PageComponent implements OnChanges {
|
|
7
7
|
noScroll?: boolean | string | undefined;
|
8
8
|
devMode?: boolean | string | undefined;
|
9
9
|
buttonsVertical?: boolean | string | undefined;
|
10
|
-
noPageButtons?: boolean | string | undefined;
|
11
10
|
stickyButtonOn?: boolean | string | undefined;
|
12
11
|
noStickyButtonFade?: boolean | string | undefined;
|
13
12
|
scrollEvent: EventEmitter<CustomEvent<any>>;
|
@@ -17,10 +16,9 @@ export declare class PageComponent implements OnChanges {
|
|
17
16
|
inputNoScroll: boolean;
|
18
17
|
inputDevMode: boolean;
|
19
18
|
inputButtonsVertical: boolean;
|
20
|
-
inputNoPageButtons: boolean;
|
21
19
|
inputStickyButtonOn: boolean;
|
22
20
|
inputNoStickyButtonFade: boolean;
|
23
21
|
ngOnChanges(changes: SimpleChanges): void;
|
24
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "cf-page", never, { "centerH": { "alias": "centerH"; "required": false; }; "centerV": { "alias": "centerV"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; "noScroll": { "alias": "noScroll"; "required": false; }; "devMode": { "alias": "devMode"; "required": false; }; "buttonsVertical": { "alias": "buttonsVertical"; "required": false; }; "
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "cf-page", never, { "centerH": { "alias": "centerH"; "required": false; }; "centerV": { "alias": "centerV"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; "noScroll": { "alias": "noScroll"; "required": false; }; "devMode": { "alias": "devMode"; "required": false; }; "buttonsVertical": { "alias": "buttonsVertical"; "required": false; }; "stickyButtonOn": { "alias": "stickyButtonOn"; "required": false; }; "noStickyButtonFade": { "alias": "noStickyButtonFade"; "required": false; }; }, { "scrollEvent": "scrollEvent"; }, never, ["[cf-page-header]", "*", "[cf-page-buttons]", "[cf-page-footer]", "[cf-page-sticky-buttons]"], false, never>;
|
26
24
|
}
|