UNPKG

@kushki/ng-suka

Version:

<p align="center"> <h1 align="center">Suka Components Angular</h1> <p align="center"> An Angular implementation of the Suka Design System </p> </p>

21 lines (20 loc) 634 B
import { AfterContentInit, QueryList, ElementRef } from '@angular/core'; import { NavigationItem } from './navigation-item.component'; /** * `SideNavMenu` provides a method to group `SideNavItem`s under a common heading. */ export declare class NavigationMenu implements AfterContentInit { /** * Heading for the gorup */ title: string; /** * Controls the visibility of the child `SideNavItem`s */ expanded: boolean; navigationItems: QueryList<NavigationItem>; navigationNativeItems: QueryList<ElementRef>; childrenHeight: number; ngAfterContentInit(): void; toggle(): void; }