@milaboratories/miplots4 1.0.83 → 1.0.84

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
@@ -2809,6 +2809,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2809
2809
  } | undefined;
2810
2810
  } | undefined;
2811
2811
  }>, "many">;
2812
+ lassoMode: z.ZodOptional<z.ZodBoolean>;
2812
2813
  }, "strip", z.ZodTypeAny, {
2813
2814
  type: "scatterplot-umap";
2814
2815
  title: {
@@ -2938,6 +2939,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2938
2939
  lineColor?: string | undefined;
2939
2940
  fillColor?: string | undefined;
2940
2941
  }>> | undefined;
2942
+ lassoMode?: boolean | undefined;
2941
2943
  }, {
2942
2944
  type: "scatterplot-umap";
2943
2945
  title: {
@@ -3067,6 +3069,7 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
3067
3069
  lineColor?: string | undefined;
3068
3070
  fillColor?: string | undefined;
3069
3071
  }>> | undefined;
3072
+ lassoMode?: boolean | undefined;
3070
3073
  }>;
3071
3074
  type ScatterplotUmapSettings = z.infer<typeof ScatterplotUmapSettingsSchema>;
3072
3075
 
@@ -7834,4 +7837,4 @@ declare class MiPlots implements ChartInterface {
7834
7837
  export(): string;
7835
7838
  }
7836
7839
 
7837
- export { type BubbleSettings, type ChartInterface, type DendroSettings, type DiscreteSettings, type HeatmapSettings, type HistogramSettings, MiPlots, type ScatterplotSettings, type Settings };
7840
+ export { type BubbleSettings, type ChartInterface, type DendroSettings, type DiscreteSettings, type HeatmapSettings, type HistogramSettings, MiPlots, type ScatterplotSettings, type ScatterplotUmapSettings, type Settings };