@devtable/dashboard 4.15.0 → 4.16.1

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,2 +1,4 @@
1
1
  /// <reference types="react" />
2
- export declare function DescriptionPopover(): JSX.Element | null;
2
+ export declare const DescriptionPopover: (() => JSX.Element | null) & {
3
+ displayName: string;
4
+ };
@@ -1,2 +1,4 @@
1
1
  /// <reference types="react" />
2
- export declare function PreviewViz(): JSX.Element;
2
+ export declare const PreviewViz: (() => JSX.Element) & {
3
+ displayName: string;
4
+ };
@@ -1,2 +1,4 @@
1
1
  /// <reference types="react" />
2
- export declare function EditVizConf(): JSX.Element;
2
+ export declare const EditVizConf: (() => JSX.Element) & {
3
+ displayName: string;
4
+ };
@@ -17,6 +17,7 @@ export interface ICartesianChartSeriesItem {
17
17
  group_by_key: string;
18
18
  lineStyle: {
19
19
  type: 'solid' | 'dashed' | 'dotted';
20
+ width: number;
20
21
  };
21
22
  }
22
23
  export interface IYAxisConf {
@@ -39,6 +40,7 @@ export interface IRegressionLineConf {
39
40
  color: string;
40
41
  lineStyle: {
41
42
  type: 'solid' | 'dashed' | 'dotted';
43
+ width: number;
42
44
  };
43
45
  }
44
46
  export interface IRegressionConf {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "4.15.0",
3
+ "version": "4.16.1",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",