@milaboratories/miplots4 1.0.165 → 1.0.167

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.
Files changed (60) hide show
  1. package/dist/common/Tooltip.d.ts +2 -1
  2. package/dist/common/Tooltip.js +147 -143
  3. package/dist/common/Tooltip.js.map +1 -1
  4. package/dist/discrete/DiscreteSettingsImpl.d.ts +11 -31
  5. package/dist/discrete/DiscreteSettingsImpl.js.map +1 -1
  6. package/dist/discrete/components/Chart.js +143 -143
  7. package/dist/discrete/components/Chart.js.map +1 -1
  8. package/dist/discrete/index.d.ts +2 -0
  9. package/dist/discrete/index.js +127 -123
  10. package/dist/discrete/index.js.map +1 -1
  11. package/dist/discrete/utils/getFacetLabels.d.ts +3 -0
  12. package/dist/discrete/utils/getFacetLabels.js +16 -0
  13. package/dist/discrete/utils/getFacetLabels.js.map +1 -0
  14. package/dist/heatmap/components/tooltipUtils.js +15 -15
  15. package/dist/heatmap/components/tooltipUtils.js.map +1 -1
  16. package/dist/heatmap/fillCellsData.js +88 -85
  17. package/dist/heatmap/fillCellsData.js.map +1 -1
  18. package/dist/histogram/getHistogramData.js +42 -41
  19. package/dist/histogram/getHistogramData.js.map +1 -1
  20. package/dist/histogram/index.d.ts +1 -0
  21. package/dist/histogram/index.js +59 -57
  22. package/dist/histogram/index.js.map +1 -1
  23. package/dist/scatterplot/components/ChartTooltip.js +34 -33
  24. package/dist/scatterplot/components/ChartTooltip.js.map +1 -1
  25. package/dist/scatterplot/components/ChartsGroup.js +31 -31
  26. package/dist/scatterplot/components/ChartsGroup.js.map +1 -1
  27. package/dist/scatterplot/dots.d.ts +2 -2
  28. package/dist/scatterplot/dots.js +9 -9
  29. package/dist/scatterplot/dots.js.map +1 -1
  30. package/dist/scatterplot/index.d.ts +1 -0
  31. package/dist/scatterplot/index.js +61 -59
  32. package/dist/scatterplot/index.js.map +1 -1
  33. package/dist/scatterplot/utils/sortDotsByGrouping.d.ts +2 -1
  34. package/dist/scatterplot/utils/sortDotsByGrouping.js +22 -11
  35. package/dist/scatterplot/utils/sortDotsByGrouping.js.map +1 -1
  36. package/dist/scatterplot-umap/ChartRenderer.d.ts +1 -1
  37. package/dist/scatterplot-umap/ChartRenderer.js +17 -17
  38. package/dist/scatterplot-umap/ChartRenderer.js.map +1 -1
  39. package/dist/scatterplot-umap/components/SVGLayer.js +49 -49
  40. package/dist/scatterplot-umap/components/SVGLayer.js.map +1 -1
  41. package/dist/scatterplot-umap/components/UpperSVG.d.ts +1 -1
  42. package/dist/scatterplot-umap/components/UpperSVG.js +39 -38
  43. package/dist/scatterplot-umap/components/UpperSVG.js.map +1 -1
  44. package/dist/scatterplot-umap/index.js +87 -77
  45. package/dist/scatterplot-umap/index.js.map +1 -1
  46. package/dist/types/bubble.js +32 -37
  47. package/dist/types/bubble.js.map +1 -1
  48. package/dist/types/common.d.ts +41 -0
  49. package/dist/types/common.js +39 -35
  50. package/dist/types/common.js.map +1 -1
  51. package/dist/types/discrete.d.ts +680 -70
  52. package/dist/types/discrete.js +141 -141
  53. package/dist/types/discrete.js.map +1 -1
  54. package/dist/types/heatmap.js +54 -59
  55. package/dist/types/heatmap.js.map +1 -1
  56. package/dist/types/scatterplot-umap.js +19 -24
  57. package/dist/types/scatterplot-umap.js.map +1 -1
  58. package/dist/types/scatterplot.js +41 -46
  59. package/dist/types/scatterplot.js.map +1 -1
  60. package/package.json +1 -1
@@ -2487,136 +2487,606 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2487
2487
  }>>;
