You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by kg...@apache.org on 2022/09/05 09:44:19 UTC

[superset] branch master updated (d994babe75 -> b71182f013)

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

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


    from d994babe75 fix(dashboard): padding between rows within tabs (#21323)
     add b71182f013 chore: refactor ChartHolder to typescript + tests (#20910)

No new revisions were added by this update.

Summary of changes:
 .../src/dashboard/components/AnchorLink/index.tsx  |   3 +-
 .../src/dashboard/components/dnd/DragDroppable.jsx |  20 +-
 .../components/gridComponents/ChartHolder.jsx      | 420 ---------------------
 .../components/gridComponents/ChartHolder.test.jsx | 138 -------
 .../components/gridComponents/ChartHolder.test.tsx | 360 +++++++++++++++++-
 .../components/gridComponents/ChartHolder.tsx      | 333 ++++++++++++++++
 superset-frontend/src/dashboard/types.ts           |   5 +
 .../util/useFilterFocusHighlightStyles.test.tsx    | 209 ++++++++++
 .../util/useFilterFocusHighlightStyles.ts          |  91 +++++
 9 files changed, 1005 insertions(+), 574 deletions(-)
 delete mode 100644 superset-frontend/src/dashboard/components/gridComponents/ChartHolder.jsx
 delete mode 100644 superset-frontend/src/dashboard/components/gridComponents/ChartHolder.test.jsx
 create mode 100644 superset-frontend/src/dashboard/components/gridComponents/ChartHolder.tsx
 create mode 100644 superset-frontend/src/dashboard/util/useFilterFocusHighlightStyles.test.tsx
 create mode 100644 superset-frontend/src/dashboard/util/useFilterFocusHighlightStyles.ts