/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the `positionMode` of the FloatingActionButton
 * ([see example](https://www.telerik.com/kendo-angular-ui/components/buttons/floatingactionbutton/positioning#position-mode)).
 *
 * The possible values are:
 * - `absolute`&mdash;Positions the FloatingActionButton absolutely to its first positioned parent element.
 * - `fixed` (Default)&mdash;Positions the FloatingActionButton relative to the viewport. It remains in the same place even when the page scrolls.
 */
export type FabPositionMode = 'absolute' | 'fixed';
