UNPKG

primereact

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primereact.svg)](https://badge.fury.io/js/primereact) [![Discord Chat](https://img.shields.io/discord/5579

30 lines (27 loc) 771 B
import * as React from 'react'; interface CascadeSelectProps { id?: string; style?: object; className?: string; value?: any; options?: array; optionLabel?: string; optionValue?: string; optionGroupLabel?: string; optionGroupChildren?: array; placeholder?: string; itemTemplate?: any; disabled?: boolean; dataKey?: string; inputId?: string; tabIndex?: number; ariaLabelledBy?: string; appendTo?: any; onChange?(e: {originalEvent: Event, value: any}): void; onGroupChange?(e: {originalEvent: Event, value: any}): void; onBeforeShow?(): void; onBeforeHide?(): void; onShow?(): void; onHide?(): void; } export class CascadeSelect extends React.Component<CascadeSelectProps,any> {}