Repository URL to install this package:
|
Version:
0.9.5 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
molecules
/
SelectDropDown
/
Select
/
SelectBoundary.d.ts
|
|---|
import React from 'react';
export interface SelectBoundaryProps {
onClickOutside: Function;
isVisible?: boolean;
isDisabled?: boolean;
className?: string;
children: any;
}
/**
* @todo nowrap!!!
* @todo convert SelectWrap to be withComponent(clickBoundary)
*/
declare class SelectBoundary extends React.PureComponent<SelectBoundaryProps> {
render(): JSX.Element;
}
export { SelectBoundary };
export default SelectBoundary;