@milaboratories/miplots4 1.0.55 → 1.0.57

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
@@ -267,6 +267,22 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
267
267
  label?: string | undefined;
268
268
  valueLabels?: string | undefined;
269
269
  }>, "many">>;
270
+ label: z.ZodOptional<z.ZodObject<{
271
+ type: z.ZodLiteral<"column">;
272
+ value: z.ZodString;
273
+ label: z.ZodOptional<z.ZodString>;
274
+ valueLabels: z.ZodOptional<z.ZodString>;
275
+ }, "strip", z.ZodTypeAny, {
276
+ type: "column";
277
+ value: string;
278
+ label?: string | undefined;
279
+ valueLabels?: string | undefined;
280
+ }, {
281
+ type: "column";
282
+ value: string;
283
+ label?: string | undefined;
284
+ valueLabels?: string | undefined;
285
+ }>>;
270
286
  inheritedAes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
271
287
  fillColor: z.ZodOptional<z.ZodString>;
272
288
  lineColor: z.ZodOptional<z.ZodString>;
@@ -780,6 +796,12 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
780
796
  } | undefined;
781
797
  smoothing?: boolean | undefined;
782
798
  })[];
799
+ label?: {
800
+ type: "column";
801
+ value: string;
802
+ label?: string | undefined;
803
+ valueLabels?: string | undefined;
804
+ } | undefined;
783
805
  grouping?: {
784
806
  type: "column";
785
807
  value: string;
@@ -954,6 +976,12 @@ declare const ScatterplotSettingsSchema: z.ZodObject<{
954
976
  } | undefined;
955
977
  smoothing?: boolean | undefined;
956
978
  })[];
979
+ label?: {
980
+ type: "column";
981
+ value: string;
982
+ label?: string | undefined;
983
+ valueLabels?: string | undefined;
984
+ } | undefined;
957
985
  grouping?: {
958
986
  type: "column";
959
987
  value: string;