@milaboratories/miplots4 1.0.95 → 1.0.97
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 +7 -0
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -648,6 +648,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
648
648
|
layers: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
649
649
|
type: z.ZodLiteral<"bins">;
|
|
650
650
|
aes: z.ZodOptional<z.ZodObject<{
|
|
651
|
+
lineColor: z.ZodOptional<z.ZodString>;
|
|
651
652
|
fillColor: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
652
653
|
type: z.ZodLiteral<"grouping">;
|
|
653
654
|
value: z.ZodString;
|
|
@@ -672,6 +673,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
672
673
|
}>]>>;
|
|
673
674
|
opacity: z.ZodOptional<z.ZodNumber>;
|
|
674
675
|
}, "strip", z.ZodTypeAny, {
|
|
676
|
+
lineColor?: string | undefined;
|
|
675
677
|
opacity?: number | undefined;
|
|
676
678
|
fillColor?: string | {
|
|
677
679
|
type: "grouping";
|
|
@@ -682,6 +684,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
682
684
|
domain?: number[] | undefined;
|
|
683
685
|
} | undefined;
|
|
684
686
|
}, {
|
|
687
|
+
lineColor?: string | undefined;
|
|
685
688
|
opacity?: number | undefined;
|
|
686
689
|
fillColor?: string | {
|
|
687
690
|
type: "grouping";
|
|
@@ -695,6 +698,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
695
698
|
}, "strip", z.ZodTypeAny, {
|
|
696
699
|
type: "bins";
|
|
697
700
|
aes?: {
|
|
701
|
+
lineColor?: string | undefined;
|
|
698
702
|
opacity?: number | undefined;
|
|
699
703
|
fillColor?: string | {
|
|
700
704
|
type: "grouping";
|
|
@@ -708,6 +712,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
708
712
|
}, {
|
|
709
713
|
type: "bins";
|
|
710
714
|
aes?: {
|
|
715
|
+
lineColor?: string | undefined;
|
|
711
716
|
opacity?: number | undefined;
|
|
712
717
|
fillColor?: string | {
|
|
713
718
|
type: "grouping";
|
|
@@ -738,6 +743,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
738
743
|
layers: ({
|
|
739
744
|
type: "bins";
|
|
740
745
|
aes?: {
|
|
746
|
+
lineColor?: string | undefined;
|
|
741
747
|
opacity?: number | undefined;
|
|
742
748
|
fillColor?: string | {
|
|
743
749
|
type: "grouping";
|
|
@@ -827,6 +833,7 @@ declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
827
833
|
layers: ({
|
|
828
834
|
type: "bins";
|
|
829
835
|
aes?: {
|
|
836
|
+
lineColor?: string | undefined;
|
|
830
837
|
opacity?: number | undefined;
|
|
831
838
|
fillColor?: string | {
|
|
832
839
|
type: "grouping";
|