@milaboratories/miplots4 1.0.162 → 1.0.164

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 (72) hide show
  1. package/dist/_virtual/index10.js +5 -2
  2. package/dist/_virtual/index10.js.map +1 -1
  3. package/dist/_virtual/index5.js +2 -5
  4. package/dist/_virtual/index5.js.map +1 -1
  5. package/dist/_virtual/index6.js +4 -4
  6. package/dist/_virtual/index7.js +1 -1
  7. package/dist/_virtual/index8.js +4 -4
  8. package/dist/_virtual/index9.js +3 -3
  9. package/dist/common/BandAxis.d.ts +2 -1
  10. package/dist/common/BandAxis.js +19 -18
  11. package/dist/common/BandAxis.js.map +1 -1
  12. package/dist/common/ContinuousAxis.js +20 -20
  13. package/dist/common/ContinuousAxis.js.map +1 -1
  14. package/dist/common/Legend.js +3 -3
  15. package/dist/common/Legend.js.map +1 -1
  16. package/dist/discrete/DiscreteSettingsImpl.d.ts +6 -4
  17. package/dist/discrete/DiscreteSettingsImpl.js +9 -9
  18. package/dist/discrete/DiscreteSettingsImpl.js.map +1 -1
  19. package/dist/discrete/constants.d.ts +1 -1
  20. package/dist/discrete/constants.js +1 -1
  21. package/dist/discrete/constants.js.map +1 -1
  22. package/dist/discrete/index.js +107 -106
  23. package/dist/discrete/index.js.map +1 -1
  24. package/dist/discrete/layers/bar.js +25 -22
  25. package/dist/discrete/layers/bar.js.map +1 -1
  26. package/dist/discrete/layers/errorbars.js +57 -48
  27. package/dist/discrete/layers/errorbars.js.map +1 -1
  28. package/dist/discrete/layers/lines.js +40 -31
  29. package/dist/discrete/layers/lines.js.map +1 -1
  30. package/dist/discrete/layers/stackedBar.js.map +1 -1
  31. package/dist/discrete/layers/stats/pValueCalculation.js +5 -5
  32. package/dist/heatmap/fillCellsData.js +49 -46
  33. package/dist/heatmap/fillCellsData.js.map +1 -1
  34. package/dist/histogram/ChartRenderer.js +57 -54
  35. package/dist/histogram/ChartRenderer.js.map +1 -1
  36. package/dist/histogram/constants.d.ts +1 -1
  37. package/dist/histogram/constants.js.map +1 -1
  38. package/dist/histogram/index.js +58 -51
  39. package/dist/histogram/index.js.map +1 -1
  40. package/dist/node_modules/.pnpm/scheduler@0.23.2/node_modules/scheduler/index.js +1 -1
  41. package/dist/scatterplot/ChartRenderer.js +89 -89
  42. package/dist/scatterplot/ChartRenderer.js.map +1 -1
  43. package/dist/scatterplot/components/ChartAxis.js +30 -30
  44. package/dist/scatterplot/components/ChartAxis.js.map +1 -1
  45. package/dist/scatterplot/components/ChartAxisTitles.js +22 -22
  46. package/dist/scatterplot/components/ChartAxisTitles.js.map +1 -1
  47. package/dist/scatterplot/constants.d.ts +1 -1
  48. package/dist/scatterplot/constants.js +1 -1
  49. package/dist/scatterplot/constants.js.map +1 -1
  50. package/dist/scatterplot/dots.d.ts +1 -1
  51. package/dist/scatterplot/dots.js +14 -14
  52. package/dist/scatterplot/dots.js.map +1 -1
  53. package/dist/scatterplot/index.js +94 -79
  54. package/dist/scatterplot/index.js.map +1 -1
  55. package/dist/scatterplot-umap/ChartRenderer.d.ts +1 -1
  56. package/dist/scatterplot-umap/ChartRenderer.js +14 -14
  57. package/dist/scatterplot-umap/ChartRenderer.js.map +1 -1
  58. package/dist/scatterplot-umap/components/LowerSVG.js +38 -38
  59. package/dist/scatterplot-umap/components/LowerSVG.js.map +1 -1
  60. package/dist/types/bubble.d.ts +5 -5
  61. package/dist/types/bubble.js +40 -40
  62. package/dist/types/bubble.js.map +1 -1
  63. package/dist/types/common.d.ts +25 -2
  64. package/dist/types/common.js +16 -15
  65. package/dist/types/common.js.map +1 -1
  66. package/dist/types/discrete.d.ts +66 -56
  67. package/dist/types/discrete.js +40 -38
  68. package/dist/types/discrete.js.map +1 -1
  69. package/dist/types/heatmap.d.ts +5 -6
  70. package/dist/types/heatmap.js +29 -29
  71. package/dist/types/heatmap.js.map +1 -1
  72. package/package.json +4 -4
