@databrainhq/plugin 0.12.15 → 0.12.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,8 @@
1
1
  import React from 'react';
2
- export declare const DrillBreadCrumb: ({ dimensions, drilledLevel, onResetLevel, }: {
2
+ export declare const DrillBreadCrumb: ({ dimensions, drilledLevel, onResetLevel, onDrillLevelClick, }: {
3
3
  dimensions: string[];
4
4
  drilledLevel: number;
5
5
  onResetLevel: () => void;
6
+ onDrillLevelClick: (value: number) => void;
6
7
  }) => React.JSX.Element;
7
8
  export default DrillBreadCrumb;
@@ -21,6 +21,7 @@ type UseMetricCardProps = {
21
21
  metricFilterOptions?: MetricFilterOptionsType;
22
22
  };
23
23
  export declare const useMetricCard: ({ metric, globalFilters, rlsFilters, clientId, chartSettings, setChartSettings, tenancyLevel, isInternalApp, appFilters, setCrossDashboardFilters, crossDashboardFilters, metricFilterOptions, }: UseMetricCardProps) => {
24
+ onDrillLevelClick: (index: number) => void;
24
25
  onDrillDown: (params: any) => void;
25
26
  handleChartClick: (params: any) => void;
26
27
  dataDb: Record<string, any>[];