@milaboratories/graph-maker 1.1.60 → 1.1.62
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/index.vue.d.ts +2 -2
- package/dist/GraphMaker/store.d.ts +2 -2
- package/dist/graph-maker.js +521 -519
- package/dist/graph-maker.umd.cjs +69 -69
- package/package.json +2 -2
|
@@ -261,7 +261,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
261
261
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
262
262
|
};
|
|
263
263
|
readonlyInputs: {
|
|
264
|
-
type: import('vue').PropType<
|
|
264
|
+
type: import('vue').PropType<("x" | "y" | "filters" | "tabBy" | "facetBy" | "tooltipContent" | "valueSize" | "valueColor")[]>;
|
|
265
265
|
};
|
|
266
266
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
267
267
|
"tooltip-btn-click": (...args: any[]) => void;
|
|
@@ -524,7 +524,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
524
524
|
type: import('vue').PropType<(spec: import('@milaboratories/pf-plots').PColumnSpec) => boolean>;
|
|
525
525
|
};
|
|
526
526
|
readonlyInputs: {
|
|
527
|
-
type: import('vue').PropType<
|
|
527
|
+
type: import('vue').PropType<("x" | "y" | "filters" | "tabBy" | "facetBy" | "tooltipContent" | "valueSize" | "valueColor")[]>;
|
|
528
528
|
};
|
|
529
529
|
}>> & Readonly<{
|
|
530
530
|
"onTooltip-btn-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -665,7 +665,7 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
|
|
|
665
665
|
inputGuide: Ref<InputGuide<InputState>, InputGuide<InputState>>;
|
|
666
666
|
chartData: Ref<PlotDataAndSettings | null, PlotDataAndSettings | null>;
|
|
667
667
|
uniqueValuesData: Ref<Record<string, UniqueValuesData>, Record<string, UniqueValuesData>>;
|
|
668
|
-
readonlyInputs: ("label" | "height" | "size" | "x" | "y" | "value" | "lineColor" | "primaryGrouping" | "secondaryGrouping" | "grouping" | "filters" | "tabBy" | "facetBy" | "shape" | "tooltipContent" | "xGroupBy" | "yGroupBy" | "annotationsX" | "annotationsY" | "labels" | "tableContent" | "nodeColor" | "nodeShape" | "nodeSize" | "heatmapForSequence" | "heatmapAnnotation" | "heatmapAxis" | "heatmapGroup")[] | undefined;
|
|
668
|
+
readonlyInputs: ("label" | "height" | "size" | "x" | "y" | "value" | "lineColor" | "primaryGrouping" | "secondaryGrouping" | "grouping" | "filters" | "tabBy" | "facetBy" | "shape" | "tooltipContent" | "xGroupBy" | "yGroupBy" | "annotationsX" | "annotationsY" | "labels" | "tableContent" | "nodeColor" | "nodeShape" | "nodeSize" | "heatmapForSequence" | "heatmapAnnotation" | "heatmapAxis" | "heatmapGroup" | "valueSize" | "valueColor")[] | undefined;
|
|
669
669
|
};
|
|
670
670
|
export type Store = ComputedRef<ReturnType<typeof factoryStore>>;
|
|
671
671
|
export declare function provideStore(initialState: GraphMakerState, dataStoreRef: Ref<DemoDataStore | null>, chartType: ChartType, defaultOptions: GraphMakerProps['defaultOptions'], fixedOptionsRef: Ref<GraphMakerProps['fixedOptions']>, dataColumnPredicate?: (spec: PColumnSpec) => boolean, readonlyInputs?: InputNamesByChartType[ChartType][]): ComputedRef<{
|
|
@@ -1012,6 +1012,6 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
|
|
|
1012
1012
|
inputGuide: Ref<InputGuide<InputState>, InputGuide<InputState>>;
|
|
1013
1013
|
chartData: Ref<PlotDataAndSettings | null, PlotDataAndSettings | null>;
|
|
1014
1014
|
uniqueValuesData: Ref<Record<string, UniqueValuesData>, Record<string, UniqueValuesData>>;
|
|
1015
|
-
readonlyInputs: ("label" | "height" | "size" | "x" | "y" | "value" | "lineColor" | "primaryGrouping" | "secondaryGrouping" | "grouping" | "filters" | "tabBy" | "facetBy" | "shape" | "tooltipContent" | "xGroupBy" | "yGroupBy" | "annotationsX" | "annotationsY" | "labels" | "tableContent" | "nodeColor" | "nodeShape" | "nodeSize" | "heatmapForSequence" | "heatmapAnnotation" | "heatmapAxis" | "heatmapGroup")[] | undefined;
|
|
1015
|
+
readonlyInputs: ("label" | "height" | "size" | "x" | "y" | "value" | "lineColor" | "primaryGrouping" | "secondaryGrouping" | "grouping" | "filters" | "tabBy" | "facetBy" | "shape" | "tooltipContent" | "xGroupBy" | "yGroupBy" | "annotationsX" | "annotationsY" | "labels" | "tableContent" | "nodeColor" | "nodeShape" | "nodeSize" | "heatmapForSequence" | "heatmapAnnotation" | "heatmapAxis" | "heatmapGroup" | "valueSize" | "valueColor")[] | undefined;
|
|
1016
1016
|
}>;
|
|
1017
1017
|
export declare function useStore(): Store;
|