@milaboratories/graph-maker 1.1.129 → 1.1.131
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/GraphMaker/components/DragAndDrop/DnDBasketChip.vue.d.ts +12 -4
- package/dist/GraphMaker/components/DragAndDrop/DnDRangeChip.vue.d.ts +12 -4
- package/dist/GraphMaker/components/DragAndDrop/DndDoubleChip.vue.d.ts +12 -4
- package/dist/GraphMaker/components/DragAndDrop/types.d.ts +4 -2
- package/dist/GraphMaker/dataBindAes.d.ts +14 -9
- package/dist/GraphMaker/index.vue.d.ts +10 -10
- package/dist/GraphMaker/store.d.ts +5 -5
- package/dist/GraphMaker/utils/loadUniqueValuesToSave.d.ts +2 -1
- package/dist/graph-maker.js +21684 -21600
- package/dist/graph-maker.umd.cjs +973 -973
- package/package.json +2 -2
|
@@ -15,11 +15,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
15
15
|
type: import('vue').PropType<boolean>;
|
|
16
16
|
};
|
|
17
17
|
searchModel: {
|
|
18
|
-
type: import('vue').PropType<(
|
|
18
|
+
type: import('vue').PropType<(sourceId: string, selectedValue: string) => Promise<ListOption<string>>>;
|
|
19
19
|
required: true;
|
|
20
20
|
};
|
|
21
21
|
searchOptions: {
|
|
22
|
-
type: import('vue').PropType<(
|
|
22
|
+
type: import('vue').PropType<(sourceId: string, searchStr: string) => Promise<ListOption<string>[]>>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
loadOptions: {
|
|
26
|
+
type: import('vue').PropType<(sourceId: string) => Promise<ListOption<string>[] | null>>;
|
|
23
27
|
required: true;
|
|
24
28
|
};
|
|
25
29
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -39,11 +43,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
39
43
|
type: import('vue').PropType<boolean>;
|
|
40
44
|
};
|
|
41
45
|
searchModel: {
|
|
42
|
-
type: import('vue').PropType<(
|
|
46
|
+
type: import('vue').PropType<(sourceId: string, selectedValue: string) => Promise<ListOption<string>>>;
|
|
43
47
|
required: true;
|
|
44
48
|
};
|
|
45
49
|
searchOptions: {
|
|
46
|
-
type: import('vue').PropType<(
|
|
50
|
+
type: import('vue').PropType<(sourceId: string, searchStr: string) => Promise<ListOption<string>[]>>;
|
|
51
|
+
required: true;
|
|
52
|
+
};
|
|
53
|
+
loadOptions: {
|
|
54
|
+
type: import('vue').PropType<(sourceId: string) => Promise<ListOption<string>[] | null>>;
|
|
47
55
|
required: true;
|
|
48
56
|
};
|
|
49
57
|
}>> & Readonly<{
|
|
@@ -19,11 +19,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
19
19
|
required: true;
|
|
20
20
|
};
|
|
21
21
|
searchModel: {
|
|
22
|
-
type: import('vue').PropType<(
|
|
22
|
+
type: import('vue').PropType<(sourceId: string, selectedValue: string) => Promise<ListOption<string>>>;
|
|
23
23
|
required: true;
|
|
24
24
|
};
|
|
25
25
|
searchOptions: {
|
|
26
|
-
type: import('vue').PropType<(
|
|
26
|
+
type: import('vue').PropType<(sourceId: string, searchStr: string) => Promise<ListOption<string>[]>>;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
loadOptions: {
|
|
30
|
+
type: import('vue').PropType<(sourceId: string) => Promise<ListOption<string>[] | null>>;
|
|
27
31
|
required: true;
|
|
28
32
|
};
|
|
29
33
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
@@ -47,11 +51,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
47
51
|
required: true;
|
|
48
52
|
};
|
|
49
53
|
searchModel: {
|
|
50
|
-
type: import('vue').PropType<(
|
|
54
|
+
type: import('vue').PropType<(sourceId: string, selectedValue: string) => Promise<ListOption<string>>>;
|
|
51
55
|
required: true;
|
|
52
56
|
};
|
|
53
57
|
searchOptions: {
|
|
54
|
-
type: import('vue').PropType<(
|
|
58
|
+
type: import('vue').PropType<(sourceId: string, searchStr: string) => Promise<ListOption<string>[]>>;
|
|
59
|
+
required: true;
|
|
60
|
+
};
|
|
61
|
+
loadOptions: {
|
|
62
|
+
type: import('vue').PropType<(sourceId: string) => Promise<ListOption<string>[] | null>>;
|
|
55
63
|
required: true;
|
|
56
64
|
};
|
|
57
65
|
}>> & Readonly<{
|
|
@@ -16,11 +16,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
16
16
|
required: true;
|
|
17
17
|
};
|
|
18
18
|
searchModel: {
|
|
19
|
-
type: import('vue').PropType<(
|
|
19
|
+
type: import('vue').PropType<(sourceId: string, selectedValue: string) => Promise<ListOption<string>>>;
|
|
20
20
|
required: true;
|
|
21
21
|
};
|
|
22
22
|
searchOptions: {
|
|
23
|
-
type: import('vue').PropType<(
|
|
23
|
+
type: import('vue').PropType<(sourceId: string, searchStr: string) => Promise<ListOption<string>[]>>;
|
|
24
|
+
required: true;
|
|
25
|
+
};
|
|
26
|
+
loadOptions: {
|
|
27
|
+
type: import('vue').PropType<(sourceId: string) => Promise<ListOption<string>[] | null>>;
|
|
24
28
|
required: true;
|
|
25
29
|
};
|
|
26
30
|
sortable: {
|
|
@@ -45,11 +49,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
45
49
|
required: true;
|
|
46
50
|
};
|
|
47
51
|
searchModel: {
|
|
48
|
-
type: import('vue').PropType<(
|
|
52
|
+
type: import('vue').PropType<(sourceId: string, selectedValue: string) => Promise<ListOption<string>>>;
|
|
49
53
|
required: true;
|
|
50
54
|
};
|
|
51
55
|
searchOptions: {
|
|
52
|
-
type: import('vue').PropType<(
|
|
56
|
+
type: import('vue').PropType<(sourceId: string, searchStr: string) => Promise<ListOption<string>[]>>;
|
|
57
|
+
required: true;
|
|
58
|
+
};
|
|
59
|
+
loadOptions: {
|
|
60
|
+
type: import('vue').PropType<(sourceId: string) => Promise<ListOption<string>[] | null>>;
|
|
53
61
|
required: true;
|
|
54
62
|
};
|
|
55
63
|
sortable: {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
2
|
import { ValueType } from '@platforma-sdk/model';
|
|
3
3
|
import { PValue } from '@milaboratories/pf-plots';
|
|
4
|
-
import { UniqueValuesBySourceMap } from '../../types.ts';
|
|
5
4
|
|
|
6
5
|
export type ChipInfo = {
|
|
7
6
|
id: string;
|
|
@@ -28,7 +27,6 @@ export type DndBasketProps<T = any> = {
|
|
|
28
27
|
disabled: boolean;
|
|
29
28
|
readonly?: boolean;
|
|
30
29
|
consistency: Record<string, boolean>;
|
|
31
|
-
labelsInfo: UniqueValuesBySourceMap;
|
|
32
30
|
droppedIds: string[];
|
|
33
31
|
availableIds: Set<string>;
|
|
34
32
|
selectedFilters?: Record<string, string | undefined>;
|
|
@@ -45,6 +43,10 @@ export type DndBasketProps<T = any> = {
|
|
|
45
43
|
value: string;
|
|
46
44
|
label: string;
|
|
47
45
|
}[]>;
|
|
46
|
+
loadOptionsFn: (sourceId: string) => Promise<{
|
|
47
|
+
value: string;
|
|
48
|
+
label: string;
|
|
49
|
+
}[] | null>;
|
|
48
50
|
};
|
|
49
51
|
export type DropItemEvent<T = any> = {
|
|
50
52
|
draggedId: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ContinuousPalette, DotShape, LineType, Palette } from './components/AesSettings/types.ts';
|
|
2
2
|
import { AesType, ContinuousDataMappingSize, NumberRange } from './constantsCommon.ts';
|
|
3
3
|
import { UniqueValuesBySourceMap } from './types.ts';
|
|
4
|
+
import { InputState } from '@milaboratories/pf-plots';
|
|
4
5
|
|
|
5
6
|
export type AestheticMappingState = Record<string, AestheticMapping>;
|
|
6
7
|
export type AestheticMapping = AestheticMappingContinuous | AestheticMappingCategorical;
|
|
@@ -23,7 +24,7 @@ export interface AestheticMappingCategorical {
|
|
|
23
24
|
type: 'categorical';
|
|
24
25
|
palette: Palette;
|
|
25
26
|
naAes: AestheticValues;
|
|
26
|
-
order:
|
|
27
|
+
order: string[];
|
|
27
28
|
mapping: AestheticMappingRecord;
|
|
28
29
|
}
|
|
29
30
|
export declare function isAestheticMappingCategorical(v: unknown | AestheticMappingCategorical): v is AestheticMappingCategorical;
|
|
@@ -50,25 +51,29 @@ export declare const DEFAULT_NA_AES: {
|
|
|
50
51
|
lineShape: LineType;
|
|
51
52
|
dotShape: DotShape;
|
|
52
53
|
};
|
|
53
|
-
export declare function
|
|
54
|
-
export declare function
|
|
54
|
+
export declare function createCategoricalMappingFromPalette(palette: Palette, values: string[]): AestheticMappingCategorical;
|
|
55
|
+
export declare function updateDataBindAes(optionsState: InputState, dataBindAes: Record<string, AestheticMapping>, uniqueValuesMap: UniqueValuesBySourceMap): void;
|
|
56
|
+
export declare function updateCategoricalMapping(newUniqueValues: string[], currentMapping: AestheticMappingCategorical): AestheticMappingCategorical;
|
|
55
57
|
export declare function createContinuousMappingFromPalette(palette: ContinuousPalette): AestheticMappingContinuous;
|
|
56
|
-
export declare function createDefaultMapping(values:
|
|
58
|
+
export declare function createDefaultMapping(values: string[]): AestheticMappingCategorical;
|
|
57
59
|
export declare function createDefaultContinuousMapping(columnId: string): ContinuousDataMappingSize;
|
|
58
|
-
export declare function getChartSettingsInheritedAes(uniqueValuesData: UniqueValuesBySourceMap,
|
|
60
|
+
export declare function getChartSettingsInheritedAes(uniqueValuesData: UniqueValuesBySourceMap, savedMapping: AestheticMapping | undefined, sourceId: string | null, usedAesInMapping: Record<AesType, boolean>): {
|
|
59
61
|
inheritedAes: {};
|
|
60
62
|
order?: undefined;
|
|
61
63
|
} | {
|
|
62
|
-
order:
|
|
64
|
+
order: string[];
|
|
63
65
|
inheritedAes: Record<string, any>;
|
|
64
66
|
};
|
|
65
67
|
export declare function getScatterplotAes(selectedSource: string, uniqueValuesData: UniqueValuesBySourceMap, dataBindAes: AestheticMappingState): Record<string, any>;
|
|
66
68
|
export declare function getHistogramAes(selectedSource: string, uniqueValuesData: UniqueValuesBySourceMap, dataBindAes: AestheticMappingState): {
|
|
67
|
-
order?: undefined;
|
|
68
69
|
inheritedAes?: undefined;
|
|
70
|
+
order?: undefined;
|
|
71
|
+
} | {
|
|
72
|
+
inheritedAes: {};
|
|
73
|
+
order?: undefined;
|
|
69
74
|
} | {
|
|
70
|
-
order:
|
|
75
|
+
order: string[];
|
|
71
76
|
inheritedAes: Record<string, any>;
|
|
72
77
|
};
|
|
73
|
-
export declare function getDendroAes(
|
|
78
|
+
export declare function getDendroAes(selectedSource: string, uniqueValuesData: UniqueValuesBySourceMap, dataBindAes: AestheticMappingState, field: keyof AestheticValues): Record<string, AestheticValues[keyof AestheticValues]>;
|
|
74
79
|
export {};
|
|
@@ -46,7 +46,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
46
46
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
47
47
|
};
|
|
48
48
|
readonlyInputs: {
|
|
49
|
-
type: import('vue').PropType<("
|
|
49
|
+
type: import('vue').PropType<("primaryGrouping" | "secondaryGrouping" | "y" | "filters" | "tabBy" | "facetBy")[]>;
|
|
50
50
|
};
|
|
51
51
|
} | {
|
|
52
52
|
modelValue: {
|
|
@@ -87,7 +87,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
87
87
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
88
88
|
};
|
|
89
89
|
readonlyInputs: {
|
|
90
|
-
type: import('vue').PropType<("label" | "
|
|
90
|
+
type: import('vue').PropType<("label" | "grouping" | "shape" | "size" | "x" | "y" | "filters" | "tabBy" | "facetBy" | "highlight" | "tooltipContent")[]>;
|
|
91
91
|
};
|
|
92
92
|
} | {
|
|
93
93
|
modelValue: {
|
|
@@ -128,7 +128,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
128
128
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
129
129
|
};
|
|
130
130
|
readonlyInputs: {
|
|
131
|
-
type: import('vue').PropType<("label" | "
|
|
131
|
+
type: import('vue').PropType<("label" | "grouping" | "size" | "x" | "y" | "filters" | "tabBy" | "facetBy" | "highlight" | "tooltipContent")[]>;
|
|
132
132
|
};
|
|
133
133
|
} | {
|
|
134
134
|
modelValue: {
|
|
@@ -210,7 +210,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
210
210
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
211
211
|
};
|
|
212
212
|
readonlyInputs: {
|
|
213
|
-
type: import('vue').PropType<("height" | "
|
|
213
|
+
type: import('vue').PropType<("height" | "nodeColor" | "nodeShape" | "lineColor" | "heatmapAnnotation" | "value" | "filters" | "tabBy" | "facetBy" | "labels" | "tableContent" | "nodeSize" | "heatmapForSequence" | "heatmapAxis" | "heatmapGroup")[]>;
|
|
214
214
|
};
|
|
215
215
|
} | {
|
|
216
216
|
modelValue: {
|
|
@@ -251,7 +251,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
251
251
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
252
252
|
};
|
|
253
253
|
readonlyInputs: {
|
|
254
|
-
type: import('vue').PropType<("
|
|
254
|
+
type: import('vue').PropType<("grouping" | "value" | "filters" | "tabBy" | "facetBy")[]>;
|
|
255
255
|
};
|
|
256
256
|
} | {
|
|
257
257
|
modelValue: {
|
|
@@ -347,7 +347,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
347
347
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
348
348
|
};
|
|
349
349
|
readonlyInputs: {
|
|
350
|
-
type: import('vue').PropType<("
|
|
350
|
+
type: import('vue').PropType<("primaryGrouping" | "secondaryGrouping" | "y" | "filters" | "tabBy" | "facetBy")[]>;
|
|
351
351
|
};
|
|
352
352
|
} | {
|
|
353
353
|
modelValue: {
|
|
@@ -388,7 +388,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
388
388
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
389
389
|
};
|
|
390
390
|
readonlyInputs: {
|
|
391
|
-
type: import('vue').PropType<("label" | "
|
|
391
|
+
type: import('vue').PropType<("label" | "grouping" | "shape" | "size" | "x" | "y" | "filters" | "tabBy" | "facetBy" | "highlight" | "tooltipContent")[]>;
|
|
392
392
|
};
|
|
393
393
|
} | {
|
|
394
394
|
modelValue: {
|
|
@@ -429,7 +429,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
429
429
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
430
430
|
};
|
|
431
431
|
readonlyInputs: {
|
|
432
|
-
type: import('vue').PropType<("label" | "
|
|
432
|
+
type: import('vue').PropType<("label" | "grouping" | "size" | "x" | "y" | "filters" | "tabBy" | "facetBy" | "highlight" | "tooltipContent")[]>;
|
|
433
433
|
};
|
|
434
434
|
} | {
|
|
435
435
|
modelValue: {
|
|
@@ -511,7 +511,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
511
511
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
512
512
|
};
|
|
513
513
|
readonlyInputs: {
|
|
514
|
-
type: import('vue').PropType<("height" | "
|
|
514
|
+
type: import('vue').PropType<("height" | "nodeColor" | "nodeShape" | "lineColor" | "heatmapAnnotation" | "value" | "filters" | "tabBy" | "facetBy" | "labels" | "tableContent" | "nodeSize" | "heatmapForSequence" | "heatmapAxis" | "heatmapGroup")[]>;
|
|
515
515
|
};
|
|
516
516
|
} | {
|
|
517
517
|
modelValue: {
|
|
@@ -552,7 +552,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
552
552
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
553
553
|
};
|
|
554
554
|
readonlyInputs: {
|
|
555
|
-
type: import('vue').PropType<("
|
|
555
|
+
type: import('vue').PropType<("grouping" | "value" | "filters" | "tabBy" | "facetBy")[]>;
|
|
556
556
|
};
|
|
557
557
|
} | {
|
|
558
558
|
modelValue: {
|
|
@@ -326,7 +326,7 @@ export declare function createReactiveState(initialData: GraphMakerState, chartT
|
|
|
326
326
|
showLegend: boolean;
|
|
327
327
|
};
|
|
328
328
|
};
|
|
329
|
-
dataBindAes: import('./dataBindAes').AestheticMappingState;
|
|
329
|
+
dataBindAes: import('./dataBindAes.ts').AestheticMappingState;
|
|
330
330
|
chartScale: number;
|
|
331
331
|
lassoMode: boolean;
|
|
332
332
|
currentTab: import('./forms').FormKey | null;
|
|
@@ -661,7 +661,7 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
|
|
|
661
661
|
showLegend: boolean;
|
|
662
662
|
};
|
|
663
663
|
};
|
|
664
|
-
dataBindAes: import('./dataBindAes').AestheticMappingState;
|
|
664
|
+
dataBindAes: import('./dataBindAes.ts').AestheticMappingState;
|
|
665
665
|
chartScale: number;
|
|
666
666
|
lassoMode: boolean;
|
|
667
667
|
currentTab: import('./forms').FormKey | null;
|
|
@@ -702,7 +702,7 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
|
|
|
702
702
|
chartData: Ref<PlotDataAndSettings | null, PlotDataAndSettings | null>;
|
|
703
703
|
uniqueValuesData: Ref<UniqueValuesBySourceMap, UniqueValuesBySourceMap>;
|
|
704
704
|
filterLabelsInfo: Ref<Record<string, ListOption>, Record<string, ListOption>>;
|
|
705
|
-
readonlyInputs: ("label" | "height" | "
|
|
705
|
+
readonlyInputs: ("label" | "height" | "primaryGrouping" | "secondaryGrouping" | "grouping" | "shape" | "nodeColor" | "nodeShape" | "lineColor" | "heatmapAnnotation" | "size" | "x" | "y" | "value" | "filters" | "tabBy" | "facetBy" | "highlight" | "tooltipContent" | "xGroupBy" | "yGroupBy" | "annotationsX" | "annotationsY" | "labels" | "tableContent" | "nodeSize" | "heatmapForSequence" | "heatmapAxis" | "heatmapGroup" | "valueSize" | "valueColor")[] | undefined;
|
|
706
706
|
};
|
|
707
707
|
export type Store = ComputedRef<ReturnType<typeof factoryStore>>;
|
|
708
708
|
export declare function provideStore(initialState: GraphMakerState, dataStoreRef: Ref<DemoDataStore | null>, chartType: ChartType, defaultOptionsRef: Ref<GraphMakerProps['defaultOptions']>, fixedOptionsRef: Ref<GraphMakerProps['fixedOptions']>, dataColumnPredicate?: (spec: PColumnSpec) => boolean, readonlyInputs?: InputNamesByChartType[ChartType][]): ComputedRef<{
|
|
@@ -1027,7 +1027,7 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
|
|
|
1027
1027
|
showLegend: boolean;
|
|
1028
1028
|
};
|
|
1029
1029
|
};
|
|
1030
|
-
dataBindAes: import('./dataBindAes').AestheticMappingState;
|
|
1030
|
+
dataBindAes: import('./dataBindAes.ts').AestheticMappingState;
|
|
1031
1031
|
chartScale: number;
|
|
1032
1032
|
lassoMode: boolean;
|
|
1033
1033
|
currentTab: import('./forms').FormKey | null;
|
|
@@ -1068,6 +1068,6 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
|
|
|
1068
1068
|
chartData: Ref<PlotDataAndSettings | null, PlotDataAndSettings | null>;
|
|
1069
1069
|
uniqueValuesData: Ref<UniqueValuesBySourceMap, UniqueValuesBySourceMap>;
|
|
1070
1070
|
filterLabelsInfo: Ref<Record<string, ListOption>, Record<string, ListOption>>;
|
|
1071
|
-
readonlyInputs: ("label" | "height" | "
|
|
1071
|
+
readonlyInputs: ("label" | "height" | "primaryGrouping" | "secondaryGrouping" | "grouping" | "shape" | "nodeColor" | "nodeShape" | "lineColor" | "heatmapAnnotation" | "size" | "x" | "y" | "value" | "filters" | "tabBy" | "facetBy" | "highlight" | "tooltipContent" | "xGroupBy" | "yGroupBy" | "annotationsX" | "annotationsY" | "labels" | "tableContent" | "nodeSize" | "heatmapForSequence" | "heatmapAxis" | "heatmapGroup" | "valueSize" | "valueColor")[] | undefined;
|
|
1072
1072
|
}>;
|
|
1073
1073
|
export declare function useStore(): Store;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { UniqueValuesBySourceMap } from '../types.ts';
|
|
2
|
-
import { Controller, DemoDataStore, InputGuide, InputState } from '@milaboratories/pf-plots';
|
|
2
|
+
import { Controller, DemoDataStore, InputGuide, InputState, PlotDataAndSettings } from '@milaboratories/pf-plots';
|
|
3
3
|
import { ListOption } from '@platforma-sdk/ui-vue';
|
|
4
4
|
|
|
5
|
+
export declare function getUniqueValuesFromReadyChartData(chartData: PlotDataAndSettings, inputGuide: InputGuide<InputState>, controller: Controller<InputState>, dataStore: DemoDataStore, previousUniqueValues: UniqueValuesBySourceMap): Promise<UniqueValuesBySourceMap>;
|
|
5
6
|
export declare function loadUniqueValuesToSave(optionsState: InputState['components'], inputGuide: InputGuide<InputState>, controller: Controller<InputState>, dataStore: DemoDataStore, previousUniqueValues: UniqueValuesBySourceMap): Promise<UniqueValuesBySourceMap>;
|
|
6
7
|
export declare function loadFilterLabelsForTitle(optionsState: InputState['components'], inputGuide: InputGuide<InputState>, controller: Controller<InputState>, dataStore: DemoDataStore): Promise<Record<string, ListOption>>;
|