@milaboratories/graph-maker 1.0.27 → 1.0.28
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/store.d.ts +5 -0
- package/dist/graph-maker.js +11017 -10989
- package/dist/graph-maker.umd.cjs +932 -932
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -2,6 +2,7 @@ import { Ref, ComputedRef, Reactive } from 'vue';
|
|
|
2
2
|
import { GraphMakerSettings, ReactiveState } from './types.ts';
|
|
3
3
|
import { DemoDataStore, InputGuide, InputState, PlotDataAndSettings, DendroStateController } from '@milaboratories/pf-plots';
|
|
4
4
|
import { AesType } from './constant.ts';
|
|
5
|
+
import { AxisSpec, PColumnSpec } from '@platforma-sdk/model';
|
|
5
6
|
|
|
6
7
|
export declare function createReactiveState(initialData: GraphMakerSettings): {
|
|
7
8
|
chartType: import('@milaboratories/pf-plots').ChartType;
|
|
@@ -554,9 +555,11 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
|
|
|
554
555
|
usedAesInMapping: ComputedRef<Record<string, Record<AesType, boolean>>>;
|
|
555
556
|
dendroTableData: Ref<Record<string, {
|
|
556
557
|
label: string;
|
|
558
|
+
spec: PColumnSpec | AxisSpec;
|
|
557
559
|
data: import('@milaboratories/pf-plots').PValue[];
|
|
558
560
|
}> | null, Record<string, {
|
|
559
561
|
label: string;
|
|
562
|
+
spec: PColumnSpec | AxisSpec;
|
|
560
563
|
data: import('@milaboratories/pf-plots').PValue[];
|
|
561
564
|
}> | null>;
|
|
562
565
|
};
|
|
@@ -848,9 +851,11 @@ export declare function provideStore(settings: GraphMakerSettings, dataStoreRef:
|
|
|
848
851
|
usedAesInMapping: ComputedRef<Record<string, Record<AesType, boolean>>>;
|
|
849
852
|
dendroTableData: Ref<Record<string, {
|
|
850
853
|
label: string;
|
|
854
|
+
spec: PColumnSpec | AxisSpec;
|
|
851
855
|
data: import('@milaboratories/pf-plots').PValue[];
|
|
852
856
|
}> | null, Record<string, {
|
|
853
857
|
label: string;
|
|
858
|
+
spec: PColumnSpec | AxisSpec;
|
|
854
859
|
data: import('@milaboratories/pf-plots').PValue[];
|
|
855
860
|
}> | null>;
|
|
856
861
|
};
|