This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch viz-gallery-tag-reduction in repository https://gitbox.apache.org/repos/asf/superset.git
commit 9a9863bc7648126577057f691efd66ee513079aa Author: Michael S. Molina <[email protected]> AuthorDate: Fri Jul 12 16:06:24 2024 -0300 TODO --- .../packages/superset-ui-core/src/chart/types/Base.ts | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/superset-frontend/packages/superset-ui-core/src/chart/types/Base.ts b/superset-frontend/packages/superset-ui-core/src/chart/types/Base.ts index b24e5e850e..7ddd19000f 100644 --- a/superset-frontend/packages/superset-ui-core/src/chart/types/Base.ts +++ b/superset-frontend/packages/superset-ui-core/src/chart/types/Base.ts @@ -18,7 +18,7 @@ */ import { BinaryQueryObjectFilterClause, ExtraFormData } from '../../query'; -import { JsonObject } from '../..'; +import { JsonObject, t } from '../..'; export type HandlerFunction = (...args: unknown[]) => void; @@ -76,6 +76,21 @@ export enum ChartLabel { Deprecated = 'DEPRECATED', Featured = 'FEATURED', } +export const Tags = { + AdvancedAnalytics: t('Advanced analytics'), + AnnotationLayers: t('Annotation layers'), + ConditionalColoring: t('Conditional coloring'), + CrossFiltering: t('Cross filtering'), + D3: t('D3'), + DeckGL: t('DeckGL'), + Deprecated: t('Deprecated'), + DrillBy: t('Drill by'), + DrillToDetail: t('Drill to detail'), + ECharts: t('ECharts'), + Legacy: t('Legacy'), + NVD3: t('NVD3'), + PredictiveAnalytics: t('Predictive analytics'), +} as const; export const chartLabelExplanations: Record<ChartLabel, string> = { [ChartLabel.Deprecated]:
