UNPKG

@progress/kendo-angular-buttons

Version:
14 lines (13 loc) 843 B
/**----------------------------------------------------------------------------------------- * 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';