@devtable/dashboard 6.12.0 → 6.13.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,7 @@
1
+ /// <reference types="react" />
2
+ import { ITriggerConfigProps, ITriggerSchema } from '~/types/plugin';
3
+ export declare const ClickBoxplotSeries: ITriggerSchema;
4
+ export interface IClickEchartSeriesConfig {
5
+ foo: '';
6
+ }
7
+ export declare function ClickEchartSeriesSettings(props: ITriggerConfigProps): JSX.Element;
@@ -0,0 +1 @@
1
+ export { ClickBoxplotSeries } from './click-boxplot';
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
2
  import { VizViewProps } from '~/types/plugin';
3
- export declare function VizBoxplotChart({ context }: VizViewProps): JSX.Element | null;
3
+ export declare function VizBoxplotChart({ context, instance }: VizViewProps): JSX.Element | null;
@@ -0,0 +1 @@
1
+ export { ClickEchartSeries } from './click-echart';
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { ITriggerConfigProps, ITriggerSchema } from '~/types/plugin';
3
+ export declare const ClickParetoSeries: ITriggerSchema;
4
+ export interface IClickEchartSeriesConfig {
5
+ foo: '';
6
+ }
7
+ export declare function ClickEchartSeriesSettings(props: ITriggerConfigProps): JSX.Element;
@@ -0,0 +1 @@
1
+ export { ClickParetoSeries } from './click-pareto';
@@ -1,3 +1,3 @@
1
1
  /// <reference types="react" />
2
2
  import { VizViewProps } from '../../../types/plugin';
3
- export declare function VizParetoChart({ context }: VizViewProps): JSX.Element | null;
3
+ export declare function VizParetoChart({ context, instance }: VizViewProps): JSX.Element | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "6.12.0",
3
+ "version": "6.13.0",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",