@abgov/angular-components 4.10.0-dev.5 → 4.10.0-dev.6
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/index.d.ts
CHANGED
|
@@ -382,13 +382,15 @@ declare class GoabContainer extends GoabBaseComponent implements OnInit {
|
|
|
382
382
|
padding?: GoabContainerPadding;
|
|
383
383
|
width?: GoabContainerWidth;
|
|
384
384
|
maxWidth?: string;
|
|
385
|
+
minHeight?: string;
|
|
386
|
+
maxHeight?: string;
|
|
385
387
|
title: TemplateRef<any>;
|
|
386
388
|
actions: TemplateRef<any>;
|
|
387
389
|
isReady: boolean;
|
|
388
390
|
constructor(cdr: ChangeDetectorRef);
|
|
389
391
|
ngOnInit(): void;
|
|
390
392
|
static ɵfac: i0.ɵɵFactoryDeclaration<GoabContainer, never>;
|
|
391
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GoabContainer, "goab-container", never, { "type": { "alias": "type"; "required": false; }; "accent": { "alias": "accent"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "title": { "alias": "title"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
393
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoabContainer, "goab-container", never, { "type": { "alias": "type"; "required": false; }; "accent": { "alias": "accent"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "width": { "alias": "width"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "title": { "alias": "title"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
392
394
|
}
|
|
393
395
|
|
|
394
396
|
declare class GoabDatePicker extends GoabControlValueAccessor implements OnInit {
|