@milaboratories/graph-maker 1.1.41 → 1.1.42
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 +6 -1
- package/dist/GraphMaker/store.d.ts +18 -3
- package/dist/graph-maker.js +19380 -19269
- package/dist/graph-maker.umd.cjs +930 -930
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -99,8 +99,13 @@ export type LayersSettings = {
|
|
|
99
99
|
showTable: boolean;
|
|
100
100
|
showLegend: boolean;
|
|
101
101
|
};
|
|
102
|
-
heatmap: {
|
|
102
|
+
heatmap: {
|
|
103
|
+
normalizationDirection: 'row' | 'column' | null;
|
|
104
|
+
normalizationMethod: 'standardScaling' | 'meanNormalization';
|
|
105
|
+
};
|
|
103
106
|
heatmapClustered: {
|
|
107
|
+
normalizationDirection: 'row' | 'column' | null;
|
|
108
|
+
normalizationMethod: 'standardScaling' | 'meanNormalization';
|
|
104
109
|
dendrogramX: boolean;
|
|
105
110
|
dendrogramY: boolean;
|
|
106
111
|
disableClusteringX: boolean;
|
|
@@ -36,8 +36,13 @@ export declare function createReactiveState(initialData: GraphMakerState, chartT
|
|
|
36
36
|
showTable: boolean;
|
|
37
37
|
showLegend: boolean;
|
|
38
38
|
};
|
|
39
|
-
heatmap: {
|
|
39
|
+
heatmap: {
|
|
40
|
+
normalizationDirection: "row" | "column" | null;
|
|
41
|
+
normalizationMethod: "standardScaling" | "meanNormalization";
|
|
42
|
+
};
|
|
40
43
|
heatmapClustered: {
|
|
44
|
+
normalizationDirection: "row" | "column" | null;
|
|
45
|
+
normalizationMethod: "standardScaling" | "meanNormalization";
|
|
41
46
|
dendrogramX: boolean;
|
|
42
47
|
dendrogramY: boolean;
|
|
43
48
|
disableClusteringX: boolean;
|
|
@@ -330,8 +335,13 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
|
|
|
330
335
|
showTable: boolean;
|
|
331
336
|
showLegend: boolean;
|
|
332
337
|
};
|
|
333
|
-
heatmap: {
|
|
338
|
+
heatmap: {
|
|
339
|
+
normalizationDirection: "row" | "column" | null;
|
|
340
|
+
normalizationMethod: "standardScaling" | "meanNormalization";
|
|
341
|
+
};
|
|
334
342
|
heatmapClustered: {
|
|
343
|
+
normalizationDirection: "row" | "column" | null;
|
|
344
|
+
normalizationMethod: "standardScaling" | "meanNormalization";
|
|
335
345
|
dendrogramX: boolean;
|
|
336
346
|
dendrogramY: boolean;
|
|
337
347
|
disableClusteringX: boolean;
|
|
@@ -652,8 +662,13 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
|
|
|
652
662
|
showTable: boolean;
|
|
653
663
|
showLegend: boolean;
|
|
654
664
|
};
|
|
655
|
-
heatmap: {
|
|
665
|
+
heatmap: {
|
|
666
|
+
normalizationDirection: "row" | "column" | null;
|
|
667
|
+
normalizationMethod: "standardScaling" | "meanNormalization";
|
|
668
|
+
};
|
|
656
669
|
heatmapClustered: {
|
|
670
|
+
normalizationDirection: "row" | "column" | null;
|
|
671
|
+
normalizationMethod: "standardScaling" | "meanNormalization";
|
|
657
672
|
dendrogramX: boolean;
|
|
658
673
|
dendrogramY: boolean;
|
|
659
674
|
disableClusteringX: boolean;
|