ngx-contextual-action-bar
Version:
ngx-contextual-action-bar is an Angular2+ implementation of the [Material Design Contextual Action Bar](https://material.io/components/app-bars-top#contextual-action-bar). The implementation makes it possible to change the action bar properties (i.e. titl
21 lines (20 loc) • 776 B
TypeScript
import { OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { ActionBarLayerAction } from '../model/action-bar-layer.model';
import { ContextualActionBarService } from '../ngx-contextual-action-bar.service';
export declare class DmlActionsOverflowMenuComponent implements OnInit {
private service;
group: string;
private c;
layer$: Observable<{
id: string;
actions: ActionBarLayerAction[];
} | undefined>;
private _resizeEvent$;
private width;
visible$: Observable<ActionBarLayerAction[]>;
menu$: Observable<ActionBarLayerAction[]>;
constructor(service: ContextualActionBarService);
handleActionClick(id: string, action: ActionBarLayerAction): void;
ngOnInit(): void;
}