UNPKG

smart-webcomponents-react

Version:

[![Price](https://img.shields.io/badge/price-COMMERCIAL-00JS8f7.svg)](https://jqwidgets.com/license/)

80 lines (79 loc) 2.69 kB
import React from "react"; import { TreeItemsGroupProperties } from "./../index"; export { TreeItemsGroupProperties } from "./../index"; export {} from './../index'; declare let Smart: any; export { Smart }; export interface TreeItemsGroupProps extends TreeItemsGroupProperties { className?: string; style?: React.CSSProperties; onCreate?: ((event?: Event) => void) | undefined; onReady?: ((event?: Event) => void) | undefined; } /** Defines a group of tree items. */ export declare class TreeItemsGroup extends React.Component<React.HTMLAttributes<Element> & TreeItemsGroupProps, any> { private _id; private nativeElement; private componentRef; get id(): string; /** Controls whether the element is active and can be interacted with by the user. When enabled, the element responds to user input; when disabled, it appears inactive and does not accept interactions. * Property type: boolean */ get disabled(): boolean; set disabled(value: boolean); /** * Property type: boolean */ get expanded(): boolean; set expanded(value: boolean); /** * Property type: any */ get label(): any; set label(value: any); /** * Property type: number */ get level(): number; set level(value: number); /** * Property type: boolean */ get selected(): boolean; set selected(value: boolean); /** * Property type: boolean */ get separator(): boolean; set separator(value: boolean); /** * Property type: any */ get value(): any; set value(value: any); /** Prevents users from interacting with the item by disabling all mouse, keyboard, and touch events, making the item unresponsive to user actions. * Property type: boolean */ get readonly(): boolean; set readonly(value: boolean); get properties(): string[]; /** This event occurs, when the React component is created. * @param event. The custom event. */ onCreate?: ((event?: Event) => void) | undefined; /** This event occurs, when the React component is completely rendered. * @param event. The custom event. */ onReady?: ((event?: Event) => void) | undefined; get eventListeners(): string[]; constructor(props: any); componentDidRender(initialize: boolean): void; componentDidMount(): void; componentDidUpdate(): void; componentWillUnmount(): void; render(): React.ReactElement<{ ref: any; suppressHydrationWarning: boolean; }, string | React.JSXElementConstructor<any>>; } export default TreeItemsGroup;