@carefirst/library 2.0.8 → 2.0.11
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,4 @@
|
|
1
|
-
import { type OnChanges, type SimpleChanges } from '@angular/core';
|
1
|
+
import { type OnChanges, type SimpleChanges, EventEmitter } from '@angular/core';
|
2
2
|
import * as i0 from "@angular/core";
|
3
3
|
export declare class PageComponent implements OnChanges {
|
4
4
|
centerH?: boolean | string | undefined;
|
@@ -6,6 +6,7 @@ export declare class PageComponent implements OnChanges {
|
|
6
6
|
dark?: boolean | string | undefined;
|
7
7
|
noScroll?: boolean | string | undefined;
|
8
8
|
devMode?: boolean | string | undefined;
|
9
|
+
scrollEvent: EventEmitter<CustomEvent<any>>;
|
9
10
|
inputCenterH: boolean;
|
10
11
|
inputCenterV: boolean;
|
11
12
|
inputDark: boolean;
|
@@ -13,5 +14,5 @@ export declare class PageComponent implements OnChanges {
|
|
13
14
|
inputDevMode: boolean;
|
14
15
|
ngOnChanges(changes: SimpleChanges): void;
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
|
16
|
-
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; }; }, {}, never, ["[cf-page-header]", "*", "[cf-page-buttons]", "[cf-page-footer]"], false, never>;
|
17
|
+
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; }; }, { "scrollEvent": "scrollEvent"; }, never, ["[cf-page-header]", "*", "[cf-page-buttons]", "[cf-page-footer]"], false, never>;
|
17
18
|
}
|