@milaboratories/miplots4 1.0.74 → 1.0.75
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 +5 -0
- package/dist/index.js +4 -4
- package/package.json +1 -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"]>>;
|
|
@@ -4636,6 +4639,7 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4636
4639
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
4637
4640
|
} | undefined;
|
|
4638
4641
|
} | undefined;
|
|
4642
|
+
normalize?: boolean | undefined;
|
|
4639
4643
|
} | {
|
|
4640
4644
|
type: "binnedDots";
|
|
4641
4645
|
aes?: {
|
|
@@ -4985,6 +4989,7 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4985
4989
|
type: "primaryGrouping" | "secondaryGrouping";
|
|
4986
4990
|
} | undefined;
|
|
4987
4991
|
} | undefined;
|
|
4992
|
+
normalize?: boolean | undefined;
|
|
4988
4993
|
} | {
|
|
4989
4994
|
type: "binnedDots";
|
|
4990
4995
|
aes?: {
|