@progress/kendo-angular-buttons
Version:
Buttons Package for Angular
14 lines (13 loc) • 843 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#toc-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 always stays in the same place even if the page is scrolled.
*/
export type FabPositionMode = 'absolute' | 'fixed';