@milaboratories/miplots4 1.0.92 → 1.0.93
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 +57 -1
- package/dist/index.js +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -465,12 +465,18 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
465
465
|
size: z.ZodOptional<z.ZodObject<{
|
|
466
466
|
width: z.ZodOptional<z.ZodNumber>;
|
|
467
467
|
height: z.ZodOptional<z.ZodNumber>;
|
|
468
|
+
outerOffset: z.ZodOptional<z.ZodNumber>;
|
|
469
|
+
innerOffset: z.ZodOptional<z.ZodNumber>;
|
|
468
470
|
}, "strip", z.ZodTypeAny, {
|
|
469
471
|
width?: number | undefined;
|
|
470
472
|
height?: number | undefined;
|
|
473
|
+
outerOffset?: number | undefined;
|
|
474
|
+
innerOffset?: number | undefined;
|
|
471
475
|
}, {
|
|
472
476
|
width?: number | undefined;
|
|
473
477
|
height?: number | undefined;
|
|
478
|
+
outerOffset?: number | undefined;
|
|
479
|
+
innerOffset?: number | undefined;
|
|
474
480
|
}>>;
|
|
475
481
|
legend: z.ZodOptional<z.ZodObject<{
|
|
476
482
|
show: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -542,6 +548,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
542
548
|
scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
|
|
543
549
|
showGrid: z.ZodOptional<z.ZodBoolean>;
|
|
544
550
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
551
|
+
hiddenLabels: z.ZodOptional<z.ZodBoolean>;
|
|
545
552
|
}, "strip", z.ZodTypeAny, {
|
|
546
553
|
title?: string | {
|
|
547
554
|
type: "column";
|
|
@@ -552,6 +559,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
552
559
|
scale?: "linear" | "log" | undefined;
|
|
553
560
|
showGrid?: boolean | undefined;
|
|
554
561
|
showTicks?: boolean | undefined;
|
|
562
|
+
hiddenLabels?: boolean | undefined;
|
|
555
563
|
}, {
|
|
556
564
|
title?: string | {
|
|
557
565
|
type: "column";
|
|
@@ -562,19 +570,23 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
562
570
|
scale?: "linear" | "log" | undefined;
|
|
563
571
|
showGrid?: boolean | undefined;
|
|
564
572
|
showTicks?: boolean | undefined;
|
|
573
|
+
hiddenLabels?: boolean | undefined;
|
|
565
574
|
}>>;
|
|
566
575
|
yAxis: z.ZodOptional<z.ZodObject<{
|
|
567
576
|
scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
|
|
568
577
|
showGrid: z.ZodOptional<z.ZodBoolean>;
|
|
569
578
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
579
|
+
hiddenLabels: z.ZodOptional<z.ZodBoolean>;
|
|
570
580
|
}, "strip", z.ZodTypeAny, {
|
|
571
581
|
scale?: "linear" | "log" | undefined;
|
|
572
582
|
showGrid?: boolean | undefined;
|
|
573
583
|
showTicks?: boolean | undefined;
|
|
584
|
+
hiddenLabels?: boolean | undefined;
|
|
574
585
|
}, {
|
|
575
586
|
scale?: "linear" | "log" | undefined;
|
|
576
587
|
showGrid?: boolean | undefined;
|
|
577
588
|
showTicks?: boolean | undefined;
|
|
589
|
+
hiddenLabels?: boolean | undefined;
|
|
578
590
|
}>>;
|
|
579
591
|
grouping: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
580
592
|
type: z.ZodLiteral<"column">;
|
|
@@ -645,19 +657,39 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
645
657
|
}, {
|
|
646
658
|
type: "grouping";
|
|
647
659
|
value: string;
|
|
648
|
-
}>, z.ZodString
|
|
660
|
+
}>, z.ZodString, z.ZodObject<{
|
|
661
|
+
domain: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
662
|
+
range: z.ZodArray<z.ZodString, "many">;
|
|
663
|
+
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
|
|
664
|
+
}, "strip", z.ZodTypeAny, {
|
|
665
|
+
range: string[];
|
|
666
|
+
type?: "linear" | "log" | undefined;
|
|
667
|
+
domain?: number[] | undefined;
|
|
668
|
+
}, {
|
|
669
|
+
range: string[];
|
|
670
|
+
type?: "linear" | "log" | undefined;
|
|
671
|
+
domain?: number[] | undefined;
|
|
672
|
+
}>]>>;
|
|
649
673
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
650
674
|
}, "strip", z.ZodTypeAny, {
|
|
651
675
|
opacity?: number | undefined;
|
|
652
676
|
fillColor?: string | {
|
|
653
677
|
type: "grouping";
|
|
654
678
|
value: string;
|
|
679
|
+
} | {
|
|
680
|
+
range: string[];
|
|
681
|
+
type?: "linear" | "log" | undefined;
|
|
682
|
+
domain?: number[] | undefined;
|
|
655
683
|
} | undefined;
|
|
656
684
|
}, {
|
|
657
685
|
opacity?: number | undefined;
|
|
658
686
|
fillColor?: string | {
|
|
659
687
|
type: "grouping";
|
|
660
688
|
value: string;
|
|
689
|
+
} | {
|
|
690
|
+
range: string[];
|
|
691
|
+
type?: "linear" | "log" | undefined;
|
|
692
|
+
domain?: number[] | undefined;
|
|
661
693
|
} | undefined;
|
|
662
694
|
}>>;
|
|
663
695
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -667,6 +699,10 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
667
699
|
fillColor?: string | {
|
|
668
700
|
type: "grouping";
|
|
669
701
|
value: string;
|
|
702
|
+
} | {
|
|
703
|
+
range: string[];
|
|
704
|
+
type?: "linear" | "log" | undefined;
|
|
705
|
+
domain?: number[] | undefined;
|
|
670
706
|
} | undefined;
|
|
671
707
|
} | undefined;
|
|
672
708
|
}, {
|
|
@@ -676,6 +712,10 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
676
712
|
fillColor?: string | {
|
|
677
713
|
type: "grouping";
|
|
678
714
|
value: string;
|
|
715
|
+
} | {
|
|
716
|
+
range: string[];
|
|
717
|
+
type?: "linear" | "log" | undefined;
|
|
718
|
+
domain?: number[] | undefined;
|
|
679
719
|
} | undefined;
|
|
680
720
|
} | undefined;
|
|
681
721
|
}>, z.ZodObject<{
|
|
@@ -702,6 +742,10 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
702
742
|
fillColor?: string | {
|
|
703
743
|
type: "grouping";
|
|
704
744
|
value: string;
|
|
745
|
+
} | {
|
|
746
|
+
range: string[];
|
|
747
|
+
type?: "linear" | "log" | undefined;
|
|
748
|
+
domain?: number[] | undefined;
|
|
705
749
|
} | undefined;
|
|
706
750
|
} | undefined;
|
|
707
751
|
} | {
|
|
@@ -723,6 +767,8 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
723
767
|
size?: {
|
|
724
768
|
width?: number | undefined;
|
|
725
769
|
height?: number | undefined;
|
|
770
|
+
outerOffset?: number | undefined;
|
|
771
|
+
innerOffset?: number | undefined;
|
|
726
772
|
} | undefined;
|
|
727
773
|
legend?: {
|
|
728
774
|
show?: boolean | undefined;
|
|
@@ -747,11 +793,13 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
747
793
|
scale?: "linear" | "log" | undefined;
|
|
748
794
|
showGrid?: boolean | undefined;
|
|
749
795
|
showTicks?: boolean | undefined;
|
|
796
|
+
hiddenLabels?: boolean | undefined;
|
|
750
797
|
} | undefined;
|
|
751
798
|
yAxis?: {
|
|
752
799
|
scale?: "linear" | "log" | undefined;
|
|
753
800
|
showGrid?: boolean | undefined;
|
|
754
801
|
showTicks?: boolean | undefined;
|
|
802
|
+
hiddenLabels?: boolean | undefined;
|
|
755
803
|
} | undefined;
|
|
756
804
|
facetBy?: {
|
|
757
805
|
type: "column";
|
|
@@ -783,6 +831,10 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
783
831
|
fillColor?: string | {
|
|
784
832
|
type: "grouping";
|
|
785
833
|
value: string;
|
|
834
|
+
} | {
|
|
835
|
+
range: string[];
|
|
836
|
+
type?: "linear" | "log" | undefined;
|
|
837
|
+
domain?: number[] | undefined;
|
|
786
838
|
} | undefined;
|
|
787
839
|
} | undefined;
|
|
788
840
|
} | {
|
|
@@ -804,6 +856,8 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
804
856
|
size?: {
|
|
805
857
|
width?: number | undefined;
|
|
806
858
|
height?: number | undefined;
|
|
859
|
+
outerOffset?: number | undefined;
|
|
860
|
+
innerOffset?: number | undefined;
|
|
807
861
|
} | undefined;
|
|
808
862
|
legend?: {
|
|
809
863
|
show?: boolean | undefined;
|
|
@@ -828,11 +882,13 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
828
882
|
scale?: "linear" | "log" | undefined;
|
|
829
883
|
showGrid?: boolean | undefined;
|
|
830
884
|
showTicks?: boolean | undefined;
|
|
885
|
+
hiddenLabels?: boolean | undefined;
|
|
831
886
|
} | undefined;
|
|
832
887
|
yAxis?: {
|
|
833
888
|
scale?: "linear" | "log" | undefined;
|
|
834
889
|
showGrid?: boolean | undefined;
|
|
835
890
|
showTicks?: boolean | undefined;
|
|
891
|
+
hiddenLabels?: boolean | undefined;
|
|
836
892
|
} | undefined;
|
|
837
893
|
facetBy?: {
|
|
838
894
|
type: "column";
|