UNPKG

react-application-core

Version:

A react-based application core for the business applications.

30 lines (29 loc) 889 B
import { IInlineOptionClassNameClassName } from '../definitions.interface'; import { IGenericComponentProps } from './generic-component-definition.interface'; import { IGenericMultiFieldEntity } from './multi-field-definition.interface'; /** * @presets-entity * @stable [16.06.2020] */ export interface IPresetsChipsFieldEntity extends IInlineOptionClassNameClassName { } /** * @generic-entity * @stable [16.06.2020] */ export interface IGenericChipsFieldEntity extends IPresetsChipsFieldEntity, IGenericMultiFieldEntity { } /** * @props * @stable [16.06.2020] */ export interface IChipsFieldProps extends IGenericComponentProps, IGenericChipsFieldEntity { } /** * @classes * @stable [16.06.2020] */ export declare enum ChipsFieldClassesEnum { CHIPS_FIELD = "rac-chips-field", CHIPS_FIELD_INLINE_OPTION = "rac-chips-field__inline-option" }