2488
2488
  tooltips: z.ZodOptional<z.ZodObject<{
2489
2489
  box: z.ZodOptional<z.ZodObject<{
2490
- show: z.ZodBoolean;
2490
+ show: z.ZodOptional<z.ZodBoolean>;
2491
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
2492
+ type: z.ZodLiteral<"column">;
2493
+ value: z.ZodString;
2494
+ format: z.ZodOptional<z.ZodString>;
2495
+ label: z.ZodOptional<z.ZodString>;
2496
+ valueLabels: z.ZodOptional<z.ZodString>;
2497
+ }, "strip", z.ZodTypeAny, {
2498
+ type: "column";
2499
+ value: string;
2500
+ format?: string | undefined;
2501
+ label?: string | undefined;
2502
+ valueLabels?: string | undefined;
2503
+ }, {
2504
+ type: "column";
2505
+ value: string;
2506
+ format?: string | undefined;
2507
+ label?: string | undefined;
2508
+ valueLabels?: string | undefined;
2509
+ }>, "many">>;
2491
2510
  }, "strip", z.ZodTypeAny, {
2492
- show: boolean;
2511
+ show?: boolean | undefined;
2512
+ content?: {
2513
+ type: "column";
2514
+ value: string;
2515
+ format?: string | undefined;
2516
+ label?: string | undefined;
2517
+ valueLabels?: string | undefined;
2518
+ }[] | undefined;
2493
2519
  }, {
2494
- show: boolean;
2520
+ show?: boolean | undefined;
2521
+ content?: {
2522
+ type: "column";
2523
+ value: string;
2524
+ format?: string | undefined;
2525
+ label?: string | undefined;
2526
+ valueLabels?: string | undefined;
2527
+ }[] | undefined;
2495
2528
  }>>;
2496
2529
  violin: z.ZodOptional<z.ZodObject<{
2497
- show: z.ZodBoolean;
2530
+ show: z.ZodOptional<z.ZodBoolean>;
2531
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
2532
+ type: z.ZodLiteral<"column">;
2533
+ value: z.ZodString;
2534
+ format: z.ZodOptional<z.ZodString>;
2535
+ label: z.ZodOptional<z.ZodString>;
2536
+ valueLabels: z.ZodOptional<z.ZodString>;
2537
+ }, "strip", z.ZodTypeAny, {
2538
+ type: "column";
2539
+ value: string;
2540
+ format?: string | undefined;
2541
+ label?: string | undefined;
2542
+ valueLabels?: string | undefined;
2543
+ }, {
2544
+ type: "column";
2545
+ value: string;
2546
+ format?: string | undefined;
2547
+ label?: string | undefined;
2548
+ valueLabels?: string | undefined;
2549
+ }>, "many">>;
2498
2550
  }, "strip", z.ZodTypeAny, {
2499
- show: boolean;
2551
+ show?: boolean | undefined;
2552
+ content?: {
2553
+ type: "column";
2554
+ value: string;
2555
+ format?: string | undefined;
2556
+ label?: string | undefined;
2557
+ valueLabels?: string | undefined;
2558
+ }[] | undefined;
2500
2559
  }, {
2501
- show: boolean;
2560
+ show?: boolean | undefined;
2561
+ content?: {
2562
+ type: "column";
2563
+ value: string;
2564
+ format?: string | undefined;
2565
+ label?: string | undefined;
2566
+ valueLabels?: string | undefined;
2567
+ }[] | undefined;
2502
2568
  }>>;
2503
2569
  boxOutliers: z.ZodOptional<z.ZodObject<{
2504
- show: z.ZodBoolean;
2570
+ show: z.ZodOptional<z.ZodBoolean>;
2571
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
2572
+ type: z.ZodLiteral<"column">;
2573
+ value: z.ZodString;
2574
+ format: z.ZodOptional<z.ZodString>;
2575
+ label: z.ZodOptional<z.ZodString>;
2576
+ valueLabels: z.ZodOptional<z.ZodString>;
2577
+ }, "strip", z.ZodTypeAny, {
2578
+ type: "column";
2579
+ value: string;
2580
+ format?: string | undefined;
2581
+ label?: string | undefined;
2582
+ valueLabels?: string | undefined;
2583
+ }, {
2584
+ type: "column";
2585
+ value: string;
2586
+ format?: string | undefined;
2587
+ label?: string | undefined;
2588
+ valueLabels?: string | undefined;
2589
+ }>, "many">>;
2505
2590
  }, "strip", z.ZodTypeAny, {
2506
- show: boolean;
2591
+ show?: boolean | undefined;
2592
+ content?: {
2593
+ type: "column";
2594
+ value: string;
2595
+ format?: string | undefined;
2596
+ label?: string | undefined;
2597
+ valueLabels?: string | undefined;
2598
+ }[] | undefined;
2507
2599
  }, {
2508
- show: boolean;
2600
+ show?: boolean | undefined;
2601
+ content?: {
2602
+ type: "column";
2603
+ value: string;
2604
+ format?: string | undefined;
2605
+ label?: string | undefined;
2606
+ valueLabels?: string | undefined;
2607
+ }[] | undefined;
2509
2608
  }>>;
