You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ta...@apache.org on 2020/11/30 22:22:36 UTC

[incubator-superset] branch master updated (3cd94d6 -> 0117247)

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

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


    from 3cd94d6  feat:  Create api abstraction layer for dataset network calls (#11855)
     add 0117247  feat: list view filters for Query History  (#11702)

No new revisions were added by this update.

Summary of changes:
 superset-frontend/package-lock.json                | 422 +++++++++++----------
 superset-frontend/package.json                     |   4 +-
 superset-frontend/spec/helpers/shim.ts             |  13 +
 .../components/ListView/ListView_spec.jsx          |  64 ++--
 .../ListView/Filters/Base.ts}                      |  23 +-
 .../src/components/ListView/Filters/DateRange.tsx  |  75 ++++
 .../src/components/ListView/Filters/Search.tsx     |  61 +++
 .../ListView/{Filters.tsx => Filters/Select.tsx}   | 140 +------
 .../src/components/ListView/Filters/index.tsx      | 108 ++++++
 superset-frontend/src/components/ListView/types.ts |  69 +++-
 superset-frontend/src/components/ListView/utils.ts |  62 ++-
 .../src/views/CRUD/annotation/AnnotationModal.tsx  |   1 -
 .../src/views/CRUD/data/query/QueryList.test.tsx   |  29 +-
 .../src/views/CRUD/data/query/QueryList.tsx        | 111 +++++-
 superset-frontend/src/views/CRUD/types.ts          |  19 +
 superset/queries/api.py                            |  10 +-
 16 files changed, 788 insertions(+), 423 deletions(-)
 copy superset-frontend/src/{SqlLab/components/TabStatusIcon.jsx => components/ListView/Filters/Base.ts} (66%)
 create mode 100644 superset-frontend/src/components/ListView/Filters/DateRange.tsx
 create mode 100644 superset-frontend/src/components/ListView/Filters/Search.tsx
 rename superset-frontend/src/components/ListView/{Filters.tsx => Filters/Select.tsx} (56%)
 create mode 100644 superset-frontend/src/components/ListView/Filters/index.tsx