@databrainhq/plugin 0.8.21 → 0.8.23
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.
- package/dist/components/GlobalFilters/index.d.ts +2 -0
- package/dist/components/Icons/index.d.ts +1 -1
- package/dist/components/MetricChart/ChartImageDownloadButton.d.ts +2 -1
- package/dist/index.es.js +262 -224
- package/dist/index.umd.js +103 -103
- package/dist/style.css +1 -1
- package/dist/types/app.d.ts +1 -0
- package/package.json +1 -5
|
@@ -7,6 +7,8 @@ declare type GlobalFiltersProps = {
|
|
|
7
7
|
onApply: (filters: MetricCardProps['globalFilters']) => void;
|
|
8
8
|
renderAdditionalHeaderContent?: () => JSX.Element;
|
|
9
9
|
externalDashboardId: string;
|
|
10
|
+
appliedfilters: any;
|
|
11
|
+
setAppliedFilters: any;
|
|
10
12
|
};
|
|
11
13
|
export declare const GlobalFilters: React.FC<GlobalFiltersProps>;
|
|
12
14
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
declare type IconsProps = {
|
|
3
|
-
name: 'data-exploration-icon' | 'dashboard-icon' | 'external-dashboard-icon' | 'sql-query-icon' | 'table-tab-icon' | 'visualization-icon' | 'arrow-back-icon' | 'logout-icon' | 'more-icon' | 'save-icon' | 'copy-icon' | 'dataset-icon' | 'filter-icon' | 'settings-icon' | 'info-icon' | 'schema-icon' | 'fullscreen-icon' | 'table-icon' | 'time-taken-icon' | 'setup-icon' | 'data-model-icon' | 'integration-icon' | 'external-dashboard-icon' | 'csv-icon' | 'iframe-icon' | 'dashboard-icon' | 'plus-icon' | 'checked-icon' | 'clone-icon' | 'close-icon' | 'double-arrow-left-icon' | 'double-arrow-right-icon' | 'metric-store-icon' | 'reset-icon' | 'play-icon' | 'tick-icon' | 'text-icon' | 'time-icon' | 'unknown-icon' | 'array-icon' | 'date-icon' | 'boolean-icon' | 'id-icon' | 'number-icon' | 'object-icon';
|
|
3
|
+
name: 'data-exploration-icon' | 'dashboard-icon' | 'external-dashboard-icon' | 'sql-query-icon' | 'table-tab-icon' | 'visualization-icon' | 'arrow-back-icon' | 'logout-icon' | 'more-icon' | 'save-icon' | 'copy-icon' | 'dataset-icon' | 'filter-icon' | 'settings-icon' | 'info-icon' | 'schema-icon' | 'fullscreen-icon' | 'table-icon' | 'time-taken-icon' | 'setup-icon' | 'data-model-icon' | 'integration-icon' | 'external-dashboard-icon' | 'csv-icon' | 'iframe-icon' | 'dashboard-icon' | 'plus-icon' | 'checked-icon' | 'clone-icon' | 'close-icon' | 'double-arrow-left-icon' | 'double-arrow-right-icon' | 'metric-store-icon' | 'reset-icon' | 'play-icon' | 'tick-icon' | 'text-icon' | 'time-icon' | 'unknown-icon' | 'array-icon' | 'date-icon' | 'boolean-icon' | 'id-icon' | 'number-icon' | 'object-icon' | 'delete-icon';
|
|
4
4
|
className?: string;
|
|
5
5
|
};
|
|
6
6
|
export declare const Icons: React.FC<IconsProps>;
|
|
@@ -5,6 +5,7 @@ declare type DownloadButtonProps = {
|
|
|
5
5
|
iconClass?: string;
|
|
6
6
|
text?: string;
|
|
7
7
|
chartRef: React.RefObject<EChartsReact>;
|
|
8
|
+
id: string;
|
|
8
9
|
};
|
|
9
|
-
declare const ChartImageDownloadButton: ({ className, iconClass, text, chartRef, }: DownloadButtonProps) => JSX.Element;
|
|
10
|
+
declare const ChartImageDownloadButton: ({ className, iconClass, text, chartRef, id, }: DownloadButtonProps) => JSX.Element;
|
|
10
11
|
export default ChartImageDownloadButton;
|