UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

8 lines (7 loc) 470 B
import * as React from 'react'; import { ValueSelectorProps } from '../ValueSelector'; import { AdaptableModule } from '../../../AdaptableState/Common/Types'; export interface ModuleValueSelectorProps extends Omit<ValueSelectorProps<AdaptableModule, AdaptableModule>, 'allowReorder' | 'toIdentifier' | 'toLabel'> { isDisabled?: (module: AdaptableModule) => boolean; } export declare const ModuleValueSelector: (props: ModuleValueSelectorProps) => React.JSX.Element;