@devtable/dashboard 14.51.0 → 14.52.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/components/plugins/hooks/index.d.ts +1 -0
- package/dist/components/plugins/hooks/use-handle-chart-render-finished.d.ts +5 -0
- package/dist/components/plugins/viz-components/cartesian/editors/stats/index.d.ts +2 -3
- package/dist/components/plugins/viz-components/horizontal-bar-chart/editors/stats/index.d.ts +9 -0
- package/dist/components/plugins/viz-components/horizontal-bar-chart/type.d.ts +4 -0
- package/dist/components/plugins/viz-components/horizontal-bar-chart/viz-horizontal-bar-chart.d.ts +1 -1
- package/dist/dashboard.es.js +4019 -3958
- package/dist/dashboard.umd.js +65 -65
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { Control
|
|
1
|
+
import { Control } from 'react-hook-form';
|
|
2
2
|
import { ICartesianChartConf } from '../../type';
|
|
3
3
|
type Props = {
|
|
4
4
|
control: Control<ICartesianChartConf, $TSFixMe>;
|
|
5
|
-
watch: UseFormWatch<ICartesianChartConf>;
|
|
6
5
|
};
|
|
7
|
-
export declare const StatsField: (({ control
|
|
6
|
+
export declare const StatsField: (({ control }: Props) => import('./react/jsx-runtime').JSX.Element) & {
|
|
8
7
|
displayName: string;
|
|
9
8
|
};
|
|
10
9
|
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Control } from 'react-hook-form';
|
|
2
|
+
import { IHorizontalBarChartConf } from '../../type';
|
|
3
|
+
type Props = {
|
|
4
|
+
control: Control<IHorizontalBarChartConf, $TSFixMe>;
|
|
5
|
+
};
|
|
6
|
+
export declare const StatsField: (({ control }: Props) => import('./react/jsx-runtime').JSX.Element) & {
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
9
|
+
export {};
|
package/dist/components/plugins/viz-components/horizontal-bar-chart/viz-horizontal-bar-chart.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { VizViewProps } from '../../../../types/plugin';
|
|
2
|
-
export declare function VizHorizontalBarChart({ context, instance }: VizViewProps): import('./react/jsx-runtime').JSX.Element
|
|
2
|
+
export declare function VizHorizontalBarChart({ context, instance }: VizViewProps): import('./react/jsx-runtime').JSX.Element;
|