@milaboratories/miplots4 1.0.74 → 1.0.76
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 +60 -0
- package/dist/index.js +52 -52
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -4086,6 +4086,7 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4086
4086
|
height?: "mean" | "median" | "min" | "max" | undefined;
|
|
4087
4087
|
}>, z.ZodObject<{
|
|
4088
4088
|
type: z.ZodLiteral<"stackedBar">;
|
|
4089
|
+
normalize: z.ZodOptional<z.ZodBoolean>;
|
|
4089
4090
|
aes: z.ZodOptional<z.ZodObject<{
|
|
4090
4091
|
width: z.ZodOptional<z.ZodNumber>;
|
|
4091
4092
|
lineColor: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
@@ -4138,6 +4139,7 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4138
4139
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
4139
4140
|
} | undefined;
|
|
4140
4141
|
} | undefined;
|
|
4142
|
+
normalize?: boolean | undefined;
|
|
4141
4143
|
}, {
|
|
4142
4144
|
type: "stackedBar";
|
|
4143
4145
|
aes?: {
|
|
@@ -4151,6 +4153,7 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4151
4153
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
4152
4154
|
} | undefined;
|
|
4153
4155
|
} | undefined;
|
|
4156
|
+
normalize?: boolean | undefined;
|
|
4154
4157
|
}>, z.ZodObject<{
|
|
4155
4158
|
type: z.ZodLiteral<"binnedDots">;
|
|
4156
4159
|
method: z.ZodOptional<z.ZodEnum<["dotdensity", "histodot"]>>;
|
|
@@ -4439,6 +4442,43 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4439
4442
|
opacity?: number | undefined;
|
|
4440
4443
|
showOutliers?: boolean | undefined;
|
|
4441
4444
|
} | undefined;
|
|
4445
|
+
}>, z.ZodObject<{
|
|
4446
|
+
type: z.ZodLiteral<"logo">;
|
|
4447
|
+
normalize: z.ZodOptional<z.ZodBoolean>;
|
|
4448
|
+
aes: z.ZodOptional<z.ZodObject<{
|
|
4449
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
4450
|
+
lineColor: z.ZodOptional<z.ZodString>;
|
|
4451
|
+
fillColor: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodString>, z.ZodString]>>;
|
|
4452
|
+
opacity: z.ZodOptional<z.ZodNumber>;
|
|
4453
|
+
}, "strip", z.ZodTypeAny, {
|
|
4454
|
+
lineColor?: string | undefined;
|
|
4455
|
+
opacity?: number | undefined;
|
|
4456
|
+
width?: number | undefined;
|
|
4457
|
+
fillColor?: string | Record<string, string> | undefined;
|
|
4458
|
+
}, {
|
|
4459
|
+
lineColor?: string | undefined;
|
|
4460
|
+
opacity?: number | undefined;
|
|
4461
|
+
width?: number | undefined;
|
|
4462
|
+
fillColor?: string | Record<string, string> | undefined;
|
|
4463
|
+
}>>;
|
|
4464
|
+
}, "strip", z.ZodTypeAny, {
|
|
4465
|
+
type: "logo";
|
|
4466
|
+
aes?: {
|
|
4467
|
+
lineColor?: string | undefined;
|
|
4468
|
+
opacity?: number | undefined;
|
|
4469
|
+
width?: number | undefined;
|
|
4470
|
+
fillColor?: string | Record<string, string> | undefined;
|
|
4471
|
+
} | undefined;
|
|
4472
|
+
normalize?: boolean | undefined;
|
|
4473
|
+
}, {
|
|
4474
|
+
type: "logo";
|
|
4475
|
+
aes?: {
|
|
4476
|
+
lineColor?: string | undefined;
|
|
4477
|
+
opacity?: number | undefined;
|
|
4478
|
+
width?: number | undefined;
|
|
4479
|
+
fillColor?: string | Record<string, string> | undefined;
|
|
4480
|
+
} | undefined;
|
|
4481
|
+
normalize?: boolean | undefined;
|
|
4442
4482
|
}>, z.ZodObject<{
|
|
4443
4483
|
type: z.ZodLiteral<"stat">;
|
|
4444
4484
|
statType: z.ZodEnum<["overall", "referenceGroup", "pairwise"]>;
|
|
@@ -4636,6 +4676,7 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4636
4676
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
4637
4677
|
} | undefined;
|
|
4638
4678
|
} | undefined;
|
|
4679
|
+
normalize?: boolean | undefined;
|
|
4639
4680
|
} | {
|
|
4640
4681
|
type: "binnedDots";
|
|
4641
4682
|
aes?: {
|
|
@@ -4694,6 +4735,15 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4694
4735
|
opacity?: number | undefined;
|
|
4695
4736
|
showOutliers?: boolean | undefined;
|
|
4696
4737
|
} | undefined;
|
|
4738
|
+
} | {
|
|
4739
|
+
type: "logo";
|
|
4740
|
+
aes?: {
|
|
4741
|
+
lineColor?: string | undefined;
|
|
4742
|
+
opacity?: number | undefined;
|
|
4743
|
+
width?: number | undefined;
|
|
4744
|
+
fillColor?: string | Record<string, string> | undefined;
|
|
4745
|
+
} | undefined;
|
|
4746
|
+
normalize?: boolean | undefined;
|
|
4697
4747
|
} | {
|
|
4698
4748
|
type: "stat";
|
|
4699
4749
|
statType: "overall" | "referenceGroup" | "pairwise";
|
|
@@ -4985,6 +5035,7 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4985
5035
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
4986
5036
|
} | undefined;
|
|
4987
5037
|
} | undefined;
|
|
5038
|
+
normalize?: boolean | undefined;
|
|
4988
5039
|
} | {
|
|
4989
5040
|
type: "binnedDots";
|
|
4990
5041
|
aes?: {
|
|
@@ -5043,6 +5094,15 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
5043
5094
|
opacity?: number | undefined;
|
|
5044
5095
|
showOutliers?: boolean | undefined;
|
|
5045
5096
|
} | undefined;
|
|
5097
|
+
} | {
|
|
5098
|
+
type: "logo";
|
|
5099
|
+
aes?: {
|
|
5100
|
+
lineColor?: string | undefined;
|
|
5101
|
+
opacity?: number | undefined;
|
|
5102
|
+
width?: number | undefined;
|
|
5103
|
+
fillColor?: string | Record<string, string> | undefined;
|
|
5104
|
+
} | undefined;
|
|
5105
|
+
normalize?: boolean | undefined;
|
|
5046
5106
|
} | {
|
|
5047
5107
|
type: "stat";
|
|
5048
5108
|
statType: "overall" | "referenceGroup" | "pairwise";
|