@milaboratories/miplots4 1.2.1 → 1.2.2
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/common/ContinuousGrid.d.ts.map +1 -1
- package/dist/common/ContinuousGrid.js +90 -56
- package/dist/common/ContinuousGrid.js.map +1 -1
- package/dist/histogram/ChartRenderer.d.ts.map +1 -1
- package/dist/histogram/ChartRenderer.js +6 -0
- package/dist/histogram/ChartRenderer.js.map +1 -1
- package/dist/histogram/HistogramSettingsImpl.d.ts +5 -1
- package/dist/histogram/HistogramSettingsImpl.d.ts.map +1 -1
- package/dist/histogram/HistogramSettingsImpl.js.map +1 -1
- package/dist/scatterplot/components/Grid.d.ts.map +1 -1
- package/dist/scatterplot/components/Grid.js +109 -71
- package/dist/scatterplot/components/Grid.js.map +1 -1
- package/dist/types/bubble.d.ts +8 -8
- package/dist/types/common.d.ts +62 -6
- package/dist/types/common.d.ts.map +1 -1
- package/dist/types/common.js +15 -6
- package/dist/types/common.js.map +1 -1
- package/dist/types/dendro.d.ts +6 -6
- package/dist/types/discrete.d.ts +41 -13
- package/dist/types/discrete.d.ts.map +1 -1
- package/dist/types/heatmap.d.ts +4 -4
- package/dist/types/histogram.d.ts +59 -10
- package/dist/types/histogram.d.ts.map +1 -1
- package/dist/types/histogram.js +60 -66
- package/dist/types/histogram.js.map +1 -1
- package/dist/types/scatterplot-umap.d.ts +74 -18
- package/dist/types/scatterplot-umap.d.ts.map +1 -1
- package/dist/types/scatterplot.d.ts +74 -18
- package/dist/types/scatterplot.d.ts.map +1 -1
- package/dist/types/selection.d.ts +8 -8
- package/dist/utils/getChartEdgeSides.d.ts +1 -1
- package/dist/utils/significantLinesStyle.d.ts +8 -0
- package/dist/utils/significantLinesStyle.d.ts.map +1 -0
- package/dist/utils/significantLinesStyle.js +12 -0
- package/dist/utils/significantLinesStyle.js.map +1 -0
- package/package.json +1 -1
package/dist/types/discrete.d.ts
CHANGED
|
@@ -2527,10 +2527,10 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
2527
2527
|
position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
|
|
2528
2528
|
}, "strip", z.ZodTypeAny, {
|
|
2529
2529
|
show?: boolean | undefined;
|
|
2530
|
-
position?: "
|
|
2530
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
2531
2531
|
}, {
|
|
2532
2532
|
show?: boolean | undefined;
|
|
2533
|
-
position?: "
|
|
2533
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
2534
2534
|
}>>;
|
|
2535
2535
|
tooltips: z.ZodOptional<z.ZodObject<{
|
|
2536
2536
|
box: z.ZodOptional<z.ZodObject<{
|
|
@@ -3279,9 +3279,9 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3279
3279
|
frame: z.ZodOptional<z.ZodObject<{
|
|
3280
3280
|
type: z.ZodOptional<z.ZodEnum<["left", "bottom", "left-bottom", "full", "empty"]>>;
|
|
3281
3281
|
}, "strip", z.ZodTypeAny, {
|
|
3282
|
-
type?: "
|
|
3282
|
+
type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
|
|
3283
3283
|
}, {
|
|
3284
|
-
type?: "
|
|
3284
|
+
type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
|
|
3285
3285
|
}>>;
|
|
3286
3286
|
orientation: z.ZodOptional<z.ZodEnum<["horizontal", "vertical"]>>;
|
|
3287
3287
|
keyColumn: z.ZodOptional<z.ZodObject<{
|
|
@@ -3656,7 +3656,19 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3656
3656
|
showGrid: z.ZodOptional<z.ZodBoolean>;
|
|
3657
3657
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
3658
3658
|
significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
3659
|
-
significantLinesStyle: z.ZodOptional<z.
|
|
3659
|
+
significantLinesStyle: z.ZodOptional<z.ZodObject<{
|
|
3660
|
+
shape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
3661
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
3662
|
+
labelPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"top">, z.ZodLiteral<"bottom">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>>;
|
|
3663
|
+
}, "strip", z.ZodTypeAny, {
|
|
3664
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3665
|
+
showLabel?: boolean | undefined;
|
|
3666
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
3667
|
+
}, {
|
|
3668
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3669
|
+
showLabel?: boolean | undefined;
|
|
3670
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
3671
|
+
}>>;
|
|
3660
3672
|
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
3661
3673
|
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
3662
3674
|
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3676,7 +3688,11 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3676
3688
|
showTicks?: boolean | undefined;
|
|
3677
3689
|
hiddenLabels?: boolean | undefined;
|
|
3678
3690
|
significantLines?: number[] | undefined;
|
|
3679
|
-
significantLinesStyle?:
|
|
3691
|
+
significantLinesStyle?: {
|
|
3692
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3693
|
+
showLabel?: boolean | undefined;
|
|
3694
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
3695
|
+
} | undefined;
|
|
3680
3696
|
symmetricRange?: number | undefined;
|
|
3681
3697
|
upperValue?: number | undefined;
|
|
3682
3698
|
lowerValue?: number | undefined;
|
|
@@ -3695,7 +3711,11 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
3695
3711
|
showTicks?: boolean | undefined;
|
|
3696
3712
|
hiddenLabels?: boolean | undefined;
|
|
3697
3713
|
significantLines?: number[] | undefined;
|
|
3698
|
-
significantLinesStyle?:
|
|
3714
|
+
significantLinesStyle?: {
|
|
3715
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
3716
|
+
showLabel?: boolean | undefined;
|
|
3717
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
3718
|
+
} | undefined;
|
|
3699
3719
|
symmetricRange?: number | undefined;
|
|
3700
3720
|
upperValue?: number | undefined;
|
|
3701
3721
|
lowerValue?: number | undefined;
|
|
@@ -5174,7 +5194,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
5174
5194
|
} | undefined;
|
|
5175
5195
|
legend?: {
|
|
5176
5196
|
show?: boolean | undefined;
|
|
5177
|
-
position?: "
|
|
5197
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
5178
5198
|
} | undefined;
|
|
5179
5199
|
tooltips?: {
|
|
5180
5200
|
box?: {
|
|
@@ -5299,7 +5319,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
5299
5319
|
} | undefined;
|
|
5300
5320
|
} | undefined;
|
|
5301
5321
|
frame?: {
|
|
5302
|
-
type?: "
|
|
5322
|
+
type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
|
|
5303
5323
|
} | undefined;
|
|
5304
5324
|
facetSettings?: {
|
|
5305
5325
|
sharedX?: boolean | undefined;
|
|
@@ -5352,7 +5372,11 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
5352
5372
|
showTicks?: boolean | undefined;
|
|
5353
5373
|
hiddenLabels?: boolean | undefined;
|
|
5354
5374
|
significantLines?: number[] | undefined;
|
|
5355
|
-
significantLinesStyle?:
|
|
5375
|
+
significantLinesStyle?: {
|
|
5376
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
5377
|
+
showLabel?: boolean | undefined;
|
|
5378
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
5379
|
+
} | undefined;
|
|
5356
5380
|
symmetricRange?: number | undefined;
|
|
5357
5381
|
upperValue?: number | undefined;
|
|
5358
5382
|
lowerValue?: number | undefined;
|
|
@@ -5681,7 +5705,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
5681
5705
|
} | undefined;
|
|
5682
5706
|
legend?: {
|
|
5683
5707
|
show?: boolean | undefined;
|
|
5684
|
-
position?: "
|
|
5708
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
5685
5709
|
} | undefined;
|
|
5686
5710
|
tooltips?: {
|
|
5687
5711
|
box?: {
|
|
@@ -5806,7 +5830,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
5806
5830
|
} | undefined;
|
|
5807
5831
|
} | undefined;
|
|
5808
5832
|
frame?: {
|
|
5809
|
-
type?: "
|
|
5833
|
+
type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
|
|
5810
5834
|
} | undefined;
|
|
5811
5835
|
facetSettings?: {
|
|
5812
5836
|
sharedX?: boolean | undefined;
|
|
@@ -5859,7 +5883,11 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
|
|
|
5859
5883
|
showTicks?: boolean | undefined;
|
|
5860
5884
|
hiddenLabels?: boolean | undefined;
|
|
5861
5885
|
significantLines?: number[] | undefined;
|
|
5862
|
-
significantLinesStyle?:
|
|
5886
|
+
significantLinesStyle?: {
|
|
5887
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
5888
|
+
showLabel?: boolean | undefined;
|
|
5889
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
5890
|
+
} | undefined;
|
|
5863
5891
|
symmetricRange?: number | undefined;
|
|
5864
5892
|
upperValue?: number | undefined;
|
|
5865
5893
|
lowerValue?: number | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"discrete.d.ts","sourceRoot":"","sources":["../../src/types/discrete.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA8DvB,4GAA4G
|
|
1
|
+
{"version":3,"file":"discrete.d.ts","sourceRoot":"","sources":["../../src/types/discrete.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA8DvB,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUtH,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,MAAM,MAAM,YAAY,GAAG;IACvB,YAAY,EAAE,QAAQ,EAAE,CAAC;IACzB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACpC,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,GAAG,IAAI,CAAA;CACvD,CAAA"}
|
package/dist/types/heatmap.d.ts
CHANGED
|
@@ -96,10 +96,10 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
96
96
|
position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
|
|
97
97
|
}, "strip", z.ZodTypeAny, {
|
|
98
98
|
show?: boolean | undefined;
|
|
99
|
-
position?: "
|
|
99
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
100
100
|
}, {
|
|
101
101
|
show?: boolean | undefined;
|
|
102
|
-
position?: "
|
|
102
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
103
103
|
}>>;
|
|
104
104
|
frame: z.ZodOptional<z.ZodObject<{
|
|
105
105
|
type: z.ZodOptional<z.ZodEnum<["full", "groups", "none"]>>;
|
|
@@ -1471,7 +1471,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1471
1471
|
} | undefined;
|
|
1472
1472
|
legend?: {
|
|
1473
1473
|
show?: boolean | undefined;
|
|
1474
|
-
position?: "
|
|
1474
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
1475
1475
|
} | undefined;
|
|
1476
1476
|
tooltips?: {
|
|
1477
1477
|
show?: boolean | undefined;
|
|
@@ -1809,7 +1809,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
|
|
|
1809
1809
|
} | undefined;
|
|
1810
1810
|
legend?: {
|
|
1811
1811
|
show?: boolean | undefined;
|
|
1812
|
-
position?: "
|
|
1812
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
1813
1813
|
} | undefined;
|
|
1814
1814
|
tooltips?: {
|
|
1815
1815
|
show?: boolean | undefined;
|
|
@@ -257,17 +257,17 @@ 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?: "
|
|
260
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
261
261
|
}, {
|
|
262
262
|
show?: boolean | undefined;
|
|
263
|
-
position?: "
|
|
263
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
264
264
|
}>>;
|
|
265
265
|
frame: z.ZodOptional<z.ZodObject<{
|
|
266
266
|
type: z.ZodOptional<z.ZodEnum<["left", "bottom", "left-bottom", "full", "empty"]>>;
|
|
267
267
|
}, "strip", z.ZodTypeAny, {
|
|
268
|
-
type?: "
|
|
268
|
+
type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
|
|
269
269
|
}, {
|
|
270
|
-
type?: "
|
|
270
|
+
type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
|
|
271
271
|
}>>;
|
|
272
272
|
facetSettings: z.ZodOptional<z.ZodObject<{
|
|
273
273
|
sharedX: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -314,7 +314,7 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
314
314
|
valueLabelsMap?: Record<string, string> | undefined;
|
|
315
315
|
nullValueLabel?: string | undefined;
|
|
316
316
|
}>;
|
|
317
|
-
xAxis: z.ZodOptional<z.ZodObject<{
|
|
317
|
+
xAxis: z.ZodOptional<z.ZodObject<Omit<{
|
|
318
318
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
319
319
|
type: z.ZodLiteral<"column">;
|
|
320
320
|
value: z.ZodString;
|
|
@@ -343,8 +343,25 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
343
343
|
scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
|
|
344
344
|
showGrid: z.ZodOptional<z.ZodBoolean>;
|
|
345
345
|
showTicks: z.ZodOptional<z.ZodBoolean>;
|
|
346
|
+
significantLines: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
347
|
+
significantLinesStyle: z.ZodOptional<z.ZodObject<{
|
|
348
|
+
shape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
|
|
349
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
350
|
+
labelPosition: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"top">, z.ZodLiteral<"bottom">, z.ZodLiteral<"left">, z.ZodLiteral<"right">]>>;
|
|
351
|
+
}, "strip", z.ZodTypeAny, {
|
|
352
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
353
|
+
showLabel?: boolean | undefined;
|
|
354
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
355
|
+
}, {
|
|
356
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
357
|
+
showLabel?: boolean | undefined;
|
|
358
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
359
|
+
}>>;
|
|
360
|
+
symmetricRange: z.ZodOptional<z.ZodNumber>;
|
|
361
|
+
upperValue: z.ZodOptional<z.ZodNumber>;
|
|
362
|
+
lowerValue: z.ZodOptional<z.ZodNumber>;
|
|
346
363
|
hiddenLabels: z.ZodOptional<z.ZodBoolean>;
|
|
347
|
-
}, "strip", z.ZodTypeAny, {
|
|
364
|
+
}, "symmetricRange">, "strip", z.ZodTypeAny, {
|
|
348
365
|
title?: string | {
|
|
349
366
|
type: "column";
|
|
350
367
|
value: string;
|
|
@@ -358,6 +375,14 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
358
375
|
showGrid?: boolean | undefined;
|
|
359
376
|
showTicks?: boolean | undefined;
|
|
360
377
|
hiddenLabels?: boolean | undefined;
|
|
378
|
+
significantLines?: number[] | undefined;
|
|
379
|
+
significantLinesStyle?: {
|
|
380
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
381
|
+
showLabel?: boolean | undefined;
|
|
382
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
383
|
+
} | undefined;
|
|
384
|
+
upperValue?: number | undefined;
|
|
385
|
+
lowerValue?: number | undefined;
|
|
361
386
|
}, {
|
|
362
387
|
title?: string | {
|
|
363
388
|
type: "column";
|
|
@@ -372,6 +397,14 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
372
397
|
showGrid?: boolean | undefined;
|
|
373
398
|
showTicks?: boolean | undefined;
|
|
374
399
|
hiddenLabels?: boolean | undefined;
|
|
400
|
+
significantLines?: number[] | undefined;
|
|
401
|
+
significantLinesStyle?: {
|
|
402
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
403
|
+
showLabel?: boolean | undefined;
|
|
404
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
405
|
+
} | undefined;
|
|
406
|
+
upperValue?: number | undefined;
|
|
407
|
+
lowerValue?: number | undefined;
|
|
375
408
|
}>>;
|
|
376
409
|
yAxis: z.ZodOptional<z.ZodObject<{
|
|
377
410
|
scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
|
|
@@ -614,10 +647,10 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
614
647
|
} | undefined;
|
|
615
648
|
legend?: {
|
|
616
649
|
show?: boolean | undefined;
|
|
617
|
-
position?: "
|
|
650
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
618
651
|
} | undefined;
|
|
619
652
|
frame?: {
|
|
620
|
-
type?: "
|
|
653
|
+
type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
|
|
621
654
|
} | undefined;
|
|
622
655
|
facetSettings?: {
|
|
623
656
|
sharedX?: boolean | undefined;
|
|
@@ -640,6 +673,14 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
640
673
|
showGrid?: boolean | undefined;
|
|
641
674
|
showTicks?: boolean | undefined;
|
|
642
675
|
hiddenLabels?: boolean | undefined;
|
|
676
|
+
significantLines?: number[] | undefined;
|
|
677
|
+
significantLinesStyle?: {
|
|
678
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
679
|
+
showLabel?: boolean | undefined;
|
|
680
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
681
|
+
} | undefined;
|
|
682
|
+
upperValue?: number | undefined;
|
|
683
|
+
lowerValue?: number | undefined;
|
|
643
684
|
} | undefined;
|
|
644
685
|
yAxis?: {
|
|
645
686
|
scale?: "linear" | "log" | undefined;
|
|
@@ -721,10 +762,10 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
721
762
|
} | undefined;
|
|
722
763
|
legend?: {
|
|
723
764
|
show?: boolean | undefined;
|
|
724
|
-
position?: "
|
|
765
|
+
position?: "top" | "bottom" | "right" | "inside" | undefined;
|
|
725
766
|
} | undefined;
|
|
726
767
|
frame?: {
|
|
727
|
-
type?: "
|
|
768
|
+
type?: "bottom" | "left" | "left-bottom" | "full" | "empty" | undefined;
|
|
728
769
|
} | undefined;
|
|
729
770
|
facetSettings?: {
|
|
730
771
|
sharedX?: boolean | undefined;
|
|
@@ -747,6 +788,14 @@ export declare const HistogramSettingsSchema: z.ZodObject<{
|
|
|
747
788
|
showGrid?: boolean | undefined;
|
|
748
789
|
showTicks?: boolean | undefined;
|
|
749
790
|
hiddenLabels?: boolean | undefined;
|
|
791
|
+
significantLines?: number[] | undefined;
|
|
792
|
+
significantLinesStyle?: {
|
|
793
|
+
shape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
|
|
794
|
+
showLabel?: boolean | undefined;
|
|
795
|
+
labelPosition?: "top" | "bottom" | "left" | "right" | undefined;
|
|
796
|
+
} | undefined;
|
|
797
|
+
upperValue?: number | undefined;
|
|
798
|
+
lowerValue?: number | undefined;
|
|
750
799
|
} | undefined;
|
|
751
800
|
yAxis?: {
|
|
752
801
|
scale?: "linear" | "log" | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"histogram.d.ts","sourceRoot":"","sources":["../../src/types/histogram.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"histogram.d.ts","sourceRoot":"","sources":["../../src/types/histogram.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAUxB,QAAA,MAAM,gBAAgB;;;;;;;;;;;;EAIpB,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEnE,QAAA,MAAM,qCAAqC;;;;;;;;;;;;EAIzC,CAAC;AACH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC;AAE3F,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOnB,CAAC;AACH,QAAA,MAAM,eAAe;;;;;;;;;EAGnB,CAAC;AACH,QAAA,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAA8C,CAAC;AAEzE,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AACxD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAC5D,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsDlC,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
|
package/dist/types/histogram.js
CHANGED
|
@@ -1,76 +1,70 @@
|
|
|
1
|
-
import { AesRecordSchema as e,
|
|
2
|
-
import { z as
|
|
3
|
-
var
|
|
4
|
-
type:
|
|
5
|
-
value:
|
|
6
|
-
palette:
|
|
7
|
-
}),
|
|
8
|
-
domain:
|
|
9
|
-
range:
|
|
10
|
-
type:
|
|
11
|
-
}),
|
|
12
|
-
type:
|
|
13
|
-
aes:
|
|
14
|
-
lineColor:
|
|
15
|
-
fillColor:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
import { AesRecordSchema as e, AxisSettingsContinuousSchema as t, ColumnNameSchema as n, FrameTypeSchema as r, LegendPositionSchema as i, TitlePositionSchema as a } from "./common.js";
|
|
2
|
+
import { z as o } from "zod";
|
|
3
|
+
var s = o.object({
|
|
4
|
+
type: o.literal("grouping"),
|
|
5
|
+
value: o.string(),
|
|
6
|
+
palette: o.optional(o.array(o.string()))
|
|
7
|
+
}), c = o.object({
|
|
8
|
+
domain: o.optional(o.array(o.number())),
|
|
9
|
+
range: o.array(o.string()),
|
|
10
|
+
type: o.optional(o.union([o.literal("linear"), o.literal("log")]))
|
|
11
|
+
}), l = o.object({
|
|
12
|
+
type: o.literal("bins"),
|
|
13
|
+
aes: o.optional(o.object({
|
|
14
|
+
lineColor: o.optional(o.string()),
|
|
15
|
+
fillColor: o.optional(o.union([
|
|
16
|
+
s,
|
|
17
|
+
o.string(),
|
|
18
|
+
c
|
|
19
19
|
])),
|
|
20
|
-
opacity:
|
|
20
|
+
opacity: o.optional(o.number())
|
|
21
21
|
}))
|
|
22
|
-
}),
|
|
23
|
-
type:
|
|
24
|
-
aes:
|
|
25
|
-
}),
|
|
26
|
-
const
|
|
27
|
-
type:
|
|
28
|
-
title:
|
|
29
|
-
name:
|
|
30
|
-
show:
|
|
31
|
-
position:
|
|
22
|
+
}), u = o.object({
|
|
23
|
+
type: o.literal("binsLine"),
|
|
24
|
+
aes: o.optional(o.object({}))
|
|
25
|
+
}), d = o.union([l, u]);
|
|
26
|
+
const f = o.object({
|
|
27
|
+
type: o.literal("histogram"),
|
|
28
|
+
title: o.object({
|
|
29
|
+
name: o.string(),
|
|
30
|
+
show: o.optional(o.boolean()),
|
|
31
|
+
position: o.optional(a)
|
|
32
32
|
}),
|
|
33
|
-
size:
|
|
34
|
-
width:
|
|
35
|
-
height:
|
|
36
|
-
outerOffset:
|
|
37
|
-
innerOffset:
|
|
33
|
+
size: o.optional(o.object({
|
|
34
|
+
width: o.optional(o.number()),
|
|
35
|
+
height: o.optional(o.number()),
|
|
36
|
+
outerOffset: o.optional(o.number()),
|
|
37
|
+
innerOffset: o.optional(o.number())
|
|
38
38
|
})),
|
|
39
|
-
legend:
|
|
40
|
-
show:
|
|
41
|
-
position:
|
|
39
|
+
legend: o.optional(o.object({
|
|
40
|
+
show: o.optional(o.boolean()),
|
|
41
|
+
position: o.optional(i)
|
|
42
42
|
})),
|
|
43
|
-
frame:
|
|
44
|
-
facetSettings:
|
|
45
|
-
sharedX:
|
|
46
|
-
sharedY:
|
|
47
|
-
nRows:
|
|
48
|
-
nCols:
|
|
49
|
-
order:
|
|
43
|
+
frame: o.optional(o.object({ type: o.optional(r) })),
|
|
44
|
+
facetSettings: o.optional(o.object({
|
|
45
|
+
sharedX: o.optional(o.boolean()),
|
|
46
|
+
sharedY: o.optional(o.boolean()),
|
|
47
|
+
nRows: o.optional(o.number()),
|
|
48
|
+
nCols: o.optional(o.number()),
|
|
49
|
+
order: o.optional(o.array(o.string()))
|
|
50
50
|
})),
|
|
51
|
-
binsCount:
|
|
52
|
-
valueColumn:
|
|
53
|
-
xAxis:
|
|
54
|
-
|
|
55
|
-
scale:
|
|
56
|
-
showGrid:
|
|
57
|
-
showTicks:
|
|
58
|
-
hiddenLabels:
|
|
51
|
+
binsCount: o.optional(o.number()),
|
|
52
|
+
valueColumn: n,
|
|
53
|
+
xAxis: o.optional(t.omit({ symmetricRange: !0 })),
|
|
54
|
+
yAxis: o.optional(o.object({
|
|
55
|
+
scale: o.optional(o.union([o.literal("linear"), o.literal("log")])),
|
|
56
|
+
showGrid: o.optional(o.boolean()),
|
|
57
|
+
showTicks: o.optional(o.boolean()),
|
|
58
|
+
hiddenLabels: o.optional(o.boolean())
|
|
59
59
|
})),
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
groupingStack: a.optional(a.union([a.literal("vertical"), a.literal("horizontal")])),
|
|
68
|
-
groupingDirection: a.optional(a.union([a.literal("straight"), a.literal("reverse")])),
|
|
69
|
-
groupingOrder: a.optional(a.array(a.string())),
|
|
70
|
-
facetBy: a.optional(a.array(t)),
|
|
71
|
-
inheritedAes: a.optional(a.record(a.string(), e)),
|
|
72
|
-
layers: a.array(u)
|
|
60
|
+
grouping: o.optional(n),
|
|
61
|
+
groupingStack: o.optional(o.union([o.literal("vertical"), o.literal("horizontal")])),
|
|
62
|
+
groupingDirection: o.optional(o.union([o.literal("straight"), o.literal("reverse")])),
|
|
63
|
+
groupingOrder: o.optional(o.array(o.string())),
|
|
64
|
+
facetBy: o.optional(o.array(n)),
|
|
65
|
+
inheritedAes: o.optional(o.record(o.string(), e)),
|
|
66
|
+
layers: o.array(d)
|
|
73
67
|
});
|
|
74
|
-
export {
|
|
68
|
+
export { f as HistogramSettingsSchema };
|
|
75
69
|
|
|
76
70
|
//# sourceMappingURL=histogram.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"histogram.js","names":[],"sources":["../../src/types/histogram.ts"],"sourcesContent":["import { z } from 'zod';\nimport {\n AesRecordSchema
|
|
1
|
+
{"version":3,"file":"histogram.js","names":[],"sources":["../../src/types/histogram.ts"],"sourcesContent":["import { z } from 'zod';\nimport {\n AesRecordSchema,\n AxisSettingsContinuousSchema,\n ColumnNameSchema,\n FrameTypeSchema,\n LegendPositionSchema,\n TitlePositionSchema\n} from './common';\n\nconst InheritAesSchema = z.object({\n type: z.literal('grouping'),\n value: z.string(), // link to aes mapped to column\n palette: z.optional(z.array(z.string())) // if defined we use palette to create mapping without inheritedAes field\n});\nexport type InheritAesHistogram = z.infer<typeof InheritAesSchema>;\n\nconst ContinuousAesMappingByBinHeightSchema = z.object({\n domain: z.optional(z.array(z.number())),\n range: z.array(z.string()),\n type: z.optional(z.union([z.literal('linear'), z.literal('log')]))\n});\nexport type ContinuousAesHistogram = z.infer<typeof ContinuousAesMappingByBinHeightSchema>;\n\nconst BinsLayerSchema = z.object({\n type: z.literal('bins'),\n aes: z.optional(z.object({\n lineColor: z.optional(z.string()),\n fillColor: z.optional(z.union([InheritAesSchema, z.string(), ContinuousAesMappingByBinHeightSchema])),\n opacity: z.optional(z.number())\n })),\n});\nconst LineLayerSchema = z.object({\n type: z.literal('binsLine'),\n aes: z.optional(z.object({})),\n});\nconst HistogramLayerSchema = z.union([BinsLayerSchema, LineLayerSchema]);\n\nexport type BinsLayer = z.infer<typeof BinsLayerSchema>;\nexport type BinsLineLayer = z.infer<typeof LineLayerSchema>;\nexport type HistogramLayer = z.infer<typeof HistogramLayerSchema>;\n\nexport const HistogramSettingsSchema = z.object({\n type: z.literal('histogram'),\n title: z.object({\n name: z.string(),\n show: z.optional(z.boolean()),\n position: z.optional(TitlePositionSchema),\n }),\n size: z.optional(\n z.object({\n width: z.optional(z.number()),\n height: z.optional(z.number()),\n outerOffset: z.optional(z.number()),\n innerOffset: z.optional(z.number())\n })\n ),\n legend: z.optional(\n z.object({\n show: z.optional(z.boolean()),\n position: z.optional(LegendPositionSchema),\n })\n ),\n frame: z.optional(z.object({type: z.optional(FrameTypeSchema)})),\n facetSettings: z.optional(\n z.object({\n sharedX: z.optional(z.boolean()),\n sharedY: z.optional(z.boolean()),\n nRows: z.optional(z.number()),\n nCols: z.optional(z.number()),\n order: z.optional(z.array(z.string())),\n })\n ),\n binsCount: z.optional(z.number()),\n valueColumn: ColumnNameSchema,\n // AxisSettingsContinuous minus symmetricRange (doesn't apply to\n // binning). Reusing the continuous schema gives significantLines /\n // significantLinesStyle on the value axis, plus upperValue /\n // lowerValue used as soft bounds (extend the data-derived range so\n // off-data threshold lines still show).\n xAxis: z.optional(AxisSettingsContinuousSchema.omit({\n symmetricRange: true,\n })),\n yAxis: z.optional(z.object({\n scale: z.optional(z.union([z.literal('linear'), z.literal('log')])),\n showGrid: z.optional(z.boolean()),\n showTicks: z.optional(z.boolean()),\n hiddenLabels: z.optional(z.boolean())\n })),\n grouping: z.optional(ColumnNameSchema),\n groupingStack: z.optional(z.union([z.literal('vertical'), z.literal('horizontal')])),\n groupingDirection: z.optional(z.union([z.literal('straight'), z.literal('reverse')])),\n groupingOrder: z.optional(z.array(z.string())),\n facetBy: z.optional(z.array(ColumnNameSchema)),\n inheritedAes: z.optional(z.record(z.string(), AesRecordSchema)),\n layers: z.array(HistogramLayerSchema),\n});\n\nexport type HistogramSettings = z.infer<typeof HistogramSettingsSchema>;\n"],"mappings":"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"}
|