You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by mi...@apache.org on 2022/08/09 20:02:43 UTC

[superset] branch master updated (0042ade66f -> 3df8335f87)

This is an automated email from the ASF dual-hosted git repository.

michaelsmolina pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 0042ade66f fix: making crossFilter.chartsInScope optional (#21030)
     add 3df8335f87 feat: Adds drill to detail context menu for ECharts visualizations (#20891)

No new revisions were added by this update.

Summary of changes:
 .../src/chart/models/ChartProps.ts                 |   9 ++
 .../superset-ui-core/src/query/types/Query.ts      |   3 +
 .../superset-ui-core/src/utils/featureFlags.ts     |   1 +
 .../src/BigNumber/BigNumberTotal/transformProps.ts |   6 +-
 .../src/BigNumber/BigNumberViz.tsx                 |  56 +++++++++-
 .../BigNumberWithTrendline/transformProps.ts       |  20 +++-
 .../src/BoxPlot/EchartsBoxPlot.tsx                 |  35 +++---
 .../src/BoxPlot/transformProps.ts                  |  15 ++-
 .../plugin-chart-echarts/src/BoxPlot/types.ts      |  19 +---
 .../src/Funnel/EchartsFunnel.tsx                   |  35 +++---
 .../src/Funnel/transformProps.ts                   |  16 ++-
 .../plugin-chart-echarts/src/Funnel/types.ts       |  24 ++--
 .../src/Gauge/EchartsGauge.tsx                     |  31 ++++--
 .../src/Gauge/transformProps.ts                    |   3 +-
 .../src/Graph/EchartsGraph.tsx                     |  54 ++++++++-
 .../src/Graph/transformProps.ts                    |  15 ++-
 .../plugin-chart-echarts/src/Graph/types.ts        |  22 +++-
 .../src/MixedTimeseries/EchartsMixedTimeseries.tsx |  36 +++++-
 .../src/MixedTimeseries/transformProps.ts          |   8 +-
 .../src/MixedTimeseries/types.ts                   |  27 ++---
 .../plugin-chart-echarts/src/Pie/EchartsPie.tsx    |  35 +++---
 .../plugin-chart-echarts/src/Pie/transformProps.ts |  16 ++-
 .../plugins/plugin-chart-echarts/src/Pie/types.ts  |  23 ++--
 .../src/Radar/EchartsRadar.tsx                     |  35 +++---
 .../src/Radar/transformProps.ts                    |  18 ++-
 .../plugin-chart-echarts/src/Radar/types.ts        |  16 +--
 .../src/Timeseries/EchartsTimeseries.tsx           |  30 +++++
 .../src/Timeseries/transformProps.ts               |   5 +
 .../src/Timeseries/transformers.ts                 |   3 +
 .../plugin-chart-echarts/src/Timeseries/types.ts   |   5 +-
 .../src/Treemap/EchartsTreemap.tsx                 |  23 +++-
 .../src/Treemap/transformProps.ts                  |  16 ++-
 .../plugin-chart-echarts/src/Treemap/types.ts      |  18 +--
 .../plugins/plugin-chart-echarts/src/types.ts      |   6 +
 .../src/utils/eventHandlers.ts                     |  76 +++++++++++++
 .../src/components/Chart/ChartContextMenu.tsx      | 123 +++++++++++++++++++++
 .../src/components/Chart/ChartRenderer.jsx         |  99 +++++++++++++----
 superset/config.py                                 |   1 +
 38 files changed, 734 insertions(+), 249 deletions(-)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/utils/eventHandlers.ts
 create mode 100644 superset-frontend/src/components/Chart/ChartContextMenu.tsx