UNPKG

@progress/kendo-angular-toolbar

Version:

Kendo UI Angular Toolbar component - a single UI element that organizes buttons and other navigation elements

44 lines (43 loc) 1.56 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { AfterViewInit } from '@angular/core'; import { ToolBarToolComponent } from './toolbar-tool.component'; import * as i0 from "@angular/core"; /** * Represents the [Kendo UI ToolBar Spacer for Angular]({% slug controltypes_toolbar %}#toc-separators). * * Use the ToolBar Spacer to add flexible space between ToolBar tools. * * @example * ```html * <kendo-toolbar> * <kendo-toolbar-button text="Button 1"></kendo-toolbar-button> * <kendo-toolbar-spacer></kendo-toolbar-spacer> * <kendo-toolbar-button text="Button 2"></kendo-toolbar-button> * </kendo-toolbar> * ``` */ export declare class ToolBarSpacerComponent extends ToolBarToolComponent implements AfterViewInit { /** * @hidden */ readonly __isSpacer = true; constructor(); /** * @hidden */ canFocus(): boolean; /** * @hidden */ focus(): void; /** * @hidden */ handleKey(): boolean; ngAfterViewInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration<ToolBarSpacerComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<ToolBarSpacerComponent, "kendo-toolbar-spacer", ["kendoToolBarSpacer"], {}, {}, never, never, true, never>; }