@milaboratories/miplots4 1.0.68 → 1.0.69

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
@@ -249,6 +249,7 @@ declare const BubblesSettingsSchema: z.ZodObject<{
249
249
  valueLabels?: string | undefined;
250
250
  }[] | undefined;
251
251
  }>>;
252
+ NAValueAs: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
252
253
  }, "strip", z.ZodTypeAny, {
253
254
  type: "bubble";
254
255
  title: {
@@ -340,6 +341,7 @@ declare const BubblesSettingsSchema: z.ZodObject<{
340
341
  colorRange?: number[] | undefined;
341
342
  sizeRange?: number[] | undefined;
342
343
  } | undefined;
344
+ NAValueAs?: number | null | undefined;
343
345
  }, {
344
346
  type: "bubble";
345
347
  title: {
@@ -431,6 +433,7 @@ declare const BubblesSettingsSchema: z.ZodObject<{
431
433
  colorRange?: number[] | undefined;
432
434
  sizeRange?: number[] | undefined;
433
435
  } | undefined;
436
+ NAValueAs?: number | null | undefined;
434
437
  }>;
435
438
  type BubbleSettings = z.infer<typeof BubblesSettingsSchema>;
436
439
 
@@ -5809,6 +5812,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5809
5812
  lineColor?: string | undefined;
5810
5813
  fillColor?: string | undefined;
5811
5814
  }>>>>;
5815
+ NAValueAs: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
5812
5816
  aes: z.ZodOptional<z.ZodObject<{
5813
5817
  colorsList: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5814
5818
  colorsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -5931,6 +5935,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5931
5935
  method: "standardScaling" | "meanNormalization";
5932
5936
  colorRange?: number[] | undefined;
5933
5937
  } | undefined;
5938
+ NAValueAs?: number | null | undefined;
5934
5939
  valueType?: "discrete" | "continuous" | undefined;
5935
5940
  xGroupBy?: {
5936
5941
  type: "column";
@@ -6170,6 +6175,7 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
6170
6175
  method: "standardScaling" | "meanNormalization";
6171
6176
  colorRange?: number[] | undefined;
6172
6177
  } | undefined;
6178
+ NAValueAs?: number | null | undefined;
6173
6179
  valueType?: "discrete" | "continuous" | undefined;
6174
6180
  xGroupBy?: {
6175
6181
  type: "column";