@devtable/dashboard 7.9.0 → 7.10.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.
- package/dist/dashboard.es.js +1384 -1320
- package/dist/dashboard.umd.js +7 -7
- package/dist/plugins/viz-components/cartesian/option/y-axis.d.ts +2 -0
- package/dist/plugins/viz-components/cartesian/panel/x-axis/x-axis-label-formatter/index.d.ts +1 -1
- package/dist/plugins/viz-components/cartesian/type.d.ts +2 -0
- package/dist/plugins/viz-components/scatter-chart/editors/x-axis/x-axis-label-formatter/index.d.ts +1 -1
- package/dist/plugins/viz-components/scatter-chart/editors/y-axes/y-axis.d.ts +3 -2
- package/dist/plugins/viz-components/scatter-chart/option/y-axis.d.ts +2 -0
- package/package.json +1 -1
package/dist/plugins/viz-components/cartesian/panel/x-axis/x-axis-label-formatter/index.d.ts
CHANGED
|
@@ -6,5 +6,5 @@ interface IXAxisLabelFormatterField {
|
|
|
6
6
|
onChange: (v: IXAxisLabelFormatter) => void;
|
|
7
7
|
data: AnyObject[];
|
|
8
8
|
}
|
|
9
|
-
export declare const XAxisLabelFormatterField: (
|
|
9
|
+
export declare const XAxisLabelFormatterField: import("react").ForwardRefExoticComponent<IXAxisLabelFormatterField & import("react").RefAttributes<unknown>>;
|
|
10
10
|
export {};
|
package/dist/plugins/viz-components/scatter-chart/editors/x-axis/x-axis-label-formatter/index.d.ts
CHANGED
|
@@ -6,5 +6,5 @@ interface IXAxisLabelFormatterField {
|
|
|
6
6
|
onChange: (v: IXAxisLabelFormatter) => void;
|
|
7
7
|
data: AnyObject[];
|
|
8
8
|
}
|
|
9
|
-
export declare const XAxisLabelFormatterField: (
|
|
9
|
+
export declare const XAxisLabelFormatterField: import("react").ForwardRefExoticComponent<IXAxisLabelFormatterField & import("react").RefAttributes<unknown>>;
|
|
10
10
|
export {};
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { Control, UseFieldArrayRemove } from 'react-hook-form';
|
|
2
|
+
import { Control, UseFieldArrayRemove, UseFormWatch } from 'react-hook-form';
|
|
3
3
|
import { IScatterChartConf } from '../../type';
|
|
4
4
|
interface IYAxisField {
|
|
5
5
|
control: Control<IScatterChartConf, $TSFixMe>;
|
|
6
6
|
index: number;
|
|
7
7
|
remove: UseFieldArrayRemove;
|
|
8
|
+
watch: UseFormWatch<IScatterChartConf>;
|
|
8
9
|
}
|
|
9
|
-
export declare function YAxisField({ control, index, remove }: IYAxisField): JSX.Element;
|
|
10
|
+
export declare function YAxisField({ control, index, remove, watch }: IYAxisField): JSX.Element;
|
|
10
11
|
export {};
|