2510
2609
  line: z.ZodOptional<z.ZodObject<{
2511
- show: z.ZodBoolean;
2610
+ show: z.ZodOptional<z.ZodBoolean>;
2611
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
2612
+ type: z.ZodLiteral<"column">;
2613
+ value: z.ZodString;
2614
+ format: z.ZodOptional<z.ZodString>;
2615
+ label: z.ZodOptional<z.ZodString>;
2616
+ valueLabels: z.ZodOptional<z.ZodString>;
2617
+ }, "strip", z.ZodTypeAny, {
2618
+ type: "column";
2619
+ value: string;
2620
+ format?: string | undefined;
2621
+ label?: string | undefined;
2622
+ valueLabels?: string | undefined;
2623
+ }, {
2624
+ type: "column";
2625
+ value: string;
2626
+ format?: string | undefined;
2627
+ label?: string | undefined;
2628
+ valueLabels?: string | undefined;
2629
+ }>, "many">>;
2512
2630
  }, "strip", z.ZodTypeAny, {
2513
- show: boolean;
2631
+ show?: boolean | undefined;
2632
+ content?: {
2633
+ type: "column";
2634
+ value: string;
2635
+ format?: string | undefined;
2636
+ label?: string | undefined;
2637
+ valueLabels?: string | undefined;
2638
+ }[] | undefined;
2514
2639
  }, {
2515
- show: boolean;
2640
+ show?: boolean | undefined;
2641
+ content?: {
2642
+ type: "column";
2643
+ value: string;
2644
+ format?: string | undefined;
2645
+ label?: string | undefined;
2646
+ valueLabels?: string | undefined;
2647
+ }[] | undefined;
2516
2648
  }>>;
2517
2649
  dot: z.ZodOptional<z.ZodObject<{
2518
- show: z.ZodBoolean;
2650
+ show: z.ZodOptional<z.ZodBoolean>;
2651
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
2652
+ type: z.ZodLiteral<"column">;
2653
+ value: z.ZodString;
2654
+ format: z.ZodOptional<z.ZodString>;
2655
+ label: z.ZodOptional<z.ZodString>;
2656
+ valueLabels: z.ZodOptional<z.ZodString>;
2657
+ }, "strip", z.ZodTypeAny, {
2658
+ type: "column";
2659
+ value: string;
2660
+ format?: string | undefined;
2661
+ label?: string | undefined;
2662
+ valueLabels?: string | undefined;
2663
+ }, {
2664
+ type: "column";
2665
+ value: string;
2666
+ format?: string | undefined;
2667
+ label?: string | undefined;
2668
+ valueLabels?: string | undefined;
2669
+ }>, "many">>;
2519
2670
  }, "strip", z.ZodTypeAny, {
2520
- show: boolean;
2671
+ show?: boolean | undefined;
2672
+ content?: {
2673
+ type: "column";
2674
+ value: string;
2675
+ format?: string | undefined;
2676
+ label?: string | undefined;
2677
+ valueLabels?: string | undefined;
2678
+ }[] | undefined;
2521
2679
  }, {
2522
- show: boolean;
2680
+ show?: boolean | undefined;
2681
+ content?: {
2682
+ type: "column";
2683
+ value: string;
2684
+ format?: string | undefined;
2685
+ label?: string | undefined;
2686
+ valueLabels?: string | undefined;
2687
+ }[] | undefined;
2523
2688
  }>>;
2524
2689
  errorBar: z.ZodOptional<z.ZodObject<{
2525
- show: z.ZodBoolean;
2690
+ show: z.ZodOptional<z.ZodBoolean>;
2691
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
2692
+ type: z.ZodLiteral<"column">;
2693
+ value: z.ZodString;
2694
+ format: z.ZodOptional<z.ZodString>;
2695
+ label: z.ZodOptional<z.ZodString>;
2696
+ valueLabels: z.ZodOptional<z.ZodString>;
2697
+ }, "strip", z.ZodTypeAny, {
2698
+ type: "column";
2699
+ value: string;
2700
+ format?: string | undefined;
2701
+ label?: string | undefined;
2702
+ valueLabels?: string | undefined;
2703
+ }, {
2704
+ type: "column";
2705
+ value: string;
2706
+ format?: string | undefined;
2707
+ label?: string | undefined;
2708
+ valueLabels?: string | undefined;
2709
+ }>, "many">>;
2526
2710
  }, "strip", z.ZodTypeAny, {
2527
- show: boolean;
2711
+ show?: boolean | undefined;
2712
+ content?: {
2713
+ type: "column";
2714
+ value: string;
2715
+ format?: string | undefined;
2716
+ label?: string | undefined;
2717
+ valueLabels?: string | undefined;
2718
+ }[] | undefined;
2528
2719
  }, {
2529
- show: boolean;
2720
+ show?: boolean | undefined;
2721
+ content?: {
2722
+ type: "column";
2723
+ value: string;
2724
+ format?: string | undefined;
2725
+ label?: string | undefined;
2726
+ valueLabels?: string | undefined;
2727
+ }[] | undefined;
2530
2728
  }>>;
