@devtable/dashboard 13.31.2 → 13.32.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/common-echarts-fields/stats-around-viz/index.d.ts +1 -0
- package/dist/components/plugins/common-echarts-fields/stats-around-viz/stats-around-viz.d.ts +8 -0
- package/dist/components/plugins/viz-components/cartesian/editors/stats/index.d.ts +3 -3
- package/dist/components/plugins/viz-components/cartesian/index.d.ts +1 -1
- package/dist/components/plugins/viz-components/cartesian/migrators/index.d.ts +2 -0
- package/dist/components/plugins/viz-components/cartesian/type.d.ts +2 -4
- package/dist/components/plugins/viz-components/cartesian/viz-cartesian-chart.d.ts +3 -1
- package/dist/components/plugins/viz-components/cartesian/viz-cartesian-editor.d.ts +1 -1
- package/dist/components/plugins/viz-components/scatter-chart/editors/stats/index.d.ts +3 -3
- package/dist/components/plugins/viz-components/scatter-chart/migrators/index.d.ts +5 -0
- package/dist/components/plugins/viz-components/scatter-chart/type.d.ts +2 -4
- package/dist/components/plugins/viz-components/scatter-chart/viz-scatter-chart-editor.d.ts +1 -1
- package/dist/components/widgets/rich-text-editor/readonly-rich-text-editor.d.ts +2 -1
- package/dist/dashboard.es.js +5961 -5983
- package/dist/dashboard.umd.js +78 -79
- package/dist/stats.html +1 -1
- package/dist/utils/template/render/render-jsx.d.ts +1 -4
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { ColorConfType, ITemplateVariable } from '../types';
|
|
1
|
+
import { ColorConfType } from '../types';
|
|
3
2
|
declare function getColorByColorConf(conf: ColorConfType, value: number | number[] | null | string): string;
|
|
4
3
|
export declare const getColorByVariableColorConf: typeof getColorByColorConf;
|
|
5
|
-
export declare function variable2Jsx(variable: ITemplateVariable, data: TPanelData): import('./react/jsx-runtime').JSX.Element;
|
|
6
|
-
export declare function templateToJSX(template: string, variables: ITemplateVariable[], data: TPanelData): (import('./react/jsx-runtime').JSX.Element | React.ReactNode[])[];
|
|
7
4
|
export {};
|
package/dist/version.json
CHANGED