| 123456789101112131415161718192021222324252627282930313233 |
- import { OnDestroy, OnInit, EventEmitter } from '@angular/core';
- import { AccordionComponent } from './accordion.component';
- /**
- * ### Accordion heading
- * Instead of using `heading` attribute on the `accordion-group`, you can use
- * an `accordion-heading` attribute on `any` element inside of a group that
- * will be used as group's header template.
- */
- export declare class AccordionPanelComponent implements OnInit, OnDestroy {
- /** turn on/off animation */
- isAnimated: boolean;
- /** Clickable text in accordion's group header, check `accordion heading` below for using html in header */
- heading: string;
- /** Provides an ability to use Bootstrap's contextual panel classes
- * (`panel-primary`, `panel-success`, `panel-info`, etc...).
- * List of all available classes [available here]
- * (https://getbootstrap.com/docs/3.3/components/#panels-alternatives)
- */
- panelClass: string;
- /** if <code>true</code> — disables accordion group */
- isDisabled: boolean;
- /** Emits when the opened state changes */
- isOpenChange: EventEmitter<boolean>;
- /** Is accordion group open or closed. This property supports two-way binding */
- isOpen: boolean;
- readonly isBs3: boolean;
- protected _isOpen: boolean;
- protected accordion: AccordionComponent;
- constructor(accordion: AccordionComponent);
- ngOnInit(): void;
- ngOnDestroy(): void;
- toggleOpen(): void;
- }
|