/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Controls when the ToolBar renders scroll buttons. * * The possible options are: * - `auto`(default)—Renders the scroll buttons only when the tools overflow the ToolBar container. * - `visible`—Always renders the scroll buttons. * - `hidden`—Never renders the scroll buttons. */ export type ToolbarScrollButtonsVisibility = 'hidden' | 'visible' | 'auto'; /** * Controls where the ToolBar renders scroll buttons. * * The possible options are: * - `start`—Renders the scroll buttons at the start before all tools. * - `end`—Renders the scroll buttons at the end after all tools. * - `split`(default)—Renders the scroll buttons on both sides of the tools list. */ export type ToolbarScrollButtonsPosition = 'start' | 'end' | 'split';