@milaboratories/miplots4 1.0.75 → 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 CHANGED
@@ -4442,6 +4442,43 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
4442
4442
  opacity?: number | undefined;
4443
4443
  showOutliers?: boolean | undefined;
4444
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;
4445
4482
  }>, z.ZodObject<{
4446
4483
  type: z.ZodLiteral<"stat">;
4447
4484
  statType: z.ZodEnum<["overall", "referenceGroup", "pairwise"]>;
@@ -4698,6 +4735,15 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
4698
4735
  opacity?: number | undefined;
4699
4736
  showOutliers?: boolean | undefined;
4700
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;
4701
4747
  } | {
4702
4748
  type: "stat";
4703
4749
  statType: "overall" | "referenceGroup" | "pairwise";
@@ -5048,6 +5094,15 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
5048
5094
  opacity?: number | undefined;
5049
5095
  showOutliers?: boolean | undefined;
5050
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;
5051
5106
  } | {
5052
5107
  type: "stat";
5053
5108
  statType: "overall" | "referenceGroup" | "pairwise";