This is an automated email from the ASF dual-hosted git repository.
justinpark pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
from 66519c3a852 chore(deps-dev): bump fetch-mock from 11.1.5 to 12.6.0 in
/superset-frontend/packages/superset-ui-core (#36662)
add 570cc3e5f8b feat(sqllab): treeview table selection ui (#37298)
No new revisions were added by this update.
Summary of changes:
superset-frontend/package-lock.json | 92 ++++++
superset-frontend/package.json | 1 +
.../src/components/Button/index.tsx | 2 +-
.../src/components/Icons/AntdEnhanced.tsx | 12 +
.../src/SqlLab/components/AppLayout/index.tsx | 6 +-
.../src/SqlLab/components/SaveQuery/index.tsx | 1 +
.../SqlLab/components/SqlEditor/SqlEditor.test.tsx | 9 +
.../SqlEditorLeftBar/SqlEditorLeftBar.test.tsx | 233 +++-----------
.../SqlLab/components/SqlEditorLeftBar/index.tsx | 259 +++++++++-------
.../SqlLab/components/SqlEditorTopBar/index.tsx | 14 +-
.../SqlEditorTopBar/useDatabaseSelector.ts | 4 +-
.../TableExploreTree/TableExploreTree.test.tsx | 241 +++++++++++++++
.../TableExploreTree/TreeNodeRenderer.tsx | 243 +++++++++++++++
.../SqlLab/components/TableExploreTree/index.tsx | 335 ++++++++++++++++++++
.../SqlLab/components/TableExploreTree}/types.ts | 24 +-
.../components/TableExploreTree/useTreeData.ts | 339 +++++++++++++++++++++
superset-frontend/src/SqlLab/constants.ts | 1 +
superset-frontend/src/SqlLab/contributions.ts | 1 +
.../DatabaseSelector/DatabaseSelector.test.tsx | 2 +-
.../src/components/DatabaseSelector/index.tsx | 206 +++++++++++--
.../src/components/DatabaseSelector/types.ts | 1 +
.../TableSelector/TableSelector.test.tsx | 41 ---
.../src/components/TableSelector/index.tsx | 7 +-
.../datasets/AddDataset/LeftPanel/index.tsx | 1 -
superset/sqllab/utils.py | 1 +
25 files changed, 1672 insertions(+), 404 deletions(-)
create mode 100644
superset-frontend/src/SqlLab/components/TableExploreTree/TableExploreTree.test.tsx
create mode 100644
superset-frontend/src/SqlLab/components/TableExploreTree/TreeNodeRenderer.tsx
create mode 100644
superset-frontend/src/SqlLab/components/TableExploreTree/index.tsx
copy superset-frontend/{packages/superset-ui-core/src/components/TableView =>
src/SqlLab/components/TableExploreTree}/types.ts (64%)
create mode 100644
superset-frontend/src/SqlLab/components/TableExploreTree/useTreeData.ts