@milaboratories/miplots4 1.0.64 → 1.0.66

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
@@ -1,5 +1,802 @@
1
1
  import { z } from 'zod';
2
2
 
3
+ declare const BubblesSettingsSchema: z.ZodObject<{
4
+ type: z.ZodLiteral<"bubble">;
5
+ title: z.ZodObject<{
6
+ name: z.ZodString;
7
+ show: z.ZodOptional<z.ZodBoolean>;
8
+ position: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
9
+ }, "strip", z.ZodTypeAny, {
10
+ name: string;
11
+ show?: boolean | undefined;
12
+ position?: "left" | "center" | "right" | undefined;
13
+ }, {
14
+ name: string;
15
+ show?: boolean | undefined;
16
+ position?: "left" | "center" | "right" | undefined;
17
+ }>;
18
+ size: z.ZodOptional<z.ZodObject<{
19
+ width: z.ZodOptional<z.ZodNumber>;
20
+ height: z.ZodOptional<z.ZodNumber>;
21
+ }, "strip", z.ZodTypeAny, {
22
+ width?: number | undefined;
23
+ height?: number | undefined;
24
+ }, {
25
+ width?: number | undefined;
26
+ height?: number | undefined;
27
+ }>>;
28
+ legend: z.ZodOptional<z.ZodObject<{
29
+ show: z.ZodOptional<z.ZodBoolean>;
30
+ position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
31
+ }, "strip", z.ZodTypeAny, {
32
+ show?: boolean | undefined;
33
+ position?: "right" | "inside" | "top" | "bottom" | undefined;
34
+ }, {
35
+ show?: boolean | undefined;
36
+ position?: "right" | "inside" | "top" | "bottom" | undefined;
37
+ }>>;
38
+ frame: z.ZodOptional<z.ZodObject<{
39
+ type: z.ZodOptional<z.ZodEnum<["left", "bottom", "left-bottom", "full", "empty"]>>;
40
+ }, "strip", z.ZodTypeAny, {
41
+ type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
42
+ }, {
43
+ type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
44
+ }>>;
45
+ facetSettings: z.ZodOptional<z.ZodObject<{
46
+ sharedX: z.ZodOptional<z.ZodBoolean>;
47
+ sharedY: z.ZodOptional<z.ZodBoolean>;
48
+ nRows: z.ZodOptional<z.ZodNumber>;
49
+ nCols: z.ZodOptional<z.ZodNumber>;
50
+ }, "strip", z.ZodTypeAny, {
51
+ sharedX?: boolean | undefined;
52
+ sharedY?: boolean | undefined;
53
+ nRows?: number | undefined;
54
+ nCols?: number | undefined;
55
+ }, {
56
+ sharedX?: boolean | undefined;
57
+ sharedY?: boolean | undefined;
58
+ nRows?: number | undefined;
59
+ nCols?: number | undefined;
60
+ }>>;
61
+ sizeColumn: z.ZodObject<{
62
+ type: z.ZodLiteral<"column">;
63
+ value: z.ZodString;
64
+ label: z.ZodOptional<z.ZodString>;
65
+ valueLabels: z.ZodOptional<z.ZodString>;
66
+ }, "strip", z.ZodTypeAny, {
67
+ type: "column";
68
+ value: string;
69
+ label?: string | undefined;
70
+ valueLabels?: string | undefined;
71
+ }, {
72
+ type: "column";
73
+ value: string;
74
+ label?: string | undefined;
75
+ valueLabels?: string | undefined;
76
+ }>;
77
+ colorColumn: z.ZodObject<{
78
+ type: z.ZodLiteral<"column">;
79
+ value: z.ZodString;
80
+ label: z.ZodOptional<z.ZodString>;
81
+ valueLabels: z.ZodOptional<z.ZodString>;
82
+ }, "strip", z.ZodTypeAny, {
83
+ type: "column";
84
+ value: string;
85
+ label?: string | undefined;
86
+ valueLabels?: string | undefined;
87
+ }, {
88
+ type: "column";
89
+ value: string;
90
+ label?: string | undefined;
91
+ valueLabels?: string | undefined;
92
+ }>;
93
+ xColumn: z.ZodObject<{
94
+ type: z.ZodLiteral<"column">;
95
+ value: z.ZodString;
96
+ label: z.ZodOptional<z.ZodString>;
97
+ valueLabels: z.ZodOptional<z.ZodString>;
98
+ }, "strip", z.ZodTypeAny, {
99
+ type: "column";
100
+ value: string;
101
+ label?: string | undefined;
102
+ valueLabels?: string | undefined;
103
+ }, {
104
+ type: "column";
105
+ value: string;
106
+ label?: string | undefined;
107
+ valueLabels?: string | undefined;
108
+ }>;
109
+ yColumn: z.ZodObject<{
110
+ type: z.ZodLiteral<"column">;
111
+ value: z.ZodString;
112
+ label: z.ZodOptional<z.ZodString>;
113
+ valueLabels: z.ZodOptional<z.ZodString>;
114
+ }, "strip", z.ZodTypeAny, {
115
+ type: "column";
116
+ value: string;
117
+ label?: string | undefined;
118
+ valueLabels?: string | undefined;
119
+ }, {
120
+ type: "column";
121
+ value: string;
122
+ label?: string | undefined;
123
+ valueLabels?: string | undefined;
124
+ }>;
125
+ xAxis: z.ZodOptional<z.ZodObject<{
126
+ position: z.ZodOptional<z.ZodEnum<["top", "bottom"]>>;
127
+ title: z.ZodOptional<z.ZodString>;
128
+ showTicks: z.ZodOptional<z.ZodBoolean>;
129
+ showTitle: z.ZodOptional<z.ZodBoolean>;
130
+ showAxisLabels: z.ZodOptional<z.ZodBoolean>;
131
+ axisLabelsAngle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<45>, z.ZodLiteral<90>]>>;
132
+ }, "strip", z.ZodTypeAny, {
133
+ title?: string | undefined;
134
+ position?: "top" | "bottom" | undefined;
135
+ showTicks?: boolean | undefined;
136
+ showTitle?: boolean | undefined;
137
+ showAxisLabels?: boolean | undefined;
138
+ axisLabelsAngle?: 0 | 45 | 90 | undefined;
139
+ }, {
140
+ title?: string | undefined;
141
+ position?: "top" | "bottom" | undefined;
142
+ showTicks?: boolean | undefined;
143
+ showTitle?: boolean | undefined;
144
+ showAxisLabels?: boolean | undefined;
145
+ axisLabelsAngle?: 0 | 45 | 90 | undefined;
146
+ }>>;
147
+ yAxis: z.ZodOptional<z.ZodObject<{
148
+ position: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
149
+ title: z.ZodOptional<z.ZodString>;
150
+ showTicks: z.ZodOptional<z.ZodBoolean>;
151
+ showTitle: z.ZodOptional<z.ZodBoolean>;
152
+ showAxisLabels: z.ZodOptional<z.ZodBoolean>;
153
+ axisLabelsAngle: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<0>, z.ZodLiteral<45>, z.ZodLiteral<90>]>>;
154
+ }, "strip", z.ZodTypeAny, {
155
+ title?: string | undefined;
156
+ position?: "left" | "right" | undefined;
157
+ showTicks?: boolean | undefined;
158
+ showTitle?: boolean | undefined;
159
+ showAxisLabels?: boolean | undefined;
160
+ axisLabelsAngle?: 0 | 45 | 90 | undefined;
161
+ }, {
162
+ title?: string | undefined;
163
+ position?: "left" | "right" | undefined;
164
+ showTicks?: boolean | undefined;
165
+ showTitle?: boolean | undefined;
166
+ showAxisLabels?: boolean | undefined;
167
+ axisLabelsAngle?: 0 | 45 | 90 | undefined;
168
+ }>>;
169
+ grouping: z.ZodOptional<z.ZodArray<z.ZodObject<{
170
+ type: z.ZodLiteral<"column">;
171
+ value: z.ZodString;
172
+ label: z.ZodOptional<z.ZodString>;
173
+ valueLabels: z.ZodOptional<z.ZodString>;
174
+ }, "strip", z.ZodTypeAny, {
175
+ type: "column";
176
+ value: string;
177
+ label?: string | undefined;
178
+ valueLabels?: string | undefined;
179
+ }, {
180
+ type: "column";
181
+ value: string;
182
+ label?: string | undefined;
183
+ valueLabels?: string | undefined;
184
+ }>, "many">>;
185
+ facetBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
186
+ type: z.ZodLiteral<"column">;
187
+ value: z.ZodString;
188
+ label: z.ZodOptional<z.ZodString>;
189
+ valueLabels: z.ZodOptional<z.ZodString>;
190
+ }, "strip", z.ZodTypeAny, {
191
+ type: "column";
192
+ value: string;
193
+ label?: string | undefined;
194
+ valueLabels?: string | undefined;
195
+ }, {
196
+ type: "column";
197
+ value: string;
198
+ label?: string | undefined;
199
+ valueLabels?: string | undefined;
200
+ }>, "many">>;
201
+ inheritedAes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
202
+ fillColor: z.ZodOptional<z.ZodString>;
203
+ lineColor: z.ZodOptional<z.ZodString>;
204
+ lineWidth: z.ZodOptional<z.ZodNumber>;
205
+ lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
206
+ dotShape: z.ZodOptional<z.ZodEnum<["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"]>>;
207
+ dotSize: z.ZodOptional<z.ZodNumber>;
208
+ dotFill: z.ZodOptional<z.ZodString>;
209
+ }, "strip", z.ZodTypeAny, {
210
+ dotFill?: string | undefined;
211
+ 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;
212
+ dotSize?: number | undefined;
213
+ lineWidth?: number | undefined;
214
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
215
+ lineColor?: string | undefined;
216
+ fillColor?: string | undefined;
217
+ }, {
218
+ dotFill?: string | undefined;
219
+ 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;
220
+ dotSize?: number | undefined;
221
+ lineWidth?: number | undefined;
222
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
223
+ lineColor?: string | undefined;
224
+ fillColor?: string | undefined;
225
+ }>>>>;
226
+ }, "strip", z.ZodTypeAny, {
227
+ type: "bubble";
228
+ title: {
229
+ name: string;
230
+ show?: boolean | undefined;
231
+ position?: "left" | "center" | "right" | undefined;
232
+ };
233
+ sizeColumn: {
234
+ type: "column";
235
+ value: string;
236
+ label?: string | undefined;
237
+ valueLabels?: string | undefined;
238
+ };
239
+ colorColumn: {
240
+ type: "column";
241
+ value: string;
242
+ label?: string | undefined;
243
+ valueLabels?: string | undefined;
244
+ };
245
+ xColumn: {
246
+ type: "column";
247
+ value: string;
248
+ label?: string | undefined;
249
+ valueLabels?: string | undefined;
250
+ };
251
+ yColumn: {
252
+ type: "column";
253
+ value: string;
254
+ label?: string | undefined;
255
+ valueLabels?: string | undefined;
256
+ };
257
+ grouping?: {
258
+ type: "column";
259
+ value: string;
260
+ label?: string | undefined;
261
+ valueLabels?: string | undefined;
262
+ }[] | undefined;
263
+ size?: {
264
+ width?: number | undefined;
265
+ height?: number | undefined;
266
+ } | undefined;
267
+ legend?: {
268
+ show?: boolean | undefined;
269
+ position?: "right" | "inside" | "top" | "bottom" | undefined;
270
+ } | undefined;
271
+ frame?: {
272
+ type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
273
+ } | undefined;
274
+ facetSettings?: {
275
+ sharedX?: boolean | undefined;
276
+ sharedY?: boolean | undefined;
277
+ nRows?: number | undefined;
278
+ nCols?: number | undefined;
279
+ } | undefined;
280
+ xAxis?: {
281
+ title?: string | undefined;
282
+ position?: "top" | "bottom" | undefined;
283
+ showTicks?: boolean | undefined;
284
+ showTitle?: boolean | undefined;
285
+ showAxisLabels?: boolean | undefined;
286
+ axisLabelsAngle?: 0 | 45 | 90 | undefined;
287
+ } | undefined;
288
+ yAxis?: {
289
+ title?: string | undefined;
290
+ position?: "left" | "right" | undefined;
291
+ showTicks?: boolean | undefined;
292
+ showTitle?: boolean | undefined;
293
+ showAxisLabels?: boolean | undefined;
294
+ axisLabelsAngle?: 0 | 45 | 90 | undefined;
295
+ } | undefined;
296
+ facetBy?: {
297
+ type: "column";
298
+ value: string;
299
+ label?: string | undefined;
300
+ valueLabels?: string | undefined;
301
+ }[] | undefined;
302
+ inheritedAes?: Record<string, Record<string, {
303
+ dotFill?: string | undefined;
304
+ 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;
305
+ dotSize?: number | undefined;
306
+ lineWidth?: number | undefined;
307
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
308
+ lineColor?: string | undefined;
309
+ fillColor?: string | undefined;
310
+ }>> | undefined;
311
+ }, {
312
+ type: "bubble";
313
+ title: {
314
+ name: string;
315
+ show?: boolean | undefined;
316
+ position?: "left" | "center" | "right" | undefined;
317
+ };
318
+ sizeColumn: {
319
+ type: "column";
320
+ value: string;
321
+ label?: string | undefined;
322
+ valueLabels?: string | undefined;
323
+ };
324
+ colorColumn: {
325
+ type: "column";
326
+ value: string;
327
+ label?: string | undefined;
328
+ valueLabels?: string | undefined;
329
+ };
330
+ xColumn: {
331
+ type: "column";
332
+ value: string;
333
+ label?: string | undefined;
334
+ valueLabels?: string | undefined;
335
+ };
336
+ yColumn: {
337
+ type: "column";
338
+ value: string;
339
+ label?: string | undefined;
340
+ valueLabels?: string | undefined;
341
+ };
342
+ grouping?: {
343
+ type: "column";
344
+ value: string;
345
+ label?: string | undefined;
346
+ valueLabels?: string | undefined;
347
+ }[] | undefined;
348
+ size?: {
349
+ width?: number | undefined;
350
+ height?: number | undefined;
351
+ } | undefined;
352
+ legend?: {
353
+ show?: boolean | undefined;
354
+ position?: "right" | "inside" | "top" | "bottom" | undefined;
355
+ } | undefined;
356
+ frame?: {
357
+ type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
358
+ } | undefined;
359
+ facetSettings?: {
360
+ sharedX?: boolean | undefined;
361
+ sharedY?: boolean | undefined;
362
+ nRows?: number | undefined;
363
+ nCols?: number | undefined;
364
+ } | undefined;
365
+ xAxis?: {
366
+ title?: string | undefined;
367
+ position?: "top" | "bottom" | undefined;
368
+ showTicks?: boolean | undefined;
369
+ showTitle?: boolean | undefined;
370
+ showAxisLabels?: boolean | undefined;
371
+ axisLabelsAngle?: 0 | 45 | 90 | undefined;
372
+ } | undefined;
373
+ yAxis?: {
374
+ title?: string | undefined;
375
+ position?: "left" | "right" | undefined;
376
+ showTicks?: boolean | undefined;
377
+ showTitle?: boolean | undefined;
378
+ showAxisLabels?: boolean | undefined;
379
+ axisLabelsAngle?: 0 | 45 | 90 | undefined;
380
+ } | undefined;
381
+ facetBy?: {
382
+ type: "column";
383
+ value: string;
384
+ label?: string | undefined;
385
+ valueLabels?: string | undefined;
386
+ }[] | undefined;
387
+ inheritedAes?: Record<string, Record<string, {
388
+ dotFill?: string | undefined;
389
+ 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;
390
+ dotSize?: number | undefined;
391
+ lineWidth?: number | undefined;
392
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
393
+ lineColor?: string | undefined;
394
+ fillColor?: string | undefined;
395
+ }>> | undefined;
396
+ }>;
397
+ type BubbleSettings = z.infer<typeof BubblesSettingsSchema>;
398
+
399
+ declare const HistogramSettingsSchema: z.ZodObject<{
400
+ type: z.ZodLiteral<"histogram">;
401
+ title: z.ZodObject<{
402
+ name: z.ZodString;
403
+ show: z.ZodOptional<z.ZodBoolean>;
404
+ position: z.ZodOptional<z.ZodEnum<["left", "center", "right"]>>;
405
+ }, "strip", z.ZodTypeAny, {
406
+ name: string;
407
+ show?: boolean | undefined;
408
+ position?: "left" | "center" | "right" | undefined;
409
+ }, {
410
+ name: string;
411
+ show?: boolean | undefined;
412
+ position?: "left" | "center" | "right" | undefined;
413
+ }>;
414
+ size: z.ZodOptional<z.ZodObject<{
415
+ width: z.ZodOptional<z.ZodNumber>;
416
+ height: z.ZodOptional<z.ZodNumber>;
417
+ }, "strip", z.ZodTypeAny, {
418
+ width?: number | undefined;
419
+ height?: number | undefined;
420
+ }, {
421
+ width?: number | undefined;
422
+ height?: number | undefined;
423
+ }>>;
424
+ legend: z.ZodOptional<z.ZodObject<{
425
+ show: z.ZodOptional<z.ZodBoolean>;
426
+ position: z.ZodOptional<z.ZodEnum<["inside", "right", "top", "bottom"]>>;
427
+ }, "strip", z.ZodTypeAny, {
428
+ show?: boolean | undefined;
429
+ position?: "right" | "inside" | "top" | "bottom" | undefined;
430
+ }, {
431
+ show?: boolean | undefined;
432
+ position?: "right" | "inside" | "top" | "bottom" | undefined;
433
+ }>>;
434
+ frame: z.ZodOptional<z.ZodObject<{
435
+ type: z.ZodOptional<z.ZodEnum<["left", "bottom", "left-bottom", "full", "empty"]>>;
436
+ }, "strip", z.ZodTypeAny, {
437
+ type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
438
+ }, {
439
+ type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
440
+ }>>;
441
+ facetSettings: z.ZodOptional<z.ZodObject<{
442
+ sharedX: z.ZodOptional<z.ZodBoolean>;
443
+ sharedY: z.ZodOptional<z.ZodBoolean>;
444
+ nRows: z.ZodOptional<z.ZodNumber>;
445
+ nCols: z.ZodOptional<z.ZodNumber>;
446
+ }, "strip", z.ZodTypeAny, {
447
+ sharedX?: boolean | undefined;
448
+ sharedY?: boolean | undefined;
449
+ nRows?: number | undefined;
450
+ nCols?: number | undefined;
451
+ }, {
452
+ sharedX?: boolean | undefined;
453
+ sharedY?: boolean | undefined;
454
+ nRows?: number | undefined;
455
+ nCols?: number | undefined;
456
+ }>>;
457
+ binsCount: z.ZodOptional<z.ZodNumber>;
458
+ valueColumn: z.ZodObject<{
459
+ type: z.ZodLiteral<"column">;
460
+ value: z.ZodString;
461
+ label: z.ZodOptional<z.ZodString>;
462
+ valueLabels: z.ZodOptional<z.ZodString>;
463
+ }, "strip", z.ZodTypeAny, {
464
+ type: "column";
465
+ value: string;
466
+ label?: string | undefined;
467
+ valueLabels?: string | undefined;
468
+ }, {
469
+ type: "column";
470
+ value: string;
471
+ label?: string | undefined;
472
+ valueLabels?: string | undefined;
473
+ }>;
474
+ xAxis: z.ZodOptional<z.ZodObject<{
475
+ title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
476
+ type: z.ZodLiteral<"column">;
477
+ value: z.ZodString;
478
+ label: z.ZodOptional<z.ZodString>;
479
+ valueLabels: z.ZodOptional<z.ZodString>;
480
+ }, "strip", z.ZodTypeAny, {
481
+ type: "column";
482
+ value: string;
483
+ label?: string | undefined;
484
+ valueLabels?: string | undefined;
485
+ }, {
486
+ type: "column";
487
+ value: string;
488
+ label?: string | undefined;
489
+ valueLabels?: string | undefined;
490
+ }>]>>;
491
+ scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
492
+ showGrid: z.ZodOptional<z.ZodBoolean>;
493
+ showTicks: z.ZodOptional<z.ZodBoolean>;
494
+ }, "strip", z.ZodTypeAny, {
495
+ title?: string | {
496
+ type: "column";
497
+ value: string;
498
+ label?: string | undefined;
499
+ valueLabels?: string | undefined;
500
+ } | undefined;
501
+ scale?: "linear" | "log" | undefined;
502
+ showGrid?: boolean | undefined;
503
+ showTicks?: boolean | undefined;
504
+ }, {
505
+ title?: string | {
506
+ type: "column";
507
+ value: string;
508
+ label?: string | undefined;
509
+ valueLabels?: string | undefined;
510
+ } | undefined;
511
+ scale?: "linear" | "log" | undefined;
512
+ showGrid?: boolean | undefined;
513
+ showTicks?: boolean | undefined;
514
+ }>>;
515
+ yAxis: z.ZodOptional<z.ZodObject<{
516
+ showGrid: z.ZodOptional<z.ZodBoolean>;
517
+ showTicks: z.ZodOptional<z.ZodBoolean>;
518
+ }, "strip", z.ZodTypeAny, {
519
+ showGrid?: boolean | undefined;
520
+ showTicks?: boolean | undefined;
521
+ }, {
522
+ showGrid?: boolean | undefined;
523
+ showTicks?: boolean | undefined;
524
+ }>>;
525
+ grouping: z.ZodOptional<z.ZodArray<z.ZodObject<{
526
+ type: z.ZodLiteral<"column">;
527
+ value: z.ZodString;
528
+ label: z.ZodOptional<z.ZodString>;
529
+ valueLabels: z.ZodOptional<z.ZodString>;
530
+ }, "strip", z.ZodTypeAny, {
531
+ type: "column";
532
+ value: string;
533
+ label?: string | undefined;
534
+ valueLabels?: string | undefined;
535
+ }, {
536
+ type: "column";
537
+ value: string;
538
+ label?: string | undefined;
539
+ valueLabels?: string | undefined;
540
+ }>, "many">>;
541
+ facetBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
542
+ type: z.ZodLiteral<"column">;
543
+ value: z.ZodString;
544
+ label: z.ZodOptional<z.ZodString>;
545
+ valueLabels: z.ZodOptional<z.ZodString>;
546
+ }, "strip", z.ZodTypeAny, {
547
+ type: "column";
548
+ value: string;
549
+ label?: string | undefined;
550
+ valueLabels?: string | undefined;
551
+ }, {
552
+ type: "column";
553
+ value: string;
554
+ label?: string | undefined;
555
+ valueLabels?: string | undefined;
556
+ }>, "many">>;
557
+ inheritedAes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodObject<{
558
+ fillColor: z.ZodOptional<z.ZodString>;
559
+ lineColor: z.ZodOptional<z.ZodString>;
560
+ lineWidth: z.ZodOptional<z.ZodNumber>;
561
+ lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
562
+ dotShape: z.ZodOptional<z.ZodEnum<["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"]>>;
563
+ dotSize: z.ZodOptional<z.ZodNumber>;
564
+ dotFill: z.ZodOptional<z.ZodString>;
565
+ }, "strip", z.ZodTypeAny, {
566
+ dotFill?: string | undefined;
567
+ 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;
568
+ dotSize?: number | undefined;
569
+ lineWidth?: number | undefined;
570
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
571
+ lineColor?: string | undefined;
572
+ fillColor?: string | undefined;
573
+ }, {
574
+ dotFill?: string | undefined;
575
+ 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;
576
+ dotSize?: number | undefined;
577
+ lineWidth?: number | undefined;
578
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
579
+ lineColor?: string | undefined;
580
+ fillColor?: string | undefined;
581
+ }>>>>;
582
+ layers: z.ZodArray<z.ZodUnion<[z.ZodObject<{
583
+ type: z.ZodLiteral<"bins">;
584
+ aes: z.ZodOptional<z.ZodObject<{
585
+ fillColor: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
586
+ type: z.ZodLiteral<"grouping">;
587
+ value: z.ZodString;
588
+ }, "strip", z.ZodTypeAny, {
589
+ type: "grouping";
590
+ value: string;
591
+ }, {
592
+ type: "grouping";
593
+ value: string;
594
+ }>, z.ZodString]>>;
595
+ opacity: z.ZodOptional<z.ZodNumber>;
596
+ }, "strip", z.ZodTypeAny, {
597
+ opacity?: number | undefined;
598
+ fillColor?: string | {
599
+ type: "grouping";
600
+ value: string;
601
+ } | undefined;
602
+ }, {
603
+ opacity?: number | undefined;
604
+ fillColor?: string | {
605
+ type: "grouping";
606
+ value: string;
607
+ } | undefined;
608
+ }>>;
609
+ }, "strip", z.ZodTypeAny, {
610
+ type: "bins";
611
+ aes?: {
612
+ opacity?: number | undefined;
613
+ fillColor?: string | {
614
+ type: "grouping";
615
+ value: string;
616
+ } | undefined;
617
+ } | undefined;
618
+ }, {
619
+ type: "bins";
620
+ aes?: {
621
+ opacity?: number | undefined;
622
+ fillColor?: string | {
623
+ type: "grouping";
624
+ value: string;
625
+ } | undefined;
626
+ } | undefined;
627
+ }>, z.ZodObject<{
628
+ type: z.ZodLiteral<"binsLine">;
629
+ aes: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
630
+ }, "strip", z.ZodTypeAny, {
631
+ type: "binsLine";
632
+ aes?: {} | undefined;
633
+ }, {
634
+ type: "binsLine";
635
+ aes?: {} | undefined;
636
+ }>]>, "many">;
637
+ }, "strip", z.ZodTypeAny, {
638
+ type: "histogram";
639
+ title: {
640
+ name: string;
641
+ show?: boolean | undefined;
642
+ position?: "left" | "center" | "right" | undefined;
643
+ };
644
+ layers: ({
645
+ type: "bins";
646
+ aes?: {
647
+ opacity?: number | undefined;
648
+ fillColor?: string | {
649
+ type: "grouping";
650
+ value: string;
651
+ } | undefined;
652
+ } | undefined;
653
+ } | {
654
+ type: "binsLine";
655
+ aes?: {} | undefined;
656
+ })[];
657
+ valueColumn: {
658
+ type: "column";
659
+ value: string;
660
+ label?: string | undefined;
661
+ valueLabels?: string | undefined;
662
+ };
663
+ grouping?: {
664
+ type: "column";
665
+ value: string;
666
+ label?: string | undefined;
667
+ valueLabels?: string | undefined;
668
+ }[] | undefined;
669
+ size?: {
670
+ width?: number | undefined;
671
+ height?: number | undefined;
672
+ } | undefined;
673
+ legend?: {
674
+ show?: boolean | undefined;
675
+ position?: "right" | "inside" | "top" | "bottom" | undefined;
676
+ } | undefined;
677
+ frame?: {
678
+ type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
679
+ } | undefined;
680
+ facetSettings?: {
681
+ sharedX?: boolean | undefined;
682
+ sharedY?: boolean | undefined;
683
+ nRows?: number | undefined;
684
+ nCols?: number | undefined;
685
+ } | undefined;
686
+ xAxis?: {
687
+ title?: string | {
688
+ type: "column";
689
+ value: string;
690
+ label?: string | undefined;
691
+ valueLabels?: string | undefined;
692
+ } | undefined;
693
+ scale?: "linear" | "log" | undefined;
694
+ showGrid?: boolean | undefined;
695
+ showTicks?: boolean | undefined;
696
+ } | undefined;
697
+ yAxis?: {
698
+ showGrid?: boolean | undefined;
699
+ showTicks?: boolean | undefined;
700
+ } | undefined;
701
+ facetBy?: {
702
+ type: "column";
703
+ value: string;
704
+ label?: string | undefined;
705
+ valueLabels?: string | undefined;
706
+ }[] | undefined;
707
+ inheritedAes?: Record<string, Record<string, {
708
+ dotFill?: string | undefined;
709
+ 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;
710
+ dotSize?: number | undefined;
711
+ lineWidth?: number | undefined;
712
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
713
+ lineColor?: string | undefined;
714
+ fillColor?: string | undefined;
715
+ }>> | undefined;
716
+ binsCount?: number | undefined;
717
+ }, {
718
+ type: "histogram";
719
+ title: {
720
+ name: string;
721
+ show?: boolean | undefined;
722
+ position?: "left" | "center" | "right" | undefined;
723
+ };
724
+ layers: ({
725
+ type: "bins";
726
+ aes?: {
727
+ opacity?: number | undefined;
728
+ fillColor?: string | {
729
+ type: "grouping";
730
+ value: string;
731
+ } | undefined;
732
+ } | undefined;
733
+ } | {
734
+ type: "binsLine";
735
+ aes?: {} | undefined;
736
+ })[];
737
+ valueColumn: {
738
+ type: "column";
739
+ value: string;
740
+ label?: string | undefined;
741
+ valueLabels?: string | undefined;
742
+ };
743
+ grouping?: {
744
+ type: "column";
745
+ value: string;
746
+ label?: string | undefined;
747
+ valueLabels?: string | undefined;
748
+ }[] | undefined;
749
+ size?: {
750
+ width?: number | undefined;
751
+ height?: number | undefined;
752
+ } | undefined;
753
+ legend?: {
754
+ show?: boolean | undefined;
755
+ position?: "right" | "inside" | "top" | "bottom" | undefined;
756
+ } | undefined;
757
+ frame?: {
758
+ type?: "left" | "bottom" | "left-bottom" | "full" | "empty" | undefined;
759
+ } | undefined;
760
+ facetSettings?: {
761
+ sharedX?: boolean | undefined;
762
+ sharedY?: boolean | undefined;
763
+ nRows?: number | undefined;
764
+ nCols?: number | undefined;
765
+ } | undefined;
766
+ xAxis?: {
767
+ title?: string | {
768
+ type: "column";
769
+ value: string;
770
+ label?: string | undefined;
771
+ valueLabels?: string | undefined;
772
+ } | undefined;
773
+ scale?: "linear" | "log" | undefined;
774
+ showGrid?: boolean | undefined;
775
+ showTicks?: boolean | undefined;
776
+ } | undefined;
777
+ yAxis?: {
778
+ showGrid?: boolean | undefined;
779
+ showTicks?: boolean | undefined;
780
+ } | undefined;
781
+ facetBy?: {
782
+ type: "column";
783
+ value: string;
784
+ label?: string | undefined;
785
+ valueLabels?: string | undefined;
786
+ }[] | undefined;
787
+ inheritedAes?: Record<string, Record<string, {
788
+ dotFill?: string | undefined;
789
+ 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;
790
+ dotSize?: number | undefined;
791
+ lineWidth?: number | undefined;
792
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
793
+ lineColor?: string | undefined;
794
+ fillColor?: string | undefined;
795
+ }>> | undefined;
796
+ binsCount?: number | undefined;
797
+ }>;
798
+ type HistogramSettings = z.infer<typeof HistogramSettingsSchema>;
799
+
3
800
  declare const ScatterplotSettingsSchema: z.ZodObject<{
4
801
  type: z.ZodLiteral<"scatterplot">;
5
802
  title: z.ZodObject<{
@@ -4122,20 +4919,20 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
4122
4919
  position?: "top" | "bottom" | undefined;
4123
4920
  showTicks?: boolean | undefined;
4124
4921
  showTitle?: boolean | undefined;
4125
- groupingPosition?: "top" | "bottom" | undefined;
4126
4922
  showAxisLabels?: boolean | undefined;
4127
- showGroupLabels?: boolean | undefined;
4128
4923
  axisLabelsAngle?: 0 | 45 | 90 | undefined;
4924
+ groupingPosition?: "top" | "bottom" | undefined;
4925
+ showGroupLabels?: boolean | undefined;
4129
4926
  groupLabelsAngle?: 0 | 45 | 90 | undefined;
4130
4927
  }, {
4131
4928
  title?: string | undefined;
4132
4929
  position?: "top" | "bottom" | undefined;
4133
4930
  showTicks?: boolean | undefined;
4134
4931
  showTitle?: boolean | undefined;
4135
- groupingPosition?: "top" | "bottom" | undefined;
4136
4932
  showAxisLabels?: boolean | undefined;
4137
- showGroupLabels?: boolean | undefined;
4138
4933
  axisLabelsAngle?: 0 | 45 | 90 | undefined;
4934
+ groupingPosition?: "top" | "bottom" | undefined;
4935
+ showGroupLabels?: boolean | undefined;
4139
4936
  groupLabelsAngle?: 0 | 45 | 90 | undefined;
4140
4937
  }>>;
4141
4938
  yAxis: z.ZodOptional<z.ZodObject<{
@@ -4153,20 +4950,20 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
4153
4950
  position?: "left" | "right" | undefined;
4154
4951
  showTicks?: boolean | undefined;
4155
4952
  showTitle?: boolean | undefined;
4156
- groupingPosition?: "left" | "right" | undefined;
4157
4953
  showAxisLabels?: boolean | undefined;
4158
- showGroupLabels?: boolean | undefined;
4159
4954
  axisLabelsAngle?: 0 | 45 | 90 | undefined;
4955
+ groupingPosition?: "left" | "right" | undefined;
4956
+ showGroupLabels?: boolean | undefined;
4160
4957
  groupLabelsAngle?: 0 | 45 | 90 | undefined;
4161
4958
  }, {
4162
4959
  title?: string | undefined;
4163
4960
  position?: "left" | "right" | undefined;
4164
4961
  showTicks?: boolean | undefined;
4165
4962
  showTitle?: boolean | undefined;
4166
- groupingPosition?: "left" | "right" | undefined;
4167
4963
  showAxisLabels?: boolean | undefined;
4168
- showGroupLabels?: boolean | undefined;
4169
4964
  axisLabelsAngle?: 0 | 45 | 90 | undefined;
4965
+ groupingPosition?: "left" | "right" | undefined;
4966
+ showGroupLabels?: boolean | undefined;
4170
4967
  groupLabelsAngle?: 0 | 45 | 90 | undefined;
4171
4968
  }>>;
4172
4969
  facetSettings: z.ZodOptional<z.ZodObject<{
@@ -4328,8 +5125,8 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
4328
5125
  };
4329
5126
  axis: "x";
4330
5127
  position?: "top" | "bottom" | undefined;
4331
- titlePosition?: "left" | "right" | undefined;
4332
5128
  showTitle?: boolean | undefined;
5129
+ titlePosition?: "left" | "right" | undefined;
4333
5130
  colors?: string[] | undefined;
4334
5131
  }, {
4335
5132
  type: "discrete" | "continuous";
@@ -4341,8 +5138,8 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
4341
5138
  };
4342
5139
  axis: "x";
4343
5140
  position?: "top" | "bottom" | undefined;
4344
- titlePosition?: "left" | "right" | undefined;
4345
5141
  showTitle?: boolean | undefined;
5142
+ titlePosition?: "left" | "right" | undefined;
4346
5143
  colors?: string[] | undefined;
4347
5144
  }>, z.ZodObject<z.objectUtil.extendShape<{
4348
5145
  valueColumn: z.ZodObject<{
@@ -4378,8 +5175,8 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
4378
5175
  };
4379
5176
  axis: "y";
4380
5177
  position?: "left" | "right" | undefined;
4381
- titlePosition?: "top" | "bottom" | undefined;
4382
5178
  showTitle?: boolean | undefined;
5179
+ titlePosition?: "top" | "bottom" | undefined;
4383
5180
  colors?: string[] | undefined;
4384
5181
  }, {
4385
5182
  type: "discrete" | "continuous";
@@ -4391,8 +5188,8 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
4391
5188
  };
4392
5189
  axis: "y";
4393
5190
  position?: "left" | "right" | undefined;
4394
- titlePosition?: "top" | "bottom" | undefined;
4395
5191
  showTitle?: boolean | undefined;
5192
+ titlePosition?: "top" | "bottom" | undefined;
4396
5193
  colors?: string[] | undefined;
4397
5194
  }>]>, "many">>;
4398
5195
  dendrogramX: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
@@ -5009,19 +5806,19 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5009
5806
  show?: boolean | undefined;
5010
5807
  position?: "left" | "center" | "right" | undefined;
5011
5808
  };
5012
- valueColumn: {
5809
+ xColumn: {
5013
5810
  type: "column";
5014
5811
  value: string;
5015
5812
  label?: string | undefined;
5016
5813
  valueLabels?: string | undefined;
5017
5814
  };
5018
- xColumn: {
5815
+ yColumn: {
5019
5816
  type: "column";
5020
5817
  value: string;
5021
5818
  label?: string | undefined;
5022
5819
  valueLabels?: string | undefined;
5023
5820
  };
5024
- yColumn: {
5821
+ valueColumn: {
5025
5822
  type: "column";
5026
5823
  value: string;
5027
5824
  label?: string | undefined;
@@ -5068,10 +5865,10 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5068
5865
  position?: "top" | "bottom" | undefined;
5069
5866
  showTicks?: boolean | undefined;
5070
5867
  showTitle?: boolean | undefined;
5071
- groupingPosition?: "top" | "bottom" | undefined;
5072
5868
  showAxisLabels?: boolean | undefined;
5073
- showGroupLabels?: boolean | undefined;
5074
5869
  axisLabelsAngle?: 0 | 45 | 90 | undefined;
5870
+ groupingPosition?: "top" | "bottom" | undefined;
5871
+ showGroupLabels?: boolean | undefined;
5075
5872
  groupLabelsAngle?: 0 | 45 | 90 | undefined;
5076
5873
  } | undefined;
5077
5874
  yAxis?: {
@@ -5079,10 +5876,10 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5079
5876
  position?: "left" | "right" | undefined;
5080
5877
  showTicks?: boolean | undefined;
5081
5878
  showTitle?: boolean | undefined;
5082
- groupingPosition?: "left" | "right" | undefined;
5083
5879
  showAxisLabels?: boolean | undefined;
5084
- showGroupLabels?: boolean | undefined;
5085
5880
  axisLabelsAngle?: 0 | 45 | 90 | undefined;
5881
+ groupingPosition?: "left" | "right" | undefined;
5882
+ showGroupLabels?: boolean | undefined;
5086
5883
  groupLabelsAngle?: 0 | 45 | 90 | undefined;
5087
5884
  } | undefined;
5088
5885
  facetBy?: {
@@ -5119,8 +5916,8 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5119
5916
  };
5120
5917
  axis: "x";
5121
5918
  position?: "top" | "bottom" | undefined;
5122
- titlePosition?: "left" | "right" | undefined;
5123
5919
  showTitle?: boolean | undefined;
5920
+ titlePosition?: "left" | "right" | undefined;
5124
5921
  colors?: string[] | undefined;
5125
5922
  } | {
5126
5923
  type: "discrete" | "continuous";
@@ -5132,8 +5929,8 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5132
5929
  };
5133
5930
  axis: "y";
5134
5931
  position?: "left" | "right" | undefined;
5135
- titlePosition?: "top" | "bottom" | undefined;
5136
5932
  showTitle?: boolean | undefined;
5933
+ titlePosition?: "top" | "bottom" | undefined;
5137
5934
  colors?: string[] | undefined;
5138
5935
  })[] | undefined;
