UNPKG

@syncfusion/ej2-react-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 for React

42 lines (41 loc) 1.31 kB
import * as React from 'react'; import { Stepper, StepperModel } from '@syncfusion/ej2-navigations'; import { DefaultHtmlAttributes } from '@syncfusion/ej2-react-base'; export interface StepperTypecast { template?: string | Function | any; tooltipTemplate?: string | Function | any; } /** * `StepperComponent` represents the react Stepper Component. * ```ts * <StepperComponent steps={stepItems} /> * ``` */ export declare class StepperComponent extends Stepper { state: Readonly<{ children?: React.ReactNode | React.ReactNode[]; }> & Readonly<StepperModel | DefaultHtmlAttributes | StepperTypecast>; setState: any; private getDefaultAttributes; initRenderCalled: boolean; private checkInjectedModules; directivekeys: { [key: string]: Object; }; private statelessTemplateProps; private templateProps; private immediateRender; private isReactMock; props: Readonly<{ children?: React.ReactNode | React.ReactNode[]; }> & Readonly<StepperModel | DefaultHtmlAttributes | StepperTypecast>; forceUpdate: (callBack?: () => any) => void; context: Object; portals: any; isReactComponent: Object; refs: { [key: string]: React.ReactInstance; }; constructor(props: any); render(): any; }