@milaboratories/miplots4 1.0.84 → 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 +40 -0
- package/dist/index.js +50 -50
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3132,6 +3132,13 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3132
3132
|
}, {
|
|
3133
3133
|
show: boolean;
|
|
3134
3134
|
}>>;
|
|
3135
|
+
violin: z.ZodOptional<z.ZodObject<{
|
|
3136
|
+
show: z.ZodBoolean;
|
|
3137
|
+
}, "strip", z.ZodTypeAny, {
|
|
3138
|
+
show: boolean;
|
|
3139
|
+
}, {
|
|
3140
|
+
show: boolean;
|
|
3141
|
+
}>>;
|
|
3135
3142
|
boxOutliers: z.ZodOptional<z.ZodObject<{
|
|
3136
3143
|
show: z.ZodBoolean;
|
|
3137
3144
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3185,6 +3192,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3185
3192
|
box?: {
|
|
3186
3193
|
show: boolean;
|
|
3187
3194
|
} | undefined;
|
|
3195
|
+
violin?: {
|
|
3196
|
+
show: boolean;
|
|
3197
|
+
} | undefined;
|
|
3188
3198
|
dot?: {
|
|
3189
3199
|
show: boolean;
|
|
3190
3200
|
} | undefined;
|
|
@@ -3210,6 +3220,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3210
3220
|
box?: {
|
|
3211
3221
|
show: boolean;
|
|
3212
3222
|
} | undefined;
|
|
3223
|
+
violin?: {
|
|
3224
|
+
show: boolean;
|
|
3225
|
+
} | undefined;
|
|
3213
3226
|
dot?: {
|
|
3214
3227
|
show: boolean;
|
|
3215
3228
|
} | undefined;
|
|
@@ -3767,6 +3780,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3767
3780
|
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
3768
3781
|
lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
3769
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"]>>;
|
|
3770
3786
|
}, "strip", z.ZodTypeAny, {
|
|
3771
3787
|
lineWidth?: number | undefined;
|
|
3772
3788
|
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
@@ -3778,6 +3794,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3778
3794
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
3779
3795
|
} | undefined;
|
|
3780
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;
|
|
3781
3800
|
}, {
|
|
3782
3801
|
lineWidth?: number | undefined;
|
|
3783
3802
|
lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
@@ -3789,6 +3808,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3789
3808
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
3790
3809
|
} | undefined;
|
|
3791
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;
|
|
3792
3814
|
}>>;
|
|
3793
3815
|
}, "strip", z.ZodTypeAny, {
|
|
3794
3816
|
type: "violin";
|
|
@@ -3803,6 +3825,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3803
3825
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
3804
3826
|
} | undefined;
|
|
3805
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;
|
|
3806
3831
|
} | undefined;
|
|
3807
3832
|
stat?: {
|
|
3808
3833
|
bandwidth?: number | undefined;
|
|
@@ -3821,6 +3846,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3821
3846
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
3822
3847
|
} | undefined;
|
|
3823
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;
|
|
3824
3852
|
} | undefined;
|
|
3825
3853
|
stat?: {
|
|
3826
3854
|
bandwidth?: number | undefined;
|
|
@@ -4704,6 +4732,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4704
4732
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
4705
4733
|
} | undefined;
|
|
4706
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;
|
|
4707
4738
|
} | undefined;
|
|
4708
4739
|
stat?: {
|
|
4709
4740
|
bandwidth?: number | undefined;
|
|
@@ -4889,6 +4920,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4889
4920
|
box?: {
|
|
4890
4921
|
show: boolean;
|
|
4891
4922
|
} | undefined;
|
|
4923
|
+
violin?: {
|
|
4924
|
+
show: boolean;
|
|
4925
|
+
} | undefined;
|
|
4892
4926
|
dot?: {
|
|
4893
4927
|
show: boolean;
|
|
4894
4928
|
} | undefined;
|
|
@@ -5063,6 +5097,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
5063
5097
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
5064
5098
|
} | undefined;
|
|
5065
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;
|
|
5066
5103
|
} | undefined;
|
|
5067
5104
|
stat?: {
|
|
5068
5105
|
bandwidth?: number | undefined;
|
|
@@ -5248,6 +5285,9 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
5248
5285
|
box?: {
|
|
5249
5286
|
show: boolean;
|
|
5250
5287
|
} | undefined;
|
|
5288
|
+
violin?: {
|
|
5289
|
+
show: boolean;
|
|
5290
|
+
} | undefined;
|
|
5251
5291
|
dot?: {
|
|
5252
5292
|
show: boolean;
|
|
5253
5293
|
} | undefined;
|