UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

44 lines (43 loc) 1.66 kB
import * as React from 'react'; import { OthersCategoryContext } from "./OthersCategoryContext"; import { ContentChildrenManager } from "igniteui-react-core"; export declare class IgrOthersCategoryContext<P extends IIgrOthersCategoryContextProps = IIgrOthersCategoryContextProps> extends React.Component<P, {}> { protected createImplementation(): OthersCategoryContext; protected _implementation: any; protected mounted: boolean; get nativeElement(): HTMLElement; /** * @hidden */ get i(): OthersCategoryContext; /** * @hidden */ static _createFromInternal(internal: any): IgrOthersCategoryContext; protected onImplementationCreated(): void; protected _contentChildrenManager: ContentChildrenManager; constructor(props: P); componentDidMount(): void; shouldComponentUpdate(nextProps: any, nextState: any): boolean; render(): any; /** * Gets the items in the others category. */ get items(): any[]; set items(v: any[]); findByName(name: string): any; protected __p: string; protected _hasUserValues: Set<string>; protected get hasUserValues(): Set<string>; protected __m(propertyName: string): void; protected _stylingContainer: any; protected _stylingParent: any; protected _inStyling: boolean; protected _styling(container: any, component: any, parent?: any): void; } export interface IIgrOthersCategoryContextProps { children?: React.ReactNode; /** * Gets the items in the others category. */ items?: any[]; }