@milaboratories/miplots4 1.0.76 → 1.0.78

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
@@ -2633,6 +2633,46 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2633
2633
  }, {
2634
2634
  type: "grouping";
2635
2635
  value: string;
2636
+ }>, z.ZodObject<{
2637
+ columnName: z.ZodObject<{
2638
+ type: z.ZodLiteral<"column">;
2639
+ value: z.ZodString;
2640
+ label: z.ZodOptional<z.ZodString>;
2641
+ valueLabels: z.ZodOptional<z.ZodString>;
2642
+ }, "strip", z.ZodTypeAny, {
2643
+ type: "column";
2644
+ value: string;
2645
+ label?: string | undefined;
2646
+ valueLabels?: string | undefined;
2647
+ }, {
2648
+ type: "column";
2649
+ value: string;
2650
+ label?: string | undefined;
2651
+ valueLabels?: string | undefined;
2652
+ }>;
2653
+ domain: z.ZodArray<z.ZodNumber, "many">;
2654
+ range: z.ZodArray<z.ZodString, "many">;
2655
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
2656
+ }, "strip", z.ZodTypeAny, {
2657
+ columnName: {
2658
+ type: "column";
2659
+ value: string;
2660
+ label?: string | undefined;
2661
+ valueLabels?: string | undefined;
2662
+ };
2663
+ domain: number[];
2664
+ range: string[];
2665
+ type?: "linear" | "log" | undefined;
2666
+ }, {
2667
+ columnName: {
2668
+ type: "column";
2669
+ value: string;
2670
+ label?: string | undefined;
2671
+ valueLabels?: string | undefined;
2672
+ };
2673
+ domain: number[];
2674
+ range: string[];
2675
+ type?: "linear" | "log" | undefined;
2636
2676
  }>]>>;
2637
2677
  dotShape: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "20", "21", "22", "23", "24", "25"]>, z.ZodObject<{
2638
2678
  type: z.ZodLiteral<"grouping">;
@@ -2656,6 +2696,16 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2656
2696
  }>]>>;
2657
2697
  }, "strip", z.ZodTypeAny, {
2658
2698
  dotFill?: string | {
2699
+ columnName: {
2700
+ type: "column";
2701
+ value: string;
2702
+ label?: string | undefined;
2703
+ valueLabels?: string | undefined;
2704
+ };
2705
+ domain: number[];
2706
+ range: string[];
2707
+ type?: "linear" | "log" | undefined;
2708
+ } | {
2659
2709
  type: "grouping";
2660
2710
  value: string;
2661
2711
  } | undefined;
@@ -2669,6 +2719,16 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2669
2719
  } | undefined;
2670
2720
  }, {
2671
2721
  dotFill?: string | {
2722
+ columnName: {
2723
+ type: "column";
2724
+ value: string;
2725
+ label?: string | undefined;
2726
+ valueLabels?: string | undefined;
2727
+ };
2728
+ domain: number[];
2729
+ range: string[];
2730
+ type?: "linear" | "log" | undefined;
2731
+ } | {
2672
2732
  type: "grouping";
2673
2733
  value: string;
2674
2734
  } | undefined;
@@ -2685,6 +2745,16 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2685
2745
  type: "dots";
2686
2746
  aes?: {
2687
2747
  dotFill?: string | {
2748
+ columnName: {
2749
+ type: "column";
2750
+ value: string;
2751
+ label?: string | undefined;
2752
+ valueLabels?: string | undefined;
2753
+ };
2754
+ domain: number[];
2755
+ range: string[];
2756
+ type?: "linear" | "log" | undefined;
2757
+ } | {
2688
2758
  type: "grouping";
2689
2759
  value: string;
2690
2760
  } | undefined;
@@ -2701,6 +2771,16 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2701
2771
  type: "dots";
2702
2772
  aes?: {
2703
2773
  dotFill?: string | {
2774
+ columnName: {
2775
+ type: "column";
2776
+ value: string;
2777
+ label?: string | undefined;
2778
+ valueLabels?: string | undefined;
2779
+ };
2780
+ domain: number[];
2781
+ range: string[];
2782
+ type?: "linear" | "log" | undefined;
2783
+ } | {
2704
2784
  type: "grouping";
2705
2785
  value: string;
2706
2786
  } | undefined;
@@ -2743,6 +2823,16 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2743
2823
  type: "dots";
2744
2824
  aes?: {
2745
2825
  dotFill?: string | {
2826
+ columnName: {
2827
+ type: "column";
2828
+ value: string;
2829
+ label?: string | undefined;
2830
+ valueLabels?: string | undefined;
2831
+ };
2832
+ domain: number[];
2833
+ range: string[];
2834
+ type?: "linear" | "log" | undefined;
2835
+ } | {
2746
2836
  type: "grouping";
2747
2837
  value: string;
2748
2838
  } | undefined;
@@ -2862,6 +2952,16 @@ declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2862
2952
  type: "dots";
2863
2953
  aes?: {
2864
2954
  dotFill?: string | {
2955
+ columnName: {
2956
+ type: "column";
2957
+ value: string;
2958
+ label?: string | undefined;
2959
+ valueLabels?: string | undefined;
2960
+ };
2961
+ domain: number[];
2962
+ range: string[];
2963
+ type?: "linear" | "log" | undefined;
2964
+ } | {
2865
2965
  type: "grouping";
2866
2966
  value: string;
2867
2967
  } | undefined;