This is an automated email from the ASF dual-hosted git repository.
michaelsmolina pushed a change to branch 3.0
in repository https://gitbox.apache.org/repos/asf/superset.git
from 37ad33bf5b fix: Reactivates native filters E2E tests (#26362)
new f467310cea fix(dashboard): Chart menu disable is fixed on
chart-fullscreen in issue #25992 (#26410)
new 3589f7ece4 fix(dashboard): narrow empty drop area (#26313)
new 26b26e46e4 fix(chart): Resolve incorrect column customization when
switching metrics in table chart (#26393)
new 333b18db5a fix: In chart gallery thumbnail is rendered in case of no
example in #16707 (#26415)
new 52109e5f24 fix(plugin-chart-echarts): support forced categorical
x-axis (#26404)
new 2a30d59b05 fix(translations): Clear all (#26424)
new 439979c73a fix(post-processing): handle missing values in cumulative
operator (#26429)
The 7 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:
.../superset-ui-chart-controls/src/constants.ts | 11 +-
.../superset-ui-chart-controls/src/fixtures.ts | 12 +-
.../src/sections/echartsTimeSeriesQuery.tsx | 2 +
.../src/shared-controls/customControls.tsx | 54 +++++--
.../superset-ui-chart-controls/src/types.ts | 6 +-
.../src/utils/checkColumnType.ts} | 50 +++---
.../src/utils/columnChoices.ts | 8 +-
.../superset-ui-chart-controls/src/utils/index.ts | 1 +
.../test/utils/checkColumnType.test.ts} | 49 ++----
.../test/utils/columnChoices.test.tsx | 16 +-
.../test/utils/getTemporalColumns.test.ts | 9 +-
.../superset-ui-core/src/query/types/Query.ts | 11 ++
.../src/MixedTimeseries/transformProps.ts | 3 +-
.../src/MixedTimeseries/types.ts | 1 +
.../src/Timeseries/constants.ts | 1 +
.../src/Timeseries/transformProps.ts | 3 +-
.../plugin-chart-echarts/src/Timeseries/types.ts | 1 +
.../plugins/plugin-chart-echarts/src/controls.tsx | 11 ++
.../plugin-chart-echarts/src/utils/series.ts | 10 +-
.../plugin-chart-echarts/test/utils/series.test.ts | 26 ++-
superset-frontend/src/SqlLab/fixtures.ts | 6 +
.../src/components/Dropdown/index.tsx | 8 +-
.../ReportModal/HeaderReportDropdown/index.tsx | 7 +
.../DashboardBuilder/DashboardBuilder.tsx | 70 +-------
.../DashboardBuilder/DashboardWrapper.test.tsx | 75 +++++++++
.../DashboardBuilder/DashboardWrapper.tsx | 128 +++++++++++++++
.../src/dashboard/components/DashboardGrid.jsx | 19 ++-
.../components/SliceHeaderControls/index.tsx | 7 +
.../src/dashboard/components/dnd/DragDroppable.jsx | 11 +-
.../dashboard/components/gridComponents/Tab.jsx | 8 +-
.../src/explore/actions/exploreActions.test.js | 180 +++++++++++++++++++++
.../controls/VizTypeControl/VizTypeGallery.tsx | 12 +-
.../src/explore/reducers/exploreReducer.js | 5 +
superset/result_set.py | 16 +-
superset/translations/zh/LC_MESSAGES/messages.po | 6 +-
superset/utils/pandas_postprocessing/cum.py | 1 +
tests/integration_tests/result_set_tests.py | 92 +++++++++--
tests/unit_tests/fixtures/dataframes.py | 5 +
tests/unit_tests/pandas_postprocessing/test_cum.py | 14 ++
39 files changed, 761 insertions(+), 194 deletions(-)
copy
superset-frontend/{plugins/plugin-chart-handlebars/src/plugin/controls/groupBy.tsx
=> packages/superset-ui-chart-controls/src/utils/checkColumnType.ts} (52%)
copy superset-frontend/{src/utils/findPermission.test.ts =>
packages/superset-ui-chart-controls/test/utils/checkColumnType.test.ts} (50%)
create mode 100644
superset-frontend/src/dashboard/components/DashboardBuilder/DashboardWrapper.test.tsx
create mode 100644
superset-frontend/src/dashboard/components/DashboardBuilder/DashboardWrapper.tsx