2531
2729
  binnedDots: z.ZodOptional<z.ZodObject<{
2532
- show: z.ZodBoolean;
2730
+ show: z.ZodOptional<z.ZodBoolean>;
2731
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
2732
+ type: z.ZodLiteral<"column">;
2733
+ value: z.ZodString;
2734
+ format: z.ZodOptional<z.ZodString>;
2735
+ label: z.ZodOptional<z.ZodString>;
2736
+ valueLabels: z.ZodOptional<z.ZodString>;
2737
+ }, "strip", z.ZodTypeAny, {
2738
+ type: "column";
2739
+ value: string;
2740
+ format?: string | undefined;
2741
+ label?: string | undefined;
2742
+ valueLabels?: string | undefined;
2743
+ }, {
2744
+ type: "column";
2745
+ value: string;
2746
+ format?: string | undefined;
2747
+ label?: string | undefined;
2748
+ valueLabels?: string | undefined;
2749
+ }>, "many">>;
2533
2750
  }, "strip", z.ZodTypeAny, {
2534
- show: boolean;
2751
+ show?: boolean | undefined;
2752
+ content?: {
2753
+ type: "column";
2754
+ value: string;
2755
+ format?: string | undefined;
2756
+ label?: string | undefined;
2757
+ valueLabels?: string | undefined;
2758
+ }[] | undefined;
2535
2759
  }, {
2536
- show: boolean;
2760
+ show?: boolean | undefined;
2761
+ content?: {
2762
+ type: "column";
2763
+ value: string;
2764
+ format?: string | undefined;
2765
+ label?: string | undefined;
2766
+ valueLabels?: string | undefined;
2767
+ }[] | undefined;
2537
2768
  }>>;
2538
2769
  pairedPoints: z.ZodOptional<z.ZodObject<{
2539
- show: z.ZodBoolean;
2770
+ show: z.ZodOptional<z.ZodBoolean>;
2771
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
2772
+ type: z.ZodLiteral<"column">;
2773
+ value: z.ZodString;
2774
+ format: z.ZodOptional<z.ZodString>;
2775
+ label: z.ZodOptional<z.ZodString>;
2776
+ valueLabels: z.ZodOptional<z.ZodString>;
2777
+ }, "strip", z.ZodTypeAny, {
2778
+ type: "column";
2779
+ value: string;
2780
+ format?: string | undefined;
2781
+ label?: string | undefined;
2782
+ valueLabels?: string | undefined;
2783
+ }, {
2784
+ type: "column";
2785
+ value: string;
2786
+ format?: string | undefined;
2787
+ label?: string | undefined;
2788
+ valueLabels?: string | undefined;
2789
+ }>, "many">>;
2540
2790
  }, "strip", z.ZodTypeAny, {
2541
- show: boolean;
2791
+ show?: boolean | undefined;
2792
+ content?: {
2793
+ type: "column";
2794
+ value: string;
2795
+ format?: string | undefined;
2796
+ label?: string | undefined;
2797
+ valueLabels?: string | undefined;
2798
+ }[] | undefined;
2542
2799
  }, {
2543
- show: boolean;
2800
+ show?: boolean | undefined;
2801
+ content?: {
2802
+ type: "column";
2803
+ value: string;
2804
+ format?: string | undefined;
2805
+ label?: string | undefined;
2806
+ valueLabels?: string | undefined;
2807
+ }[] | undefined;
2544
2808
  }>>;
