@koalarx/ui
Version:
Koala UI is a Design System developed in Angular whose objective is to facilitate and make your development faster and simpler, making this framework your greatest ally.
22 lines (21 loc) • 1.21 kB
TypeScript
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
import { KoalaIconType } from '@koalarx/ui/icon';
import { KoalaNavigateHistoryInterface } from "./koala-navigate-history.interface";
import * as i0 from "@angular/core";
export declare class FolderComponent implements OnInit, OnChanges {
titlePage: string;
titleIcon?: string | KoalaIconType;
koalaIcon?: boolean;
customFolderFontColor: string;
customFolderBackgroudColor: string;
navigateHistory?: KoalaNavigateHistoryInterface[];
private folder?;
private folderTitle?;
private folderNavigateHistory?;
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
getKoalaIcon(): KoalaIconType;
private setCustomBackgroundColor;
static ɵfac: i0.ɵɵFactoryDeclaration<FolderComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<FolderComponent, "koala-folder-page", never, { "titlePage": "titlePage"; "titleIcon": "titleIcon"; "koalaIcon": "koalaIcon"; "customFolderFontColor": "customFolderFontColor"; "customFolderBackgroudColor": "customFolderBackgroudColor"; "navigateHistory": "navigateHistory"; }, {}, never, ["[menu-page]", "[content]"], false>;
}