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
51 lines (50 loc) • 2.24 kB
TypeScript
import type { NavbarContentClass } from './navbar-content.theme';
import { NavbarContentThemeService } from './navbar-content.theme.service';
import { NavbarComponent } from './navbar.component';
import type { NavbarColors } from './navbar.theme';
import { BaseComponent } from 'flowbite-angular';
import type { OnInit } from '@angular/core';
import { InjectionToken } from '@angular/core';
import * as i0 from "@angular/core";
export declare const FLOWBITE_NAVBAR_CONTENT_CUSTOM_STYLE_DEFAULT_VALUE: InjectionToken<{
root?: {
base?: string | undefined;
} | undefined;
list?: {
base?: string | undefined;
} | undefined;
}>;
export declare const navbarContentDefaultValueProvider: import("@angular/core").EnvironmentProviders;
/**
* @see https://flowbite.com/docs/components/navbar/
*/
export declare class NavbarContentComponent extends BaseComponent<NavbarContentClass> implements OnInit {
/**
* Service injected used to generate class
*/
readonly themeService: NavbarContentThemeService;
/**
* The parent `NavbarComponent`
*/
readonly navbarComponent: import("@angular/core").ModelSignal<NavbarComponent>;
/**
* Set the navbar content color
*
* @default `NavbarComponent`'s color
*/
color: import("@angular/core").ModelSignal<keyof NavbarColors>;
/**
* Set the custom style for this navbar content
*/
customStyle: import("@angular/core").ModelSignal<{
root?: {
base?: string | undefined;
} | undefined;
list?: {
base?: string | undefined;
} | undefined;
}>;
fetchClass(): NavbarContentClass;
static ɵfac: i0.ɵɵFactoryDeclaration<NavbarContentComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NavbarContentComponent, "flowbite-navbar-content", never, { "navbarComponent": { "alias": "navbarComponent"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "customStyle": { "alias": "customStyle"; "required": false; "isSignal": true; }; }, { "navbarComponent": "navbarComponentChange"; "color": "colorChange"; "customStyle": "customStyleChange"; }, never, ["*"], true, never>;
}