2545
2809
  stackedBar: z.ZodOptional<z.ZodObject<{
2546
- show: z.ZodBoolean;
2810
+ show: z.ZodOptional<z.ZodBoolean>;
2811
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
2812
+ type: z.ZodLiteral<"column">;
2813
+ value: z.ZodString;
2814
+ format: z.ZodOptional<z.ZodString>;
2815
+ label: z.ZodOptional<z.ZodString>;
2816
+ valueLabels: z.ZodOptional<z.ZodString>;
2817
+ }, "strip", z.ZodTypeAny, {
2818
+ type: "column";
2819
+ value: string;
2820
+ format?: string | undefined;
2821
+ label?: string | undefined;
2822
+ valueLabels?: string | undefined;
2823
+ }, {
2824
+ type: "column";
2825
+ value: string;
2826
+ format?: string | undefined;
2827
+ label?: string | undefined;
2828
+ valueLabels?: string | undefined;
2829
+ }>, "many">>;
2547
2830
  }, "strip", z.ZodTypeAny, {
2548
- show: boolean;
2831
+ show?: boolean | undefined;
2832
+ content?: {
2833
+ type: "column";
2834
+ value: string;
2835
+ format?: string | undefined;
2836
+ label?: string | undefined;
2837
+ valueLabels?: string | undefined;
2838
+ }[] | undefined;
2549
2839
  }, {
2550
- show: boolean;
2840
+ show?: boolean | undefined;
2841
+ content?: {
2842
+ type: "column";
2843
+ value: string;
2844
+ format?: string | undefined;
2845
+ label?: string | undefined;
2846
+ valueLabels?: string | undefined;
2847
+ }[] | undefined;
2551
2848
  }>>;
2552
2849
  logo: z.ZodOptional<z.ZodObject<{
2553
- show: z.ZodBoolean;
2850
+ show: z.ZodOptional<z.ZodBoolean>;
2851
+ content: z.ZodOptional<z.ZodArray<z.ZodObject<{
2852
+ type: z.ZodLiteral<"column">;
2853
+ value: z.ZodString;
2854
+ format: z.ZodOptional<z.ZodString>;
2855
+ label: z.ZodOptional<z.ZodString>;
2856
+ valueLabels: z.ZodOptional<z.ZodString>;
2857
+ }, "strip", z.ZodTypeAny, {
2858
+ type: "column";
2859
+ value: string;
2860
+ format?: string | undefined;
2861
+ label?: string | undefined;
2862
+ valueLabels?: string | undefined;
2863
+ }, {
2864
+ type: "column";
2865
+ value: string;
2866
+ format?: string | undefined;
2867
+ label?: string | undefined;
2868
+ valueLabels?: string | undefined;
2869
+ }>, "many">>;
2554
2870
  }, "strip", z.ZodTypeAny, {
2555
- show: boolean;
2871
+ show?: boolean | undefined;
2872
+ content?: {
2873
+ type: "column";
2874
+ value: string;
2875
+ format?: string | undefined;
2876
+ label?: string | undefined;
2877
+ valueLabels?: string | undefined;
2878
+ }[] | undefined;
2556
2879
  }, {
2557
- show: boolean;
2880
+ show?: boolean | undefined;
2881
+ content?: {
2882
+ type: "column";
2883
+ value: string;
2884
+ format?: string | undefined;
2885
+ label?: string | undefined;
2886
+ valueLabels?: string | undefined;
2887
+ }[] | undefined;
2558
2888
  }>>;
