@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) • 870 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Sets the visibility for the ToolBar tool text or icon.
*
* The possible values are:
* - `always`—Always shows the text or icon regardless of the overflow mode.
* - `toolbar`—Shows in the main ToolBar and in the overflow element when using `section` overflow mode.
* - `menu`—Shows only in the overflow popup when using `menu` overflow mode.
* - `never`—Never renders the text or icon.
*
* @default 'always'
*/
export type DisplayMode = 'always' | 'toolbar' | 'menu' | 'never';