@adaptabletools/adaptable-cjs
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
18 lines (17 loc) • 664 B
TypeScript
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;
headerText?: string;
Style: AdaptableStyle;
/** @deprecated No longer used - font size is always displayed as dropdown */
showFontSizeAs?: 'radio' | 'dropdown';
UpdateStyle: (style: AdaptableStyle) => void;
}
export declare const StyleComponent: React.FC<StyleComponentProps>;