5139
5936
  dendrogramX?: {
@@ -5248,19 +6045,19 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5248
6045
  show?: boolean | undefined;
5249
6046
  position?: "left" | "center" | "right" | undefined;
5250
6047
  };
5251
- valueColumn: {
6048
+ xColumn: {
5252
6049
  type: "column";
5253
6050
  value: string;
5254
6051
  label?: string | undefined;
5255
6052
  valueLabels?: string | undefined;
5256
6053
  };
5257
- xColumn: {
6054
+ yColumn: {
5258
6055
  type: "column";
5259
6056
  value: string;
5260
6057
  label?: string | undefined;
5261
6058
  valueLabels?: string | undefined;
5262
6059
  };
5263
- yColumn: {
6060
+ valueColumn: {
5264
6061
  type: "column";
5265
6062
  value: string;
5266
6063
  label?: string | undefined;
@@ -5307,10 +6104,10 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5307
6104
  position?: "top" | "bottom" | undefined;
5308
6105
  showTicks?: boolean | undefined;
5309
6106
  showTitle?: boolean | undefined;
5310
- groupingPosition?: "top" | "bottom" | undefined;
5311
6107
  showAxisLabels?: boolean | undefined;
5312
- showGroupLabels?: boolean | undefined;
5313
6108
  axisLabelsAngle?: 0 | 45 | 90 | undefined;
6109
+ groupingPosition?: "top" | "bottom" | undefined;
6110
+ showGroupLabels?: boolean | undefined;
5314
6111
  groupLabelsAngle?: 0 | 45 | 90 | undefined;
5315
6112
  } | undefined;
5316
6113
  yAxis?: {
@@ -5318,10 +6115,10 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5318
6115
  position?: "left" | "right" | undefined;
5319
6116
  showTicks?: boolean | undefined;
5320
6117
  showTitle?: boolean | undefined;
5321
- groupingPosition?: "left" | "right" | undefined;
5322
6118
  showAxisLabels?: boolean | undefined;
5323
- showGroupLabels?: boolean | undefined;
5324
6119
  axisLabelsAngle?: 0 | 45 | 90 | undefined;
6120
+ groupingPosition?: "left" | "right" | undefined;
6121
+ showGroupLabels?: boolean | undefined;
5325
6122
  groupLabelsAngle?: 0 | 45 | 90 | undefined;
5326
6123
  } | undefined;
5327
6124
  facetBy?: {
@@ -5358,8 +6155,8 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5358
6155
  };
5359
6156
  axis: "x";
5360
6157
  position?: "top" | "bottom" | undefined;
5361
- titlePosition?: "left" | "right" | undefined;
5362
6158
  showTitle?: boolean | undefined;
6159
+ titlePosition?: "left" | "right" | undefined;
5363
6160
  colors?: string[] | undefined;
5364
6161
  } | {
5365
6162
  type: "discrete" | "continuous";
@@ -5371,8 +6168,8 @@ declare const HeatmapSettingsSchema: z.ZodObject<{
5371
6168
  };
5372
6169
  axis: "y";
5373
6170
  position?: "left" | "right" | undefined;
5374
- titlePosition?: "top" | "bottom" | undefined;
5375
6171
  showTitle?: boolean | undefined;
6172
+ titlePosition?: "top" | "bottom" | undefined;
5376
6173
  colors?: string[] | undefined;
5377
6174
  })[] | undefined;
5378
6175
  dendrogramX?: {
@@ -6400,7 +7197,7 @@ declare const DendroSettingsSchema: z.ZodObject<{
6400
7197
  }>;
6401
7198
  type DendroSettings = z.infer<typeof DendroSettingsSchema>;
6402
7199
 
6403
- type Settings = DiscreteSettings | DendroSettings | ScatterplotSettings | ScatterplotUmapSettings | HeatmapSettings;
7200
+ type Settings = DiscreteSettings | DendroSettings | ScatterplotSettings | ScatterplotUmapSettings | HeatmapSettings | HistogramSettings | BubbleSettings;
6404
7201
 
6405
7202
  type DataByColumns = {
6406
7203
  type: 'columns';
@@ -6463,4 +7260,4 @@ declare class MiPlots implements ChartInterface {
6463
7260
  export(): string;
6464
7261
  }
6465
7262
 
6466
- export { type ChartInterface, type DendroSettings, type DiscreteSettings, type HeatmapSettings, MiPlots, type ScatterplotSettings, type Settings };
7263
+ export { type ChartInterface, type DendroSettings, type DiscreteSettings, type HeatmapSettings, type HistogramSettings, MiPlots, type ScatterplotSettings, type Settings };