@devtable/dashboard 7.9.0 → 7.10.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,5 +1,7 @@
1
1
  import { ICartesianChartConf } from '../type';
2
2
  export declare function getYAxes(conf: ICartesianChartConf, labelFormatters: Record<string, (p: $TSFixMe) => string>): {
3
+ min: string | undefined;
4
+ max: string | undefined;
3
5
  position: "left" | "right";
4
6
  axisLabel: {
5
7
  show: boolean;
@@ -6,5 +6,5 @@ interface IXAxisLabelFormatterField {
6
6
  onChange: (v: IXAxisLabelFormatter) => void;
7
7
  data: AnyObject[];
8
8
  }
9
- export declare const XAxisLabelFormatterField: ({ value, onChange, data }: IXAxisLabelFormatterField) => JSX.Element;
9
+ export declare const XAxisLabelFormatterField: import("react").ForwardRefExoticComponent<IXAxisLabelFormatterField & import("react").RefAttributes<unknown>>;
10
10
  export {};
@@ -30,6 +30,8 @@ export interface IYAxisConf {
30
30
  nameAlignment: 'left' | 'center' | 'right';
31
31
  position: 'left' | 'right';
32
32
  label_formatter: TNumbroFormat;
33
+ min: string;
34
+ max: string;
33
35
  }
34
36
  export interface IRegressionTransform {
35
37
  type: 'ecStat:regression';
@@ -6,5 +6,5 @@ interface IXAxisLabelFormatterField {
6
6
  onChange: (v: IXAxisLabelFormatter) => void;
7
7
  data: AnyObject[];
8
8
  }
9
- export declare const XAxisLabelFormatterField: ({ value, onChange, data }: IXAxisLabelFormatterField) => JSX.Element;
9
+ export declare const XAxisLabelFormatterField: import("react").ForwardRefExoticComponent<IXAxisLabelFormatterField & import("react").RefAttributes<unknown>>;
10
10
  export {};
@@ -1,5 +1,7 @@
1
1
  import { IScatterChartConf } from '../type';
2
2
  export declare function getYAxes(conf: IScatterChartConf, labelFormatters: Record<string, (p: $TSFixMe) => string>): {
3
+ min: string | undefined;
4
+ max: string | undefined;
3
5
  position: "left" | "right";
4
6
  axisLabel: {
5
7
  show: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "7.9.0",
3
+ "version": "7.10.1",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",