UNPKG

flowbite-angular

Version:

<div align="center"> <h1>:construction: flowbite-angular (unreleased) :construction:</h1> <p> <a href="https://flowbite.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src="https://flowbite.s3.amazonaws.com/github/logo-github

70 lines (69 loc) 2.92 kB
import type { AccordionContentClass } from './accordion-content.theme'; import { AccordionContentThemeService } from './accordion-content.theme.service'; import { AccordionPanelComponent } from './accordion-panel.component'; import type { AccordionColors } from './accordion.theme'; import { BaseComponent } from 'flowbite-angular'; import { InjectionToken } from '@angular/core'; import * as i0 from "@angular/core"; export declare const FLOWBITE_ACCORDION_CONTENT_CUSTOM_STYLE_DEFAULT_VALUE: InjectionToken<{ root?: { base?: string | undefined; color?: { [x: string]: string | undefined; primary?: string | undefined; light?: string | undefined; blue?: string | undefined; red?: string | undefined; green?: string | undefined; yellow?: string | undefined; } | undefined; isFlush?: { enabled?: string | undefined; disabled?: string | undefined; } | undefined; } | undefined; }>; export declare const accordionContentDefaultValueProvider: import("@angular/core").EnvironmentProviders; /** * @see https://flowbite.com/docs/components/accordion/ */ export declare class AccordionContentComponent extends BaseComponent<AccordionContentClass> { /** * Service injected used to generate class */ readonly themeService: AccordionContentThemeService; /** * The parent `AccordionPanelComponent` */ readonly accordionPanelComponent: AccordionPanelComponent; /** * Set the accordion content color * @default `AccordionPanelComponent`'s color */ color: import("@angular/core").ModelSignal<keyof AccordionColors>; /** * Set the custom style for this accordion content */ customStyle: import("@angular/core").ModelSignal<{ root?: { base?: string | undefined; color?: { [x: string]: string | undefined; primary?: string | undefined; light?: string | undefined; blue?: string | undefined; red?: string | undefined; green?: string | undefined; yellow?: string | undefined; } | undefined; isFlush?: { enabled?: string | undefined; disabled?: string | undefined; } | undefined; } | undefined; }>; fetchClass(): AccordionContentClass; static ɵfac: i0.ɵɵFactoryDeclaration<AccordionContentComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<AccordionContentComponent, "flowbite-accordion-content", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "color": "colorChange"; "customStyle": "customStyleChange"; }, never, ["*"], true, never>; }