This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a change to branch feat/glyph-single-file
in repository https://gitbox.apache.org/repos/asf/superset.git
from cbe97e17e37 test(glyph): Playwright smoke test for Customize tab on
Pie chart
new f3e6a409484 chore(precommit): add full-tsc pre-push hook for frontend
new 5a331cf8182 feat(glyph): consolidate plugin-chart-point-cluster-map to
defineChart()
new ae1728e571c fix(glyph): pass merged render props directly, not via
.transformedProps
new 4cd4bb1a27d feat(glyph): consolidate legacy-plugin-chart-rose to
defineChart()
new c72e40496a1 fix(glyph): pass merged props directly in
table/pivot/word-cloud renders
new 522863d65c8 feat(glyph): consolidate plugin-chart-ag-grid-table to
defineChart()
The 6 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:
.pre-commit-config.yaml | 17 +
.../plugins/legacy-plugin-chart-rose/src/index.ts | 63 --
.../src/{controlPanel.tsx => index.tsx} | 243 ++++---
.../legacy-plugin-chart-rose/src/transformProps.ts | 43 --
.../plugin-chart-ag-grid-table/src/index.ts | 87 ---
.../src/index.tsx | 28 +-
.../plugins/plugin-chart-pivot-table/src/index.tsx | 2 +-
.../src/buildQuery.ts | 90 ---
.../src/controlPanel.ts | 396 -----------
.../plugin-chart-point-cluster-map/src/index.ts | 59 --
.../plugin-chart-point-cluster-map/src/index.tsx | 784 +++++++++++++++++++++
.../src/transformProps.ts | 292 --------
.../plugins/plugin-chart-table/src/index.tsx | 4 +-
.../plugins/plugin-chart-word-cloud/src/index.tsx | 4 +-
.../preset-chart-deckgl/src/Multi/index.tsx | 4 +-
.../preset-chart-deckgl/src/layers/Arc/index.tsx | 4 +-
.../src/layers/Contour/index.tsx | 4 +-
.../src/layers/Geojson/index.tsx | 4 +-
.../preset-chart-deckgl/src/layers/Grid/index.tsx | 7 +-
.../src/layers/Heatmap/index.tsx | 4 +-
.../preset-chart-deckgl/src/layers/Hex/index.tsx | 4 +-
.../preset-chart-deckgl/src/layers/Path/index.tsx | 4 +-
.../src/layers/Polygon/index.tsx | 4 +-
.../src/layers/Scatter/index.tsx | 7 +-
.../src/layers/Screengrid/index.tsx | 4 +-
25 files changed, 1005 insertions(+), 1157 deletions(-)
delete mode 100644
superset-frontend/plugins/legacy-plugin-chart-rose/src/index.ts
rename
superset-frontend/plugins/legacy-plugin-chart-rose/src/{controlPanel.tsx =>
index.tsx} (58%)
delete mode 100644
superset-frontend/plugins/legacy-plugin-chart-rose/src/transformProps.ts
delete mode 100644
superset-frontend/plugins/plugin-chart-ag-grid-table/src/index.ts
copy superset-frontend/plugins/{plugin-chart-table =>
plugin-chart-ag-grid-table}/src/index.tsx (84%)
delete mode 100644
superset-frontend/plugins/plugin-chart-point-cluster-map/src/buildQuery.ts
delete mode 100644
superset-frontend/plugins/plugin-chart-point-cluster-map/src/controlPanel.ts
delete mode 100644
superset-frontend/plugins/plugin-chart-point-cluster-map/src/index.ts
create mode 100644
superset-frontend/plugins/plugin-chart-point-cluster-map/src/index.tsx
delete mode 100644
superset-frontend/plugins/plugin-chart-point-cluster-map/src/transformProps.ts