2559
2889
  }, "strip", z.ZodTypeAny, {
2560
2890
  box?: {
2561
- show: boolean;
2891
+ show?: boolean | undefined;
2892
+ content?: {
2893
+ type: "column";
2894
+ value: string;
2895
+ format?: string | undefined;
2896
+ label?: string | undefined;
2897
+ valueLabels?: string | undefined;
2898
+ }[] | undefined;
2562
2899
  } | undefined;
2563
2900
  violin?: {
2564
- show: boolean;
2901
+ show?: boolean | undefined;
2902
+ content?: {
2903
+ type: "column";
2904
+ value: string;
2905
+ format?: string | undefined;
2906
+ label?: string | undefined;
2907
+ valueLabels?: string | undefined;
2908
+ }[] | undefined;
2565
2909
  } | undefined;
2566
2910
  dot?: {
2567
- show: boolean;
2911
+ show?: boolean | undefined;
2912
+ content?: {
2913
+ type: "column";
2914
+ value: string;
2915
+ format?: string | undefined;
2916
+ label?: string | undefined;
2917
+ valueLabels?: string | undefined;
2918
+ }[] | undefined;
2568
2919
  } | undefined;
2569
2920
  line?: {
2570
- show: boolean;
2921
+ show?: boolean | undefined;
2922
+ content?: {
2923
+ type: "column";
2924
+ value: string;
2925
+ format?: string | undefined;
2926
+ label?: string | undefined;
2927
+ valueLabels?: string | undefined;
2928
+ }[] | undefined;
2571
2929
  } | undefined;
2572
2930
  stackedBar?: {
2573
- show: boolean;
2931
+ show?: boolean | undefined;
2932
+ content?: {
2933
+ type: "column";
2934
+ value: string;
2935
+ format?: string | undefined;
2936
+ label?: string | undefined;
2937
+ valueLabels?: string | undefined;
2938
+ }[] | undefined;
2574
2939
  } | undefined;
2575
2940
  binnedDots?: {
2576
- show: boolean;
2941
+ show?: boolean | undefined;
2942
+ content?: {
2943
+ type: "column";
2944
+ value: string;
2945
+ format?: string | undefined;
2946
+ label?: string | undefined;
2947
+ valueLabels?: string | undefined;
2948
+ }[] | undefined;
2577
2949
  } | undefined;
2578
2950
  pairedPoints?: {
2579
- show: boolean;
2951
+ show?: boolean | undefined;
2952
+ content?: {
2953
+ type: "column";
2954
+ value: string;
2955
+ format?: string | undefined;
2956
+ label?: string | undefined;
2957
+ valueLabels?: string | undefined;
2958
+ }[] | undefined;
2580
2959
  } | undefined;
2581
2960
  logo?: {
2582
- show: boolean;
2961
+ show?: boolean | undefined;
2962
+ content?: {
2963
+ type: "column";
2964
+ value: string;
2965
+ format?: string | undefined;
2966
+ label?: string | undefined;
2967
+ valueLabels?: string | undefined;
2968
+ }[] | undefined;
2583
2969
  } | undefined;
2584
2970
  boxOutliers?: {
2585
- show: boolean;
2971
+ show?: boolean | undefined;
2972
+ content?: {
2973
+ type: "column";
2974
+ value: string;
2975
+ format?: string | undefined;
2976
+ label?: string | undefined;
2977
+ valueLabels?: string | undefined;
2978
+ }[] | undefined;
2586
2979
  } | undefined;
2587
2980
  errorBar?: {
2588
- show: boolean;
2981
+ show?: boolean | undefined;
2982
+ content?: {
2983
+ type: "column";
2984
+ value: string;
2985
+ format?: string | undefined;
2986
+ label?: string | undefined;
2987
+ valueLabels?: string | undefined;
2988
+ }[] | undefined;
2589
2989
  } | undefined;
2590
2990
  }, {
2591
2991
  box?: {
2592
- show: boolean;
2992
+ show?: boolean | undefined;
2993
+ content?: {
2994
+ type: "column";
2995
+ value: string;
2996
+ format?: string | undefined;
2997
+ label?: string | undefined;
2998
+ valueLabels?: string | undefined;
2999
+ }[] | undefined;
2593
3000
  } | undefined;
2594
3001
  violin?: {
2595
- show: boolean;
3002
+ show?: boolean | undefined;
3003
+ content?: {
3004
+ type: "column";
3005
+ value: string;
3006
+ format?: string | undefined;
3007
+ label?: string | undefined;
3008
+ valueLabels?: string | undefined;
3009
+ }[] | undefined;
2596
3010
  } | undefined;
2597
3011
  dot?: {
2598
- show: boolean;
3012
+ show?: boolean | undefined;
3013
+ content?: {
3014
+ type: "column";
3015
+ value: string;
3016
+ format?: string | undefined;
3017
+ label?: string | undefined;
3018
+ valueLabels?: string | undefined;
3019
+ }[] | undefined;
2599
3020
  } | undefined;
2600
3021
  line?: {
2601
- show: boolean;
3022
+ show?: boolean | undefined;
3023
+ content?: {
3024
+ type: "column";
3025
+ value: string;
3026
+ format?: string | undefined;
3027
+ label?: string | undefined;
3028
+ valueLabels?: string | undefined;
3029
+ }[] | undefined;
2602
3030
  } | undefined;
2603
3031
  stackedBar?: {
2604
- show: boolean;
3032
+ show?: boolean | undefined;
3033
+ content?: {
3034
+ type: "column";
3035
+ value: string;
3036
+ format?: string | undefined;
3037
+ label?: string | undefined;
3038
+ valueLabels?: string | undefined;
3039
+ }[] | undefined;
2605
3040
  } | undefined;
2606
3041
  binnedDots?: {
2607
- show: boolean;
3042
+ show?: boolean | undefined;
3043
+ content?: {
3044
+ type: "column";
3045
+ value: string;
3046
+ format?: string | undefined;
3047
+ label?: string | undefined;
3048
+ valueLabels?: string | undefined;
3049
+ }[] | undefined;
2608
3050
  } | undefined;
2609
3051
  pairedPoints?: {
2610
- show: boolean;
3052
+ show?: boolean | undefined;
3053
+ content?: {
3054
+ type: "column";
3055
+ value: string;
3056
+ format?: string | undefined;
3057
+ label?: string | undefined;
3058
+ valueLabels?: string | undefined;
3059
+ }[] | undefined;
2611
3060
  } | undefined;
2612
3061
  logo?: {
2613
- show: boolean;
3062
+ show?: boolean | undefined;
3063
+ content?: {
3064
+ type: "column";
3065
+ value: string;
3066
+ format?: string | undefined;
3067
+ label?: string | undefined;
3068
+ valueLabels?: string | undefined;
3069
+ }[] | undefined;
2614
3070
  } | undefined;
2615
3071
  boxOutliers?: {
2616
- show: boolean;
3072
+ show?: boolean | undefined;
3073
+ content?: {
3074
+ type: "column";
3075
+ value: string;
3076
+ format?: string | undefined;
3077
+ label?: string | undefined;
3078
+ valueLabels?: string | undefined;
3079
+ }[] | undefined;
2617
3080
  } | undefined;
2618
3081
  errorBar?: {
2619
- show: boolean;
3082
+ show?: boolean | undefined;
3083
+ content?: {
3084
+ type: "column";
3085
+ value: string;
3086
+ format?: string | undefined;
3087
+ label?: string | undefined;
3088
+ valueLabels?: string | undefined;
3089
+ }[] | undefined;
2620
3090
  } | undefined;
2621
3091
  }>>;
