/**----------------------------------------------------------------------------------------- * 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';