@devtable/dashboard 4.3.0 → 4.4.0

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.
@@ -0,0 +1,2 @@
1
+ import { VizComponent } from '../../../types/plugin';
2
+ export declare const ParetoChartVizComponent: VizComponent;
@@ -0,0 +1,16 @@
1
+ export interface IParetoChartConf {
2
+ x_axis: {
3
+ name: string;
4
+ data_key: string;
5
+ };
6
+ data_key: string;
7
+ bar: {
8
+ name: string;
9
+ color: string;
10
+ };
11
+ line: {
12
+ name: string;
13
+ color: string;
14
+ };
15
+ }
16
+ export declare const DEFAULT_CONFIG: IParetoChartConf;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { VizConfigProps } from '~/types/plugin';
3
+ export declare function VizParetoChartPanel({ context }: VizConfigProps): JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { VizViewProps } from '../../../types/plugin';
3
+ export declare function VizParetoChart({ context }: VizViewProps): JSX.Element | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "4.3.0",
3
+ "version": "4.4.0",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",