@milaboratories/graph-maker 1.1.84 → 1.1.86
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/constantsCommon.d.ts +4 -0
- package/dist/GraphMaker/store.d.ts +9 -0
- package/dist/GraphMaker/utils/createChartSettingsForRender/composeDiscreteSettings.d.ts +6 -0
- package/dist/GraphMaker/utils/createChartSettingsForRender/composeScatterplotUmapSettings.d.ts +24 -2
- package/dist/graph-maker.js +22947 -22856
- package/dist/graph-maker.umd.cjs +1000 -1000
- package/package.json +2 -2
|
@@ -17,6 +17,7 @@ export declare const SUBSET_FILTER_KEY = "pl7.app/isSubset";
|
|
|
17
17
|
export declare function getInitialTemplate(restoredTemplate: LayersTemplate | null, chartType: ChartType): LayersTemplate;
|
|
18
18
|
export declare const DISCRETE_TEMPLATES_MAP: Record<DiscreteLayersTemplate, DiscreteLayer[]>;
|
|
19
19
|
export declare const SCATTERPLOT_TEMPLATES_MAP: Record<ScatterplotLayersTemplate, ScatterplotLayer[]>;
|
|
20
|
+
export declare const SCATTERPLOT_UMAP_TEMPLATES_MAP: Partial<Record<ScatterplotLayersTemplate, ScatterplotLayer[]>>;
|
|
20
21
|
export declare const HEATMAP_TEMPLATES_MAP: Record<HeatmapLayerTemplate, HeatmapLayer[]>;
|
|
21
22
|
export declare const HISTOGRAM_TEMPLATES_MAP: Record<HistogramLayerTemplate, HistogramLayer[]>;
|
|
22
23
|
export declare const LAYER_TITLES: Record<Layer, string>;
|
|
@@ -175,6 +176,9 @@ export type LayersSettings = {
|
|
|
175
176
|
lineType: LineTypeAes;
|
|
176
177
|
opacity: number;
|
|
177
178
|
trim: boolean;
|
|
179
|
+
showQuartiles: boolean;
|
|
180
|
+
quartilesLineStyle: LineType;
|
|
181
|
+
medianLineStyle: LineType;
|
|
178
182
|
};
|
|
179
183
|
bar: {
|
|
180
184
|
fillColor: ColorAes | null;
|
|
@@ -160,6 +160,9 @@ export declare function createReactiveState(initialData: GraphMakerState, chartT
|
|
|
160
160
|
};
|
|
161
161
|
opacity: number;
|
|
162
162
|
trim: boolean;
|
|
163
|
+
showQuartiles: boolean;
|
|
164
|
+
quartilesLineStyle: import('./components/AesSettings/types').LineType;
|
|
165
|
+
medianLineStyle: import('./components/AesSettings/types').LineType;
|
|
163
166
|
};
|
|
164
167
|
bar: {
|
|
165
168
|
fillColor: string | {
|
|
@@ -486,6 +489,9 @@ export declare function factoryStore(reactiveState: Reactive<ReactiveState>, dat
|
|
|
486
489
|
};
|
|
487
490
|
opacity: number;
|
|
488
491
|
trim: boolean;
|
|
492
|
+
showQuartiles: boolean;
|
|
493
|
+
quartilesLineStyle: import('./components/AesSettings/types').LineType;
|
|
494
|
+
medianLineStyle: import('./components/AesSettings/types').LineType;
|
|
489
495
|
};
|
|
490
496
|
bar: {
|
|
491
497
|
fillColor: string | {
|
|
@@ -842,6 +848,9 @@ export declare function provideStore(initialState: GraphMakerState, dataStoreRef
|
|
|
842
848
|
};
|
|
843
849
|
opacity: number;
|
|
844
850
|
trim: boolean;
|
|
851
|
+
showQuartiles: boolean;
|
|
852
|
+
quartilesLineStyle: import('./components/AesSettings/types').LineType;
|
|
853
|
+
medianLineStyle: import('./components/AesSettings/types').LineType;
|
|
845
854
|
};
|
|
846
855
|
bar: {
|
|
847
856
|
fillColor: string | {
|
|
@@ -58,6 +58,9 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
|
|
|
58
58
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
59
59
|
} | undefined;
|
|
60
60
|
boxWidth?: number | undefined;
|
|
61
|
+
showQuartiles?: boolean | undefined;
|
|
62
|
+
medianLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
63
|
+
quartilesLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
61
64
|
} | undefined;
|
|
62
65
|
stat?: {
|
|
63
66
|
bandwidth?: number | undefined;
|
|
@@ -243,6 +246,9 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
|
|
|
243
246
|
box?: {
|
|
244
247
|
show: boolean;
|
|
245
248
|
} | undefined;
|
|
249
|
+
violin?: {
|
|
250
|
+
show: boolean;
|
|
251
|
+
} | undefined;
|
|
246
252
|
dot?: {
|
|
247
253
|
show: boolean;
|
|
248
254
|
} | undefined;
|
package/dist/GraphMaker/utils/createChartSettingsForRender/composeScatterplotUmapSettings.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export declare function composeScatterplotUmapSettings(settings: ScatterplotUmap
|
|
|
27
27
|
label?: string | undefined;
|
|
28
28
|
valueLabels?: string | undefined;
|
|
29
29
|
};
|
|
30
|
-
layers: {
|
|
30
|
+
layers: ({
|
|
31
31
|
type: "dots";
|
|
32
32
|
aes?: {
|
|
33
33
|
dotFill?: string | {
|
|
@@ -53,7 +53,29 @@ export declare function composeScatterplotUmapSettings(settings: ScatterplotUmap
|
|
|
53
53
|
value: string;
|
|
54
54
|
} | undefined;
|
|
55
55
|
} | undefined;
|
|
56
|
-
}
|
|
56
|
+
} | {
|
|
57
|
+
type: "curve";
|
|
58
|
+
aes?: {
|
|
59
|
+
lineWidth?: number | undefined;
|
|
60
|
+
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
61
|
+
lineColor?: string | {
|
|
62
|
+
columnName: {
|
|
63
|
+
type: "column";
|
|
64
|
+
value: string;
|
|
65
|
+
label?: string | undefined;
|
|
66
|
+
valueLabels?: string | undefined;
|
|
67
|
+
};
|
|
68
|
+
domain: number[];
|
|
69
|
+
range: string[];
|
|
70
|
+
type?: "linear" | "log" | undefined;
|
|
71
|
+
} | {
|
|
72
|
+
type: "grouping";
|
|
73
|
+
value: string;
|
|
74
|
+
} | undefined;
|
|
75
|
+
opacity?: number | undefined;
|
|
76
|
+
} | undefined;
|
|
77
|
+
smoothing?: boolean | undefined;
|
|
78
|
+
})[];
|
|
57
79
|
label?: {
|
|
58
80
|
type: "column";
|
|
59
81
|
value: string;
|