UNPKG

@adaptabletools/adaptable

Version:

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

17 lines (16 loc) 574 B
import * as React from 'react'; import { CSSProperties } from 'react'; import { AdaptableApi } from '../../Api/AdaptableApi'; import { AdaptableStyle } from '../../AdaptableState/Common/AdaptableStyle'; export interface StyleComponentProps { className?: string; style?: CSSProperties; api: AdaptableApi; headless?: boolean; hidePreview?: boolean; previewText?: React.ReactNode; headerText?: string; Style: AdaptableStyle; UpdateStyle: (style: AdaptableStyle) => void; } export declare const StyleComponent: React.FC<StyleComponentProps>;