@devtable/dashboard 14.60.0 → 14.60.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/plugins/editor-components/name-color-map-editor/name-color-map-editor.d.ts +4 -5
- package/dist/components/plugins/editor-components/name-color-map-editor/row-editor.d.ts +6 -7
- package/dist/components/plugins/editor-components/name-color-map-editor/select-palette.d.ts +6 -3
- package/dist/components/plugins/editor-components/viz-config-banner.d.ts +7 -0
- package/dist/components/plugins/viz-components/radar-chart/editors/dimensions/index.d.ts +1 -1
- package/dist/components/plugins/viz-components/radar-chart/editors/series-style-field.d.ts +1 -1
- package/dist/dashboard.es.js +6503 -6499
- package/dist/dashboard.umd.js +73 -73
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +3 -3
package/dist/components/plugins/editor-components/name-color-map-editor/name-color-map-editor.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Control } from 'react-hook-form';
|
|
2
2
|
type Props = {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
zIndex?: number;
|
|
3
|
+
control: Control<$TSFixMe>;
|
|
4
|
+
name: string;
|
|
6
5
|
names: string[];
|
|
7
6
|
};
|
|
8
|
-
export declare const NameColorMapEditor: import('./react').ForwardRefExoticComponent<Props & import('./react').RefAttributes<HTMLDivElement
|
|
7
|
+
export declare const NameColorMapEditor: import('./react').MemoExoticComponent<import('./react').ForwardRefExoticComponent<Props & import('./react').RefAttributes<HTMLDivElement>>>;
|
|
9
8
|
export {};
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { NameColorMapRow } from './types';
|
|
2
|
-
type RowFieldItem = {
|
|
3
|
-
id: string;
|
|
4
|
-
} & NameColorMapRow;
|
|
5
2
|
type NameColorMapRowProps = {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
field: NameColorMapRow & {
|
|
4
|
+
id: string;
|
|
5
|
+
};
|
|
6
|
+
update: (index: number, data: NameColorMapRow) => void;
|
|
7
|
+
remove: (index: number) => void;
|
|
9
8
|
index: number;
|
|
10
9
|
names: string[];
|
|
11
10
|
};
|
|
12
|
-
export declare const RowEditor: ({
|
|
11
|
+
export declare const RowEditor: import('./react').MemoExoticComponent<({ field, index, update, remove, names }: NameColorMapRowProps) => import('./react/jsx-runtime').JSX.Element>;
|
|
13
12
|
export {};
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
import { FieldValues, UseFieldArrayReplace } from 'react-hook-form';
|
|
1
2
|
import { NameColorMapRow } from './types';
|
|
2
3
|
type Props = {
|
|
3
|
-
|
|
4
|
-
|
|
4
|
+
fields: (NameColorMapRow & {
|
|
5
|
+
id: string;
|
|
6
|
+
})[];
|
|
7
|
+
replace: UseFieldArrayReplace<FieldValues, string>;
|
|
5
8
|
};
|
|
6
|
-
export declare const SelectPalette: ({
|
|
9
|
+
export declare const SelectPalette: ({ fields, replace }: Props) => import('./react/jsx-runtime').JSX.Element;
|
|
7
10
|
export {};
|
|
@@ -1,6 +1,13 @@
|
|
|
1
|
+
import React from './react';
|
|
2
|
+
import { Control } from 'react-hook-form';
|
|
1
3
|
type Props = {
|
|
2
4
|
canSubmit: boolean;
|
|
3
5
|
buttonRef?: React.RefObject<HTMLButtonElement>;
|
|
4
6
|
};
|
|
5
7
|
export declare function VizConfigBanner({ canSubmit, buttonRef }: Props): import('./react/jsx-runtime').JSX.Element;
|
|
8
|
+
type FormVizConfigBannerProps = {
|
|
9
|
+
control: Control<$TSFixMe>;
|
|
10
|
+
buttonRef?: React.RefObject<HTMLButtonElement>;
|
|
11
|
+
};
|
|
12
|
+
export declare const FormVizConfigBanner: React.MemoExoticComponent<({ control, buttonRef }: FormVizConfigBannerProps) => import('./react/jsx-runtime').JSX.Element>;
|
|
6
13
|
export {};
|
|
@@ -4,5 +4,5 @@ interface IDimensionsField {
|
|
|
4
4
|
control: Control<IRadarChartConf, $TSFixMe>;
|
|
5
5
|
watch: UseFormWatch<IRadarChartConf>;
|
|
6
6
|
}
|
|
7
|
-
export declare
|
|
7
|
+
export declare const DimensionsField: import('./react').NamedExoticComponent<IDimensionsField>;
|
|
8
8
|
export {};
|
|
@@ -4,5 +4,5 @@ type Props = {
|
|
|
4
4
|
control: Control<IRadarChartConf, $TSFixMe>;
|
|
5
5
|
path: 'main_series_style';
|
|
6
6
|
};
|
|
7
|
-
export declare
|
|
7
|
+
export declare const RadarSeriesStyleField: import('./react').NamedExoticComponent<Props>;
|
|
8
8
|
export {};
|