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 2023/01/16 21:10:37 UTC

[superset] branch master updated (d2a355b2fb -> b53941fb3e)

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 d2a355b2fb feat: Updates button styles of Modal pre-defined functions (#22737)
     add b53941fb3e feat(plugin-chart-echarts): supports sunburst chart v2 [WIP] (#21625)

No new revisions were added by this update.

Summary of changes:
 .../EchartsSunburst.tsx}                           |  85 ++---
 .../src/{Funnel => Sunburst}/buildQuery.ts         |   0
 .../src/{Treemap => Sunburst}/controlPanel.tsx     |  87 ++++-
 .../src/Sunburst}/images/thumbnail.png             | Bin
 .../src/{Tree => Sunburst}/index.ts                |  21 +-
 .../src/Sunburst/transformProps.ts                 | 362 +++++++++++++++++++++
 .../src/{Treemap => Sunburst}/types.ts             |  49 +--
 .../plugin-chart-echarts/src/Treemap/constants.ts  |   2 +-
 .../src/Treemap/transformProps.ts                  | 144 +++-----
 .../plugin-chart-echarts/src/Treemap/types.ts      |   7 +-
 .../plugins/plugin-chart-echarts/src/index.ts      |   2 +
 .../plugins/plugin-chart-echarts/src/types.ts      |   9 +-
 .../plugin-chart-echarts/src/utils/treeBuilder.ts  |  87 +++++
 .../test/utils/treeBuilder.test.ts                 | 274 ++++++++++++++++
 14 files changed, 929 insertions(+), 200 deletions(-)
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Treemap/EchartsTreemap.tsx => Sunburst/EchartsSunburst.tsx} (63%)
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Funnel => Sunburst}/buildQuery.ts (100%)
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Treemap => Sunburst}/controlPanel.tsx (63%)
 copy superset-frontend/{packages/generator-superset/generators/plugin-chart/templates/src => plugins/plugin-chart-echarts/src/Sunburst}/images/thumbnail.png (100%)
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Tree => Sunburst}/index.ts (68%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Treemap => Sunburst}/types.ts (57%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/utils/treeBuilder.ts
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/test/utils/treeBuilder.test.ts