@devtable/dashboard 13.41.0 → 13.41.2

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,7 +1,8 @@
1
- /// <reference types="react" />
2
1
  import { FilterMetaInstance } from '../../../model';
3
2
  interface IFilterEditorCheckbox {
4
3
  filter: FilterMetaInstance;
5
4
  }
6
- export declare const FilterEditorCheckbox: import('./react').FunctionComponent<IFilterEditorCheckbox>;
5
+ export declare const FilterEditorCheckbox: (({ filter }: IFilterEditorCheckbox) => import('./react/jsx-runtime').JSX.Element) & {
6
+ displayName: string;
7
+ };
7
8
  export {};
@@ -4,5 +4,7 @@ type Props = {
4
4
  control: Control<ICartesianChartConf, $TSFixMe>;
5
5
  watch: UseFormWatch<ICartesianChartConf>;
6
6
  };
7
- export declare function StatsField({ control, watch }: Props): import('./react/jsx-runtime').JSX.Element;
7
+ export declare const StatsField: (({ control, watch }: Props) => import('./react/jsx-runtime').JSX.Element) & {
8
+ displayName: string;
9
+ };
8
10
  export {};
@@ -1,2 +1,4 @@
1
1
  import { VizConfigProps } from '../../../../types/plugin';
2
- export declare function VizRichTextEditor({ context }: VizConfigProps): import('./react/jsx-runtime').JSX.Element;
2
+ export declare const VizRichTextEditor: (({ context }: VizConfigProps) => import('./react/jsx-runtime').JSX.Element) & {
3
+ displayName: string;
4
+ };
@@ -4,5 +4,7 @@ type Props = {
4
4
  control: Control<IScatterChartConf, $TSFixMe>;
5
5
  watch: UseFormWatch<IScatterChartConf>;
6
6
  };
7
- export declare function StatsField({ control, watch }: Props): import('./react/jsx-runtime').JSX.Element;
7
+ export declare const StatsField: (({ control, watch }: Props) => import('./react/jsx-runtime').JSX.Element) & {
8
+ displayName: string;
9
+ };
8
10
  export {};
@@ -1,4 +1,7 @@
1
1
  import { VizViewProps } from '../../../../types/plugin';
2
- export declare const VizStats: (({ context, instance }: VizViewProps) => import('./react/jsx-runtime').JSX.Element) & {
2
+ type RenderProps = VizViewProps;
3
+ export declare const Render: (({ context, instance }: RenderProps) => import('./react/jsx-runtime').JSX.Element) & {
3
4
  displayName: string;
4
5
  };
6
+ export declare const VizStats: (props: VizViewProps) => import('./react/jsx-runtime').JSX.Element | null;
7
+ export {};