@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
63 lines (62 loc) • 2.01 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import * as React from 'react';
/**
* Represents the properties of [BreadcrumbOrderedList](https://www.telerik.com/kendo-react-ui/components/layout/api/breadcrumborderedlist) component.
*/
export interface BreadcrumbOrderedListProps {
/**
* Sets the `id` property of the top `div` element of the BreadcrumbOrderedList.
*/
id?: string;
/**
* Sets additional CSS styles to the BreadcrumbOrderedList.
*/
style?: React.CSSProperties;
/**
* Sets additional classes to the BreadcrumbOrderedList.
*/
className?: string;
/**
* Determines the children nodes.
*/
children?: React.ReactNode;
/**
* Sets the `tabIndex` attribute to the BreadcrumbOrderedList.
*/
tabIndex?: number;
/**
* The BreadcrumbOrderedList direction `ltr` or `rtl`.
*/
dir?: string;
/**
* Determines the `disabled` mode of the BreadcrumbOrderedList. If `true`, the component is disabled.
*/
disabled?: boolean;
/**
* @hidden
*/
rootItem?: boolean;
}
/**
* Represents the target (element, props, and focus()) of the BreadcrumbOrderedList.
*/
export interface BreadcrumbOrderedListHandle {
/**
* The current element or `null` if there is none.
*/
element: HTMLOListElement | null;
/**
* The props values of the BreadcrumbOrderedList.
*/
props: BreadcrumbOrderedListProps;
}
/**
* Represents the BreadcrumbOrderedList component.
*/
export declare const BreadcrumbOrderedList: React.ForwardRefExoticComponent<BreadcrumbOrderedListProps & React.RefAttributes<BreadcrumbOrderedListHandle | null>>;