You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by so...@apache.org on 2023/04/12 22:37:09 UTC

[superset] branch yousoph-cross-filter-tooltip updated (628a7ceeb7 -> 84a50eb359)

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

sophieyou pushed a change to branch yousoph-cross-filter-tooltip
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 628a7ceeb7 Update cross-filter tooltip text
     add 983acf7103 build(deps-dev): bump @typescript-eslint/eslint-plugin from 5.57.1 to 5.58.0 in /superset-websocket (#23642)
     add a5b6ccc1ec fix(sqllab): rendering performance regression (#23653)
     add c8fa44e9e9 feat(dashboard): make color indices referable (#23657)
     add 587e7759b1 feat: Support further drill by in the modal (#23615)
     add f49702feff feat(plugin-chart-echarts): add x-axis sort to multi series (#23644)
     add 350723bff8 fix: update log message for ALERT_REPORTS_NOTIFICATION_DRY_RUN (#23604)
     add 75021a1eac refactor: introduce redux toolkit (#23460)
     add 976e33330f fix: presto CI failed test (#23666)
     add b35b5a6e05 chore(db_engine_specs): Refactor get_index (#23656)
     add 84a50eb359 Merge branch 'master' into yousoph-cross-filter-tooltip

No new revisions were added by this update.

Summary of changes:
 superset-frontend/package-lock.json                |  95 +++++---
 superset-frontend/package.json                     |   3 +-
 .../superset-ui-chart-controls/src/constants.ts    |  20 +-
 .../src/sections/echartsTimeSeriesQuery.tsx        |   6 +-
 .../src/shared-controls/customControls.tsx         |  49 ++++
 .../superset-ui-chart-controls/src/types.ts        |  13 ++
 .../src/chart/components/SuperChart.tsx            |  10 +-
 .../src/chart/components/SuperChartCore.tsx        |  28 ++-
 .../src/color/CategoricalColorScale.ts             |  20 +-
 .../packages/superset-ui-core/src/color/types.ts   |   4 +
 .../test/color/CategoricalColorScale.test.ts       |  15 ++
 .../src/Timeseries/constants.ts                    |   6 +-
 .../src/Timeseries/transformProps.ts               |   6 +
 .../plugins/plugin-chart-echarts/src/constants.ts  |   7 -
 .../plugins/plugin-chart-echarts/src/controls.tsx  |  17 +-
 .../plugins/plugin-chart-echarts/src/types.ts      |  13 --
 .../plugin-chart-echarts/src/utils/series.ts       | 106 ++++++++-
 .../plugin-chart-echarts/test/utils/series.test.ts | 137 ++++++++++--
 .../preset-chart-xy/src/components/Line/Line.tsx   |  10 +-
 .../src/utils/createMarginSelector.tsx             |  10 +-
 superset-frontend/spec/fixtures/mockStore.js       |  47 ++--
 superset-frontend/spec/helpers/testing-library.tsx |  19 +-
 superset-frontend/src/SqlLab/App.jsx               |  29 ++-
 .../SqlLab/components/SqlEditor/SqlEditor.test.jsx |  39 +++-
 .../src/SqlLab/components/SqlEditor/index.jsx      |   2 -
 superset-frontend/src/SqlLab/reducers/index.js     |   6 +-
 .../{ => ChartContextMenu}/ChartContextMenu.tsx    |  65 ++++--
 .../Chart/ChartContextMenu/useContextMenu.test.tsx |  86 +++++++
 .../Chart/ChartContextMenu/useContextMenu.tsx      |  82 +++++++
 .../src/components/Chart/ChartRenderer.jsx         |   2 +-
 .../components/Chart/DrillBy/DrillByChart.test.tsx |   6 +-
 .../src/components/Chart/DrillBy/DrillByChart.tsx  |  22 +-
 .../Chart/DrillBy/DrillByMenuItems.test.tsx        |  70 +++++-
 .../components/Chart/DrillBy/DrillByMenuItems.tsx  |  32 ++-
 .../src/components/Chart/DrillBy/DrillByModal.tsx  |  97 ++++++--
 superset-frontend/src/components/Chart/types.ts    |   2 +
 superset-frontend/src/dashboard/styles.ts          |   3 +
 superset-frontend/src/views/menu.tsx               |   2 +-
 superset-frontend/src/views/store.ts               |  62 +++---
 superset-websocket/package-lock.json               | 247 ++++++---------------
 superset-websocket/package.json                    |   2 +-
 superset/db_engine_specs/base.py                   |  22 ++
 superset/db_engine_specs/bigquery.py               |  22 ++
 superset/db_engine_specs/presto.py                 |  16 +-
 superset/models/core.py                            |   3 +-
 superset/models/helpers.py                         |   2 +-
 superset/reports/commands/execute.py               |   4 +-
 .../db_engine_specs/base_engine_spec_tests.py      |  23 ++
 .../db_engine_specs/bigquery_tests.py              |  83 +++++--
 49 files changed, 1196 insertions(+), 476 deletions(-)
 rename superset-frontend/src/components/Chart/{ => ChartContextMenu}/ChartContextMenu.tsx (80%)
 create mode 100644 superset-frontend/src/components/Chart/ChartContextMenu/useContextMenu.test.tsx
 create mode 100644 superset-frontend/src/components/Chart/ChartContextMenu/useContextMenu.tsx