@devtable/dashboard 13.41.1 → 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.
- package/dist/components/filter/filter-checkbox/editor.d.ts +3 -2
- package/dist/components/plugins/viz-components/cartesian/editors/stats/index.d.ts +3 -1
- package/dist/components/plugins/viz-components/rich-text/viz-rich-text-editor.d.ts +3 -1
- package/dist/components/plugins/viz-components/scatter-chart/editors/stats/index.d.ts +3 -1
- package/dist/dashboard.es.js +983 -978
- package/dist/dashboard.umd.js +38 -38
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -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').
|
|
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
|
|
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
|
|
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
|
|
7
|
+
export declare const StatsField: (({ control, watch }: Props) => import('./react/jsx-runtime').JSX.Element) & {
|
|
8
|
+
displayName: string;
|
|
9
|
+
};
|
|
8
10
|
export {};
|