UNPKG

@adaptabletools/adaptable

Version:

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

13 lines (12 loc) 533 B
import * as React from 'react'; import { HTMLProps } from 'react'; import { AdaptableApi } from '../../Api/AdaptableApi'; import { BoxProps } from '../Flex'; export type ColorPickerProps = Omit<HTMLProps<HTMLInputElement>, 'onChange'> & { api: AdaptableApi; onChange: (color: string) => void; className?: string; value: string; includeAlpha?: boolean; } & Omit<BoxProps, 'onChange'>; export declare const ColorPicker: React.ForwardRefExoticComponent<Omit<ColorPickerProps, "ref"> & React.RefAttributes<unknown>>;