2622
3092
  frame: z.ZodOptional<z.ZodObject<{
@@ -4442,34 +4912,104 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4442
4912
  } | undefined;
4443
4913
  tooltips?: {
4444
4914
  box?: {
4445
- show: boolean;
4915
+ show?: boolean | undefined;
4916
+ content?: {
4917
+ type: "column";
4918
+ value: string;
4919
+ format?: string | undefined;
4920
+ label?: string | undefined;
4921
+ valueLabels?: string | undefined;
4922
+ }[] | undefined;
4446
4923
  } | undefined;
4447
4924
  violin?: {
4448
- show: boolean;
4925
+ show?: boolean | undefined;
4926
+ content?: {
4927
+ type: "column";
4928
+ value: string;
4929
+ format?: string | undefined;
4930
+ label?: string | undefined;
4931
+ valueLabels?: string | undefined;
4932
+ }[] | undefined;
4449
4933
  } | undefined;
4450
4934
  dot?: {
4451
- show: boolean;
4935
+ show?: boolean | undefined;
4936
+ content?: {
4937
+ type: "column";
4938
+ value: string;
4939
+ format?: string | undefined;
4940
+ label?: string | undefined;
4941
+ valueLabels?: string | undefined;
4942
+ }[] | undefined;
4452
4943
  } | undefined;
4453
4944
  line?: {
4454
- show: boolean;
4945
+ show?: boolean | undefined;
4946
+ content?: {
4947
+ type: "column";
4948
+ value: string;
4949
+ format?: string | undefined;
4950
+ label?: string | undefined;
4951
+ valueLabels?: string | undefined;
4952
+ }[] | undefined;
4455
4953
  } | undefined;
4456
4954
  stackedBar?: {
4457
- show: boolean;
4955
+ show?: boolean | undefined;
4956
+ content?: {
4957
+ type: "column";
4958
+ value: string;
4959
+ format?: string | undefined;
4960
+ label?: string | undefined;
4961
+ valueLabels?: string | undefined;
4962
+ }[] | undefined;
4458
4963
  } | undefined;
4459
4964
  binnedDots?: {
4460
- show: boolean;
4965
+ show?: boolean | undefined;
4966
+ content?: {
4967
+ type: "column";
4968
+ value: string;
4969
+ format?: string | undefined;
4970
+ label?: string | undefined;
4971
+ valueLabels?: string | undefined;
4972
+ }[] | undefined;
4461
4973
  } | undefined;
4462
4974
  pairedPoints?: {
4463
- show: boolean;
4975
+ show?: boolean | undefined;
4976
+ content?: {
4977
+ type: "column";
4978
+ value: string;
4979
+ format?: string | undefined;
4980
+ label?: string | undefined;
4981
+ valueLabels?: string | undefined;
4982
+ }[] | undefined;
4464
4983
  } | undefined;
4465
4984
  logo?: {
4466
- show: boolean;
4985
+ show?: boolean | undefined;
4986
+ content?: {
4987
+ type: "column";
4988
+ value: string;
4989
+ format?: string | undefined;
4990
+ label?: string | undefined;
4991
+ valueLabels?: string | undefined;
4992
+ }[] | undefined;
4467
4993
  } | undefined;
4468
4994
  boxOutliers?: {
4469
- show: boolean;
4995
+ show?: boolean | undefined;
4996
+ content?: {
4997
+ type: "column";
4998
+ value: string;
4999
+ format?: string | undefined;
5000
+ label?: string | undefined;
5001
+ valueLabels?: string | undefined;
5002
+ }[] | undefined;
4470
5003
  } | undefined;
4471
5004
  errorBar?: {
4472
- show: boolean;
5005
+ show?: boolean | undefined;
5006
+ content?: {
5007
+ type: "column";
5008
+ value: string;
5009
+ format?: string | undefined;
5010
+ label?: string | undefined;
5011
+ valueLabels?: string | undefined;
5012
+ }[] | undefined;
4473
5013
  } | undefined;
4474
5014
  } | undefined;
