UNPKG

@progress/kendo-angular-toolbar

Version:

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

17 lines (16 loc) 944 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Specifies the visibility of the toolbar tool text or icon. * * The possible values are: * - `always`—The text or icon is always visible, regardless of the current overflow mode. * - `toolbar`—The text or icon is displayed in the main ToolBar and in the overflow element when `section` overflow mode is used. * - `menu`—The text or icon is displayed only in the overflow popup when `menu` overflow mode is used. * - `never`—The text or icon is never rendered. * * @default 'always' */ export type DisplayMode = 'always' | 'toolbar' | 'menu' | 'never';