You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2021/02/22 04:51:16 UTC

[superset] branch master updated (7ee8d11 -> 42ab578)

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

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


    from 7ee8d11  fix: SqlEditor_spec tests (#13186)
     add 42ab578  Migrate Bootstrap Alert to AntD (#12101) (#12122)

No new revisions were added by this update.

Summary of changes:
 superset-frontend/.eslintrc.js                     |   1 +
 .../explore/visualizations/line.test.ts            |   8 +-
 superset-frontend/spec/helpers/theming.ts          |   2 +-
 .../components/ListView/ListView_spec.jsx          |   6 +-
 .../components/RefreshIntervalModal_spec.jsx       |   2 +-
 .../nativeFilters/NativeFiltersModal_spec.tsx      |   2 +-
 .../messageToasts/components/Toast_spec.jsx        |  26 ++----
 .../spec/javascripts/sqllab/ResultSet_spec.jsx     |  28 +++---
 .../spec/javascripts/sqllab/SouthPane_spec.jsx     |   4 +-
 .../SqlLab/components/EstimateQueryCostButton.jsx  |  10 ++-
 .../src/SqlLab/components/ExploreResultsButton.jsx |  47 +++++-----
 .../src/SqlLab/components/QueryHistory.jsx         |   4 +-
 .../src/SqlLab/components/ResultSet.tsx            |  63 +++++++------
 .../src/SqlLab/components/SouthPane.jsx            |  13 +--
 superset-frontend/src/chart/Chart.jsx              |  10 ++-
 superset-frontend/src/common/components/index.tsx  |   2 +-
 .../src/components/Alert/Alert.stories.tsx         | 100 +++++++++++++++++++++
 .../src/components/Alert/Alert.test.tsx            |  68 ++++++++++++++
 superset-frontend/src/components/Alert/index.tsx   |  86 ++++++++++++++++++
 .../src/components/Checkbox/Checkbox.test.tsx      |   8 +-
 .../src/components/ListView/ListView.tsx           |  82 ++++++++---------
 .../dashboard/components/RefreshIntervalModal.tsx  |  17 ++--
 .../FilterConfigModal/CancelConfirmationAlert.tsx  | 100 +++++++--------------
 .../src/datasource/ChangeDatasourceModal.tsx       |  14 ++-
 .../src/datasource/DatasourceEditor.jsx            |  40 ++++++---
 .../src/datasource/DatasourceModal.tsx             |  21 +++--
 .../explore/components/ControlPanelsContainer.jsx  |  19 ++--
 .../src/explore/components/SaveModal.tsx           |  30 ++++---
 .../src/messageToasts/components/Toast.tsx         |  55 +++++++-----
 .../messageToasts/components/ToastPresenter.tsx    |   5 +-
 superset-frontend/stylesheets/antd/index.less      |   1 -
 31 files changed, 573 insertions(+), 301 deletions(-)
 create mode 100644 superset-frontend/src/components/Alert/Alert.stories.tsx
 create mode 100644 superset-frontend/src/components/Alert/Alert.test.tsx
 create mode 100644 superset-frontend/src/components/Alert/index.tsx