You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by di...@apache.org on 2022/12/02 09:57:16 UTC

[superset] branch chore/hfb-e2e-tests updated (112a1bd6e5 -> 29e486d5c6)

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

diegopucci pushed a change to branch chore/hfb-e2e-tests
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 112a1bd6e5 Add initial Horizontal FilterBar e2e tests
     add bc20428a5f Remove console.log
     add 8cf572858c feat: Automatically closes the DropdownContainer when scrolling outside of the component (#22287)
     add 3affd4687e build(deps): bump hot-shots from 9.0.0 to 9.3.0 in /superset-websocket (#22295)
     add 329dd225a9 build(deps-dev): bump @types/cookie from 0.4.1 to 0.5.1 in /superset-websocket (#22296)
     add 347eec8717 build(deps-dev): bump @types/node from 16.11.6 to 18.11.10 in /superset-websocket (#22297)
     add 2bdf22b215 fix(docker): Fixing ws docker push (#22303)
     add eb6045adfa feat(native-filters): Adjust filter components for horizontal mode (#22273)
     add aa97ba4509 feat: root context provider extension point (#22188)
     add 0f78a8e1d9 Merge branch 'master' of https://github.com/apache/superset into chore/hfb-e2e-tests
     add 29e486d5c6 Add tests

No new revisions were added by this update.

Summary of changes:
 .github/workflows/docker_build_push.sh             |  7 +-
 .../integration/dashboard/nativeFilters.test.ts    | 43 +++++++++++-
 .../cypress/integration/dashboard/utils.ts         | 44 ++++++++-----
 .../src/chart/models/ChartProps.ts                 |  9 +++
 .../src/ui-overrides/ExtensionsRegistry.ts         |  1 +
 .../src/components/DropdownContainer/index.tsx     | 10 +++
 .../src/components/Select/CustomTag.tsx            | 77 ++++++++++++++++++++++
 .../src/components/Select/Select.stories.tsx       | 10 +++
 .../src/components/Select/Select.test.tsx          | 48 ++++++++++++++
 superset-frontend/src/components/Select/Select.tsx | 17 ++++-
 superset-frontend/src/components/Select/styles.tsx | 25 ++++++-
 superset-frontend/src/components/Select/types.ts   | 13 ++++
 .../src/dashboard/actions/dashboardInfo.ts         |  1 -
 .../FilterBar/FilterControls/FilterControl.tsx     |  2 +-
 .../FilterBar/FilterControls/FilterValue.tsx       | 12 ++--
 .../filters/components/Range/RangeFilterPlugin.tsx | 33 ++++++++--
 .../src/filters/components/Range/transformProps.ts |  3 +
 .../src/filters/components/Range/types.ts          |  3 +
 .../components/Select/SelectFilterPlugin.tsx       | 15 +++--
 .../filters/components/Select/transformProps.ts    |  3 +
 .../src/filters/components/Select/types.ts         |  3 +
 .../filters/components/Time/TimeFilterPlugin.tsx   |  9 +++
 .../src/filters/components/Time/transformProps.ts  |  2 +
 .../src/views/RootContextProviders.tsx             | 56 ++++++++++------
 superset-websocket/package-lock.json               | 46 ++++++-------
 superset-websocket/package.json                    |  6 +-
 26 files changed, 410 insertions(+), 88 deletions(-)
 create mode 100644 superset-frontend/src/components/Select/CustomTag.tsx