import { ChangeDetectorRef, OnInit } from '@angular/core'; import { BzLayoutService } from '../../layout/layout.service'; export declare class BzButtonsPanelComponent implements OnInit { private _layoutService; private _cd; menuStatus: string; animationStartWidth: string; animationEndWidth: string; fixedValue: boolean; animationDuration: string; private _isFirstRender; private disabled; set fixed(value: string | boolean); buttonCard: any; constructor(_layoutService: BzLayoutService, _cd: ChangeDetectorRef); ngOnInit(): void; /** * Set animation duration. * * @author Federico Gambardella * @returns {number} */ private _getAnimationDurationNumber; /** * Set animation duration. * * @author Federico Gambardella * @param {SidebarLeftObject} sidebarLeftObject */ private _setAnimationDuration; /** * Set panel button width. * * @author Federico Gambardella * @param {number} contentWidth * @param {number} sidebarLeft */ private _setButtonsWidth; /** * Set buttons panel width. * * @author Federico Gambardella * @param {number} contentWidth * @param {number} sidebarLeft * @param {string} data */ private _setButtonPanelWidth; /** * Set panel button width at start. * * @author Federico Gambardella * @param {number} contentWidth * @param {number} sidebarLeft */ private _setButtonPanelWidthAtStart; /** * Set button panel heigth. * * @author Federico Gambardella * @return {void} */ private _setButtonPanelHeight; }