@milaboratories/miplots4 1.0.101 → 1.0.103

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
@@ -588,7 +588,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
588
588
  showTicks?: boolean | undefined;
589
589
  hiddenLabels?: boolean | undefined;
590
590
  }>>;
591
- grouping: z.ZodOptional<z.ZodArray<z.ZodObject<{
591
+ grouping: z.ZodOptional<z.ZodObject<{
592
592
  type: z.ZodLiteral<"column">;
593
593
  value: z.ZodString;
594
594
  label: z.ZodOptional<z.ZodString>;
@@ -603,7 +603,10 @@ declare const HistogramSettingsSchema: z.ZodObject<{
603
603
  value: string;
604
604
  label?: string | undefined;
605
605
  valueLabels?: string | undefined;
606
- }>, "many">>;
606
+ }>>;
607
+ groupingStack: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"vertical">, z.ZodLiteral<"horizontal">]>>;
608
+ groupingDirection: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"straight">, z.ZodLiteral<"reverse">]>>;
609
+ groupingOrder: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
607
610
  facetBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
608
611
  type: z.ZodLiteral<"column">;
609
612
  value: z.ZodString;
@@ -769,7 +772,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
769
772
  value: string;
770
773
  label?: string | undefined;
771
774
  valueLabels?: string | undefined;
772
- }[] | undefined;
775
+ } | undefined;
773
776
  size?: {
774
777
  width?: number | undefined;
775
778
  height?: number | undefined;
@@ -823,6 +826,9 @@ declare const HistogramSettingsSchema: z.ZodObject<{
823
826
  fillColor?: string | undefined;
824
827
  }>> | undefined;
825
828
  binsCount?: number | undefined;
829
+ groupingStack?: "vertical" | "horizontal" | undefined;
830
+ groupingDirection?: "reverse" | "straight" | undefined;
831
+ groupingOrder?: string[] | undefined;
826
832
  }, {
827
833
  type: "histogram";
828
834
  title: {
@@ -859,7 +865,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
859
865
  value: string;
860
866
  label?: string | undefined;
861
867
  valueLabels?: string | undefined;
862
- }[] | undefined;
868
+ } | undefined;
863
869
  size?: {
864
870
  width?: number | undefined;
865
871
  height?: number | undefined;
@@ -913,6 +919,9 @@ declare const HistogramSettingsSchema: z.ZodObject<{
913
919
  fillColor?: string | undefined;
914
920
  }>> | undefined;
915
921
  binsCount?: number | undefined;
922
+ groupingStack?: "vertical" | "horizontal" | undefined;
923
+ groupingDirection?: "reverse" | "straight" | undefined;
924
+ groupingOrder?: string[] | undefined;
916
925
  }>;
917
926
  type HistogramSettings = z.infer<typeof HistogramSettingsSchema>;
918
927
 
@@ -5393,7 +5402,7 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
5393
5402
  }> | undefined;
5394
5403
  order?: (string | number | null)[] | undefined;
5395
5404
  } | undefined;
5396
- orientation?: "horizontal" | "vertical" | undefined;
5405
+ orientation?: "vertical" | "horizontal" | undefined;
5397
5406
  }, {
5398
5407
  type: "discrete";
5399
5408
  title: {
@@ -5765,7 +5774,7 @@ declare const DiscreteSettingsSchema: z.ZodObject<{
5765
5774
  }> | undefined;
5766
5775
  order?: (string | number | null)[] | undefined;
5767
5776
  } | undefined;
5768
- orientation?: "horizontal" | "vertical" | undefined;
5777
+ orientation?: "vertical" | "horizontal" | undefined;
5769
5778
  }>;
5770
5779
  type DiscreteSettings = z.infer<typeof DiscreteSettingsSchema>;
5771
5780