Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / molecules / SelectDropDown / Select / SelectBoundary.d.ts
Size: Mime:
import React from 'react';
export interface SelectBoundaryProps {
    onClickOutside: Function;
    isVisible?: boolean;
    isDisabled?: boolean;
    className?: string;
    children: any;
    'data-qa'?: string;
}
/**
 * @todo nowrap!!!
 * @todo convert SelectWrap to be withComponent(clickBoundary)
 */
declare class SelectBoundary extends React.PureComponent<SelectBoundaryProps> {
    render(): JSX.Element;
}
export { SelectBoundary };
export default SelectBoundary;