@milaboratories/miplots4 1.0.130 → 1.0.131
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/scatterplot/ScatterplotSettingsImpl.js +28 -28
- package/dist/scatterplot/ScatterplotSettingsImpl.js.map +1 -1
- package/dist/scatterplot/components/ChartTooltip.d.ts.map +1 -1
- package/dist/scatterplot/components/ChartTooltip.js +42 -40
- package/dist/scatterplot/components/ChartTooltip.js.map +1 -1
- package/dist/scatterplot/dots.d.ts.map +1 -1
- package/dist/scatterplot/dots.js +24 -22
- package/dist/scatterplot/dots.js.map +1 -1
- package/dist/scatterplot/utils/formatColumnValue.d.ts +5 -0
- package/dist/scatterplot/utils/formatColumnValue.d.ts.map +1 -0
- package/dist/scatterplot/utils/formatColumnValue.js +11 -0
- package/dist/scatterplot/utils/formatColumnValue.js.map +1 -0
- package/dist/scatterplot-umap/SettingsImpl.js +25 -25
- package/dist/scatterplot-umap/SettingsImpl.js.map +1 -1
- package/dist/scatterplot-umap/components/LowerSVG.d.ts.map +1 -1
- package/dist/scatterplot-umap/components/LowerSVG.js +88 -86
- package/dist/scatterplot-umap/components/LowerSVG.js.map +1 -1
- package/dist/scatterplot-umap/index.d.ts.map +1 -1
- package/dist/scatterplot-umap/index.js +79 -77
- package/dist/scatterplot-umap/index.js.map +1 -1
- package/dist/types/bubble.d.ts +32 -0
- package/dist/types/bubble.d.ts.map +1 -1
- package/dist/types/common.d.ts +18 -0
- package/dist/types/common.d.ts.map +1 -1
- package/dist/types/common.js +2 -0
- package/dist/types/common.js.map +1 -1
- package/dist/types/dendro.d.ts +103 -0
- package/dist/types/dendro.d.ts.map +1 -1
- package/dist/types/discrete.d.ts +85 -8
- package/dist/types/discrete.d.ts.map +1 -1
- package/dist/types/heatmap.d.ts +159 -0
- package/dist/types/heatmap.d.ts.map +1 -1
- package/dist/types/histogram.d.ts +22 -0
- package/dist/types/histogram.d.ts.map +1 -1
- package/dist/types/scatterplot-umap.d.ts +138 -0
- package/dist/types/scatterplot-umap.d.ts.map +1 -1
- package/dist/types/scatterplot.d.ts +152 -0
- package/dist/types/scatterplot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -37,16 +37,19 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
37
37
|
columnName: z.ZodObject<{
|
|
38
38
|
type: z.ZodLiteral<"column">;
|
|
39
39
|
value: z.ZodString;
|
|
40
|
+
format: z.ZodOptional<z.ZodString>;
|
|
40
41
|
label: z.ZodOptional<z.ZodString>;
|
|
41
42
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
42
43
|
}, "strip", z.ZodTypeAny, {
|
|
43
44
|
type: "column";
|
|
44
45
|
value: string;
|
|
46
|
+
format?: string | undefined;
|
|
45
47
|
label?: string | undefined;
|
|
46
48
|
valueLabels?: string | undefined;
|
|
47
49
|
}, {
|
|
48
50
|
type: "column";
|
|
49
51
|
value: string;
|
|
52
|
+
format?: string | undefined;
|
|
50
53
|
label?: string | undefined;
|
|
51
54
|
valueLabels?: string | undefined;
|
|
52
55
|
}>;
|
|
@@ -57,6 +60,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
57
60
|
columnName: {
|
|
58
61
|
type: "column";
|
|
59
62
|
value: string;
|
|
63
|
+
format?: string | undefined;
|
|
60
64
|
label?: string | undefined;
|
|
61
65
|
valueLabels?: string | undefined;
|
|
62
66
|
};
|
|
@@ -67,6 +71,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
67
71
|
columnName: {
|
|
68
72
|
type: "column";
|
|
69
73
|
value: string;
|
|
74
|
+
format?: string | undefined;
|
|
70
75
|
label?: string | undefined;
|
|
71
76
|
valueLabels?: string | undefined;
|
|
72
77
|
};
|
|
@@ -91,16 +96,19 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
91
96
|
columnName: z.ZodObject<{
|
|
92
97
|
type: z.ZodLiteral<"column">;
|
|
93
98
|
value: z.ZodString;
|
|
99
|
+
format: z.ZodOptional<z.ZodString>;
|
|
94
100
|
label: z.ZodOptional<z.ZodString>;
|
|
95
101
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
96
102
|
}, "strip", z.ZodTypeAny, {
|
|
97
103
|
type: "column";
|
|
98
104
|
value: string;
|
|
105
|
+
format?: string | undefined;
|
|
99
106
|
label?: string | undefined;
|
|
100
107
|
valueLabels?: string | undefined;
|
|
101
108
|
}, {
|
|
102
109
|
type: "column";
|
|
103
110
|
value: string;
|
|
111
|
+
format?: string | undefined;
|
|
104
112
|
label?: string | undefined;
|
|
105
113
|
valueLabels?: string | undefined;
|
|
106
114
|
}>;
|
|
@@ -111,6 +119,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
111
119
|
columnName: {
|
|
112
120
|
type: "column";
|
|
113
121
|
value: string;
|
|
122
|
+
format?: string | undefined;
|
|
114
123
|
label?: string | undefined;
|
|
115
124
|
valueLabels?: string | undefined;
|
|
116
125
|
};
|
|
@@ -121,6 +130,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
121
130
|
columnName: {
|
|
122
131
|
type: "column";
|
|
123
132
|
value: string;
|
|
133
|
+
format?: string | undefined;
|
|
124
134
|
label?: string | undefined;
|
|
125
135
|
valueLabels?: string | undefined;
|
|
126
136
|
};
|
|
@@ -137,6 +147,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
137
147
|
columnName: {
|
|
138
148
|
type: "column";
|
|
139
149
|
value: string;
|
|
150
|
+
format?: string | undefined;
|
|
140
151
|
label?: string | undefined;
|
|
141
152
|
valueLabels?: string | undefined;
|
|
142
153
|
};
|
|
@@ -153,6 +164,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
153
164
|
columnName: {
|
|
154
165
|
type: "column";
|
|
155
166
|
value: string;
|
|
167
|
+
format?: string | undefined;
|
|
156
168
|
label?: string | undefined;
|
|
157
169
|
valueLabels?: string | undefined;
|
|
158
170
|
};
|
|
@@ -169,6 +181,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
169
181
|
columnName: {
|
|
170
182
|
type: "column";
|
|
171
183
|
value: string;
|
|
184
|
+
format?: string | undefined;
|
|
172
185
|
label?: string | undefined;
|
|
173
186
|
valueLabels?: string | undefined;
|
|
174
187
|
};
|
|
@@ -185,6 +198,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
185
198
|
columnName: {
|
|
186
199
|
type: "column";
|
|
187
200
|
value: string;
|
|
201
|
+
format?: string | undefined;
|
|
188
202
|
label?: string | undefined;
|
|
189
203
|
valueLabels?: string | undefined;
|
|
190
204
|
};
|
|
@@ -204,6 +218,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
204
218
|
columnName: {
|
|
205
219
|
type: "column";
|
|
206
220
|
value: string;
|
|
221
|
+
format?: string | undefined;
|
|
207
222
|
label?: string | undefined;
|
|
208
223
|
valueLabels?: string | undefined;
|
|
209
224
|
};
|
|
@@ -220,6 +235,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
220
235
|
columnName: {
|
|
221
236
|
type: "column";
|
|
222
237
|
value: string;
|
|
238
|
+
format?: string | undefined;
|
|
223
239
|
label?: string | undefined;
|
|
224
240
|
valueLabels?: string | undefined;
|
|
225
241
|
};
|
|
@@ -239,6 +255,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
239
255
|
columnName: {
|
|
240
256
|
type: "column";
|
|
241
257
|
value: string;
|
|
258
|
+
format?: string | undefined;
|
|
242
259
|
label?: string | undefined;
|
|
243
260
|
valueLabels?: string | undefined;
|
|
244
261
|
};
|
|
@@ -255,6 +272,7 @@ declare const DotsLayerSchema: z.ZodObject<{
|
|
|
255
272
|
columnName: {
|
|
256
273
|
type: "column";
|
|
257
274
|
value: string;
|
|
275
|
+
format?: string | undefined;
|
|
258
276
|
label?: string | undefined;
|
|
259
277
|
valueLabels?: string | undefined;
|
|
260
278
|
};
|
|
@@ -286,16 +304,19 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
286
304
|
columnName: z.ZodObject<{
|
|
287
305
|
type: z.ZodLiteral<"column">;
|
|
288
306
|
value: z.ZodString;
|
|
307
|
+
format: z.ZodOptional<z.ZodString>;
|
|
289
308
|
label: z.ZodOptional<z.ZodString>;
|
|
290
309
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
291
310
|
}, "strip", z.ZodTypeAny, {
|
|
292
311
|
type: "column";
|
|
293
312
|
value: string;
|
|
313
|
+
format?: string | undefined;
|
|
294
314
|
label?: string | undefined;
|
|
295
315
|
valueLabels?: string | undefined;
|
|
296
316
|
}, {
|
|
297
317
|
type: "column";
|
|
298
318
|
value: string;
|
|
319
|
+
format?: string | undefined;
|
|
299
320
|
label?: string | undefined;
|
|
300
321
|
valueLabels?: string | undefined;
|
|
301
322
|
}>;
|
|
@@ -306,6 +327,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
306
327
|
columnName: {
|
|
307
328
|
type: "column";
|
|
308
329
|
value: string;
|
|
330
|
+
format?: string | undefined;
|
|
309
331
|
label?: string | undefined;
|
|
310
332
|
valueLabels?: string | undefined;
|
|
311
333
|
};
|
|
@@ -316,6 +338,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
316
338
|
columnName: {
|
|
317
339
|
type: "column";
|
|
318
340
|
value: string;
|
|
341
|
+
format?: string | undefined;
|
|
319
342
|
label?: string | undefined;
|
|
320
343
|
valueLabels?: string | undefined;
|
|
321
344
|
};
|
|
@@ -335,6 +358,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
335
358
|
columnName: {
|
|
336
359
|
type: "column";
|
|
337
360
|
value: string;
|
|
361
|
+
format?: string | undefined;
|
|
338
362
|
label?: string | undefined;
|
|
339
363
|
valueLabels?: string | undefined;
|
|
340
364
|
};
|
|
@@ -354,6 +378,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
354
378
|
columnName: {
|
|
355
379
|
type: "column";
|
|
356
380
|
value: string;
|
|
381
|
+
format?: string | undefined;
|
|
357
382
|
label?: string | undefined;
|
|
358
383
|
valueLabels?: string | undefined;
|
|
359
384
|
};
|
|
@@ -376,6 +401,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
376
401
|
columnName: {
|
|
377
402
|
type: "column";
|
|
378
403
|
value: string;
|
|
404
|
+
format?: string | undefined;
|
|
379
405
|
label?: string | undefined;
|
|
380
406
|
valueLabels?: string | undefined;
|
|
381
407
|
};
|
|
@@ -399,6 +425,7 @@ declare const CurveLayerSchema: z.ZodObject<{
|
|
|
399
425
|
columnName: {
|
|
400
426
|
type: "column";
|
|
401
427
|
value: string;
|
|
428
|
+
format?: string | undefined;
|
|
402
429
|
label?: string | undefined;
|
|
403
430
|
valueLabels?: string | undefined;
|
|
404
431
|
};
|
|
@@ -429,16 +456,19 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
429
456
|
columnName: z.ZodObject<{
|
|
430
457
|
type: z.ZodLiteral<"column">;
|
|
431
458
|
value: z.ZodString;
|
|
459
|
+
format: z.ZodOptional<z.ZodString>;
|
|
432
460
|
label: z.ZodOptional<z.ZodString>;
|
|
433
461
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
434
462
|
}, "strip", z.ZodTypeAny, {
|
|
435
463
|
type: "column";
|
|
436
464
|
value: string;
|
|
465
|
+
format?: string | undefined;
|
|
437
466
|
label?: string | undefined;
|
|
438
467
|
valueLabels?: string | undefined;
|
|
439
468
|
}, {
|
|
440
469
|
type: "column";
|
|
441
470
|
value: string;
|
|
471
|
+
format?: string | undefined;
|
|
442
472
|
label?: string | undefined;
|
|
443
473
|
valueLabels?: string | undefined;
|
|
444
474
|
}>;
|
|
@@ -449,6 +479,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
449
479
|
columnName: {
|
|
450
480
|
type: "column";
|
|
451
481
|
value: string;
|
|
482
|
+
format?: string | undefined;
|
|
452
483
|
label?: string | undefined;
|
|
453
484
|
valueLabels?: string | undefined;
|
|
454
485
|
};
|
|
@@ -459,6 +490,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
459
490
|
columnName: {
|
|
460
491
|
type: "column";
|
|
461
492
|
value: string;
|
|
493
|
+
format?: string | undefined;
|
|
462
494
|
label?: string | undefined;
|
|
463
495
|
valueLabels?: string | undefined;
|
|
464
496
|
};
|
|
@@ -483,16 +515,19 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
483
515
|
columnName: z.ZodObject<{
|
|
484
516
|
type: z.ZodLiteral<"column">;
|
|
485
517
|
value: z.ZodString;
|
|
518
|
+
format: z.ZodOptional<z.ZodString>;
|
|
486
519
|
label: z.ZodOptional<z.ZodString>;
|
|
487
520
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
488
521
|
}, "strip", z.ZodTypeAny, {
|
|
489
522
|
type: "column";
|
|
490
523
|
value: string;
|
|
524
|
+
format?: string | undefined;
|
|
491
525
|
label?: string | undefined;
|
|
492
526
|
valueLabels?: string | undefined;
|
|
493
527
|
}, {
|
|
494
528
|
type: "column";
|
|
495
529
|
value: string;
|
|
530
|
+
format?: string | undefined;
|
|
496
531
|
label?: string | undefined;
|
|
497
532
|
valueLabels?: string | undefined;
|
|
498
533
|
}>;
|
|
@@ -503,6 +538,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
503
538
|
columnName: {
|
|
504
539
|
type: "column";
|
|
505
540
|
value: string;
|
|
541
|
+
format?: string | undefined;
|
|
506
542
|
label?: string | undefined;
|
|
507
543
|
valueLabels?: string | undefined;
|
|
508
544
|
};
|
|
@@ -513,6 +549,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
513
549
|
columnName: {
|
|
514
550
|
type: "column";
|
|
515
551
|
value: string;
|
|
552
|
+
format?: string | undefined;
|
|
516
553
|
label?: string | undefined;
|
|
517
554
|
valueLabels?: string | undefined;
|
|
518
555
|
};
|
|
@@ -529,6 +566,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
529
566
|
columnName: {
|
|
530
567
|
type: "column";
|
|
531
568
|
value: string;
|
|
569
|
+
format?: string | undefined;
|
|
532
570
|
label?: string | undefined;
|
|
533
571
|
valueLabels?: string | undefined;
|
|
534
572
|
};
|
|
@@ -545,6 +583,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
545
583
|
columnName: {
|
|
546
584
|
type: "column";
|
|
547
585
|
value: string;
|
|
586
|
+
format?: string | undefined;
|
|
548
587
|
label?: string | undefined;
|
|
549
588
|
valueLabels?: string | undefined;
|
|
550
589
|
};
|
|
@@ -561,6 +600,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
561
600
|
columnName: {
|
|
562
601
|
type: "column";
|
|
563
602
|
value: string;
|
|
603
|
+
format?: string | undefined;
|
|
564
604
|
label?: string | undefined;
|
|
565
605
|
valueLabels?: string | undefined;
|
|
566
606
|
};
|
|
@@ -577,6 +617,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
577
617
|
columnName: {
|
|
578
618
|
type: "column";
|
|
579
619
|
value: string;
|
|
620
|
+
format?: string | undefined;
|
|
580
621
|
label?: string | undefined;
|
|
581
622
|
valueLabels?: string | undefined;
|
|
582
623
|
};
|
|
@@ -596,6 +637,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
596
637
|
columnName: {
|
|
597
638
|
type: "column";
|
|
598
639
|
value: string;
|
|
640
|
+
format?: string | undefined;
|
|
599
641
|
label?: string | undefined;
|
|
600
642
|
valueLabels?: string | undefined;
|
|
601
643
|
};
|
|
@@ -612,6 +654,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
612
654
|
columnName: {
|
|
613
655
|
type: "column";
|
|
614
656
|
value: string;
|
|
657
|
+
format?: string | undefined;
|
|
615
658
|
label?: string | undefined;
|
|
616
659
|
valueLabels?: string | undefined;
|
|
617
660
|
};
|
|
@@ -631,6 +674,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
631
674
|
columnName: {
|
|
632
675
|
type: "column";
|
|
633
676
|
value: string;
|
|
677
|
+
format?: string | undefined;
|
|
634
678
|
label?: string | undefined;
|
|
635
679
|
valueLabels?: string | undefined;
|
|
636
680
|
};
|
|
@@ -647,6 +691,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
647
691
|
columnName: {
|
|
648
692
|
type: "column";
|
|
649
693
|
value: string;
|
|
694
|
+
format?: string | undefined;
|
|
650
695
|
label?: string | undefined;
|
|
651
696
|
valueLabels?: string | undefined;
|
|
652
697
|
};
|
|
@@ -677,16 +722,19 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
677
722
|
columnName: z.ZodObject<{
|
|
678
723
|
type: z.ZodLiteral<"column">;
|
|
679
724
|
value: z.ZodString;
|
|
725
|
+
format: z.ZodOptional<z.ZodString>;
|
|
680
726
|
label: z.ZodOptional<z.ZodString>;
|
|
681
727
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
682
728
|
}, "strip", z.ZodTypeAny, {
|
|
683
729
|
type: "column";
|
|
684
730
|
value: string;
|
|
731
|
+
format?: string | undefined;
|
|
685
732
|
label?: string | undefined;
|
|
686
733
|
valueLabels?: string | undefined;
|
|
687
734
|
}, {
|
|
688
735
|
type: "column";
|
|
689
736
|
value: string;
|
|
737
|
+
format?: string | undefined;
|
|
690
738
|
label?: string | undefined;
|
|
691
739
|
valueLabels?: string | undefined;
|
|
692
740
|
}>;
|
|
@@ -697,6 +745,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
697
745
|
columnName: {
|
|
698
746
|
type: "column";
|
|
699
747
|
value: string;
|
|
748
|
+
format?: string | undefined;
|
|
700
749
|
label?: string | undefined;
|
|
701
750
|
valueLabels?: string | undefined;
|
|
702
751
|
};
|
|
@@ -707,6 +756,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
707
756
|
columnName: {
|
|
708
757
|
type: "column";
|
|
709
758
|
value: string;
|
|
759
|
+
format?: string | undefined;
|
|
710
760
|
label?: string | undefined;
|
|
711
761
|
valueLabels?: string | undefined;
|
|
712
762
|
};
|
|
@@ -726,6 +776,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
726
776
|
columnName: {
|
|
727
777
|
type: "column";
|
|
728
778
|
value: string;
|
|
779
|
+
format?: string | undefined;
|
|
729
780
|
label?: string | undefined;
|
|
730
781
|
valueLabels?: string | undefined;
|
|
731
782
|
};
|
|
@@ -745,6 +796,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
745
796
|
columnName: {
|
|
746
797
|
type: "column";
|
|
747
798
|
value: string;
|
|
799
|
+
format?: string | undefined;
|
|
748
800
|
label?: string | undefined;
|
|
749
801
|
valueLabels?: string | undefined;
|
|
750
802
|
};
|
|
@@ -767,6 +819,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
767
819
|
columnName: {
|
|
768
820
|
type: "column";
|
|
769
821
|
value: string;
|
|
822
|
+
format?: string | undefined;
|
|
770
823
|
label?: string | undefined;
|
|
771
824
|
valueLabels?: string | undefined;
|
|
772
825
|
};
|
|
@@ -790,6 +843,7 @@ declare const ScatterplotLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
790
843
|
columnName: {
|
|
791
844
|
type: "column";
|
|
792
845
|
value: string;
|
|
846
|
+
format?: string | undefined;
|
|
793
847
|
label?: string | undefined;
|
|
794
848
|
valueLabels?: string | undefined;
|
|
795
849
|
};
|
|
@@ -844,16 +898,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
844
898
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
845
899
|
type: z.ZodLiteral<"column">;
|
|
846
900
|
value: z.ZodString;
|
|
901
|
+
format: z.ZodOptional<z.ZodString>;
|
|
847
902
|
label: z.ZodOptional<z.ZodString>;
|
|
848
903
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
849
904
|
}, "strip", z.ZodTypeAny, {
|
|
850
905
|
type: "column";
|
|
851
906
|
value: string;
|
|
907
|
+
format?: string | undefined;
|
|
852
908
|
label?: string | undefined;
|
|
853
909
|
valueLabels?: string | undefined;
|
|
854
910
|
}, {
|
|
855
911
|
type: "column";
|
|
856
912
|
value: string;
|
|
913
|
+
format?: string | undefined;
|
|
857
914
|
label?: string | undefined;
|
|
858
915
|
valueLabels?: string | undefined;
|
|
859
916
|
}>, "many">>;
|
|
@@ -862,6 +919,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
862
919
|
content?: {
|
|
863
920
|
type: "column";
|
|
864
921
|
value: string;
|
|
922
|
+
format?: string | undefined;
|
|
865
923
|
label?: string | undefined;
|
|
866
924
|
valueLabels?: string | undefined;
|
|
867
925
|
}[] | undefined;
|
|
@@ -870,6 +928,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
870
928
|
content?: {
|
|
871
929
|
type: "column";
|
|
872
930
|
value: string;
|
|
931
|
+
format?: string | undefined;
|
|
873
932
|
label?: string | undefined;
|
|
874
933
|
valueLabels?: string | undefined;
|
|
875
934
|
}[] | undefined;
|
|
@@ -900,48 +959,57 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
900
959
|
keyColumn: z.ZodObject<{
|
|
901
960
|
type: z.ZodLiteral<"column">;
|
|
902
961
|
value: z.ZodString;
|
|
962
|
+
format: z.ZodOptional<z.ZodString>;
|
|
903
963
|
label: z.ZodOptional<z.ZodString>;
|
|
904
964
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
905
965
|
}, "strip", z.ZodTypeAny, {
|
|
906
966
|
type: "column";
|
|
907
967
|
value: string;
|
|
968
|
+
format?: string | undefined;
|
|
908
969
|
label?: string | undefined;
|
|
909
970
|
valueLabels?: string | undefined;
|
|
910
971
|
}, {
|
|
911
972
|
type: "column";
|
|
912
973
|
value: string;
|
|
974
|
+
format?: string | undefined;
|
|
913
975
|
label?: string | undefined;
|
|
914
976
|
valueLabels?: string | undefined;
|
|
915
977
|
}>;
|
|
916
978
|
x: z.ZodObject<{
|
|
917
979
|
type: z.ZodLiteral<"column">;
|
|
918
980
|
value: z.ZodString;
|
|
981
|
+
format: z.ZodOptional<z.ZodString>;
|
|
919
982
|
label: z.ZodOptional<z.ZodString>;
|
|
920
983
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
921
984
|
}, "strip", z.ZodTypeAny, {
|
|
922
985
|
type: "column";
|
|
923
986
|
value: string;
|
|
987
|
+
format?: string | undefined;
|
|
924
988
|
label?: string | undefined;
|
|
925
989
|
valueLabels?: string | undefined;
|
|
926
990
|
}, {
|
|
927
991
|
type: "column";
|
|
928
992
|
value: string;
|
|
993
|
+
format?: string | undefined;
|
|
929
994
|
label?: string | undefined;
|
|
930
995
|
valueLabels?: string | undefined;
|
|
931
996
|
}>;
|
|
932
997
|
y: z.ZodObject<{
|
|
933
998
|
type: z.ZodLiteral<"column">;
|
|
934
999
|
value: z.ZodString;
|
|
1000
|
+
format: z.ZodOptional<z.ZodString>;
|
|
935
1001
|
label: z.ZodOptional<z.ZodString>;
|
|
936
1002
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
937
1003
|
}, "strip", z.ZodTypeAny, {
|
|
938
1004
|
type: "column";
|
|
939
1005
|
value: string;
|
|
1006
|
+
format?: string | undefined;
|
|
940
1007
|
label?: string | undefined;
|
|
941
1008
|
valueLabels?: string | undefined;
|
|
942
1009
|
}, {
|
|
943
1010
|
type: "column";
|
|
944
1011
|
value: string;
|
|
1012
|
+
format?: string | undefined;
|
|
945
1013
|
label?: string | undefined;
|
|
946
1014
|
valueLabels?: string | undefined;
|
|
947
1015
|
}>;
|
|
@@ -949,16 +1017,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
949
1017
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
950
1018
|
type: z.ZodLiteral<"column">;
|
|
951
1019
|
value: z.ZodString;
|
|
1020
|
+
format: z.ZodOptional<z.ZodString>;
|
|
952
1021
|
label: z.ZodOptional<z.ZodString>;
|
|
953
1022
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
954
1023
|
}, "strip", z.ZodTypeAny, {
|
|
955
1024
|
type: "column";
|
|
956
1025
|
value: string;
|
|
1026
|
+
format?: string | undefined;
|
|
957
1027
|
label?: string | undefined;
|
|
958
1028
|
valueLabels?: string | undefined;
|
|
959
1029
|
}, {
|
|
960
1030
|
type: "column";
|
|
961
1031
|
value: string;
|
|
1032
|
+
format?: string | undefined;
|
|
962
1033
|
label?: string | undefined;
|
|
963
1034
|
valueLabels?: string | undefined;
|
|
964
1035
|
}>]>>;
|
|
@@ -977,6 +1048,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
977
1048
|
title?: string | {
|
|
978
1049
|
type: "column";
|
|
979
1050
|
value: string;
|
|
1051
|
+
format?: string | undefined;
|
|
980
1052
|
label?: string | undefined;
|
|
981
1053
|
valueLabels?: string | undefined;
|
|
982
1054
|
} | undefined;
|
|
@@ -995,6 +1067,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
995
1067
|
title?: string | {
|
|
996
1068
|
type: "column";
|
|
997
1069
|
value: string;
|
|
1070
|
+
format?: string | undefined;
|
|
998
1071
|
label?: string | undefined;
|
|
999
1072
|
valueLabels?: string | undefined;
|
|
1000
1073
|
} | undefined;
|
|
@@ -1014,16 +1087,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1014
1087
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1015
1088
|
type: z.ZodLiteral<"column">;
|
|
1016
1089
|
value: z.ZodString;
|
|
1090
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1017
1091
|
label: z.ZodOptional<z.ZodString>;
|
|
1018
1092
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1019
1093
|
}, "strip", z.ZodTypeAny, {
|
|
1020
1094
|
type: "column";
|
|
1021
1095
|
value: string;
|
|
1096
|
+
format?: string | undefined;
|
|
1022
1097
|
label?: string | undefined;
|
|
1023
1098
|
valueLabels?: string | undefined;
|
|
1024
1099
|
}, {
|
|
1025
1100
|
type: "column";
|
|
1026
1101
|
value: string;
|
|
1102
|
+
format?: string | undefined;
|
|
1027
1103
|
label?: string | undefined;
|
|
1028
1104
|
valueLabels?: string | undefined;
|
|
1029
1105
|
}>]>>;
|
|
@@ -1042,6 +1118,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1042
1118
|
title?: string | {
|
|
1043
1119
|
type: "column";
|
|
1044
1120
|
value: string;
|
|
1121
|
+
format?: string | undefined;
|
|
1045
1122
|
label?: string | undefined;
|
|
1046
1123
|
valueLabels?: string | undefined;
|
|
1047
1124
|
} | undefined;
|
|
@@ -1060,6 +1137,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1060
1137
|
title?: string | {
|
|
1061
1138
|
type: "column";
|
|
1062
1139
|
value: string;
|
|
1140
|
+
format?: string | undefined;
|
|
1063
1141
|
label?: string | undefined;
|
|
1064
1142
|
valueLabels?: string | undefined;
|
|
1065
1143
|
} | undefined;
|
|
@@ -1078,64 +1156,76 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1078
1156
|
grouping: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1079
1157
|
type: z.ZodLiteral<"column">;
|
|
1080
1158
|
value: z.ZodString;
|
|
1159
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1081
1160
|
label: z.ZodOptional<z.ZodString>;
|
|
1082
1161
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1083
1162
|
}, "strip", z.ZodTypeAny, {
|
|
1084
1163
|
type: "column";
|
|
1085
1164
|
value: string;
|
|
1165
|
+
format?: string | undefined;
|
|
1086
1166
|
label?: string | undefined;
|
|
1087
1167
|
valueLabels?: string | undefined;
|
|
1088
1168
|
}, {
|
|
1089
1169
|
type: "column";
|
|
1090
1170
|
value: string;
|
|
1171
|
+
format?: string | undefined;
|
|
1091
1172
|
label?: string | undefined;
|
|
1092
1173
|
valueLabels?: string | undefined;
|
|
1093
1174
|
}>, "many">>;
|
|
1094
1175
|
facetBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1095
1176
|
type: z.ZodLiteral<"column">;
|
|
1096
1177
|
value: z.ZodString;
|
|
1178
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1097
1179
|
label: z.ZodOptional<z.ZodString>;
|
|
1098
1180
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1099
1181
|
}, "strip", z.ZodTypeAny, {
|
|
1100
1182
|
type: "column";
|
|
1101
1183
|
value: string;
|
|
1184
|
+
format?: string | undefined;
|
|
1102
1185
|
label?: string | undefined;
|
|
1103
1186
|
valueLabels?: string | undefined;
|
|
1104
1187
|
}, {
|
|
1105
1188
|
type: "column";
|
|
1106
1189
|
value: string;
|
|
1190
|
+
format?: string | undefined;
|
|
1107
1191
|
label?: string | undefined;
|
|
1108
1192
|
valueLabels?: string | undefined;
|
|
1109
1193
|
}>, "many">>;
|
|
1110
1194
|
label: z.ZodOptional<z.ZodObject<{
|
|
1111
1195
|
type: z.ZodLiteral<"column">;
|
|
1112
1196
|
value: z.ZodString;
|
|
1197
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1113
1198
|
label: z.ZodOptional<z.ZodString>;
|
|
1114
1199
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1115
1200
|
}, "strip", z.ZodTypeAny, {
|
|
1116
1201
|
type: "column";
|
|
1117
1202
|
value: string;
|
|
1203
|
+
format?: string | undefined;
|
|
1118
1204
|
label?: string | undefined;
|
|
1119
1205
|
valueLabels?: string | undefined;
|
|
1120
1206
|
}, {
|
|
1121
1207
|
type: "column";
|
|
1122
1208
|
value: string;
|
|
1209
|
+
format?: string | undefined;
|
|
1123
1210
|
label?: string | undefined;
|
|
1124
1211
|
valueLabels?: string | undefined;
|
|
1125
1212
|
}>>;
|
|
1126
1213
|
highlight: z.ZodOptional<z.ZodObject<{
|
|
1127
1214
|
type: z.ZodLiteral<"column">;
|
|
1128
1215
|
value: z.ZodString;
|
|
1216
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1129
1217
|
label: z.ZodOptional<z.ZodString>;
|
|
1130
1218
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1131
1219
|
}, "strip", z.ZodTypeAny, {
|
|
1132
1220
|
type: "column";
|
|
1133
1221
|
value: string;
|
|
1222
|
+
format?: string | undefined;
|
|
1134
1223
|
label?: string | undefined;
|
|
1135
1224
|
valueLabels?: string | undefined;
|
|
1136
1225
|
}, {
|
|
1137
1226
|
type: "column";
|
|
1138
1227
|
value: string;
|
|
1228
|
+
format?: string | undefined;
|
|
1139
1229
|
label?: string | undefined;
|
|
1140
1230
|
valueLabels?: string | undefined;
|
|
1141
1231
|
}>>;
|
|
@@ -1181,16 +1271,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1181
1271
|
columnName: z.ZodObject<{
|
|
1182
1272
|
type: z.ZodLiteral<"column">;
|
|
1183
1273
|
value: z.ZodString;
|
|
1274
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1184
1275
|
label: z.ZodOptional<z.ZodString>;
|
|
1185
1276
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1186
1277
|
}, "strip", z.ZodTypeAny, {
|
|
1187
1278
|
type: "column";
|
|
1188
1279
|
value: string;
|
|
1280
|
+
format?: string | undefined;
|
|
1189
1281
|
label?: string | undefined;
|
|
1190
1282
|
valueLabels?: string | undefined;
|
|
1191
1283
|
}, {
|
|
1192
1284
|
type: "column";
|
|
1193
1285
|
value: string;
|
|
1286
|
+
format?: string | undefined;
|
|
1194
1287
|
label?: string | undefined;
|
|
1195
1288
|
valueLabels?: string | undefined;
|
|
1196
1289
|
}>;
|
|
@@ -1201,6 +1294,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1201
1294
|
columnName: {
|
|
1202
1295
|
type: "column";
|
|
1203
1296
|
value: string;
|
|
1297
|
+
format?: string | undefined;
|
|
1204
1298
|
label?: string | undefined;
|
|
1205
1299
|
valueLabels?: string | undefined;
|
|
1206
1300
|
};
|
|
@@ -1211,6 +1305,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1211
1305
|
columnName: {
|
|
1212
1306
|
type: "column";
|
|
1213
1307
|
value: string;
|
|
1308
|
+
format?: string | undefined;
|
|
1214
1309
|
label?: string | undefined;
|
|
1215
1310
|
valueLabels?: string | undefined;
|
|
1216
1311
|
};
|
|
@@ -1228,6 +1323,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1228
1323
|
columnName: {
|
|
1229
1324
|
type: "column";
|
|
1230
1325
|
value: string;
|
|
1326
|
+
format?: string | undefined;
|
|
1231
1327
|
label?: string | undefined;
|
|
1232
1328
|
valueLabels?: string | undefined;
|
|
1233
1329
|
};
|
|
@@ -1245,6 +1341,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1245
1341
|
columnName: {
|
|
1246
1342
|
type: "column";
|
|
1247
1343
|
value: string;
|
|
1344
|
+
format?: string | undefined;
|
|
1248
1345
|
label?: string | undefined;
|
|
1249
1346
|
valueLabels?: string | undefined;
|
|
1250
1347
|
};
|
|
@@ -1273,16 +1370,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1273
1370
|
columnName: z.ZodObject<{
|
|
1274
1371
|
type: z.ZodLiteral<"column">;
|
|
1275
1372
|
value: z.ZodString;
|
|
1373
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1276
1374
|
label: z.ZodOptional<z.ZodString>;
|
|
1277
1375
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1278
1376
|
}, "strip", z.ZodTypeAny, {
|
|
1279
1377
|
type: "column";
|
|
1280
1378
|
value: string;
|
|
1379
|
+
format?: string | undefined;
|
|
1281
1380
|
label?: string | undefined;
|
|
1282
1381
|
valueLabels?: string | undefined;
|
|
1283
1382
|
}, {
|
|
1284
1383
|
type: "column";
|
|
1285
1384
|
value: string;
|
|
1385
|
+
format?: string | undefined;
|
|
1286
1386
|
label?: string | undefined;
|
|
1287
1387
|
valueLabels?: string | undefined;
|
|
1288
1388
|
}>;
|
|
@@ -1293,6 +1393,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1293
1393
|
columnName: {
|
|
1294
1394
|
type: "column";
|
|
1295
1395
|
value: string;
|
|
1396
|
+
format?: string | undefined;
|
|
1296
1397
|
label?: string | undefined;
|
|
1297
1398
|
valueLabels?: string | undefined;
|
|
1298
1399
|
};
|
|
@@ -1303,6 +1404,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1303
1404
|
columnName: {
|
|
1304
1405
|
type: "column";
|
|
1305
1406
|
value: string;
|
|
1407
|
+
format?: string | undefined;
|
|
1306
1408
|
label?: string | undefined;
|
|
1307
1409
|
valueLabels?: string | undefined;
|
|
1308
1410
|
};
|
|
@@ -1327,16 +1429,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1327
1429
|
columnName: z.ZodObject<{
|
|
1328
1430
|
type: z.ZodLiteral<"column">;
|
|
1329
1431
|
value: z.ZodString;
|
|
1432
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1330
1433
|
label: z.ZodOptional<z.ZodString>;
|
|
1331
1434
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1332
1435
|
}, "strip", z.ZodTypeAny, {
|
|
1333
1436
|
type: "column";
|
|
1334
1437
|
value: string;
|
|
1438
|
+
format?: string | undefined;
|
|
1335
1439
|
label?: string | undefined;
|
|
1336
1440
|
valueLabels?: string | undefined;
|
|
1337
1441
|
}, {
|
|
1338
1442
|
type: "column";
|
|
1339
1443
|
value: string;
|
|
1444
|
+
format?: string | undefined;
|
|
1340
1445
|
label?: string | undefined;
|
|
1341
1446
|
valueLabels?: string | undefined;
|
|
1342
1447
|
}>;
|
|
@@ -1347,6 +1452,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1347
1452
|
columnName: {
|
|
1348
1453
|
type: "column";
|
|
1349
1454
|
value: string;
|
|
1455
|
+
format?: string | undefined;
|
|
1350
1456
|
label?: string | undefined;
|
|
1351
1457
|
valueLabels?: string | undefined;
|
|
1352
1458
|
};
|
|
@@ -1357,6 +1463,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1357
1463
|
columnName: {
|
|
1358
1464
|
type: "column";
|
|
1359
1465
|
value: string;
|
|
1466
|
+
format?: string | undefined;
|
|
1360
1467
|
label?: string | undefined;
|
|
1361
1468
|
valueLabels?: string | undefined;
|
|
1362
1469
|
};
|
|
@@ -1373,6 +1480,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1373
1480
|
columnName: {
|
|
1374
1481
|
type: "column";
|
|
1375
1482
|
value: string;
|
|
1483
|
+
format?: string | undefined;
|
|
1376
1484
|
label?: string | undefined;
|
|
1377
1485
|
valueLabels?: string | undefined;
|
|
1378
1486
|
};
|
|
@@ -1389,6 +1497,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1389
1497
|
columnName: {
|
|
1390
1498
|
type: "column";
|
|
1391
1499
|
value: string;
|
|
1500
|
+
format?: string | undefined;
|
|
1392
1501
|
label?: string | undefined;
|
|
1393
1502
|
valueLabels?: string | undefined;
|
|
1394
1503
|
};
|
|
@@ -1405,6 +1514,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1405
1514
|
columnName: {
|
|
1406
1515
|
type: "column";
|
|
1407
1516
|
value: string;
|
|
1517
|
+
format?: string | undefined;
|
|
1408
1518
|
label?: string | undefined;
|
|
1409
1519
|
valueLabels?: string | undefined;
|
|
1410
1520
|
};
|
|
@@ -1421,6 +1531,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1421
1531
|
columnName: {
|
|
1422
1532
|
type: "column";
|
|
1423
1533
|
value: string;
|
|
1534
|
+
format?: string | undefined;
|
|
1424
1535
|
label?: string | undefined;
|
|
1425
1536
|
valueLabels?: string | undefined;
|
|
1426
1537
|
};
|
|
@@ -1440,6 +1551,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1440
1551
|
columnName: {
|
|
1441
1552
|
type: "column";
|
|
1442
1553
|
value: string;
|
|
1554
|
+
format?: string | undefined;
|
|
1443
1555
|
label?: string | undefined;
|
|
1444
1556
|
valueLabels?: string | undefined;
|
|
1445
1557
|
};
|
|
@@ -1456,6 +1568,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1456
1568
|
columnName: {
|
|
1457
1569
|
type: "column";
|
|
1458
1570
|
value: string;
|
|
1571
|
+
format?: string | undefined;
|
|
1459
1572
|
label?: string | undefined;
|
|
1460
1573
|
valueLabels?: string | undefined;
|
|
1461
1574
|
};
|
|
@@ -1475,6 +1588,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1475
1588
|
columnName: {
|
|
1476
1589
|
type: "column";
|
|
1477
1590
|
value: string;
|
|
1591
|
+
format?: string | undefined;
|
|
1478
1592
|
label?: string | undefined;
|
|
1479
1593
|
valueLabels?: string | undefined;
|
|
1480
1594
|
};
|
|
@@ -1491,6 +1605,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1491
1605
|
columnName: {
|
|
1492
1606
|
type: "column";
|
|
1493
1607
|
value: string;
|
|
1608
|
+
format?: string | undefined;
|
|
1494
1609
|
label?: string | undefined;
|
|
1495
1610
|
valueLabels?: string | undefined;
|
|
1496
1611
|
};
|
|
@@ -1521,16 +1636,19 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1521
1636
|
columnName: z.ZodObject<{
|
|
1522
1637
|
type: z.ZodLiteral<"column">;
|
|
1523
1638
|
value: z.ZodString;
|
|
1639
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1524
1640
|
label: z.ZodOptional<z.ZodString>;
|
|
1525
1641
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1526
1642
|
}, "strip", z.ZodTypeAny, {
|
|
1527
1643
|
type: "column";
|
|
1528
1644
|
value: string;
|
|
1645
|
+
format?: string | undefined;
|
|
1529
1646
|
label?: string | undefined;
|
|
1530
1647
|
valueLabels?: string | undefined;
|
|
1531
1648
|
}, {
|
|
1532
1649
|
type: "column";
|
|
1533
1650
|
value: string;
|
|
1651
|
+
format?: string | undefined;
|
|
1534
1652
|
label?: string | undefined;
|
|
1535
1653
|
valueLabels?: string | undefined;
|
|
1536
1654
|
}>;
|
|
@@ -1541,6 +1659,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1541
1659
|
columnName: {
|
|
1542
1660
|
type: "column";
|
|
1543
1661
|
value: string;
|
|
1662
|
+
format?: string | undefined;
|
|
1544
1663
|
label?: string | undefined;
|
|
1545
1664
|
valueLabels?: string | undefined;
|
|
1546
1665
|
};
|
|
@@ -1551,6 +1670,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1551
1670
|
columnName: {
|
|
1552
1671
|
type: "column";
|
|
1553
1672
|
value: string;
|
|
1673
|
+
format?: string | undefined;
|
|
1554
1674
|
label?: string | undefined;
|
|
1555
1675
|
valueLabels?: string | undefined;
|
|
1556
1676
|
};
|
|
@@ -1570,6 +1690,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1570
1690
|
columnName: {
|
|
1571
1691
|
type: "column";
|
|
1572
1692
|
value: string;
|
|
1693
|
+
format?: string | undefined;
|
|
1573
1694
|
label?: string | undefined;
|
|
1574
1695
|
valueLabels?: string | undefined;
|
|
1575
1696
|
};
|
|
@@ -1589,6 +1710,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1589
1710
|
columnName: {
|
|
1590
1711
|
type: "column";
|
|
1591
1712
|
value: string;
|
|
1713
|
+
format?: string | undefined;
|
|
1592
1714
|
label?: string | undefined;
|
|
1593
1715
|
valueLabels?: string | undefined;
|
|
1594
1716
|
};
|
|
@@ -1611,6 +1733,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1611
1733
|
columnName: {
|
|
1612
1734
|
type: "column";
|
|
1613
1735
|
value: string;
|
|
1736
|
+
format?: string | undefined;
|
|
1614
1737
|
label?: string | undefined;
|
|
1615
1738
|
valueLabels?: string | undefined;
|
|
1616
1739
|
};
|
|
@@ -1634,6 +1757,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1634
1757
|
columnName: {
|
|
1635
1758
|
type: "column";
|
|
1636
1759
|
value: string;
|
|
1760
|
+
format?: string | undefined;
|
|
1637
1761
|
label?: string | undefined;
|
|
1638
1762
|
valueLabels?: string | undefined;
|
|
1639
1763
|
};
|
|
@@ -1655,18 +1779,21 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1655
1779
|
keyColumn: {
|
|
1656
1780
|
type: "column";
|
|
1657
1781
|
value: string;
|
|
1782
|
+
format?: string | undefined;
|
|
1658
1783
|
label?: string | undefined;
|
|
1659
1784
|
valueLabels?: string | undefined;
|
|
1660
1785
|
};
|
|
1661
1786
|
x: {
|
|
1662
1787
|
type: "column";
|
|
1663
1788
|
value: string;
|
|
1789
|
+
format?: string | undefined;
|
|
1664
1790
|
label?: string | undefined;
|
|
1665
1791
|
valueLabels?: string | undefined;
|
|
1666
1792
|
};
|
|
1667
1793
|
y: {
|
|
1668
1794
|
type: "column";
|
|
1669
1795
|
value: string;
|
|
1796
|
+
format?: string | undefined;
|
|
1670
1797
|
label?: string | undefined;
|
|
1671
1798
|
valueLabels?: string | undefined;
|
|
1672
1799
|
};
|
|
@@ -1681,6 +1808,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1681
1808
|
columnName: {
|
|
1682
1809
|
type: "column";
|
|
1683
1810
|
value: string;
|
|
1811
|
+
format?: string | undefined;
|
|
1684
1812
|
label?: string | undefined;
|
|
1685
1813
|
valueLabels?: string | undefined;
|
|
1686
1814
|
};
|
|
@@ -1697,6 +1825,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1697
1825
|
columnName: {
|
|
1698
1826
|
type: "column";
|
|
1699
1827
|
value: string;
|
|
1828
|
+
format?: string | undefined;
|
|
1700
1829
|
label?: string | undefined;
|
|
1701
1830
|
valueLabels?: string | undefined;
|
|
1702
1831
|
};
|
|
@@ -1718,6 +1847,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1718
1847
|
columnName: {
|
|
1719
1848
|
type: "column";
|
|
1720
1849
|
value: string;
|
|
1850
|
+
format?: string | undefined;
|
|
1721
1851
|
label?: string | undefined;
|
|
1722
1852
|
valueLabels?: string | undefined;
|
|
1723
1853
|
};
|
|
@@ -1736,12 +1866,14 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1736
1866
|
label?: {
|
|
1737
1867
|
type: "column";
|
|
1738
1868
|
value: string;
|
|
1869
|
+
format?: string | undefined;
|
|
1739
1870
|
label?: string | undefined;
|
|
1740
1871
|
valueLabels?: string | undefined;
|
|
1741
1872
|
} | undefined;
|
|
1742
1873
|
grouping?: {
|
|
1743
1874
|
type: "column";
|
|
1744
1875
|
value: string;
|
|
1876
|
+
format?: string | undefined;
|
|
1745
1877
|
label?: string | undefined;
|
|
1746
1878
|
valueLabels?: string | undefined;
|
|
1747
1879
|
}[] | undefined;
|
|
@@ -1754,6 +1886,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1754
1886
|
content?: {
|
|
1755
1887
|
type: "column";
|
|
1756
1888
|
value: string;
|
|
1889
|
+
format?: string | undefined;
|
|
1757
1890
|
label?: string | undefined;
|
|
1758
1891
|
valueLabels?: string | undefined;
|
|
1759
1892
|
}[] | undefined;
|
|
@@ -1771,6 +1904,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1771
1904
|
title?: string | {
|
|
1772
1905
|
type: "column";
|
|
1773
1906
|
value: string;
|
|
1907
|
+
format?: string | undefined;
|
|
1774
1908
|
label?: string | undefined;
|
|
1775
1909
|
valueLabels?: string | undefined;
|
|
1776
1910
|
} | undefined;
|
|
@@ -1790,6 +1924,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1790
1924
|
title?: string | {
|
|
1791
1925
|
type: "column";
|
|
1792
1926
|
value: string;
|
|
1927
|
+
format?: string | undefined;
|
|
1793
1928
|
label?: string | undefined;
|
|
1794
1929
|
valueLabels?: string | undefined;
|
|
1795
1930
|
} | undefined;
|
|
@@ -1808,12 +1943,14 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1808
1943
|
facetBy?: {
|
|
1809
1944
|
type: "column";
|
|
1810
1945
|
value: string;
|
|
1946
|
+
format?: string | undefined;
|
|
1811
1947
|
label?: string | undefined;
|
|
1812
1948
|
valueLabels?: string | undefined;
|
|
1813
1949
|
}[] | undefined;
|
|
1814
1950
|
highlight?: {
|
|
1815
1951
|
type: "column";
|
|
1816
1952
|
value: string;
|
|
1953
|
+
format?: string | undefined;
|
|
1817
1954
|
label?: string | undefined;
|
|
1818
1955
|
valueLabels?: string | undefined;
|
|
1819
1956
|
} | undefined;
|
|
@@ -1835,6 +1972,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1835
1972
|
columnName: {
|
|
1836
1973
|
type: "column";
|
|
1837
1974
|
value: string;
|
|
1975
|
+
format?: string | undefined;
|
|
1838
1976
|
label?: string | undefined;
|
|
1839
1977
|
valueLabels?: string | undefined;
|
|
1840
1978
|
};
|
|
@@ -1854,18 +1992,21 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1854
1992
|
keyColumn: {
|
|
1855
1993
|
type: "column";
|
|
1856
1994
|
value: string;
|
|
1995
|
+
format?: string | undefined;
|
|
1857
1996
|
label?: string | undefined;
|
|
1858
1997
|
valueLabels?: string | undefined;
|
|
1859
1998
|
};
|
|
1860
1999
|
x: {
|
|
1861
2000
|
type: "column";
|
|
1862
2001
|
value: string;
|
|
2002
|
+
format?: string | undefined;
|
|
1863
2003
|
label?: string | undefined;
|
|
1864
2004
|
valueLabels?: string | undefined;
|
|
1865
2005
|
};
|
|
1866
2006
|
y: {
|
|
1867
2007
|
type: "column";
|
|
1868
2008
|
value: string;
|
|
2009
|
+
format?: string | undefined;
|
|
1869
2010
|
label?: string | undefined;
|
|
1870
2011
|
valueLabels?: string | undefined;
|
|
1871
2012
|
};
|
|
@@ -1880,6 +2021,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1880
2021
|
columnName: {
|
|
1881
2022
|
type: "column";
|
|
1882
2023
|
value: string;
|
|
2024
|
+
format?: string | undefined;
|
|
1883
2025
|
label?: string | undefined;
|
|
1884
2026
|
valueLabels?: string | undefined;
|
|
1885
2027
|
};
|
|
@@ -1896,6 +2038,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1896
2038
|
columnName: {
|
|
1897
2039
|
type: "column";
|
|
1898
2040
|
value: string;
|
|
2041
|
+
format?: string | undefined;
|
|
1899
2042
|
label?: string | undefined;
|
|
1900
2043
|
valueLabels?: string | undefined;
|
|
1901
2044
|
};
|
|
@@ -1917,6 +2060,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1917
2060
|
columnName: {
|
|
1918
2061
|
type: "column";
|
|
1919
2062
|
value: string;
|
|
2063
|
+
format?: string | undefined;
|
|
1920
2064
|
label?: string | undefined;
|
|
1921
2065
|
valueLabels?: string | undefined;
|
|
1922
2066
|
};
|
|
@@ -1935,12 +2079,14 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1935
2079
|
label?: {
|
|
1936
2080
|
type: "column";
|
|
1937
2081
|
value: string;
|
|
2082
|
+
format?: string | undefined;
|
|
1938
2083
|
label?: string | undefined;
|
|
1939
2084
|
valueLabels?: string | undefined;
|
|
1940
2085
|
} | undefined;
|
|
1941
2086
|
grouping?: {
|
|
1942
2087
|
type: "column";
|
|
1943
2088
|
value: string;
|
|
2089
|
+
format?: string | undefined;
|
|
1944
2090
|
label?: string | undefined;
|
|
1945
2091
|
valueLabels?: string | undefined;
|
|
1946
2092
|
}[] | undefined;
|
|
@@ -1953,6 +2099,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1953
2099
|
content?: {
|
|
1954
2100
|
type: "column";
|
|
1955
2101
|
value: string;
|
|
2102
|
+
format?: string | undefined;
|
|
1956
2103
|
label?: string | undefined;
|
|
1957
2104
|
valueLabels?: string | undefined;
|
|
1958
2105
|
}[] | undefined;
|
|
@@ -1970,6 +2117,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1970
2117
|
title?: string | {
|
|
1971
2118
|
type: "column";
|
|
1972
2119
|
value: string;
|
|
2120
|
+
format?: string | undefined;
|
|
1973
2121
|
label?: string | undefined;
|
|
1974
2122
|
valueLabels?: string | undefined;
|
|
1975
2123
|
} | undefined;
|
|
@@ -1989,6 +2137,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
1989
2137
|
title?: string | {
|
|
1990
2138
|
type: "column";
|
|
1991
2139
|
value: string;
|
|
2140
|
+
format?: string | undefined;
|
|
1992
2141
|
label?: string | undefined;
|
|
1993
2142
|
valueLabels?: string | undefined;
|
|
1994
2143
|
} | undefined;
|
|
@@ -2007,12 +2156,14 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2007
2156
|
facetBy?: {
|
|
2008
2157
|
type: "column";
|
|
2009
2158
|
value: string;
|
|
2159
|
+
format?: string | undefined;
|
|
2010
2160
|
label?: string | undefined;
|
|
2011
2161
|
valueLabels?: string | undefined;
|
|
2012
2162
|
}[] | undefined;
|
|
2013
2163
|
highlight?: {
|
|
2014
2164
|
type: "column";
|
|
2015
2165
|
value: string;
|
|
2166
|
+
format?: string | undefined;
|
|
2016
2167
|
label?: string | undefined;
|
|
2017
2168
|
valueLabels?: string | undefined;
|
|
2018
2169
|
} | undefined;
|
|
@@ -2034,6 +2185,7 @@ export declare const ScatterplotSettingsSchema: z.ZodObject<{
|
|
|
2034
2185
|
columnName: {
|
|
2035
2186
|
type: "column";
|
|
2036
2187
|
value: string;
|
|
2188
|
+
format?: string | undefined;
|
|
2037
2189
|
label?: string | undefined;
|
|
2038
2190
|
valueLabels?: string | undefined;
|
|
2039
2191
|
};
|