4475
5015
  frame?: {
@@ -4841,34 +5381,104 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4841
5381
  } | undefined;
4842
5382
  tooltips?: {
4843
5383
  box?: {
4844
- show: boolean;
5384
+ show?: boolean | undefined;
5385
+ content?: {
5386
+ type: "column";
5387
+ value: string;
5388
+ format?: string | undefined;
5389
+ label?: string | undefined;
5390
+ valueLabels?: string | undefined;
5391
+ }[] | undefined;
4845
5392
  } | undefined;
4846
5393
  violin?: {
4847
- show: boolean;
5394
+ show?: boolean | undefined;
5395
+ content?: {
5396
+ type: "column";
5397
+ value: string;
5398
+ format?: string | undefined;
5399
+ label?: string | undefined;
5400
+ valueLabels?: string | undefined;
5401
+ }[] | undefined;
4848
5402
  } | undefined;
4849
5403
  dot?: {
4850
- show: boolean;
5404
+ show?: boolean | undefined;
5405
+ content?: {
5406
+ type: "column";
5407
+ value: string;
5408
+ format?: string | undefined;
5409
+ label?: string | undefined;
5410
+ valueLabels?: string | undefined;
5411
+ }[] | undefined;
4851
5412
  } | undefined;
4852
5413
  line?: {
4853
- show: boolean;
5414
+ show?: boolean | undefined;
5415
+ content?: {
5416
+ type: "column";
5417
+ value: string;
5418
+ format?: string | undefined;
5419
+ label?: string | undefined;
5420
+ valueLabels?: string | undefined;
5421
+ }[] | undefined;
4854
5422
  } | undefined;
4855
5423
  stackedBar?: {
4856
- show: boolean;
5424
+ show?: boolean | undefined;
5425
+ content?: {
5426
+ type: "column";
5427
+ value: string;
5428
+ format?: string | undefined;
5429
+ label?: string | undefined;
5430
+ valueLabels?: string | undefined;
5431
+ }[] | undefined;
4857
5432
  } | undefined;
4858
5433
  binnedDots?: {
4859
- show: boolean;
5434
+ show?: boolean | undefined;
5435
+ content?: {
5436
+ type: "column";
5437
+ value: string;
5438
+ format?: string | undefined;
5439
+ label?: string | undefined;
5440
+ valueLabels?: string | undefined;
5441
+ }[] | undefined;
4860
5442
  } | undefined;
4861
5443
  pairedPoints?: {
4862
- show: boolean;
5444
+ show?: boolean | undefined;
5445
+ content?: {
5446
+ type: "column";
5447
+ value: string;
5448
+ format?: string | undefined;
5449
+ label?: string | undefined;
5450
+ valueLabels?: string | undefined;
5451
+ }[] | undefined;
4863
5452
  } | undefined;
4864
5453
  logo?: {
4865
- show: boolean;
5454
+ show?: boolean | undefined;
5455
+ content?: {
5456
+ type: "column";
5457
+ value: string;
5458
+ format?: string | undefined;
5459
+ label?: string | undefined;
5460
+ valueLabels?: string | undefined;
5461
+ }[] | undefined;
4866
5462
  } | undefined;
4867
5463
  boxOutliers?: {
4868
- show: boolean;
5464
+ show?: boolean | undefined;
5465
+ content?: {
5466
+ type: "column";
5467
+ value: string;
5468
+ format?: string | undefined;
5469
+ label?: string | undefined;
5470
+ valueLabels?: string | undefined;
5471
+ }[] | undefined;
4869
5472
  } | undefined;
4870
5473
  errorBar?: {
4871
- show: boolean;
5474
+ show?: boolean | undefined;
5475
+ content?: {
5476
+ type: "column";
5477
+ value: string;
5478
+ format?: string | undefined;
5479
+ label?: string | undefined;
5480
+ valueLabels?: string | undefined;
5481
+ }[] | undefined;
4872
5482
  } | undefined;
4873
5483
  } | undefined;
4874
5484
  frame?: {