@carefirst/library 2.0.6 → 2.0.7
Sign up to get free protection for your applications and to get access to all the features.
@@ -4,10 +4,14 @@ export declare class PageComponent implements OnChanges {
|
|
4
4
|
centerH?: boolean | string | undefined;
|
5
5
|
centerV?: boolean | string | undefined;
|
6
6
|
dark?: boolean | string | undefined;
|
7
|
+
noScroll?: boolean | string | undefined;
|
8
|
+
devMode?: boolean | string | undefined;
|
7
9
|
inputCenterH: boolean;
|
8
10
|
inputCenterV: boolean;
|
9
11
|
inputDark: boolean;
|
12
|
+
inputNoScroll: boolean;
|
13
|
+
inputDevMode: boolean;
|
10
14
|
ngOnChanges(changes: SimpleChanges): void;
|
11
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "cf-page", never, { "centerH": { "alias": "centerH"; "required": false; }; "centerV": { "alias": "centerV"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; }, {}, never, ["*", "[cf-page-buttons]", "[cf-page-footer]"], false, 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>;
|
13
17
|
}
|