UNPKG

@progress/kendo-angular-navigation

Version:

Kendo UI Navigation for Angular

34 lines (33 loc) 1.08 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { PreventableEvent } from '../../common/preventable-event'; /** * Provides the arguments for the `select` event of the BottomNavigation. */ export class BottomNavigationSelectEvent extends PreventableEvent { /** * Represents the index of the selected item in the `items` collection. */ index; /** * Represents the selected BottomNavigation item. */ item; /** * Provides the DOM event that triggered the selection. */ originalEvent; /** * Provides a reference to the BottomNavigation instance that triggered the event. */ sender; /** * @hidden */ constructor(args) { super(); Object.assign(this, args); } }