Skip to content

Commit

Permalink
feat: Experimental cross-filter plugins (#16594)
Browse files Browse the repository at this point in the history
* fix:fix get permission function

* feat: add cross filter chart in charts gallery under FF
  • Loading branch information
simcha90 authored Sep 6, 2021
1 parent e60b489 commit df5c0fb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
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

0 comments on commit df5c0fb

Please sign in to comment.