UNPKG

@syncfusion/ej2-navigations

Version:

A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another

170 lines (146 loc) 4.86 kB
import { Component, NotifyPropertyChanges, INotifyPropertyChanged, ChildProperty, Property, Collection, append, extend, Event, EmitType, BaseEventArgs, EventHandler, closest, addClass, removeClass, detach, remove, initializeCSPTemplate, isNullOrUndefined } from '@syncfusion/ej2-base';import { ListBase, ListBaseOptions } from '@syncfusion/ej2-lists';import { Popup } from '@syncfusion/ej2-popups'; import {BreadcrumbOverflowMode,BreadcrumbBeforeItemRenderEventArgs,BreadcrumbClickEventArgs} from "./breadcrumb"; import {ComponentModel} from '@syncfusion/ej2-base'; /** * Interface for a class BreadcrumbItem */ export interface BreadcrumbItemModel { /** * Specifies the text content of the Breadcrumb item. * * @default '' */ text?: string; /** * Specifies the id of the Breadcrumb item. * * @default '' */ id?: string; /** * Specifies the Url of the Breadcrumb item that will be activated when clicked. * * @default '' */ url?: string; /** * Defines a class/multiple classes separated by a space for the item that is used to include an icon. * * @default null */ iconCss?: string; /** * Enable or disable the breadcrumb item, when set to true, the breadcrumb item will be disabled. * * @default false */ disabled?: boolean; } /** * Interface for a class Breadcrumb */ export interface BreadcrumbModel extends ComponentModel{ /** * Defines the Url based on which the Breadcrumb items are generated. * * @default '' */ url?: string; /** * Defines the list of Breadcrumb items. * * @default [] */ items?: BreadcrumbItemModel[]; /** * Specifies the Url of the active Breadcrumb item. * * @default '' */ activeItem?: string; /** * Specifies an integer to enable overflow behavior when the Breadcrumb items count exceeds and it is based on the overflowMode property. * * @default -1 * @aspType int */ maxItems?: number; /** * Specifies the overflow mode of the Breadcrumb item when it exceeds maxItems count. The possible values are, * - Default: Specified maxItems count will be visible and the remaining items will be hidden. While clicking on the previous item, the hidden item will become visible. * - Collapsed: Only the first and last items will be visible, and the remaining items will be hidden in the collapsed icon. When the collapsed icon is clicked, all items become visible. * - Menu: Shows the number of breadcrumb items that can be accommodated within the container space, and creates a sub menu with the remaining items. * - Wrap: Wraps the items on multiple lines when the Breadcrumb’s width exceeds the container space. * - Scroll: Shows an HTML scroll bar when the Breadcrumb’s width exceeds the container space. * - None: Shows all the items on a single line. * * @isenumeration true * @default BreadcrumbOverflowMode.Menu * @asptype BreadcrumbOverflowMode */ overflowMode?: string | BreadcrumbOverflowMode; /** * Defines class/multiple classes separated by a space in the Breadcrumb element. * * @default '' */ cssClass?: string; /** * Specifies the template for Breadcrumb item. * * @default null * @aspType string */ itemTemplate?: string | Function; /** * Specifies the separator template for Breadcrumb. * * @default '/' * @aspType string */ separatorTemplate?: string | Function; /** * Enable or disable the item's navigation, when set to false, each item navigation will be prevented. * * @default true */ enableNavigation?: boolean; /** * Enable or disable the active item navigation, when set to true, active item will be navigable. * * @default false */ enableActiveItemNavigation?: boolean; /** * Enable or disable the breadcrumb, when set to true, the breadcrumb will be disabled. * * @default false */ disabled?: boolean; /** * Overrides the global culture and localization value for this component. Default global culture is 'en-US'. * * @default '' * @private * @aspIgnore */ locale?: string; /** * Triggers while rendering each breadcrumb item. * * @event beforeItemRender */ beforeItemRender?: EmitType<BreadcrumbBeforeItemRenderEventArgs>; /** * Triggers while clicking the breadcrumb item. * * @event itemClick */ itemClick?: EmitType<BreadcrumbClickEventArgs>; /** * Triggers once the component rendering is completed. * * @event created */ created?: EmitType<Event>; }