@progress/kendo-angular-navigation
Version:
Kendo UI Navigation for Angular
13 lines (12 loc) • 821 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 position and behavior of the BottomNavigation when the page is scrollable ([see example]({% slug positioning_bottomnavigation %})).
*
* The possible values are:
* * (Default) `fixed` - The BottomNavigation always stays at the bottom of the viewport, regardless of the page scroll position.
* * `sticky` - Positions the BottomNavigation at the end of the scrollable container.
*/
export type BottomNavigationPositionMode = 'fixed' | 'sticky';