@@ -367,13 +367,13 @@ declare const DotLayerSchema: z.ZodObject<{
367
367
  } | undefined;
368
368
  }>;
369
369
  export type DotLayer = z.infer<typeof DotLayerSchema>;
370
- declare const SummaryGroupSchema: z.ZodEnum<["mean", "median"]>;
370
+ declare const SummaryGroupSchema: z.ZodEnum<["sum", "mean", "median", "min", "max"]>;
371
371
  declare const SummaryErrorSchema: z.ZodEnum<["sd", "se", "ci"]>;
372
372
  export type SummaryGroupValue = z.infer<typeof SummaryGroupSchema>;
373
373
  export type SummaryErrorValue = z.infer<typeof SummaryErrorSchema>;
374
374
  declare const LineLayerSchema: z.ZodObject<{
375
375
  type: z.ZodLiteral<"line">;
376
- pointsValues: z.ZodEnum<["mean", "median"]>;
376
+ pointsValues: z.ZodEnum<["sum", "mean", "median", "min", "max"]>;
377
377
  emptyGroupValue: z.ZodOptional<z.ZodNumber>;
378
378
  aes: z.ZodOptional<z.ZodObject<{
379
379
  showOutliers: z.ZodOptional<z.ZodBoolean>;
@@ -445,7 +445,7 @@ declare const LineLayerSchema: z.ZodObject<{
445
445
  }>>;
446
446
  }, "strip", z.ZodTypeAny, {
447
447
  type: "line";
448
- pointsValues: "mean" | "median";
448
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
449
449
  aes?: {
450
450
  dotShape?: "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" | {
451
451
  type: "primaryGrouping" | "secondaryGrouping";
@@ -467,7 +467,7 @@ declare const LineLayerSchema: z.ZodObject<{
467
467
  emptyGroupValue?: number | undefined;
468
468
  }, {
469
469
  type: "line";
470
- pointsValues: "mean" | "median";
470
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
471
471
  aes?: {
472
472
  dotShape?: "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" | {
473
473
  type: "primaryGrouping" | "secondaryGrouping";
@@ -491,7 +491,7 @@ declare const LineLayerSchema: z.ZodObject<{
491
491
  export type LineLayer = z.infer<typeof LineLayerSchema>;
492
492
  declare const ErrorBarLayerSchema: z.ZodObject<{
493
493
  type: z.ZodLiteral<"errorbar">;
494
- pointsValues: z.ZodEnum<["mean", "median"]>;
494
+ pointsValues: z.ZodEnum<["sum", "mean", "median", "min", "max"]>;
495
495
  interval: z.ZodEnum<["sd", "se", "ci"]>;
496
496
  aes: z.ZodOptional<z.ZodObject<{
497
497
  showDots: z.ZodOptional<z.ZodBoolean>;
@@ -553,7 +553,7 @@ declare const ErrorBarLayerSchema: z.ZodObject<{
553
553
  }>>;
554
554
  }, "strip", z.ZodTypeAny, {
555
555
  type: "errorbar";
556
- pointsValues: "mean" | "median";
556
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
557
557
  interval: "sd" | "se" | "ci";
558
558
  aes?: {
559
559
  dotShape?: "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" | {
@@ -573,7 +573,7 @@ declare const ErrorBarLayerSchema: z.ZodObject<{
573
573
  } | undefined;
574
574
  }, {
575
575
  type: "errorbar";
576
- pointsValues: "mean" | "median";
576
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
577
577
  interval: "sd" | "se" | "ci";
578
578
  aes?: {
579
579
  dotShape?: "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" | {
@@ -595,7 +595,7 @@ declare const ErrorBarLayerSchema: z.ZodObject<{
595
595
  export type ErrorBarLayer = z.infer<typeof ErrorBarLayerSchema>;
596
596
  declare const BarLayerSchema: z.ZodObject<{
597
597
  type: z.ZodLiteral<"bar">;
598
- height: z.ZodOptional<z.ZodEnum<["min", "max", "median", "mean"]>>;
598
+ height: z.ZodOptional<z.ZodEnum<["sum", "mean", "median", "min", "max"]>>;
599
599
  aes: z.ZodOptional<z.ZodObject<{
600
600
  width: z.ZodOptional<z.ZodNumber>;
601
601
  lineColor: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -648,7 +648,7 @@ declare const BarLayerSchema: z.ZodObject<{
648
648
  type: "primaryGrouping" | "secondaryGrouping";
649
649
  } | undefined;
650
650
  } | undefined;
651
- height?: "min" | "max" | "mean" | "median" | undefined;
651
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
652
652
  }, {
653
653
  type: "bar";
654
654
  aes?: {
@@ -662,13 +662,13 @@ declare const BarLayerSchema: z.ZodObject<{
662
662
  type: "primaryGrouping" | "secondaryGrouping";
663
663
  } | undefined;
664
664
  } | undefined;
665
- height?: "min" | "max" | "mean" | "median" | undefined;
665
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
666
666
  }>;
667
667
  export type BarLayer = z.infer<typeof BarLayerSchema>;
668
668
  declare const StackedBarLayerSchema: z.ZodObject<{
669
669
  type: z.ZodLiteral<"stackedBar">;
670
670
  normalize: z.ZodOptional<z.ZodBoolean>;
671
- height: z.ZodOptional<z.ZodEnum<["sum", "min", "max", "median", "mean"]>>;
671
+ height: z.ZodOptional<z.ZodEnum<["sum", "mean", "median", "min", "max"]>>;
672
672
  aes: z.ZodOptional<z.ZodObject<{
673
673
  width: z.ZodOptional<z.ZodNumber>;
674
674
  lineColor: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -721,7 +721,7 @@ declare const StackedBarLayerSchema: z.ZodObject<{
721
721
  type: "primaryGrouping" | "secondaryGrouping";
722
722
  } | undefined;
723
723
  } | undefined;
724
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
724
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
725
725
  normalize?: boolean | undefined;
726
726
  }, {
727
727
  type: "stackedBar";
@@ -736,7 +736,7 @@ declare const StackedBarLayerSchema: z.ZodObject<{
736
736
  type: "primaryGrouping" | "secondaryGrouping";
737
737
  } | undefined;
738
738
  } | undefined;
739
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
739
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
740
740
  normalize?: boolean | undefined;
741
741
  }>;
742
742
  export type StackedBarLayer = z.infer<typeof StackedBarLayerSchema>;
@@ -1086,7 +1086,7 @@ export type LogoPlotLayer = z.infer<typeof LogoPlotLayerSchema>;
1086
1086
  declare const StackedAreaLayerSchema: z.ZodObject<{
1087
1087
  type: z.ZodLiteral<"stackedArea">;
1088
1088
  normalize: z.ZodOptional<z.ZodBoolean>;
1089
- height: z.ZodOptional<z.ZodEnum<["sum", "min", "max", "median", "mean"]>>;
1089
+ height: z.ZodOptional<z.ZodEnum<["sum", "mean", "median", "min", "max"]>>;
1090
1090
  showBars: z.ZodOptional<z.ZodBoolean>;
1091
1091
  aes: z.ZodOptional<z.ZodObject<{
1092
1092
  barWidth: z.ZodOptional<z.ZodNumber>;
@@ -1144,7 +1144,7 @@ declare const StackedAreaLayerSchema: z.ZodObject<{
1144
1144
  barsOpacity?: number | undefined;
1145
1145
  areaOpacity?: number | undefined;
1146
1146
  } | undefined;
1147
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
1147
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
1148
1148
  normalize?: boolean | undefined;
1149
1149
  showBars?: boolean | undefined;
1150
1150
  }, {
@@ -1161,7 +1161,7 @@ declare const StackedAreaLayerSchema: z.ZodObject<{
1161
1161
  barsOpacity?: number | undefined;
1162
1162
  areaOpacity?: number | undefined;
1163
1163
  } | undefined;
1164
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
1164
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
1165
1165
  normalize?: boolean | undefined;
1166
1166
  showBars?: boolean | undefined;
1167
1167
  }>;
@@ -1596,7 +1596,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1596
1596
  } | undefined;
1597
1597
  }>, z.ZodObject<{
1598
1598
  type: z.ZodLiteral<"line">;
1599
- pointsValues: z.ZodEnum<["mean", "median"]>;
1599
+ pointsValues: z.ZodEnum<["sum", "mean", "median", "min", "max"]>;
1600
1600
  emptyGroupValue: z.ZodOptional<z.ZodNumber>;
1601
1601
  aes: z.ZodOptional<z.ZodObject<{
1602
1602
  showOutliers: z.ZodOptional<z.ZodBoolean>;
@@ -1668,7 +1668,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1668
1668
  }>>;
1669
1669
  }, "strip", z.ZodTypeAny, {
1670
1670
  type: "line";
1671
- pointsValues: "mean" | "median";
1671
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
1672
1672
  aes?: {
1673
1673
  dotShape?: "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" | {
1674
1674
  type: "primaryGrouping" | "secondaryGrouping";
@@ -1690,7 +1690,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1690
1690
  emptyGroupValue?: number | undefined;
1691
1691
  }, {
1692
1692
  type: "line";
1693
- pointsValues: "mean" | "median";
1693
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
1694
1694
  aes?: {
1695
1695
  dotShape?: "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" | {
1696
1696
  type: "primaryGrouping" | "secondaryGrouping";
@@ -1712,7 +1712,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1712
1712
  emptyGroupValue?: number | undefined;
1713
1713
  }>, z.ZodObject<{
1714
1714
  type: z.ZodLiteral<"errorbar">;
1715
- pointsValues: z.ZodEnum<["mean", "median"]>;
1715
+ pointsValues: z.ZodEnum<["sum", "mean", "median", "min", "max"]>;
1716
1716
  interval: z.ZodEnum<["sd", "se", "ci"]>;
1717
1717
  aes: z.ZodOptional<z.ZodObject<{
1718
1718
  showDots: z.ZodOptional<z.ZodBoolean>;
@@ -1774,7 +1774,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1774
1774
  }>>;
1775
1775
  }, "strip", z.ZodTypeAny, {
1776
1776
  type: "errorbar";
1777
- pointsValues: "mean" | "median";
1777
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
1778
1778
  interval: "sd" | "se" | "ci";
1779
1779
  aes?: {
1780
1780
  dotShape?: "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" | {
@@ -1794,7 +1794,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1794
1794
  } | undefined;
1795
1795
  }, {
1796
1796
  type: "errorbar";
1797
- pointsValues: "mean" | "median";
1797
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
1798
1798
  interval: "sd" | "se" | "ci";
1799
1799
  aes?: {
1800
1800
  dotShape?: "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" | {
@@ -1814,7 +1814,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1814
1814
  } | undefined;
1815
1815
  }>, z.ZodObject<{
1816
1816
  type: z.ZodLiteral<"bar">;
1817
- height: z.ZodOptional<z.ZodEnum<["min", "max", "median", "mean"]>>;
1817
+ height: z.ZodOptional<z.ZodEnum<["sum", "mean", "median", "min", "max"]>>;
1818
1818
  aes: z.ZodOptional<z.ZodObject<{
1819
1819
  width: z.ZodOptional<z.ZodNumber>;
1820
1820
  lineColor: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -1867,7 +1867,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1867
1867
  type: "primaryGrouping" | "secondaryGrouping";
1868
1868
  } | undefined;
1869
1869
  } | undefined;
1870
- height?: "min" | "max" | "mean" | "median" | undefined;
1870
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
1871
1871
  }, {
1872
1872
  type: "bar";
1873
1873
  aes?: {
@@ -1881,11 +1881,11 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1881
1881
  type: "primaryGrouping" | "secondaryGrouping";
1882
1882
  } | undefined;
1883
1883
  } | undefined;
1884
- height?: "min" | "max" | "mean" | "median" | undefined;
1884
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
1885
1885
  }>, z.ZodObject<{
1886
1886
  type: z.ZodLiteral<"stackedBar">;
1887
1887
  normalize: z.ZodOptional<z.ZodBoolean>;
1888
- height: z.ZodOptional<z.ZodEnum<["sum", "min", "max", "median", "mean"]>>;
1888
+ height: z.ZodOptional<z.ZodEnum<["sum", "mean", "median", "min", "max"]>>;
1889
1889
  aes: z.ZodOptional<z.ZodObject<{
1890
1890
  width: z.ZodOptional<z.ZodNumber>;
1891
1891
  lineColor: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -1938,7 +1938,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1938
1938
  type: "primaryGrouping" | "secondaryGrouping";
1939
1939
  } | undefined;
1940
1940
  } | undefined;
1941
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
1941
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
1942
1942
  normalize?: boolean | undefined;
1943
1943
  }, {
1944
1944
  type: "stackedBar";
@@ -1953,7 +1953,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1953
1953
  type: "primaryGrouping" | "secondaryGrouping";
1954
1954
  } | undefined;
1955
1955
  } | undefined;
1956
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
1956
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
1957
1957
  normalize?: boolean | undefined;
1958
1958
  }>, z.ZodObject<{
1959
1959
  type: z.ZodLiteral<"binnedDots">;
@@ -2293,7 +2293,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
2293
2293
  }>, z.ZodObject<{
2294
2294
  type: z.ZodLiteral<"stackedArea">;
2295
2295
  normalize: z.ZodOptional<z.ZodBoolean>;
2296
- height: z.ZodOptional<z.ZodEnum<["sum", "min", "max", "median", "mean"]>>;
2296
+ height: z.ZodOptional<z.ZodEnum<["sum", "mean", "median", "min", "max"]>>;
2297
2297
  showBars: z.ZodOptional<z.ZodBoolean>;
2298
2298
  aes: z.ZodOptional<z.ZodObject<{
2299
2299
  barWidth: z.ZodOptional<z.ZodNumber>;
@@ -2351,7 +2351,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
2351
2351
  barsOpacity?: number | undefined;
2352
2352
  areaOpacity?: number | undefined;
2353
2353
  } | undefined;
2354
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
2354
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
2355
2355
  normalize?: boolean | undefined;
2356
2356
  showBars?: boolean | undefined;
2357
2357
  }, {
@@ -2368,7 +2368,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
2368
2368
  barsOpacity?: number | undefined;
2369
2369
  areaOpacity?: number | undefined;
2370
2370
  } | undefined;
2371
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
2371
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
2372
2372
  normalize?: boolean | undefined;
2373
2373
  showBars?: boolean | undefined;
2374
2374
  }>, z.ZodObject<{
@@ -2693,6 +2693,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2693
2693
  fillColor?: string | undefined;
2694
2694
  }>>>;
2695
2695
  allowNullGroup: z.ZodOptional<z.ZodBoolean>;
2696
+ unlimitedGroupsCount: z.ZodOptional<z.ZodBoolean>;
2696
2697
  }, "strip", z.ZodTypeAny, {
2697
2698
  columnName: {
2698
2699
  type: "column";
@@ -2712,6 +2713,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2712
2713
  fillColor?: string | undefined;
2713
2714
  }> | undefined;
2714
2715
  allowNullGroup?: boolean | undefined;
2716
+ unlimitedGroupsCount?: boolean | undefined;
2715
2717
  }, {
2716
2718
  columnName: {
2717
2719
  type: "column";
@@ -2731,6 +2733,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2731
2733
  fillColor?: string | undefined;
2732
2734
  }> | undefined;
2733
2735
  allowNullGroup?: boolean | undefined;
2736
+ unlimitedGroupsCount?: boolean | undefined;
2734
2737
  }>>;
2735
2738
  secondaryGrouping: z.ZodOptional<z.ZodObject<{
2736
2739
  columnName: z.ZodObject<{
@@ -2779,6 +2782,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2779
2782
  fillColor?: string | undefined;
2780
2783
  }>>>;
2781
2784
  allowNullGroup: z.ZodOptional<z.ZodBoolean>;
2785
+ unlimitedGroupsCount: z.ZodOptional<z.ZodBoolean>;
2782
2786
  }, "strip", z.ZodTypeAny, {
2783
2787
  columnName: {
2784
2788
  type: "column";
@@ -2798,6 +2802,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2798
2802
  fillColor?: string | undefined;
2799
2803
  }> | undefined;
2800
2804
  allowNullGroup?: boolean | undefined;
2805
+ unlimitedGroupsCount?: boolean | undefined;
2801
2806
  }, {
2802
2807
  columnName: {
2803
2808
  type: "column";
@@ -2817,6 +2822,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2817
2822
  fillColor?: string | undefined;
2818
2823
  }> | undefined;
2819
2824
  allowNullGroup?: boolean | undefined;
2825
+ unlimitedGroupsCount?: boolean | undefined;
2820
2826
  }>>;
2821
2827
  facetBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
2822
2828
  type: z.ZodLiteral<"column">;
@@ -3344,7 +3350,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3344
3350
  } | undefined;
3345
3351
  }>, z.ZodObject<{
3346
3352
  type: z.ZodLiteral<"line">;
3347
- pointsValues: z.ZodEnum<["mean", "median"]>;
3353
+ pointsValues: z.ZodEnum<["sum", "mean", "median", "min", "max"]>;
3348
3354
  emptyGroupValue: z.ZodOptional<z.ZodNumber>;
3349
3355
  aes: z.ZodOptional<z.ZodObject<{
3350
3356
  showOutliers: z.ZodOptional<z.ZodBoolean>;
@@ -3416,7 +3422,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3416
3422
  }>>;
3417
3423
  }, "strip", z.ZodTypeAny, {
3418
3424
  type: "line";
3419
- pointsValues: "mean" | "median";
3425
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
3420
3426
  aes?: {
3421
3427
  dotShape?: "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" | {
3422
3428
  type: "primaryGrouping" | "secondaryGrouping";
@@ -3438,7 +3444,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3438
3444
  emptyGroupValue?: number | undefined;
3439
3445
  }, {
3440
3446
  type: "line";
3441
- pointsValues: "mean" | "median";
3447
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
3442
3448
  aes?: {
3443
3449
  dotShape?: "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" | {
3444
3450
  type: "primaryGrouping" | "secondaryGrouping";
@@ -3460,7 +3466,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3460
3466
  emptyGroupValue?: number | undefined;
3461
3467
  }>, z.ZodObject<{
3462
3468
  type: z.ZodLiteral<"errorbar">;
3463
- pointsValues: z.ZodEnum<["mean", "median"]>;
3469
+ pointsValues: z.ZodEnum<["sum", "mean", "median", "min", "max"]>;
3464
3470
  interval: z.ZodEnum<["sd", "se", "ci"]>;
3465
3471
  aes: z.ZodOptional<z.ZodObject<{
3466
3472
  showDots: z.ZodOptional<z.ZodBoolean>;
@@ -3522,7 +3528,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3522
3528
  }>>;
3523
3529
  }, "strip", z.ZodTypeAny, {
3524
3530
  type: "errorbar";
3525
- pointsValues: "mean" | "median";
3531
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
3526
3532
  interval: "sd" | "se" | "ci";
3527
3533
  aes?: {
3528
3534
  dotShape?: "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" | {
@@ -3542,7 +3548,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3542
3548
  } | undefined;
3543
3549
  }, {
3544
3550
  type: "errorbar";
3545
- pointsValues: "mean" | "median";
3551
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
3546
3552
  interval: "sd" | "se" | "ci";
3547
3553
  aes?: {
3548
3554
  dotShape?: "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" | {
@@ -3562,7 +3568,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3562
3568
  } | undefined;
3563
3569
  }>, z.ZodObject<{
3564
3570
  type: z.ZodLiteral<"bar">;
3565
- height: z.ZodOptional<z.ZodEnum<["min", "max", "median", "mean"]>>;
3571
+ height: z.ZodOptional<z.ZodEnum<["sum", "mean", "median", "min", "max"]>>;
3566
3572
  aes: z.ZodOptional<z.ZodObject<{
3567
3573
  width: z.ZodOptional<z.ZodNumber>;
3568
3574
  lineColor: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -3615,7 +3621,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3615
3621
  type: "primaryGrouping" | "secondaryGrouping";
3616
3622
  } | undefined;
3617
3623
  } | undefined;
3618
- height?: "min" | "max" | "mean" | "median" | undefined;
3624
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
3619
3625
  }, {
3620
3626
  type: "bar";
3621
3627
  aes?: {
@@ -3629,11 +3635,11 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3629
3635
  type: "primaryGrouping" | "secondaryGrouping";
3630
3636
  } | undefined;
3631
3637
  } | undefined;
3632
- height?: "min" | "max" | "mean" | "median" | undefined;
3638
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
3633
3639
  }>, z.ZodObject<{
3634
3640
  type: z.ZodLiteral<"stackedBar">;
3635
3641
  normalize: z.ZodOptional<z.ZodBoolean>;
3636
- height: z.ZodOptional<z.ZodEnum<["sum", "min", "max", "median", "mean"]>>;
3642
+ height: z.ZodOptional<z.ZodEnum<["sum", "mean", "median", "min", "max"]>>;
3637
3643
  aes: z.ZodOptional<z.ZodObject<{
3638
3644
  width: z.ZodOptional<z.ZodNumber>;
3639
3645
  lineColor: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -3686,7 +3692,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3686
3692
  type: "primaryGrouping" | "secondaryGrouping";
3687
3693
  } | undefined;
3688
3694
  } | undefined;
3689
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
3695
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
3690
3696
  normalize?: boolean | undefined;
3691
3697
  }, {
3692
3698
  type: "stackedBar";
@@ -3701,7 +3707,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3701
3707
  type: "primaryGrouping" | "secondaryGrouping";
3702
3708
  } | undefined;
3703
3709
  } | undefined;
3704
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
3710
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
3705
3711
  normalize?: boolean | undefined;
3706
3712
  }>, z.ZodObject<{
3707
3713
  type: z.ZodLiteral<"binnedDots">;
@@ -4041,7 +4047,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4041
4047
  }>, z.ZodObject<{
4042
4048
  type: z.ZodLiteral<"stackedArea">;
4043
4049
  normalize: z.ZodOptional<z.ZodBoolean>;
4044
- height: z.ZodOptional<z.ZodEnum<["sum", "min", "max", "median", "mean"]>>;
4050
+ height: z.ZodOptional<z.ZodEnum<["sum", "mean", "median", "min", "max"]>>;
4045
4051
  showBars: z.ZodOptional<z.ZodBoolean>;
4046
4052
  aes: z.ZodOptional<z.ZodObject<{
4047
4053
  barWidth: z.ZodOptional<z.ZodNumber>;
@@ -4099,7 +4105,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4099
4105
  barsOpacity?: number | undefined;
4100
4106
  areaOpacity?: number | undefined;
4101
4107
  } | undefined;
4102
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
4108
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
4103
4109
  normalize?: boolean | undefined;
4104
4110
  showBars?: boolean | undefined;
4105
4111
  }, {
@@ -4116,7 +4122,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4116
4122
  barsOpacity?: number | undefined;
4117
4123
  areaOpacity?: number | undefined;
4118
4124
  } | undefined;
4119
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
4125
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
4120
4126
  normalize?: boolean | undefined;
4121
4127
  showBars?: boolean | undefined;
4122
4128
  }>, z.ZodObject<{
@@ -4254,7 +4260,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4254
4260
  } | undefined;
4255
4261
  } | {
4256
4262
  type: "line";
4257
- pointsValues: "mean" | "median";
4263
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
4258
4264
  aes?: {
4259
4265
  dotShape?: "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" | {
4260
4266
  type: "primaryGrouping" | "secondaryGrouping";
@@ -4276,7 +4282,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4276
4282
  emptyGroupValue?: number | undefined;
4277
4283
  } | {
4278
4284
  type: "errorbar";
4279
- pointsValues: "mean" | "median";
4285
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
4280
4286
  interval: "sd" | "se" | "ci";
4281
4287
  aes?: {
4282
4288
  dotShape?: "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" | {
@@ -4307,7 +4313,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4307
4313
  type: "primaryGrouping" | "secondaryGrouping";
4308
4314
  } | undefined;
4309
4315
  } | undefined;
4310
- height?: "min" | "max" | "mean" | "median" | undefined;
4316
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
4311
4317
  } | {
4312
4318
  type: "stackedBar";
4313
4319
  aes?: {
@@ -4321,7 +4327,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4321
4327
  type: "primaryGrouping" | "secondaryGrouping";
4322
4328
  } | undefined;
4323
4329
  } | undefined;
4324
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
4330
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
4325
4331
  normalize?: boolean | undefined;
4326
4332
  } | {
4327
4333
  type: "binnedDots";
@@ -4406,7 +4412,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4406
4412
  barsOpacity?: number | undefined;
4407
4413
  areaOpacity?: number | undefined;
4408
4414
  } | undefined;
4409
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
4415
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
4410
4416
  normalize?: boolean | undefined;
4411
4417
  showBars?: boolean | undefined;
4412
4418
  } | {
@@ -4545,6 +4551,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4545
4551
  fillColor?: string | undefined;
4546
4552
  }> | undefined;
4547
4553
  allowNullGroup?: boolean | undefined;
4554
+ unlimitedGroupsCount?: boolean | undefined;
4548
4555
  } | undefined;
4549
4556
  secondaryGrouping?: {
4550
4557
  columnName: {
@@ -4565,6 +4572,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4565
4572
  fillColor?: string | undefined;
4566
4573
  }> | undefined;
4567
4574
  allowNullGroup?: boolean | undefined;
4575
+ unlimitedGroupsCount?: boolean | undefined;
4568
4576
  } | undefined;
4569
4577
  orientation?: "vertical" | "horizontal" | undefined;
4570
4578
  }, {
@@ -4651,7 +4659,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4651
4659
  } | undefined;
4652
4660
  } | {
4653
4661
  type: "line";
4654
- pointsValues: "mean" | "median";
4662
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
4655
4663
  aes?: {
4656
4664
  dotShape?: "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" | {
4657
4665
  type: "primaryGrouping" | "secondaryGrouping";
@@ -4673,7 +4681,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4673
4681
  emptyGroupValue?: number | undefined;
4674
4682
  } | {
4675
4683
  type: "errorbar";
4676
- pointsValues: "mean" | "median";
4684
+ pointsValues: "sum" | "mean" | "median" | "min" | "max";
4677
4685
  interval: "sd" | "se" | "ci";
4678
4686
  aes?: {
4679
4687
  dotShape?: "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" | {
@@ -4704,7 +4712,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4704
4712
  type: "primaryGrouping" | "secondaryGrouping";
4705
4713
  } | undefined;
4706
4714
  } | undefined;
4707
- height?: "min" | "max" | "mean" | "median" | undefined;
4715
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
4708
4716
  } | {
4709
4717
  type: "stackedBar";
4710
4718
  aes?: {
@@ -4718,7 +4726,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4718
4726
  type: "primaryGrouping" | "secondaryGrouping";
4719
4727
  } | undefined;
4720
4728
  } | undefined;
4721
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
4729
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
4722
4730
  normalize?: boolean | undefined;
4723
4731
  } | {
4724
4732
  type: "binnedDots";
@@ -4803,7 +4811,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4803
4811
  barsOpacity?: number | undefined;
4804
4812
  areaOpacity?: number | undefined;
4805
4813
  } | undefined;
4806
- height?: "min" | "max" | "mean" | "median" | "sum" | undefined;
4814
+ height?: "sum" | "mean" | "median" | "min" | "max" | undefined;
4807
4815
  normalize?: boolean | undefined;
4808
4816
  showBars?: boolean | undefined;
4809
4817
  } | {
@@ -4942,6 +4950,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4942
4950
  fillColor?: string | undefined;
4943
4951
  }> | undefined;
4944
4952
  allowNullGroup?: boolean | undefined;
4953
+ unlimitedGroupsCount?: boolean | undefined;
4945
4954
  } | undefined;
4946
4955
  secondaryGrouping?: {
4947
4956
  columnName: {
@@ -4962,6 +4971,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4962
4971
  fillColor?: string | undefined;
4963
4972
  }> | undefined;
4964
4973
  allowNullGroup?: boolean | undefined;
4974
+ unlimitedGroupsCount?: boolean | undefined;
4965
4975
  } | undefined;
4966
4976
  orientation?: "vertical" | "horizontal" | undefined;
4967
4977
  }>;