@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
14 lines (13 loc) • 473 B
TypeScript
import * as React from 'react';
import { SelectProps } from '../../../components/Select';
import { AdaptableColumnDataType } from '../../../types';
interface FieldSelectorProps {
value: string;
onChange: (fieldExp: string) => void;
type?: AdaptableColumnDataType;
disabled?: boolean;
menuPosition?: SelectProps<any>['menuPosition'];
placeholder?: string;
}
export declare const FieldSelector: React.FunctionComponent<FieldSelectorProps>;
export {};