@milaboratories/miplots4 1.0.131 → 1.0.133
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/AbstractChart.d.ts +2 -0
- package/dist/AbstractChart.d.ts.map +1 -1
- package/dist/AbstractChart.js +5 -4
- package/dist/AbstractChart.js.map +1 -1
- package/dist/MiPlots.d.ts +1 -0
- package/dist/MiPlots.d.ts.map +1 -1
- package/dist/MiPlots.js +3 -0
- package/dist/MiPlots.js.map +1 -1
- package/dist/bubble/index.d.ts.map +1 -1
- package/dist/bubble/index.js +22 -22
- package/dist/bubble/index.js.map +1 -1
- package/dist/common/Error.d.ts +1 -1
- package/dist/common/Error.d.ts.map +1 -1
- package/dist/common/Error.js +4 -22
- package/dist/common/Error.js.map +1 -1
- package/dist/dendro/index.d.ts.map +1 -1
- package/dist/dendro/index.js +25 -25
- package/dist/dendro/index.js.map +1 -1
- package/dist/discrete/index.d.ts.map +1 -1
- package/dist/discrete/index.js +49 -49
- package/dist/discrete/index.js.map +1 -1
- package/dist/heatmap/components/Annotations/Annotation.d.ts.map +1 -1
- package/dist/heatmap/components/Annotations/Annotation.js +34 -33
- package/dist/heatmap/components/Annotations/Annotation.js.map +1 -1
- package/dist/heatmap/components/Chart.d.ts.map +1 -1
- package/dist/heatmap/components/Chart.js +90 -85
- package/dist/heatmap/components/Chart.js.map +1 -1
- package/dist/heatmap/components/types.d.ts +2 -1
- package/dist/heatmap/components/types.d.ts.map +1 -1
- package/dist/heatmap/index.d.ts.map +1 -1
- package/dist/heatmap/index.js +18 -18
- package/dist/heatmap/index.js.map +1 -1
- package/dist/histogram/index.d.ts.map +1 -1
- package/dist/histogram/index.js +22 -22
- package/dist/histogram/index.js.map +1 -1
- package/dist/scatterplot/ScatterplotSettingsImpl.d.ts +6 -3
- package/dist/scatterplot/ScatterplotSettingsImpl.d.ts.map +1 -1
- package/dist/scatterplot/ScatterplotSettingsImpl.js +56 -57
- package/dist/scatterplot/ScatterplotSettingsImpl.js.map +1 -1
- package/dist/scatterplot/dots.d.ts +2 -1
- package/dist/scatterplot/dots.d.ts.map +1 -1
- package/dist/scatterplot/dots.js +24 -27
- package/dist/scatterplot/dots.js.map +1 -1
- package/dist/scatterplot/getLayersData.d.ts.map +1 -1
- package/dist/scatterplot/getLayersData.js +15 -12
- package/dist/scatterplot/getLayersData.js.map +1 -1
- package/dist/scatterplot/index.d.ts.map +1 -1
- package/dist/scatterplot/index.js +66 -72
- package/dist/scatterplot/index.js.map +1 -1
- package/dist/scatterplot/utils/createLegendInfo.d.ts +3 -3
- package/dist/scatterplot/utils/createLegendInfo.d.ts.map +1 -1
- package/dist/scatterplot/utils/createLegendInfo.js +44 -39
- package/dist/scatterplot/utils/createLegendInfo.js.map +1 -1
- package/dist/scatterplot/utils/sortDotsByGrouping.d.ts +8 -0
- package/dist/scatterplot/utils/sortDotsByGrouping.d.ts.map +1 -0
- package/dist/scatterplot/utils/sortDotsByGrouping.js +18 -0
- package/dist/scatterplot/utils/sortDotsByGrouping.js.map +1 -0
- package/dist/scatterplot-umap/SettingsImpl.d.ts +6 -3
- package/dist/scatterplot-umap/SettingsImpl.d.ts.map +1 -1
- package/dist/scatterplot-umap/SettingsImpl.js +38 -39
- package/dist/scatterplot-umap/SettingsImpl.js.map +1 -1
- package/dist/scatterplot-umap/index.d.ts.map +1 -1
- package/dist/scatterplot-umap/index.js +72 -68
- package/dist/scatterplot-umap/index.js.map +1 -1
- package/dist/types/bubble.d.ts +12 -12
- package/dist/types/dendro.d.ts +8 -8
- package/dist/types/discrete.d.ts +20 -20
- package/dist/types/heatmap.d.ts +28 -28
- package/dist/types/histogram.d.ts +22 -22
- package/dist/types/scatterplot-umap.d.ts +126 -76
- package/dist/types/scatterplot-umap.d.ts.map +1 -1
- package/dist/types/scatterplot-umap.js +22 -16
- package/dist/types/scatterplot-umap.js.map +1 -1
- package/dist/types/scatterplot.d.ts +126 -76
- package/dist/types/scatterplot.d.ts.map +1 -1
- package/dist/types/scatterplot.js +16 -10
- package/dist/types/scatterplot.js.map +1 -1
- package/dist/utils/arraysAreDifferent.d.ts +2 -0
- package/dist/utils/arraysAreDifferent.d.ts.map +1 -0
- package/dist/utils/arraysAreDifferent.js +7 -0
- package/dist/utils/arraysAreDifferent.js.map +1 -0
- package/dist/utils/getChartEdgeSides.d.ts +1 -1
- package/package.json +1 -1
package/dist/types/dendro.d.ts
CHANGED
|
@@ -9,11 +9,11 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
10
|
name: string;
|
|
11
11
|
show?: boolean | undefined;
|
|
12
|
-
position?: "
|
|
12
|
+
position?: "left" | "center" | "right" | undefined;
|
|
13
13
|
}, {
|
|
14
14
|
name: string;
|
|
15
15
|
show?: boolean | undefined;
|
|
16
|
-
position?: "
|
|
16
|
+
position?: "left" | "center" | "right" | undefined;
|
|
17
17
|
}>;
|
|
18
18
|
size: z.ZodOptional<z.ZodObject<{
|
|
19
19
|
width: z.ZodOptional<z.ZodNumber>;
|
|
@@ -47,10 +47,10 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
47
47
|
position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
|
|
48
48
|
}, "strip", z.ZodTypeAny, {
|
|
49
49
|
show?: boolean | undefined;
|
|
50
|
-
position?: "right" | "
|
|
50
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
51
51
|
}, {
|
|
52
52
|
show?: boolean | undefined;
|
|
53
|
-
position?: "right" | "
|
|
53
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
54
54
|
}>>;
|
|
55
55
|
facetSettings: z.ZodOptional<z.ZodObject<{
|
|
56
56
|
nRows: z.ZodOptional<z.ZodNumber>;
|
|
@@ -699,7 +699,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
699
699
|
title: {
|
|
700
700
|
name: string;
|
|
701
701
|
show?: boolean | undefined;
|
|
702
|
-
position?: "
|
|
702
|
+
position?: "left" | "center" | "right" | undefined;
|
|
703
703
|
};
|
|
704
704
|
id: {
|
|
705
705
|
type: "column";
|
|
@@ -809,7 +809,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
809
809
|
} | undefined;
|
|
810
810
|
legend?: {
|
|
811
811
|
show?: boolean | undefined;
|
|
812
|
-
position?: "right" | "
|
|
812
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
813
813
|
} | undefined;
|
|
814
814
|
facetSettings?: {
|
|
815
815
|
nRows?: number | undefined;
|
|
@@ -871,7 +871,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
871
871
|
title: {
|
|
872
872
|
name: string;
|
|
873
873
|
show?: boolean | undefined;
|
|
874
|
-
position?: "
|
|
874
|
+
position?: "left" | "center" | "right" | undefined;
|
|
875
875
|
};
|
|
876
876
|
id: {
|
|
877
877
|
type: "column";
|
|
@@ -981,7 +981,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
|
|
|
981
981
|
} | undefined;
|
|
982
982
|
legend?: {
|
|
983
983
|
show?: boolean | undefined;
|
|
984
|
-
position?: "right" | "
|
|
984
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
985
985
|
} | undefined;
|
|
986
986
|
facetSettings?: {
|
|
987
987
|
nRows?: number | undefined;
|
package/dist/types/discrete.d.ts
CHANGED
|
@@ -2258,11 +2258,11 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2258
2258
|
}, "strip", z.ZodTypeAny, {
|
|
2259
2259
|
name: string;
|
|
2260
2260
|
show?: boolean | undefined;
|
|
2261
|
-
position?: "
|
|
2261
|
+
position?: "left" | "center" | "right" | undefined;
|
|
2262
2262
|
}, {
|
|
2263
2263
|
name: string;
|
|
2264
2264
|
show?: boolean | undefined;
|
|
2265
|
-
position?: "
|
|
2265
|
+
position?: "left" | "center" | "right" | undefined;
|
|
2266
2266
|
}>;
|
|
2267
2267
|
y: z.ZodObject<{
|
|
2268
2268
|
type: z.ZodLiteral<"column">;
|
|
@@ -2304,10 +2304,10 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2304
2304
|
position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
|
|
2305
2305
|
}, "strip", z.ZodTypeAny, {
|
|
2306
2306
|
show?: boolean | undefined;
|
|
2307
|
-
position?: "right" | "
|
|
2307
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
2308
2308
|
}, {
|
|
2309
2309
|
show?: boolean | undefined;
|
|
2310
|
-
position?: "right" | "
|
|
2310
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
2311
2311
|
}>>;
|
|
2312
2312
|
tooltips: z.ZodOptional<z.ZodObject<{
|
|
2313
2313
|
box: z.ZodOptional<z.ZodObject<{
|
|
@@ -2525,6 +2525,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2525
2525
|
label?: string | undefined;
|
|
2526
2526
|
valueLabels?: string | undefined;
|
|
2527
2527
|
};
|
|
2528
|
+
order?: (string | number | null)[] | undefined;
|
|
2528
2529
|
inheritedAes?: Record<string, {
|
|
2529
2530
|
dotFill?: string | undefined;
|
|
2530
2531
|
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" | undefined;
|
|
@@ -2534,7 +2535,6 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2534
2535
|
lineColor?: string | undefined;
|
|
2535
2536
|
fillColor?: string | undefined;
|
|
2536
2537
|
}> | undefined;
|
|
2537
|
-
order?: (string | number | null)[] | undefined;
|
|
2538
2538
|
allowNullGroup?: boolean | undefined;
|
|
2539
2539
|
}, {
|
|
2540
2540
|
columnName: {
|
|
@@ -2544,6 +2544,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2544
2544
|
label?: string | undefined;
|
|
2545
2545
|
valueLabels?: string | undefined;
|
|
2546
2546
|
};
|
|
2547
|
+
order?: (string | number | null)[] | undefined;
|
|
2547
2548
|
inheritedAes?: Record<string, {
|
|
2548
2549
|
dotFill?: string | undefined;
|
|
2549
2550
|
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" | undefined;
|
|
@@ -2553,7 +2554,6 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2553
2554
|
lineColor?: string | undefined;
|
|
2554
2555
|
fillColor?: string | undefined;
|
|
2555
2556
|
}> | undefined;
|
|
2556
|
-
order?: (string | number | null)[] | undefined;
|
|
2557
2557
|
allowNullGroup?: boolean | undefined;
|
|
2558
2558
|
}>>;
|
|
2559
2559
|
secondaryGrouping: z.ZodOptional<z.ZodObject<{
|
|
@@ -2611,6 +2611,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2611
2611
|
label?: string | undefined;
|
|
2612
2612
|
valueLabels?: string | undefined;
|
|
2613
2613
|
};
|
|
2614
|
+
order?: (string | number | null)[] | undefined;
|
|
2614
2615
|
inheritedAes?: Record<string, {
|
|
2615
2616
|
dotFill?: string | undefined;
|
|
2616
2617
|
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" | undefined;
|
|
@@ -2620,7 +2621,6 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2620
2621
|
lineColor?: string | undefined;
|
|
2621
2622
|
fillColor?: string | undefined;
|
|
2622
2623
|
}> | undefined;
|
|
2623
|
-
order?: (string | number | null)[] | undefined;
|
|
2624
2624
|
allowNullGroup?: boolean | undefined;
|
|
2625
2625
|
}, {
|
|
2626
2626
|
columnName: {
|
|
@@ -2630,6 +2630,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2630
2630
|
label?: string | undefined;
|
|
2631
2631
|
valueLabels?: string | undefined;
|
|
2632
2632
|
};
|
|
2633
|
+
order?: (string | number | null)[] | undefined;
|
|
2633
2634
|
inheritedAes?: Record<string, {
|
|
2634
2635
|
dotFill?: string | undefined;
|
|
2635
2636
|
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" | undefined;
|
|
@@ -2639,7 +2640,6 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2639
2640
|
lineColor?: string | undefined;
|
|
2640
2641
|
fillColor?: string | undefined;
|
|
2641
2642
|
}> | undefined;
|
|
2642
|
-
order?: (string | number | null)[] | undefined;
|
|
2643
2643
|
allowNullGroup?: boolean | undefined;
|
|
2644
2644
|
}>>;
|
|
2645
2645
|
facetBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2674,14 +2674,14 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2674
2674
|
nRows?: number | undefined;
|
|
2675
2675
|
nCols?: number | undefined;
|
|
2676
2676
|
order?: Record<string, (string | number | null)[]> | undefined;
|
|
2677
|
-
titlePosition?: "
|
|
2677
|
+
titlePosition?: "left" | "center" | "right" | undefined;
|
|
2678
2678
|
}, {
|
|
2679
2679
|
sharedX?: boolean | undefined;
|
|
2680
2680
|
sharedY?: boolean | undefined;
|
|
2681
2681
|
nRows?: number | undefined;
|
|
2682
2682
|
nCols?: number | undefined;
|
|
2683
2683
|
order?: Record<string, (string | number | null)[]> | undefined;
|
|
2684
|
-
titlePosition?: "
|
|
2684
|
+
titlePosition?: "left" | "center" | "right" | undefined;
|
|
2685
2685
|
}>>;
|
|
2686
2686
|
xAxis: z.ZodOptional<z.ZodObject<{
|
|
2687
2687
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
@@ -3927,7 +3927,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3927
3927
|
title: {
|
|
3928
3928
|
name: string;
|
|
3929
3929
|
show?: boolean | undefined;
|
|
3930
|
-
position?: "
|
|
3930
|
+
position?: "left" | "center" | "right" | undefined;
|
|
3931
3931
|
};
|
|
3932
3932
|
y: {
|
|
3933
3933
|
type: "column";
|
|
@@ -4165,7 +4165,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4165
4165
|
} | undefined;
|
|
4166
4166
|
legend?: {
|
|
4167
4167
|
show?: boolean | undefined;
|
|
4168
|
-
position?: "right" | "
|
|
4168
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
4169
4169
|
} | undefined;
|
|
4170
4170
|
tooltips?: {
|
|
4171
4171
|
box?: {
|
|
@@ -4208,7 +4208,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4208
4208
|
nRows?: number | undefined;
|
|
4209
4209
|
nCols?: number | undefined;
|
|
4210
4210
|
order?: Record<string, (string | number | null)[]> | undefined;
|
|
4211
|
-
titlePosition?: "
|
|
4211
|
+
titlePosition?: "left" | "center" | "right" | undefined;
|
|
4212
4212
|
} | undefined;
|
|
4213
4213
|
keyColumn?: {
|
|
4214
4214
|
type: "column";
|
|
@@ -4272,6 +4272,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4272
4272
|
label?: string | undefined;
|
|
4273
4273
|
valueLabels?: string | undefined;
|
|
4274
4274
|
};
|
|
4275
|
+
order?: (string | number | null)[] | undefined;
|
|
4275
4276
|
inheritedAes?: Record<string, {
|
|
4276
4277
|
dotFill?: string | undefined;
|
|
4277
4278
|
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" | undefined;
|
|
@@ -4281,7 +4282,6 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4281
4282
|
lineColor?: string | undefined;
|
|
4282
4283
|
fillColor?: string | undefined;
|
|
4283
4284
|
}> | undefined;
|
|
4284
|
-
order?: (string | number | null)[] | undefined;
|
|
4285
4285
|
allowNullGroup?: boolean | undefined;
|
|
4286
4286
|
} | undefined;
|
|
4287
4287
|
secondaryGrouping?: {
|
|
@@ -4292,6 +4292,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4292
4292
|
label?: string | undefined;
|
|
4293
4293
|
valueLabels?: string | undefined;
|
|
4294
4294
|
};
|
|
4295
|
+
order?: (string | number | null)[] | undefined;
|
|
4295
4296
|
inheritedAes?: Record<string, {
|
|
4296
4297
|
dotFill?: string | undefined;
|
|
4297
4298
|
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" | undefined;
|
|
@@ -4301,7 +4302,6 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4301
4302
|
lineColor?: string | undefined;
|
|
4302
4303
|
fillColor?: string | undefined;
|
|
4303
4304
|
}> | undefined;
|
|
4304
|
-
order?: (string | number | null)[] | undefined;
|
|
4305
4305
|
allowNullGroup?: boolean | undefined;
|
|
4306
4306
|
} | undefined;
|
|
4307
4307
|
orientation?: "vertical" | "horizontal" | undefined;
|
|
@@ -4310,7 +4310,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4310
4310
|
title: {
|
|
4311
4311
|
name: string;
|
|
4312
4312
|
show?: boolean | undefined;
|
|
4313
|
-
position?: "
|
|
4313
|
+
position?: "left" | "center" | "right" | undefined;
|
|
4314
4314
|
};
|
|
4315
4315
|
y: {
|
|
4316
4316
|
type: "column";
|
|
@@ -4548,7 +4548,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4548
4548
|
} | undefined;
|
|
4549
4549
|
legend?: {
|
|
4550
4550
|
show?: boolean | undefined;
|
|
4551
|
-
position?: "right" | "
|
|
4551
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
4552
4552
|
} | undefined;
|
|
4553
4553
|
tooltips?: {
|
|
4554
4554
|
box?: {
|
|
@@ -4591,7 +4591,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4591
4591
|
nRows?: number | undefined;
|
|
4592
4592
|
nCols?: number | undefined;
|
|
4593
4593
|
order?: Record<string, (string | number | null)[]> | undefined;
|
|
4594
|
-
titlePosition?: "
|
|
4594
|
+
titlePosition?: "left" | "center" | "right" | undefined;
|
|
4595
4595
|
} | undefined;
|
|
4596
4596
|
keyColumn?: {
|
|
4597
4597
|
type: "column";
|
|
@@ -4655,6 +4655,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4655
4655
|
label?: string | undefined;
|
|
4656
4656
|
valueLabels?: string | undefined;
|
|
4657
4657
|
};
|
|
4658
|
+
order?: (string | number | null)[] | undefined;
|
|
4658
4659
|
inheritedAes?: Record<string, {
|
|
4659
4660
|
dotFill?: string | undefined;
|
|
4660
4661
|
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" | undefined;
|
|
@@ -4664,7 +4665,6 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4664
4665
|
lineColor?: string | undefined;
|
|
4665
4666
|
fillColor?: string | undefined;
|
|
4666
4667
|
}> | undefined;
|
|
4667
|
-
order?: (string | number | null)[] | undefined;
|
|
4668
4668
|
allowNullGroup?: boolean | undefined;
|
|
4669
4669
|
} | undefined;
|
|
4670
4670
|
secondaryGrouping?: {
|
|
@@ -4675,6 +4675,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4675
4675
|
label?: string | undefined;
|
|
4676
4676
|
valueLabels?: string | undefined;
|
|
4677
4677
|
};
|
|
4678
|
+
order?: (string | number | null)[] | undefined;
|
|
4678
4679
|
inheritedAes?: Record<string, {
|
|
4679
4680
|
dotFill?: string | undefined;
|
|
4680
4681
|
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" | undefined;
|
|
@@ -4684,7 +4685,6 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
4684
4685
|
lineColor?: string | undefined;
|
|
4685
4686
|
fillColor?: string | undefined;
|
|
4686
4687
|
}> | undefined;
|
|
4687
|
-
order?: (string | number | null)[] | undefined;
|
|
4688
4688
|
allowNullGroup?: boolean | undefined;
|
|
4689
4689
|
} | undefined;
|
|
4690
4690
|
orientation?: "vertical" | "horizontal" | undefined;
|
package/dist/types/heatmap.d.ts
CHANGED
|
@@ -12,11 +12,11 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
13
|
name: string;
|
|
14
14
|
show?: boolean | undefined;
|
|
15
|
-
position?: "
|
|
15
|
+
position?: "left" | "center" | "right" | undefined;
|
|
16
16
|
}, {
|
|
17
17
|
name: string;
|
|
18
18
|
show?: boolean | undefined;
|
|
19
|
-
position?: "
|
|
19
|
+
position?: "left" | "center" | "right" | undefined;
|
|
20
20
|
}>;
|
|
21
21
|
tooltips: z.ZodOptional<z.ZodObject<{
|
|
22
22
|
show: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -74,10 +74,10 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
74
74
|
position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
|
|
75
75
|
}, "strip", z.ZodTypeAny, {
|
|
76
76
|
show?: boolean | undefined;
|
|
77
|
-
position?: "right" | "
|
|
77
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
78
78
|
}, {
|
|
79
79
|
show?: boolean | undefined;
|
|
80
|
-
position?: "right" | "
|
|
80
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
81
81
|
}>>;
|
|
82
82
|
frame: z.ZodOptional<z.ZodObject<{
|
|
83
83
|
type: z.ZodOptional<z.ZodEnum<["full", "groups", "none"]>>;
|
|
@@ -133,24 +133,24 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
133
133
|
groupLabelsAngle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<45>, z.ZodLiteral<90>]>>;
|
|
134
134
|
}, "strip", z.ZodTypeAny, {
|
|
135
135
|
title?: string | undefined;
|
|
136
|
-
position?: "
|
|
136
|
+
position?: "left" | "right" | undefined;
|
|
137
137
|
showTicks?: boolean | undefined;
|
|
138
138
|
sorting?: "asc" | "desc" | undefined;
|
|
139
139
|
showTitle?: boolean | undefined;
|
|
140
140
|
showAxisLabels?: boolean | undefined;
|
|
141
141
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
142
|
-
groupingPosition?: "
|
|
142
|
+
groupingPosition?: "left" | "right" | undefined;
|
|
143
143
|
showGroupLabels?: boolean | undefined;
|
|
144
144
|
groupLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
145
145
|
}, {
|
|
146
146
|
title?: string | undefined;
|
|
147
|
-
position?: "
|
|
147
|
+
position?: "left" | "right" | undefined;
|
|
148
148
|
showTicks?: boolean | undefined;
|
|
149
149
|
sorting?: "asc" | "desc" | undefined;
|
|
150
150
|
showTitle?: boolean | undefined;
|
|
151
151
|
showAxisLabels?: boolean | undefined;
|
|
152
152
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
153
|
-
groupingPosition?: "
|
|
153
|
+
groupingPosition?: "left" | "right" | undefined;
|
|
154
154
|
showGroupLabels?: boolean | undefined;
|
|
155
155
|
groupLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
156
156
|
}>>;
|
|
@@ -336,7 +336,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
336
336
|
axis: "x";
|
|
337
337
|
position?: "top" | "bottom" | undefined;
|
|
338
338
|
showTitle?: boolean | undefined;
|
|
339
|
-
titlePosition?: "
|
|
339
|
+
titlePosition?: "left" | "right" | undefined;
|
|
340
340
|
colors?: string[] | undefined;
|
|
341
341
|
}, {
|
|
342
342
|
type: "continuous" | "discrete";
|
|
@@ -350,7 +350,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
350
350
|
axis: "x";
|
|
351
351
|
position?: "top" | "bottom" | undefined;
|
|
352
352
|
showTitle?: boolean | undefined;
|
|
353
|
-
titlePosition?: "
|
|
353
|
+
titlePosition?: "left" | "right" | undefined;
|
|
354
354
|
colors?: string[] | undefined;
|
|
355
355
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
356
356
|
valueColumn: z.ZodObject<{
|
|
@@ -389,7 +389,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
389
389
|
valueLabels?: string | undefined;
|
|
390
390
|
};
|
|
391
391
|
axis: "y";
|
|
392
|
-
position?: "
|
|
392
|
+
position?: "left" | "right" | undefined;
|
|
393
393
|
showTitle?: boolean | undefined;
|
|
394
394
|
titlePosition?: "top" | "bottom" | undefined;
|
|
395
395
|
colors?: string[] | undefined;
|
|
@@ -403,7 +403,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
403
403
|
valueLabels?: string | undefined;
|
|
404
404
|
};
|
|
405
405
|
axis: "y";
|
|
406
|
-
position?: "
|
|
406
|
+
position?: "left" | "right" | undefined;
|
|
407
407
|
showTitle?: boolean | undefined;
|
|
408
408
|
titlePosition?: "top" | "bottom" | undefined;
|
|
409
409
|
colors?: string[] | undefined;
|
|
@@ -985,7 +985,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
985
985
|
valueLabels?: string | undefined;
|
|
986
986
|
} | undefined;
|
|
987
987
|
} | undefined;
|
|
988
|
-
position?: "
|
|
988
|
+
position?: "left" | "right" | undefined;
|
|
989
989
|
distance?: "euclidean" | "squaredEuclidean" | undefined;
|
|
990
990
|
linkage?: "average" | "complete" | "single" | undefined;
|
|
991
991
|
showNodes?: boolean | undefined;
|
|
@@ -1038,7 +1038,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1038
1038
|
valueLabels?: string | undefined;
|
|
1039
1039
|
} | undefined;
|
|
1040
1040
|
} | undefined;
|
|
1041
|
-
position?: "
|
|
1041
|
+
position?: "left" | "right" | undefined;
|
|
1042
1042
|
distance?: "euclidean" | "squaredEuclidean" | undefined;
|
|
1043
1043
|
linkage?: "average" | "complete" | "single" | undefined;
|
|
1044
1044
|
showNodes?: boolean | undefined;
|
|
@@ -1105,7 +1105,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1105
1105
|
title: {
|
|
1106
1106
|
name: string;
|
|
1107
1107
|
show?: boolean | undefined;
|
|
1108
|
-
position?: "
|
|
1108
|
+
position?: "left" | "center" | "right" | undefined;
|
|
1109
1109
|
};
|
|
1110
1110
|
xColumn: {
|
|
1111
1111
|
type: "column";
|
|
@@ -1144,7 +1144,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1144
1144
|
} | undefined;
|
|
1145
1145
|
legend?: {
|
|
1146
1146
|
show?: boolean | undefined;
|
|
1147
|
-
position?: "right" | "
|
|
1147
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
1148
1148
|
} | undefined;
|
|
1149
1149
|
tooltips?: {
|
|
1150
1150
|
show?: boolean | undefined;
|
|
@@ -1179,13 +1179,13 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1179
1179
|
} | undefined;
|
|
1180
1180
|
yAxis?: {
|
|
1181
1181
|
title?: string | undefined;
|
|
1182
|
-
position?: "
|
|
1182
|
+
position?: "left" | "right" | undefined;
|
|
1183
1183
|
showTicks?: boolean | undefined;
|
|
1184
1184
|
sorting?: "asc" | "desc" | undefined;
|
|
1185
1185
|
showTitle?: boolean | undefined;
|
|
1186
1186
|
showAxisLabels?: boolean | undefined;
|
|
1187
1187
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
1188
|
-
groupingPosition?: "
|
|
1188
|
+
groupingPosition?: "left" | "right" | undefined;
|
|
1189
1189
|
showGroupLabels?: boolean | undefined;
|
|
1190
1190
|
groupLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
1191
1191
|
} | undefined;
|
|
@@ -1229,7 +1229,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1229
1229
|
axis: "x";
|
|
1230
1230
|
position?: "top" | "bottom" | undefined;
|
|
1231
1231
|
showTitle?: boolean | undefined;
|
|
1232
|
-
titlePosition?: "
|
|
1232
|
+
titlePosition?: "left" | "right" | undefined;
|
|
1233
1233
|
colors?: string[] | undefined;
|
|
1234
1234
|
} | {
|
|
1235
1235
|
type: "continuous" | "discrete";
|
|
@@ -1241,7 +1241,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1241
1241
|
valueLabels?: string | undefined;
|
|
1242
1242
|
};
|
|
1243
1243
|
axis: "y";
|
|
1244
|
-
position?: "
|
|
1244
|
+
position?: "left" | "right" | undefined;
|
|
1245
1245
|
showTitle?: boolean | undefined;
|
|
1246
1246
|
titlePosition?: "top" | "bottom" | undefined;
|
|
1247
1247
|
colors?: string[] | undefined;
|
|
@@ -1346,7 +1346,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1346
1346
|
valueLabels?: string | undefined;
|
|
1347
1347
|
} | undefined;
|
|
1348
1348
|
} | undefined;
|
|
1349
|
-
position?: "
|
|
1349
|
+
position?: "left" | "right" | undefined;
|
|
1350
1350
|
distance?: "euclidean" | "squaredEuclidean" | undefined;
|
|
1351
1351
|
linkage?: "average" | "complete" | "single" | undefined;
|
|
1352
1352
|
showNodes?: boolean | undefined;
|
|
@@ -1368,7 +1368,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1368
1368
|
title: {
|
|
1369
1369
|
name: string;
|
|
1370
1370
|
show?: boolean | undefined;
|
|
1371
|
-
position?: "
|
|
1371
|
+
position?: "left" | "center" | "right" | undefined;
|
|
1372
1372
|
};
|
|
1373
1373
|
xColumn: {
|
|
1374
1374
|
type: "column";
|
|
@@ -1407,7 +1407,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1407
1407
|
} | undefined;
|
|
1408
1408
|
legend?: {
|
|
1409
1409
|
show?: boolean | undefined;
|
|
1410
|
-
position?: "right" | "
|
|
1410
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
1411
1411
|
} | undefined;
|
|
1412
1412
|
tooltips?: {
|
|
1413
1413
|
show?: boolean | undefined;
|
|
@@ -1442,13 +1442,13 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1442
1442
|
} | undefined;
|
|
1443
1443
|
yAxis?: {
|
|
1444
1444
|
title?: string | undefined;
|
|
1445
|
-
position?: "
|
|
1445
|
+
position?: "left" | "right" | undefined;
|
|
1446
1446
|
showTicks?: boolean | undefined;
|
|
1447
1447
|
sorting?: "asc" | "desc" | undefined;
|
|
1448
1448
|
showTitle?: boolean | undefined;
|
|
1449
1449
|
showAxisLabels?: boolean | undefined;
|
|
1450
1450
|
axisLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
1451
|
-
groupingPosition?: "
|
|
1451
|
+
groupingPosition?: "left" | "right" | undefined;
|
|
1452
1452
|
showGroupLabels?: boolean | undefined;
|
|
1453
1453
|
groupLabelsAngle?: 0 | 45 | 90 | undefined;
|
|
1454
1454
|
} | undefined;
|
|
@@ -1492,7 +1492,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1492
1492
|
axis: "x";
|
|
1493
1493
|
position?: "top" | "bottom" | undefined;
|
|
1494
1494
|
showTitle?: boolean | undefined;
|
|
1495
|
-
titlePosition?: "
|
|
1495
|
+
titlePosition?: "left" | "right" | undefined;
|
|
1496
1496
|
colors?: string[] | undefined;
|
|
1497
1497
|
} | {
|
|
1498
1498
|
type: "continuous" | "discrete";
|
|
@@ -1504,7 +1504,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1504
1504
|
valueLabels?: string | undefined;
|
|
1505
1505
|
};
|
|
1506
1506
|
axis: "y";
|
|
1507
|
-
position?: "
|
|
1507
|
+
position?: "left" | "right" | undefined;
|
|
1508
1508
|
showTitle?: boolean | undefined;
|
|
1509
1509
|
titlePosition?: "top" | "bottom" | undefined;
|
|
1510
1510
|
colors?: string[] | undefined;
|
|
@@ -1609,7 +1609,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1609
1609
|
valueLabels?: string | undefined;
|
|
1610
1610
|
} | undefined;
|
|
1611
1611
|
} | undefined;
|
|
1612
|
-
position?: "
|
|
1612
|
+
position?: "left" | "right" | undefined;
|
|
1613
1613
|
distance?: "euclidean" | "squaredEuclidean" | undefined;
|
|
1614
1614
|
linkage?: "average" | "complete" | "single" | undefined;
|
|
1615
1615
|
showNodes?: boolean | undefined;
|
|
@@ -230,11 +230,11 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
230
230
|
}, "strip", z.ZodTypeAny, {
|
|
231
231
|
name: string;
|
|
232
232
|
show?: boolean | undefined;
|
|
233
|
-
position?: "
|
|
233
|
+
position?: "left" | "center" | "right" | undefined;
|
|
234
234
|
}, {
|
|
235
235
|
name: string;
|
|
236
236
|
show?: boolean | undefined;
|
|
237
|
-
position?: "
|
|
237
|
+
position?: "left" | "center" | "right" | undefined;
|
|
238
238
|
}>;
|
|
239
239
|
size: z.ZodOptional<z.ZodObject<{
|
|
240
240
|
width: z.ZodOptional<z.ZodNumber>;
|
|
@@ -257,10 +257,10 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
257
257
|
position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
|
|
258
258
|
}, "strip", z.ZodTypeAny, {
|
|
259
259
|
show?: boolean | undefined;
|
|
260
|
-
position?: "right" | "
|
|
260
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
261
261
|
}, {
|
|
262
262
|
show?: boolean | undefined;
|
|
263
|
-
position?: "right" | "
|
|
263
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
264
264
|
}>>;
|
|
265
265
|
frame: z.ZodOptional<z.ZodObject<{
|
|
266
266
|
type: z.ZodOptional<z.ZodEnum<["left", "bottom", "left-bottom", "full", "empty"]>>;
|
|
@@ -536,7 +536,7 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
536
536
|
title: {
|
|
537
537
|
name: string;
|
|
538
538
|
show?: boolean | undefined;
|
|
539
|
-
position?: "
|
|
539
|
+
position?: "left" | "center" | "right" | undefined;
|
|
540
540
|
};
|
|
541
541
|
layers: ({
|
|
542
542
|
type: "bins";
|
|
@@ -579,7 +579,7 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
579
579
|
} | undefined;
|
|
580
580
|
legend?: {
|
|
581
581
|
show?: boolean | undefined;
|
|
582
|
-
position?: "right" | "
|
|
582
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
583
583
|
} | undefined;
|
|
584
584
|
frame?: {
|
|
585
585
|
type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
|
|
@@ -609,13 +609,6 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
609
609
|
showTicks?: boolean | undefined;
|
|
610
610
|
hiddenLabels?: boolean | undefined;
|
|
611
611
|
} | undefined;
|
|
612
|
-
facetBy?: {
|
|
613
|
-
type: "column";
|
|
614
|
-
value: string;
|
|
615
|
-
format?: string | undefined;
|
|
616
|
-
label?: string | undefined;
|
|
617
|
-
valueLabels?: string | undefined;
|
|
618
|
-
}[] | undefined;
|
|
619
612
|
inheritedAes?: Record<string, Record<string, {
|
|
620
613
|
dotFill?: string | undefined;
|
|
621
614
|
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" | undefined;
|
|
@@ -625,6 +618,13 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
625
618
|
lineColor?: string | undefined;
|
|
626
619
|
fillColor?: string | undefined;
|
|
627
620
|
}>> | undefined;
|
|
621
|
+
facetBy?: {
|
|
622
|
+
type: "column";
|
|
623
|
+
value: string;
|
|
624
|
+
format?: string | undefined;
|
|
625
|
+
label?: string | undefined;
|
|
626
|
+
valueLabels?: string | undefined;
|
|
627
|
+
}[] | undefined;
|
|
628
628
|
binsCount?: number | undefined;
|
|
629
629
|
groupingStack?: "vertical" | "horizontal" | undefined;
|
|
630
630
|
groupingDirection?: "reverse" | "straight" | undefined;
|
|
@@ -634,7 +634,7 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
634
634
|
title: {
|
|
635
635
|
name: string;
|
|
636
636
|
show?: boolean | undefined;
|
|
637
|
-
position?: "
|
|
637
|
+
position?: "left" | "center" | "right" | undefined;
|
|
638
638
|
};
|
|
639
639
|
layers: ({
|
|
640
640
|
type: "bins";
|
|
@@ -677,7 +677,7 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
677
677
|
} | undefined;
|
|
678
678
|
legend?: {
|
|
679
679
|
show?: boolean | undefined;
|
|
680
|
-
position?: "right" | "
|
|
680
|
+
position?: "right" | "inside" | "top" | "bottom" | undefined;
|
|
681
681
|
} | undefined;
|
|
682
682
|
frame?: {
|
|
683
683
|
type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
|
|
@@ -707,13 +707,6 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
707
707
|
showTicks?: boolean | undefined;
|
|
708
708
|
hiddenLabels?: boolean | undefined;
|
|
709
709
|
} | undefined;
|
|
710
|
-
facetBy?: {
|
|
711
|
-
type: "column";
|
|
712
|
-
value: string;
|
|
713
|
-
format?: string | undefined;
|
|
714
|
-
label?: string | undefined;
|
|
715
|
-
valueLabels?: string | undefined;
|
|
716
|
-
}[] | undefined;
|
|
717
710
|
inheritedAes?: Record<string, Record<string, {
|
|
718
711
|
dotFill?: string | undefined;
|
|
719
712
|
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" | undefined;
|
|
@@ -723,6 +716,13 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
723
716
|
lineColor?: string | undefined;
|
|
724
717
|
fillColor?: string | undefined;
|
|
725
718
|
}>> | undefined;
|
|
719
|
+
facetBy?: {
|
|
720
|
+
type: "column";
|
|
721
|
+
value: string;
|
|
722
|
+
format?: string | undefined;
|
|
723
|
+
label?: string | undefined;
|
|
724
|
+
valueLabels?: string | undefined;
|
|
725
|
+
}[] | undefined;
|
|
726
726
|
binsCount?: number | undefined;
|
|
727
727
|
groupingStack?: "vertical" | "horizontal" | undefined;
|
|
728
728
|
groupingDirection?: "reverse" | "straight" | undefined;
|