@progress/kendo-angular-buttons
Version:
Buttons Package for Angular
14 lines (13 loc) • 832 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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](slug:positioning_floatingactionbutton#position-mode)).
*
* The possible values are:
* - `absolute`—Positions the FloatingActionButton absolutely to its first positioned parent element.
* - `fixed` (Default)—Positions the FloatingActionButton relative to the viewport. It remains in the same place even when the page scrolls.
*/
export type FabPositionMode = 'absolute' | 'fixed';