@milaboratories/miplots4 1.0.82 → 1.0.84
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/index.d.ts +9 -1
- package/dist/index.js +10 -10
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -564,12 +564,15 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
564
564
|
showTicks?: boolean | undefined;
|
|
565
565
|
}>>;
|
|
566
566
|
yAxis: z.ZodOptional<z.ZodObject<{
|
|
567
|
+
scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
|
|
567
568
|
showGrid: z.ZodOptional<z.ZodBoolean>;
|
|
568
569
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
569
570
|
}, "strip", z.ZodTypeAny, {
|
|
571
|
+
scale?: "linear" | "log" | undefined;
|
|
570
572
|
showGrid?: boolean | undefined;
|
|
571
573
|
showTicks?: boolean | undefined;
|
|
572
574
|
}, {
|
|
575
|
+
scale?: "linear" | "log" | undefined;
|
|
573
576
|
showGrid?: boolean | undefined;
|
|
574
577
|
showTicks?: boolean | undefined;
|
|
575
578
|
}>>;
|
|
@@ -746,6 +749,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
746
749
|
showTicks?: boolean | undefined;
|
|
747
750
|
} | undefined;
|
|
748
751
|
yAxis?: {
|
|
752
|
+
scale?: "linear" | "log" | undefined;
|
|
749
753
|
showGrid?: boolean | undefined;
|
|
750
754
|
showTicks?: boolean | undefined;
|
|
751
755
|
} | undefined;
|
|
@@ -826,6 +830,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
826
830
|
showTicks?: boolean | undefined;
|
|
827
831
|
} | undefined;
|
|
828
832
|
yAxis?: {
|
|
833
|
+
scale?: "linear" | "log" | undefined;
|
|
829
834
|
showGrid?: boolean | undefined;
|
|
830
835
|
showTicks?: boolean | undefined;
|
|
831
836
|
} | undefined;
|
|
@@ -2804,6 +2809,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
2804
2809
|
} | undefined;
|
|
2805
2810
|
} | undefined;
|
|
2806
2811
|
}>, "many">;
|
|
2812
|
+
lassoMode: z.ZodOptional<z.ZodBoolean>;
|
|
2807
2813
|
}, "strip", z.ZodTypeAny, {
|
|
2808
2814
|
type: "scatterplot-umap";
|
|
2809
2815
|
title: {
|
|
@@ -2933,6 +2939,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
2933
2939
|
lineColor?: string | undefined;
|
|
2934
2940
|
fillColor?: string | undefined;
|
|
2935
2941
|
}>> | undefined;
|
|
2942
|
+
lassoMode?: boolean | undefined;
|
|
2936
2943
|
}, {
|
|
2937
2944
|
type: "scatterplot-umap";
|
|
2938
2945
|
title: {
|
|
@@ -3062,6 +3069,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
3062
3069
|
lineColor?: string | undefined;
|
|
3063
3070
|
fillColor?: string | undefined;
|
|
3064
3071
|
}>> | undefined;
|
|
3072
|
+
lassoMode?: boolean | undefined;
|
|
3065
3073
|
}>;
|
|
3066
3074
|
type ScatterplotUmapSettings = z.infer<typeof ScatterplotUmapSettingsSchema>;
|
|
3067
3075
|
|
|
@@ -7829,4 +7837,4 @@ declare class MiPlots implements ChartInterface {
|
|
|
7829
7837
|
export(): string;
|
|
7830
7838
|
}
|
|
7831
7839
|
|
|
7832
|
-
export { type BubbleSettings, type ChartInterface, type DendroSettings, type DiscreteSettings, type HeatmapSettings, type HistogramSettings, MiPlots, type ScatterplotSettings, type Settings };
|
|
7840
|
+
export { type BubbleSettings, type ChartInterface, type DendroSettings, type DiscreteSettings, type HeatmapSettings, type HistogramSettings, MiPlots, type ScatterplotSettings, type ScatterplotUmapSettings, type Settings };
|