systelab-components
Version:
systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.
19 lines (18 loc) • 1.1 kB
TypeScript
import { OnInit } from '@angular/core';
import { PreferencesService } from 'systelab-preferences';
import * as i0 from "@angular/core";
export declare class Accordion implements OnInit {
private readonly preferenceService;
headerTitle: string;
preferenceName: string;
contentMaxHeight: number;
withOverflow: boolean;
headerColor: string;
iconColor: string;
isCollapsed: boolean;
private preferenceSuffix;
constructor(preferenceService: PreferencesService);
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<Accordion, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<Accordion, "systelab-accordion", never, { "headerTitle": { "alias": "headerTitle"; "required": false; }; "preferenceName": { "alias": "preferenceName"; "required": false; }; "contentMaxHeight": { "alias": "contentMaxHeight"; "required": false; }; "withOverflow": { "alias": "withOverflow"; "required": false; }; "headerColor": { "alias": "headerColor"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; }, {}, never, ["*"], false, never>;
}