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 a283138 feat: Support env vars configuration for WebSocket server
(#14398)
add 545e257 feat: Dynamic imports for the Icons component (#14318)
No new revisions were added by this update.
Summary of changes:
.../images/icons/{offline.svg => transparent.svg} | 4 +-
superset-frontend/jest.config.js | 2 +-
superset-frontend/spec/__mocks__/svgrMock.js | 20 --
.../__mocks__/svgrMock.tsx} | 16 +-
.../dashboard/components/FiltersBadge_spec.tsx | 5 +-
.../explore/components/DatasourceControl_spec.jsx | 5 +-
.../src/components/Alert/Alert.test.tsx | 32 ++-
superset-frontend/src/components/Alert/index.tsx | 13 +-
.../src/components/Icons/AntdEnhanced.tsx | 6 +-
superset-frontend/src/components/Icons/Icon.tsx | 54 ++--
superset-frontend/src/components/Icons/IconType.ts | 1 +
.../src/components/Icons/Icons.stories.tsx | 5 +
superset-frontend/src/components/Icons/index.ts | 284 ---------------------
superset-frontend/src/components/Icons/index.tsx | 166 ++++++++++++
.../components/LastUpdated/LastUpdated.test.tsx | 2 +-
.../src/components/Popover/Popover.test.tsx | 10 +-
.../src/components/Tooltip/Tooltip.test.tsx | 6 +-
.../components/WarningIconWithTooltip/index.tsx | 10 +-
.../dashboard/components/FiltersBadge/index.tsx | 3 +-
.../DatasourcePanel/DatasourcePanel.test.tsx | 6 +-
.../controls/DatasourceControl/index.jsx | 6 +-
.../CRUD/alert/components/AlertStatusIcon.tsx | 81 +++---
22 files changed, 312 insertions(+), 425 deletions(-)
copy superset-frontend/images/icons/{offline.svg => transparent.svg} (90%)
delete mode 100644 superset-frontend/spec/__mocks__/svgrMock.js
copy superset-frontend/{src/SqlLab/components/TabStatusIcon.tsx =>
spec/__mocks__/svgrMock.tsx} (75%)
delete mode 100644 superset-frontend/src/components/Icons/index.ts
create mode 100644 superset-frontend/src/components/Icons/index.tsx