UNPKG

@up-group/react-controls

Version:

We know that there are a ton of react UI library projects to choose from. Our hope with this one is to provide the next generation of react components that you can use to bootstrap your next project, or as a reference for building a UIKit. Read on to get

29 lines (28 loc) 1.06 kB
/// <reference types="react" /> import { BaseControlComponent } from '../_Common/BaseControl/BaseControl'; import { UpSelectProps } from './'; export default class UpSelect extends BaseControlComponent<UpSelectProps, any> { timeOutLoadOptions: any; axiosSource: any; static defaultProps: UpSelectProps; constructor(p: any, c: any); readonly keyId: string; readonly keyText: string; selectElement: any; setSelect: (input: any) => void; isEmpty(value: any): boolean; setValue: (receiveValue: any) => any; private makePairFromIds; private makePairFromId; private isPairArray; private isPair; parseValue: (receiveValue: any) => any; getValue(data: any): any; getOptionRenderer: (option: any) => JSX.Element; getValueRenderer: (value: any) => JSX.Element; private format(object, strFormat); filterOptions: (options: any, filter: any, currentValues: any) => any[]; private findInObject; renderControl(): JSX.Element; onChange: (event: any) => void; }