@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
19 lines (18 loc) • 708 B
TypeScript
import * as React from 'react';
import { AdaptableColumn } from '../../../AdaptableState/Common/AdaptableColumn';
import { AdaptableApi } from '../../../Api/AdaptableApi';
import { GridCell } from '../../../types';
export interface BulkUpdateValueSelectorProps {
selectedColumn: AdaptableColumn;
selectedColumnValue: string;
onColumnValueChange: (columnvalue: any) => void;
api: AdaptableApi;
allowNew?: boolean;
style?: React.CSSProperties;
newLabel?: string;
existingLabel?: string;
selectedGridCells: GridCell[];
disabled?: boolean;
className?: string;
}
export declare const BulkUpdateValueSelector: (props: BulkUpdateValueSelectorProps) => React.JSX.Element;