@milaboratories/graph-maker 1.1.26 → 1.1.27
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/constant.d.ts +4 -2
- package/dist/GraphMaker/forms/LayersForm/Layer/heatmap/HeatmapClustered.vue.d.ts +2 -0
- package/dist/GraphMaker/store.d.ts +6 -3
- package/dist/GraphMaker/types.d.ts +1 -1
- package/dist/graph-maker.js +9513 -9504
- package/dist/graph-maker.umd.cjs +933 -933
- package/package.json +1 -1
- /package/dist/GraphMaker/forms/LayersForm/Layer/{Heatmap.vue.d.ts → heatmap/Heatmap.vue.d.ts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AxisTitleMode, DeepPartial, DiscreteLayer, DiscreteLayersTemplate, Frame, HeatmapFrame, LabelsPosition, LabelsRotation, Layer, LayersTemplate, Scale, ScatterplotLayer, ScatterplotLayersTemplate, TitlePosition } from './types.ts';
|
|
1
|
+
import { AxisTitleMode, DeepPartial, DiscreteLayer, DiscreteLayersTemplate, Frame, HeatmapFrame, HeatmapLayer, HeatmapLayerTemplate, LabelsPosition, LabelsRotation, Layer, LayersTemplate, Scale, ScatterplotLayer, ScatterplotLayersTemplate, TitlePosition } from './types.ts';
|
|
2
2
|
import { ChartType } from '@milaboratories/pf-plots';
|
|
3
3
|
import { Component } from 'vue';
|
|
4
4
|
import { DotShape, LineType } from './components/AesSettings/types.ts';
|
|
@@ -14,6 +14,7 @@ export declare const AXIS_NATURE_KEY = "pl7.app/axisNature";
|
|
|
14
14
|
export declare function getInitialTemplate(restoredTemplate: LayersTemplate | null, chartType: ChartType): LayersTemplate;
|
|
15
15
|
export declare const DISCRETE_TEMPLATES_MAP: Record<DiscreteLayersTemplate, DiscreteLayer[]>;
|
|
16
16
|
export declare const SCATTERPLOT_TEMPLATES_MAP: Record<ScatterplotLayersTemplate, ScatterplotLayer[]>;
|
|
17
|
+
export declare const HEATMAP_TEMPLATES_MAP: Record<HeatmapLayerTemplate, HeatmapLayer[]>;
|
|
17
18
|
export declare const LAYER_TITLES: Record<Layer, string>;
|
|
18
19
|
export type StatisticsState = {
|
|
19
20
|
overall: {
|
|
@@ -87,7 +88,8 @@ export type LayersSettings = {
|
|
|
87
88
|
showTable: boolean;
|
|
88
89
|
showLegend: boolean;
|
|
89
90
|
};
|
|
90
|
-
heatmap: {
|
|
91
|
+
heatmap: {};
|
|
92
|
+
heatmapClustered: {
|
|
91
93
|
dendrogramX: boolean;
|
|
92
94
|
dendrogramY: boolean;
|
|
93
95
|
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -36,7 +36,8 @@ export declare function createReactiveState(initialData: GraphMakerState, chartT
|
|
|
36
36
|
showTable: boolean;
|
|
37
37
|
showLegend: boolean;
|
|
38
38
|
};
|
|
39
|
-
heatmap: {
|
|
39
|
+
heatmap: {};
|
|
40
|
+
heatmapClustered: {
|
|
40
41
|
dendrogramX: boolean;
|
|
41
42
|
dendrogramY: boolean;
|
|
42
43
|
};
|
|
@@ -321,7 +322,8 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
|
|
|
321
322
|
showTable: boolean;
|
|
322
323
|
showLegend: boolean;
|
|
323
324
|
};
|
|
324
|
-
heatmap: {
|
|
325
|
+
heatmap: {};
|
|
326
|
+
heatmapClustered: {
|
|
325
327
|
dendrogramX: boolean;
|
|
326
328
|
dendrogramY: boolean;
|
|
327
329
|
};
|
|
@@ -633,7 +635,8 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
|
|
|
633
635
|
showTable: boolean;
|
|
634
636
|
showLegend: boolean;
|
|
635
637
|
};
|
|
636
|
-
heatmap: {
|
|
638
|
+
heatmap: {};
|
|
639
|
+
heatmapClustered: {
|
|
637
640
|
dendrogramX: boolean;
|
|
638
641
|
dendrogramY: boolean;
|
|
639
642
|
};
|
|
@@ -54,7 +54,7 @@ export type DiscreteLayer = 'box' | 'binnedDots' | 'jitteredDots' | 'violin' | '
|
|
|
54
54
|
export type DiscreteLayersTemplate = DiscreteLayer | 'box_binnedDots' | 'box_jitteredDots' | 'violin_binnedDots' | 'violin_jitteredDots' | 'line_jitteredDots' | 'line_binnedDots' | 'line_errorbar' | 'bar_line' | 'bar_errorbar';
|
|
55
55
|
export type ScatterplotLayer = 'dots' | 'curve';
|
|
56
56
|
export type ScatterplotLayersTemplate = ScatterplotLayer | 'curve_dots';
|
|
57
|
-
export type HeatmapLayer = 'heatmap';
|
|
57
|
+
export type HeatmapLayer = 'heatmap' | 'heatmapClustered';
|
|
58
58
|
export type HeatmapLayerTemplate = HeatmapLayer;
|
|
59
59
|
export type DendroLayer = 'dendro';
|
|
60
60
|
export type DendroLayerTemplate = DendroLayer;
|