UNPKG

react-application-core

Version:

A react-based application core for the business applications.

32 lines (31 loc) 913 B
/// <reference types="react" /> import { IChipsFieldProps } from '../../../definition'; import { MultiField } from '../multifield/multifield.component'; /** * @component-impl * @stable [16.06.2020] */ export declare class ChipsField extends MultiField<IChipsFieldProps> { static readonly defaultProps: IChipsFieldProps & Partial<import("../../../definition").IGenericComponentProps<any>>; /** * @stable [15.10.2020] * @protected */ protected get attachmentBodyElement(): JSX.Element; /** * @stable [16.06.2020] * @returns {string} */ protected getFieldClassName(): string; /** * @stable [08.07.2020] * @param {INamedEntity} item * @returns {JSX.Element} */ private getInlineOptionElement; /** * @stable [16.06.2020] * @returns {INamedEntity[]} */ private get inlineOptions(); }