You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by yj...@apache.org on 2022/09/01 20:39:48 UTC

[superset] branch master updated (1aeb8fd6b7 -> 65a11b6f45)

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 1aeb8fd6b7 fix(plugin-chart-echarts): show zero value in tooltip (#21296)
     add 65a11b6f45 refactor: introduce react-query on api resource hook (#21240)

No new revisions were added by this update.

Summary of changes:
 superset-frontend/package-lock.json                |  96 +++++++++
 superset-frontend/package.json                     |   1 +
 superset-frontend/spec/helpers/testing-library.tsx |   7 +
 superset-frontend/src/SqlLab/App.jsx               |  15 +-
 .../SqlLab/components/SqlEditor/SqlEditor.test.jsx |   9 +-
 .../TabbedSqlEditors/TabbedSqlEditors.test.jsx     |   9 +-
 .../components/Datasource/DatasourceModal.test.jsx |   9 +-
 .../src/components/TableSelector/index.tsx         | 127 +++++-------
 superset-frontend/src/hooks/apiResources/index.ts  |   1 +
 .../src/hooks/apiResources/tables.test.ts          | 221 +++++++++++++++++++++
 superset-frontend/src/hooks/apiResources/tables.ts |  97 +++++++++
 superset-frontend/src/views/App.tsx                |  43 ++--
 .../Item.tsx => views/QueryProvider.tsx}           |  43 ++--
 13 files changed, 539 insertions(+), 139 deletions(-)
 create mode 100644 superset-frontend/src/hooks/apiResources/tables.test.ts
 create mode 100644 superset-frontend/src/hooks/apiResources/tables.ts
 copy superset-frontend/src/{components/Pagination/Item.tsx => views/QueryProvider.tsx} (62%)