UNPKG

angular-bootstrap-md

Version:

Bootstrap 4 & Angular 15 UI KIT - 700+ components, MIT license, simple installation.

20 lines (19 loc) 827 B
import { EventEmitter } from '@angular/core'; import { BsDropdownMenuDirective } from './dropdown-menu.directive'; import { BsComponentRef } from '../utils/component-loader/bs-component-ref.class'; import * as i0 from "@angular/core"; export declare class BsDropdownState { direction: 'down' | 'up'; autoClose: boolean; isOpenChange: EventEmitter<boolean>; isDisabledChange: EventEmitter<boolean>; toggleClick: EventEmitter<boolean>; /** * Content to be displayed as popover. */ dropdownMenu: Promise<BsComponentRef<BsDropdownMenuDirective>>; resolveDropdownMenu: (componentRef: BsComponentRef<BsDropdownMenuDirective>) => void; constructor(); static ɵfac: i0.ɵɵFactoryDeclaration<BsDropdownState, never>; static ɵprov: i0.ɵɵInjectableDeclaration<BsDropdownState>; }