You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2024/03/28 22:35:42 UTC

(superset) branch sql_rowcount updated (659114d74e -> 6a1f1752b0)

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

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


    omit 659114d74e tsc fixes
    omit 58cee233f5 backtracking
    omit 09c3d564c3 progress tracking props and passing them through
    omit 702b3be15d fix: row limits & row count labels are confusing
     add 546d48adbb feat: Adds the ECharts Heatmap chart (#25353)
     add acc8596cef fix: row limits & row count labels are confusing
     add 4cafda4e07 progress tracking props and passing them through
     add 0af603e7be backtracking
     add 6a1f1752b0 tsc fixes

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (659114d74e)
            \
             N -- N -- N   refs/heads/sql_rowcount (6a1f1752b0)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../src/operators/index.ts                         |   1 +
 .../{flattenOperator.ts => rankOperator.ts}        |   8 +-
 .../src/operators/types.ts                         |   2 +-
 ...butionOperator.test.ts => rankOperator.test.ts} |  35 ++-
 .../src/query/types/PostProcessing.ts              |  12 +-
 .../legacy-plugin-chart-heatmap/src/index.js       |   9 +-
 .../plugins/plugin-chart-echarts/package.json      |  35 +--
 .../EchartsBubble.tsx => Heatmap/Heatmap.tsx}      |   6 +-
 .../src/{Waterfall => Heatmap}/buildQuery.ts       |  40 +++-
 .../src/Heatmap}/controlPanel.tsx                  | 207 +++++++-----------
 .../src/Heatmap/images/example1.png                | Bin 0 -> 69070 bytes
 .../src/Heatmap/images/example2.png                | Bin 0 -> 101622 bytes
 .../src/Heatmap/images/example3.png                | Bin 0 -> 76688 bytes
 .../src/Heatmap/images/thumbnail.png               | Bin 0 -> 66135 bytes
 .../src/Heatmap/index.ts}                          |  23 +-
 .../src/Heatmap/transformProps.ts                  | 243 +++++++++++++++++++++
 .../plugin-chart-echarts/src/Heatmap/types.ts      |  53 +++++
 .../plugins/plugin-chart-echarts/src/index.ts      |   2 +
 .../explore/components/controls/BoundsControl.tsx  |  14 +-
 .../controls/VizTypeControl/VizTypeGallery.tsx     |   1 +
 .../src/visualizations/presets/MainPreset.js       |   2 +
 superset/utils/pandas_postprocessing/__init__.py   |   2 +
 .../utils/pandas_postprocessing/rank.py            |  27 ++-
 23 files changed, 521 insertions(+), 201 deletions(-)
 copy superset-frontend/packages/superset-ui-chart-controls/src/operators/{flattenOperator.ts => rankOperator.ts} (84%)
 copy superset-frontend/packages/superset-ui-chart-controls/test/operators/{contributionOperator.test.ts => rankOperator.test.ts} (63%)
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Bubble/EchartsBubble.tsx => Heatmap/Heatmap.tsx} (89%)
 copy superset-frontend/plugins/plugin-chart-echarts/src/{Waterfall => Heatmap}/buildQuery.ts (50%)
 copy superset-frontend/plugins/{legacy-plugin-chart-heatmap/src => plugin-chart-echarts/src/Heatmap}/controlPanel.tsx (78%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/images/example1.png
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/images/example2.png
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/images/example3.png
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/images/thumbnail.png
 copy superset-frontend/plugins/{legacy-plugin-chart-heatmap/src/index.js => plugin-chart-echarts/src/Heatmap/index.ts} (71%)
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/transformProps.ts
 create mode 100644 superset-frontend/plugins/plugin-chart-echarts/src/Heatmap/types.ts
 copy tests/unit_tests/utils/excel_tests.py => superset/utils/pandas_postprocessing/rank.py (60%)