UNPKG

@adaptabletools/adaptable

Version:

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

9 lines (8 loc) 582 B
import type { Report } from '../../types'; import type { ColumnScope } from '../../AdaptableState/Common/ColumnScope'; import type { TagVariant } from './Tag'; /** True when a tag label is a scope placeholder (e.g. `[All Columns]`), not a column name. */ export declare const isBracketedScopeTagLabel: (value: string) => boolean; /** True when export column tags are actual column friendly names. */ export declare const reportColumnTagsUseColumnVariant: (report: Report) => boolean; export declare const getScopeViewItemsTagVariant: (scope: ColumnScope) => TagVariant | undefined;