This is an automated email from the ASF dual-hosted git repository.
enzomartellucci pushed a change to branch enxdev/refactor/antd5/create-wrappers
in repository https://gitbox.apache.org/repos/asf/superset.git
from 961b79c5bf refactor(Tree): add wrapper, tests, and story for Ant
Design 5 Tree component
new 1ce653b495 refactor(Grid): add wrapper, tests, and story for Antd5 Col
and Row components
new 87ef71f9da refactor(Layout): add wrapper, tests, and story for Ant
Design 5 Layout component
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../src/SqlLab/components/SaveQuery/index.tsx | 2 +-
.../components/ScheduleQueryButton/index.tsx | 2 +-
.../AutoComplete/AutoComplete.stories.tsx | 191 +++++++++++++++------
.../components/ErrorMessage/ErrorAlert.stories.tsx | 4 +-
.../src/components/Grid/Grid.stories.tsx | 149 ++++++++++++++++
.../src/components/Grid/Grid.test.tsx | 18 ++
superset-frontend/src/components/Grid/index.tsx | 11 ++
.../src/components/Layout/Layout.stories.tsx | 153 +++++++++++++++++
.../src/components/Layout/Layout.test.tsx | 94 ++++++++++
superset-frontend/src/components/Layout/index.tsx | 5 +
superset-frontend/src/components/index.ts | 11 +-
.../dashboard/components/PropertiesModal/index.tsx | 3 +-
.../explore/components/PropertiesModal/index.tsx | 3 +-
.../FormattingPopoverContent.tsx | 2 +-
.../ContourControl/ContourPopoverControl.tsx | 2 +-
.../DateFilterControl/components/CustomFrame.tsx | 2 +-
.../databases/DatabaseModal/SSHTunnelForm.tsx | 3 +-
.../features/databases/UploadDataModel/index.tsx | 10 +-
superset-frontend/src/features/home/Menu.tsx | 2 +-
superset-frontend/src/features/home/SubMenu.tsx | 2 +-
superset-frontend/src/views/App.tsx | 2 +-
21 files changed, 592 insertions(+), 79 deletions(-)
create mode 100644 superset-frontend/src/components/Grid/Grid.stories.tsx
create mode 100644 superset-frontend/src/components/Grid/Grid.test.tsx
create mode 100644 superset-frontend/src/components/Grid/index.tsx
create mode 100644 superset-frontend/src/components/Layout/Layout.stories.tsx
create mode 100644 superset-frontend/src/components/Layout/Layout.test.tsx
create mode 100644 superset-frontend/src/components/Layout/index.tsx