fix(ag-grid): fix conditional formatting theme colors and module extensibility (#35605)

This commit is contained in:
Gabriel Torres Ruiz
2025-10-22 21:39:00 -04:00
committed by GitHub
parent 79918a7939
commit 5e4a80e5d0
14 changed files with 243 additions and 82 deletions

View File

@@ -43,6 +43,7 @@ export default function transformProps(
rawFormData,
hooks,
datasource: { currencyFormats = {}, columnFormats = {} },
theme,
} = chartProps;
const {
metricNameFontSize,
@@ -105,7 +106,7 @@ export default function transformProps(
const defaultColorFormatters = [] as ColorFormatters;
const colorThresholdFormatters =
getColorFormatters(conditionalFormatting, data, false) ??
getColorFormatters(conditionalFormatting, data, theme, false) ??
defaultColorFormatters;
return {
width,