Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Experimental cross-filter plugins #16594

Merged
merged 19 commits into from
Sep 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
6eb04b1
fix:fix get permission function
simcha90 Apr 13, 2021
5e9a1d8
Merge branch 'master' of github.com:apache/superset
simcha90 Apr 18, 2021
2c5800a
Merge branch 'master' of github.com:apache/superset
simcha90 Apr 20, 2021
ea9aa8b
Merge branch 'master' of github.com:apache/superset
simcha90 Apr 25, 2021
402918a
Merge branch 'master' of github.com:apache/superset
simcha90 Apr 27, 2021
1a3cc39
Merge branch 'master' of github.com:apache/superset
simcha90 Apr 28, 2021
f6d4590
Merge branch 'master' of github.com:apache/superset
simcha90 May 10, 2021
97f2c15
Merge branch 'master' of github.com:apache/superset
simcha90 May 24, 2021
1f31df7
Merge branch 'master' of github.com:apache/superset
simcha90 May 24, 2021
dce7b7a
Merge branch 'master' of github.com:apache/superset
simcha90 May 26, 2021
0334f35
Merge branch 'master' of github.com:apache/superset
simcha90 May 30, 2021
f6dd314
Merge branch 'master' of github.com:apache/superset
simcha90 Jun 17, 2021
64267e1
Merge branch 'master' of github.com:apache/superset
simcha90 Jun 20, 2021
385eddc
Merge branch 'master' of github.com:apache/superset
simcha90 Jun 24, 2021
51a00a3
Merge branch 'master' of github.com:apache/superset
simcha90 Jul 1, 2021
4e94cb5
Merge branch 'master' of github.com:apache/superset
simcha90 Jul 4, 2021
e7fa0a6
Merge branch 'master' of github.com:apache/superset
simcha90 Jul 7, 2021
c3d24d7
Merge branch 'master' of github.com:apache/superset
simcha90 Aug 31, 2021
dd94926
feat: add cross filter chart in charts gallery under FF
simcha90 Sep 5, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions superset-frontend/src/filters/components/GroupBy/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export default class FilterGroupByPlugin extends ChartPlugin {
name: t('Group By'),
description: t('Group By filter plugin'),
behaviors: [Behavior.INTERACTIVE_CHART, Behavior.NATIVE_FILTER],
tags: [t('Experimental')],
thumbnail,
});

Expand Down
1 change: 1 addition & 0 deletions superset-frontend/src/filters/components/Range/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export default class RangeFilterPlugin extends ChartPlugin {
name: t('Range filter'),
description: t('Range filter plugin using AntD'),
behaviors: [Behavior.INTERACTIVE_CHART, Behavior.NATIVE_FILTER],
tags: [t('Experimental')],
thumbnail,
});

Expand Down
1 change: 1 addition & 0 deletions superset-frontend/src/filters/components/Select/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export default class FilterSelectPlugin extends ChartPlugin {
description: t('Select filter plugin using AntD'),
behaviors: [Behavior.INTERACTIVE_CHART, Behavior.NATIVE_FILTER],
enableNoResults: false,
tags: [t('Experimental')],
thumbnail,
});

Expand Down
1 change: 1 addition & 0 deletions superset-frontend/src/filters/components/Time/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export default class TimeFilterPlugin extends ChartPlugin {
description: t('Custom time filter plugin'),
behaviors: [Behavior.INTERACTIVE_CHART, Behavior.NATIVE_FILTER],
thumbnail,
tags: [t('Experimental')],
datasourceCount: 0,
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export default class FilterTimeColumnPlugin extends ChartPlugin {
name: t('Time column'),
description: t('Time column filter plugin'),
behaviors: [Behavior.INTERACTIVE_CHART, Behavior.NATIVE_FILTER],
tags: [t('Experimental')],
thumbnail,
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export default class FilterTimeGrainPlugin extends ChartPlugin {
name: t('Time grain'),
description: t('Time grain filter plugin'),
behaviors: [Behavior.INTERACTIVE_CHART, Behavior.NATIVE_FILTER],
tags: [t('Experimental')],
thumbnail,
});

Expand Down