@progress/kendo-angular-navigation
Version:
Kendo UI Navigation for Angular
27 lines (26 loc) • 883 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { BreadcrumbSize } from "./breadcrumb-size";
/**
* @hidden
*/
export declare const BREADCRUMB_ITEM_INDEX = "data-kendo-breadcrumb-index";
/**
* @hidden
*/
export declare const DEFAULT_SIZE: BreadcrumbSize;
/**
* @hidden
*/
export interface BreadcrumbStylingClasses {
toRemove?: string;
toAdd?: string;
}
/**
* @hidden
*
* Returns the styling classes to be added and removed
*/
export declare const getStylingClasses: (stylingOption: string, previousValue: any, newValue: any) => BreadcrumbStylingClasses;