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/10/06 13:08:23 UTC

[superset] branch master updated (0c40bea064 -> 17792a507c)

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 0c40bea064 fix: Tags Page ListView size to 10 (#25536)
     add 17792a507c feat(plugin-chart-echarts): Echarts Waterfall (#17906)

No new revisions were added by this update.

Summary of changes:
 .../{Treemap => Waterfall}/Stories.tsx             |  48 +--
 .../plugins/plugin-chart-echarts/Waterfall/data.ts |  80 ++++
 .../src/Waterfall/EchartsWaterfall.tsx             |  84 +++++
 .../src/{Pie => Waterfall}/buildQuery.ts           |   4 +-
 .../src/Waterfall}/constants.ts                    |  18 +-
 .../src/Waterfall/controlPanel.tsx}                | 134 ++++---
 .../src/Waterfall/images/thumbnail.png             | Bin 0 -> 77020 bytes
 .../src/Waterfall}/index.ts                        |  35 +-
 .../src/Waterfall/transformProps.ts                | 401 +++++++++++++++++++++
 .../src/{Bubble => Waterfall}/types.ts             |  57 +--
 .../plugins/plugin-chart-echarts/src/index.ts      |   2 +
 .../test/{Funnel => Waterfall}/buildQuery.test.ts  |  12 +-
 .../test/Waterfall/transformProps.test.ts          | 121 +++++++
 .../src/visualizations/presets/MainPreset.js       |   4 +
 14 files changed, 850 insertions(+), 150 deletions(-)
 copy superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/{Treemap => Waterfall}/Stories.tsx (61%)
 create mode 100644 superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/plugin-chart-echarts/Waterfall/data.ts
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/EchartsWaterfall.tsx
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Pie => Waterfall}/buildQuery.ts (90%)
 copy superset-frontend/{src/features/rls => plugins/plugin-chart-echarts/src/Waterfall}/constants.ts (80%)
 copy superset-frontend/plugins/{legacy-plugin-chart-histogram/src/controlPanel.ts => plugin-chart-echarts/src/Waterfall/controlPanel.tsx} (57%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/images/thumbnail.png
 copy superset-frontend/plugins/{plugin-chart-handlebars/src/plugin => plugin-chart-echarts/src/Waterfall}/index.ts (65%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Waterfall/transformProps.ts
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Bubble => Waterfall}/types.ts (53%)
 copy superset-frontend/plugins/plugin-chart-echarts/test/{Funnel => Waterfall}/buildQuery.test.ts (77%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/test/Waterfall/transformProps.test.ts