This is an automated email from the ASF dual-hosted git repository.
yjc pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git.
from 91db008 fix: accept null groupby in form data for timeseries table
viz (#13086)
add ad4ca22 feat: one-click copy chart and dashboard URL (#13037)
No new revisions were added by this update.
Summary of changes:
.../cypress/integration/explore/link.test.ts | 9 +-
.../components/URLShortLinkModal_spec.jsx | 46 -----
.../components/HeaderActionsDropdown_spec.jsx | 26 +--
.../components/gridComponents/Chart_spec.jsx | 1 +
.../explore/components/EmbedCodeButton_spec.jsx | 12 +-
.../components/ExploreActionButtons_spec.jsx | 9 +-
.../src/common/hooks/useUrlShortener.ts | 41 ++---
superset-frontend/src/components/Button/index.tsx | 20 +-
.../src/components/CopyToClipboard.jsx | 24 +--
.../src/components/URLShortLinkModal.tsx | 105 -----------
.../dashboard/components/HeaderActionsDropdown.jsx | 31 ++--
.../src/dashboard/components/SliceHeader.jsx | 3 +
.../dashboard/components/SliceHeaderControls.jsx | 29 +--
.../dashboard/components/gridComponents/Chart.jsx | 3 +
.../dashboard/components/menu/ShareMenuItems.tsx | 85 +++++++++
.../src/dashboard/containers/Chart.jsx | 3 +-
.../src/explore/components/EmbedCodeButton.jsx | 20 +-
.../explore/components/ExploreActionButtons.jsx | 120 ------------
.../explore/components/ExploreActionButtons.tsx | 204 +++++++++++++++++++++
superset-frontend/src/utils/copy.ts | 4 +-
.../src/views/CRUD/welcome/ChartTable.tsx | 4 +-
.../src/views/CRUD/welcome/DashboardTable.tsx | 7 +-
.../src/views/CRUD/welcome/SavedQueries.tsx | 6 +-
23 files changed, 424 insertions(+), 388 deletions(-)
delete mode 100644
superset-frontend/spec/javascripts/components/URLShortLinkModal_spec.jsx
copy docs/src/components/next.tsx =>
superset-frontend/src/common/hooks/useUrlShortener.ts (60%)
delete mode 100644 superset-frontend/src/components/URLShortLinkModal.tsx
create mode 100644
superset-frontend/src/dashboard/components/menu/ShareMenuItems.tsx
delete mode 100644
superset-frontend/src/explore/components/ExploreActionButtons.jsx
create mode 100644
superset-frontend/src/explore/components/ExploreActionButtons.tsx