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

52 lines (51 loc) 2.1 kB
import type { NavbarToggleClass } from './navbar-toggle.theme'; import { NavbarToggleThemeService } from './navbar-toggle.theme.service'; import { NavbarComponent } from './navbar.component'; import { BaseComponent } from 'flowbite-angular'; import { IconRegistry } from 'flowbite-angular/icon'; import { InjectionToken } from '@angular/core'; import { DomSanitizer } from '@angular/platform-browser'; import * as i0 from "@angular/core"; export declare const FLOWBITE_NAVBAR_TOGGLE_CUSTOM_STYLE_DEFAULT_VALUE: InjectionToken<{ root?: { base?: string | undefined; } | undefined; }>; export declare const navbarToggleDefaultValueProvider: import("@angular/core").EnvironmentProviders; /** * @see https://flowbite.com/docs/components/navbar/ */ export declare class NavbarToggleComponent extends BaseComponent<NavbarToggleClass> { /** * Service injected used to generate class */ readonly themeService: NavbarToggleThemeService; /** * The parent `NavbarComponent` */ readonly navbarComponent: import("@angular/core").ModelSignal<NavbarComponent>; /** * `IconRegistry` service */ readonly iconRegistry: IconRegistry; /** * `DomSanitizer` service */ readonly domSanitizer: DomSanitizer; /** * Set the custom style for this navbar toggle */ customStyle: import("@angular/core").ModelSignal<{ root?: { base?: string | undefined; } | undefined; }>; fetchClass(): NavbarToggleClass; init(): void; /** * Toggle navbar visibility (open close on mobile device) */ onClick(): void; static ɵfac: i0.ɵɵFactoryDeclaration<NavbarToggleComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<NavbarToggleComponent, "flowbite-navbar-toggle", never, { "navbarComponent": { "alias": "navbarComponent"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "navbarComponent": "navbarComponentChange"; "customStyle": "customStyleChange"; }, never, never, true, never>; }