@milaboratories/miplots4 1.0.83 → 1.0.85
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 +44 -1
- package/dist/index.js +50 -50
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2809,6 +2809,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
2809
2809
|
} | undefined;
|
|
2810
2810
|
} | undefined;
|
|
2811
2811
|
}>, "many">;
|
|
2812
|
+
lassoMode: z.ZodOptional<z.ZodBoolean>;
|
|
2812
2813
|
}, "strip", z.ZodTypeAny, {
|
|
2813
2814
|
type: "scatterplot-umap";
|
|
2814
2815
|
title: {
|
|
@@ -2938,6 +2939,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
2938
2939
|
lineColor?: string | undefined;
|
|
2939
2940
|
fillColor?: string | undefined;
|
|
2940
2941
|
}>> | undefined;
|
|
2942
|
+
lassoMode?: boolean | undefined;
|
|
2941
2943
|
}, {
|
|
2942
2944
|
type: "scatterplot-umap";
|
|
2943
2945
|
title: {
|
|
@@ -3067,6 +3069,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
3067
3069
|
lineColor?: string | undefined;
|
|
3068
3070
|
fillColor?: string | undefined;
|
|
3069
3071
|
}>> | undefined;
|
|
3072
|
+
lassoMode?: boolean | undefined;
|
|
3070
3073
|
}>;
|
|
3071
3074
|
type ScatterplotUmapSettings = z.infer<typeof ScatterplotUmapSettingsSchema>;
|
|
3072
3075
|
|
|
@@ -3129,6 +3132,13 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3129
3132
|
}, {
|
|
3130
3133
|
show: boolean;
|
|
3131
3134
|
}>>;
|
|
3135
|
+
violin: z.ZodOptional<z.ZodObject<{
|
|
3136
|
+
show: z.ZodBoolean;
|
|
3137
|
+
}, "strip", z.ZodTypeAny, {
|
|
3138
|
+
show: boolean;
|
|
3139
|
+
}, {
|
|
3140
|
+
show: boolean;
|
|
3141
|
+
}>>;
|
|
3132
3142
|
boxOutliers: z.ZodOptional<z.ZodObject<{
|
|
3133
3143
|
show: z.ZodBoolean;
|
|
3134
3144
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3182,6 +3192,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3182
3192
|
box?: {
|
|
3183
3193
|
show: boolean;
|
|
3184
3194
|
} | undefined;
|
|
3195
|
+
violin?: {
|
|
3196
|
+
show: boolean;
|
|
3197
|
+
} | undefined;
|
|
3185
3198
|
dot?: {
|
|
3186
3199
|
show: boolean;
|
|
3187
3200
|
} | undefined;
|
|
@@ -3207,6 +3220,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3207
3220
|
box?: {
|
|
3208
3221
|
show: boolean;
|
|
3209
3222
|
} | undefined;
|
|
3223
|
+
violin?: {
|
|
3224
|
+
show: boolean;
|
|
3225
|
+
} | undefined;
|
|
3210
3226
|
dot?: {
|
|
3211
3227
|
show: boolean;
|
|
3212
3228
|
} | undefined;
|
|
@@ -3764,6 +3780,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3764
3780
|
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
3765
3781
|
lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
3766
3782
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
3783
|
+
showQuartiles: z.ZodOptional<z.ZodBoolean>;
|
|
3784
|
+
medianLineStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
3785
|
+
quartilesLineStyle: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
3767
3786
|
}, "strip", z.ZodTypeAny, {
|
|
3768
3787
|
lineWidth?: number | undefined;
|
|
3769
3788
|
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
@@ -3775,6 +3794,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3775
3794
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
3776
3795
|
} | undefined;
|
|
3777
3796
|
boxWidth?: number | undefined;
|
|
3797
|
+
showQuartiles?: boolean | undefined;
|
|
3798
|
+
medianLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3799
|
+
quartilesLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3778
3800
|
}, {
|
|
3779
3801
|
lineWidth?: number | undefined;
|
|
3780
3802
|
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
@@ -3786,6 +3808,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3786
3808
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
3787
3809
|
} | undefined;
|
|
3788
3810
|
boxWidth?: number | undefined;
|
|
3811
|
+
showQuartiles?: boolean | undefined;
|
|
3812
|
+
medianLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3813
|
+
quartilesLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3789
3814
|
}>>;
|
|
3790
3815
|
}, "strip", z.ZodTypeAny, {
|
|
3791
3816
|
type: "violin";
|
|
@@ -3800,6 +3825,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3800
3825
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
3801
3826
|
} | undefined;
|
|
3802
3827
|
boxWidth?: number | undefined;
|
|
3828
|
+
showQuartiles?: boolean | undefined;
|
|
3829
|
+
medianLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3830
|
+
quartilesLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3803
3831
|
} | undefined;
|
|
3804
3832
|
stat?: {
|
|
3805
3833
|
bandwidth?: number | undefined;
|
|
@@ -3818,6 +3846,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3818
3846
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
3819
3847
|
} | undefined;
|
|
3820
3848
|
boxWidth?: number | undefined;
|
|
3849
|
+
showQuartiles?: boolean | undefined;
|
|
3850
|
+
medianLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3851
|
+
quartilesLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3821
3852
|
} | undefined;
|
|
3822
3853
|
stat?: {
|
|
3823
3854
|
bandwidth?: number | undefined;
|
|
@@ -4701,6 +4732,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4701
4732
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
4702
4733
|
} | undefined;
|
|
4703
4734
|
boxWidth?: number | undefined;
|
|
4735
|
+
showQuartiles?: boolean | undefined;
|
|
4736
|
+
medianLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
4737
|
+
quartilesLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
4704
4738
|
} | undefined;
|
|
4705
4739
|
stat?: {
|
|
4706
4740
|
bandwidth?: number | undefined;
|
|
@@ -4886,6 +4920,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4886
4920
|
box?: {
|
|
4887
4921
|
show: boolean;
|
|
4888
4922
|
} | undefined;
|
|
4923
|
+
violin?: {
|
|
4924
|
+
show: boolean;
|
|
4925
|
+
} | undefined;
|
|
4889
4926
|
dot?: {
|
|
4890
4927
|
show: boolean;
|
|
4891
4928
|
} | undefined;
|
|
@@ -5060,6 +5097,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
5060
5097
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
5061
5098
|
} | undefined;
|
|
5062
5099
|
boxWidth?: number | undefined;
|
|
5100
|
+
showQuartiles?: boolean | undefined;
|
|
5101
|
+
medianLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
5102
|
+
quartilesLineStyle?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
5063
5103
|
} | undefined;
|
|
5064
5104
|
stat?: {
|
|
5065
5105
|
bandwidth?: number | undefined;
|
|
@@ -5245,6 +5285,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
5245
5285
|
box?: {
|
|
5246
5286
|
show: boolean;
|
|
5247
5287
|
} | undefined;
|
|
5288
|
+
violin?: {
|
|
5289
|
+
show: boolean;
|
|
5290
|
+
} | undefined;
|
|
5248
5291
|
dot?: {
|
|
5249
5292
|
show: boolean;
|
|
5250
5293
|
} | undefined;
|
|
@@ -7834,4 +7877,4 @@ declare class MiPlots implements ChartInterface {
|
|
|
7834
7877
|
export(): string;
|
|
7835
7878
|
}
|
|
7836
7879
|
|
|
7837
|
-
export { type BubbleSettings, type ChartInterface, type DendroSettings, type DiscreteSettings, type HeatmapSettings, type HistogramSettings, MiPlots, type ScatterplotSettings, type Settings };
|
|
7880
|
+
export { type BubbleSettings, type ChartInterface, type DendroSettings, type DiscreteSettings, type HeatmapSettings, type HistogramSettings, MiPlots, type ScatterplotSettings, type ScatterplotUmapSettings, type Settings };
|