@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
|
@@ -38,16 +38,19 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
38
38
|
columnName: z.ZodObject<{
|
|
39
39
|
type: z.ZodLiteral<"column">;
|
|
40
40
|
value: z.ZodString;
|
|
41
|
+
format: z.ZodOptional<z.ZodString>;
|
|
41
42
|
label: z.ZodOptional<z.ZodString>;
|
|
42
43
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
43
44
|
}, "strip", z.ZodTypeAny, {
|
|
44
45
|
type: "column";
|
|
45
46
|
value: string;
|
|
47
|
+
format?: string | undefined;
|
|
46
48
|
label?: string | undefined;
|
|
47
49
|
valueLabels?: string | undefined;
|
|
48
50
|
}, {
|
|
49
51
|
type: "column";
|
|
50
52
|
value: string;
|
|
53
|
+
format?: string | undefined;
|
|
51
54
|
label?: string | undefined;
|
|
52
55
|
valueLabels?: string | undefined;
|
|
53
56
|
}>;
|
|
@@ -58,6 +61,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
58
61
|
columnName: {
|
|
59
62
|
type: "column";
|
|
60
63
|
value: string;
|
|
64
|
+
format?: string | undefined;
|
|
61
65
|
label?: string | undefined;
|
|
62
66
|
valueLabels?: string | undefined;
|
|
63
67
|
};
|
|
@@ -68,6 +72,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
68
72
|
columnName: {
|
|
69
73
|
type: "column";
|
|
70
74
|
value: string;
|
|
75
|
+
format?: string | undefined;
|
|
71
76
|
label?: string | undefined;
|
|
72
77
|
valueLabels?: string | undefined;
|
|
73
78
|
};
|
|
@@ -92,16 +97,19 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
92
97
|
columnName: z.ZodObject<{
|
|
93
98
|
type: z.ZodLiteral<"column">;
|
|
94
99
|
value: z.ZodString;
|
|
100
|
+
format: z.ZodOptional<z.ZodString>;
|
|
95
101
|
label: z.ZodOptional<z.ZodString>;
|
|
96
102
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
97
103
|
}, "strip", z.ZodTypeAny, {
|
|
98
104
|
type: "column";
|
|
99
105
|
value: string;
|
|
106
|
+
format?: string | undefined;
|
|
100
107
|
label?: string | undefined;
|
|
101
108
|
valueLabels?: string | undefined;
|
|
102
109
|
}, {
|
|
103
110
|
type: "column";
|
|
104
111
|
value: string;
|
|
112
|
+
format?: string | undefined;
|
|
105
113
|
label?: string | undefined;
|
|
106
114
|
valueLabels?: string | undefined;
|
|
107
115
|
}>;
|
|
@@ -112,6 +120,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
112
120
|
columnName: {
|
|
113
121
|
type: "column";
|
|
114
122
|
value: string;
|
|
123
|
+
format?: string | undefined;
|
|
115
124
|
label?: string | undefined;
|
|
116
125
|
valueLabels?: string | undefined;
|
|
117
126
|
};
|
|
@@ -122,6 +131,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
122
131
|
columnName: {
|
|
123
132
|
type: "column";
|
|
124
133
|
value: string;
|
|
134
|
+
format?: string | undefined;
|
|
125
135
|
label?: string | undefined;
|
|
126
136
|
valueLabels?: string | undefined;
|
|
127
137
|
};
|
|
@@ -134,6 +144,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
134
144
|
columnName: {
|
|
135
145
|
type: "column";
|
|
136
146
|
value: string;
|
|
147
|
+
format?: string | undefined;
|
|
137
148
|
label?: string | undefined;
|
|
138
149
|
valueLabels?: string | undefined;
|
|
139
150
|
};
|
|
@@ -154,6 +165,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
154
165
|
columnName: {
|
|
155
166
|
type: "column";
|
|
156
167
|
value: string;
|
|
168
|
+
format?: string | undefined;
|
|
157
169
|
label?: string | undefined;
|
|
158
170
|
valueLabels?: string | undefined;
|
|
159
171
|
};
|
|
@@ -166,6 +178,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
166
178
|
columnName: {
|
|
167
179
|
type: "column";
|
|
168
180
|
value: string;
|
|
181
|
+
format?: string | undefined;
|
|
169
182
|
label?: string | undefined;
|
|
170
183
|
valueLabels?: string | undefined;
|
|
171
184
|
};
|
|
@@ -186,6 +199,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
186
199
|
columnName: {
|
|
187
200
|
type: "column";
|
|
188
201
|
value: string;
|
|
202
|
+
format?: string | undefined;
|
|
189
203
|
label?: string | undefined;
|
|
190
204
|
valueLabels?: string | undefined;
|
|
191
205
|
};
|
|
@@ -201,6 +215,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
201
215
|
columnName: {
|
|
202
216
|
type: "column";
|
|
203
217
|
value: string;
|
|
218
|
+
format?: string | undefined;
|
|
204
219
|
label?: string | undefined;
|
|
205
220
|
valueLabels?: string | undefined;
|
|
206
221
|
};
|
|
@@ -221,6 +236,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
221
236
|
columnName: {
|
|
222
237
|
type: "column";
|
|
223
238
|
value: string;
|
|
239
|
+
format?: string | undefined;
|
|
224
240
|
label?: string | undefined;
|
|
225
241
|
valueLabels?: string | undefined;
|
|
226
242
|
};
|
|
@@ -236,6 +252,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
236
252
|
columnName: {
|
|
237
253
|
type: "column";
|
|
238
254
|
value: string;
|
|
255
|
+
format?: string | undefined;
|
|
239
256
|
label?: string | undefined;
|
|
240
257
|
valueLabels?: string | undefined;
|
|
241
258
|
};
|
|
@@ -256,6 +273,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
|
|
|
256
273
|
columnName: {
|
|
257
274
|
type: "column";
|
|
258
275
|
value: string;
|
|
276
|
+
format?: string | undefined;
|
|
259
277
|
label?: string | undefined;
|
|
260
278
|
valueLabels?: string | undefined;
|
|
261
279
|
};
|
|
@@ -287,16 +305,19 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
287
305
|
columnName: z.ZodObject<{
|
|
288
306
|
type: z.ZodLiteral<"column">;
|
|
289
307
|
value: z.ZodString;
|
|
308
|
+
format: z.ZodOptional<z.ZodString>;
|
|
290
309
|
label: z.ZodOptional<z.ZodString>;
|
|
291
310
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
292
311
|
}, "strip", z.ZodTypeAny, {
|
|
293
312
|
type: "column";
|
|
294
313
|
value: string;
|
|
314
|
+
format?: string | undefined;
|
|
295
315
|
label?: string | undefined;
|
|
296
316
|
valueLabels?: string | undefined;
|
|
297
317
|
}, {
|
|
298
318
|
type: "column";
|
|
299
319
|
value: string;
|
|
320
|
+
format?: string | undefined;
|
|
300
321
|
label?: string | undefined;
|
|
301
322
|
valueLabels?: string | undefined;
|
|
302
323
|
}>;
|
|
@@ -307,6 +328,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
307
328
|
columnName: {
|
|
308
329
|
type: "column";
|
|
309
330
|
value: string;
|
|
331
|
+
format?: string | undefined;
|
|
310
332
|
label?: string | undefined;
|
|
311
333
|
valueLabels?: string | undefined;
|
|
312
334
|
};
|
|
@@ -317,6 +339,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
317
339
|
columnName: {
|
|
318
340
|
type: "column";
|
|
319
341
|
value: string;
|
|
342
|
+
format?: string | undefined;
|
|
320
343
|
label?: string | undefined;
|
|
321
344
|
valueLabels?: string | undefined;
|
|
322
345
|
};
|
|
@@ -332,6 +355,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
332
355
|
columnName: {
|
|
333
356
|
type: "column";
|
|
334
357
|
value: string;
|
|
358
|
+
format?: string | undefined;
|
|
335
359
|
label?: string | undefined;
|
|
336
360
|
valueLabels?: string | undefined;
|
|
337
361
|
};
|
|
@@ -351,6 +375,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
351
375
|
columnName: {
|
|
352
376
|
type: "column";
|
|
353
377
|
value: string;
|
|
378
|
+
format?: string | undefined;
|
|
354
379
|
label?: string | undefined;
|
|
355
380
|
valueLabels?: string | undefined;
|
|
356
381
|
};
|
|
@@ -373,6 +398,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
373
398
|
columnName: {
|
|
374
399
|
type: "column";
|
|
375
400
|
value: string;
|
|
401
|
+
format?: string | undefined;
|
|
376
402
|
label?: string | undefined;
|
|
377
403
|
valueLabels?: string | undefined;
|
|
378
404
|
};
|
|
@@ -396,6 +422,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
|
|
|
396
422
|
columnName: {
|
|
397
423
|
type: "column";
|
|
398
424
|
value: string;
|
|
425
|
+
format?: string | undefined;
|
|
399
426
|
label?: string | undefined;
|
|
400
427
|
valueLabels?: string | undefined;
|
|
401
428
|
};
|
|
@@ -430,16 +457,19 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
430
457
|
columnName: z.ZodObject<{
|
|
431
458
|
type: z.ZodLiteral<"column">;
|
|
432
459
|
value: z.ZodString;
|
|
460
|
+
format: z.ZodOptional<z.ZodString>;
|
|
433
461
|
label: z.ZodOptional<z.ZodString>;
|
|
434
462
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
435
463
|
}, "strip", z.ZodTypeAny, {
|
|
436
464
|
type: "column";
|
|
437
465
|
value: string;
|
|
466
|
+
format?: string | undefined;
|
|
438
467
|
label?: string | undefined;
|
|
439
468
|
valueLabels?: string | undefined;
|
|
440
469
|
}, {
|
|
441
470
|
type: "column";
|
|
442
471
|
value: string;
|
|
472
|
+
format?: string | undefined;
|
|
443
473
|
label?: string | undefined;
|
|
444
474
|
valueLabels?: string | undefined;
|
|
445
475
|
}>;
|
|
@@ -450,6 +480,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
450
480
|
columnName: {
|
|
451
481
|
type: "column";
|
|
452
482
|
value: string;
|
|
483
|
+
format?: string | undefined;
|
|
453
484
|
label?: string | undefined;
|
|
454
485
|
valueLabels?: string | undefined;
|
|
455
486
|
};
|
|
@@ -460,6 +491,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
460
491
|
columnName: {
|
|
461
492
|
type: "column";
|
|
462
493
|
value: string;
|
|
494
|
+
format?: string | undefined;
|
|
463
495
|
label?: string | undefined;
|
|
464
496
|
valueLabels?: string | undefined;
|
|
465
497
|
};
|
|
@@ -484,16 +516,19 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
484
516
|
columnName: z.ZodObject<{
|
|
485
517
|
type: z.ZodLiteral<"column">;
|
|
486
518
|
value: z.ZodString;
|
|
519
|
+
format: z.ZodOptional<z.ZodString>;
|
|
487
520
|
label: z.ZodOptional<z.ZodString>;
|
|
488
521
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
489
522
|
}, "strip", z.ZodTypeAny, {
|
|
490
523
|
type: "column";
|
|
491
524
|
value: string;
|
|
525
|
+
format?: string | undefined;
|
|
492
526
|
label?: string | undefined;
|
|
493
527
|
valueLabels?: string | undefined;
|
|
494
528
|
}, {
|
|
495
529
|
type: "column";
|
|
496
530
|
value: string;
|
|
531
|
+
format?: string | undefined;
|
|
497
532
|
label?: string | undefined;
|
|
498
533
|
valueLabels?: string | undefined;
|
|
499
534
|
}>;
|
|
@@ -504,6 +539,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
504
539
|
columnName: {
|
|
505
540
|
type: "column";
|
|
506
541
|
value: string;
|
|
542
|
+
format?: string | undefined;
|
|
507
543
|
label?: string | undefined;
|
|
508
544
|
valueLabels?: string | undefined;
|
|
509
545
|
};
|
|
@@ -514,6 +550,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
514
550
|
columnName: {
|
|
515
551
|
type: "column";
|
|
516
552
|
value: string;
|
|
553
|
+
format?: string | undefined;
|
|
517
554
|
label?: string | undefined;
|
|
518
555
|
valueLabels?: string | undefined;
|
|
519
556
|
};
|
|
@@ -526,6 +563,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
526
563
|
columnName: {
|
|
527
564
|
type: "column";
|
|
528
565
|
value: string;
|
|
566
|
+
format?: string | undefined;
|
|
529
567
|
label?: string | undefined;
|
|
530
568
|
valueLabels?: string | undefined;
|
|
531
569
|
};
|
|
@@ -546,6 +584,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
546
584
|
columnName: {
|
|
547
585
|
type: "column";
|
|
548
586
|
value: string;
|
|
587
|
+
format?: string | undefined;
|
|
549
588
|
label?: string | undefined;
|
|
550
589
|
valueLabels?: string | undefined;
|
|
551
590
|
};
|
|
@@ -558,6 +597,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
558
597
|
columnName: {
|
|
559
598
|
type: "column";
|
|
560
599
|
value: string;
|
|
600
|
+
format?: string | undefined;
|
|
561
601
|
label?: string | undefined;
|
|
562
602
|
valueLabels?: string | undefined;
|
|
563
603
|
};
|
|
@@ -578,6 +618,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
578
618
|
columnName: {
|
|
579
619
|
type: "column";
|
|
580
620
|
value: string;
|
|
621
|
+
format?: string | undefined;
|
|
581
622
|
label?: string | undefined;
|
|
582
623
|
valueLabels?: string | undefined;
|
|
583
624
|
};
|
|
@@ -593,6 +634,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
593
634
|
columnName: {
|
|
594
635
|
type: "column";
|
|
595
636
|
value: string;
|
|
637
|
+
format?: string | undefined;
|
|
596
638
|
label?: string | undefined;
|
|
597
639
|
valueLabels?: string | undefined;
|
|
598
640
|
};
|
|
@@ -613,6 +655,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
613
655
|
columnName: {
|
|
614
656
|
type: "column";
|
|
615
657
|
value: string;
|
|
658
|
+
format?: string | undefined;
|
|
616
659
|
label?: string | undefined;
|
|
617
660
|
valueLabels?: string | undefined;
|
|
618
661
|
};
|
|
@@ -628,6 +671,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
628
671
|
columnName: {
|
|
629
672
|
type: "column";
|
|
630
673
|
value: string;
|
|
674
|
+
format?: string | undefined;
|
|
631
675
|
label?: string | undefined;
|
|
632
676
|
valueLabels?: string | undefined;
|
|
633
677
|
};
|
|
@@ -648,6 +692,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
648
692
|
columnName: {
|
|
649
693
|
type: "column";
|
|
650
694
|
value: string;
|
|
695
|
+
format?: string | undefined;
|
|
651
696
|
label?: string | undefined;
|
|
652
697
|
valueLabels?: string | undefined;
|
|
653
698
|
};
|
|
@@ -678,16 +723,19 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
678
723
|
columnName: z.ZodObject<{
|
|
679
724
|
type: z.ZodLiteral<"column">;
|
|
680
725
|
value: z.ZodString;
|
|
726
|
+
format: z.ZodOptional<z.ZodString>;
|
|
681
727
|
label: z.ZodOptional<z.ZodString>;
|
|
682
728
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
683
729
|
}, "strip", z.ZodTypeAny, {
|
|
684
730
|
type: "column";
|
|
685
731
|
value: string;
|
|
732
|
+
format?: string | undefined;
|
|
686
733
|
label?: string | undefined;
|
|
687
734
|
valueLabels?: string | undefined;
|
|
688
735
|
}, {
|
|
689
736
|
type: "column";
|
|
690
737
|
value: string;
|
|
738
|
+
format?: string | undefined;
|
|
691
739
|
label?: string | undefined;
|
|
692
740
|
valueLabels?: string | undefined;
|
|
693
741
|
}>;
|
|
@@ -698,6 +746,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
698
746
|
columnName: {
|
|
699
747
|
type: "column";
|
|
700
748
|
value: string;
|
|
749
|
+
format?: string | undefined;
|
|
701
750
|
label?: string | undefined;
|
|
702
751
|
valueLabels?: string | undefined;
|
|
703
752
|
};
|
|
@@ -708,6 +757,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
708
757
|
columnName: {
|
|
709
758
|
type: "column";
|
|
710
759
|
value: string;
|
|
760
|
+
format?: string | undefined;
|
|
711
761
|
label?: string | undefined;
|
|
712
762
|
valueLabels?: string | undefined;
|
|
713
763
|
};
|
|
@@ -723,6 +773,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
723
773
|
columnName: {
|
|
724
774
|
type: "column";
|
|
725
775
|
value: string;
|
|
776
|
+
format?: string | undefined;
|
|
726
777
|
label?: string | undefined;
|
|
727
778
|
valueLabels?: string | undefined;
|
|
728
779
|
};
|
|
@@ -742,6 +793,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
742
793
|
columnName: {
|
|
743
794
|
type: "column";
|
|
744
795
|
value: string;
|
|
796
|
+
format?: string | undefined;
|
|
745
797
|
label?: string | undefined;
|
|
746
798
|
valueLabels?: string | undefined;
|
|
747
799
|
};
|
|
@@ -764,6 +816,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
764
816
|
columnName: {
|
|
765
817
|
type: "column";
|
|
766
818
|
value: string;
|
|
819
|
+
format?: string | undefined;
|
|
767
820
|
label?: string | undefined;
|
|
768
821
|
valueLabels?: string | undefined;
|
|
769
822
|
};
|
|
@@ -787,6 +840,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
787
840
|
columnName: {
|
|
788
841
|
type: "column";
|
|
789
842
|
value: string;
|
|
843
|
+
format?: string | undefined;
|
|
790
844
|
label?: string | undefined;
|
|
791
845
|
valueLabels?: string | undefined;
|
|
792
846
|
};
|
|
@@ -845,16 +899,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
845
899
|
content: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
846
900
|
type: z.ZodLiteral<"column">;
|
|
847
901
|
value: z.ZodString;
|
|
902
|
+
format: z.ZodOptional<z.ZodString>;
|
|
848
903
|
label: z.ZodOptional<z.ZodString>;
|
|
849
904
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
850
905
|
}, "strip", z.ZodTypeAny, {
|
|
851
906
|
type: "column";
|
|
852
907
|
value: string;
|
|
908
|
+
format?: string | undefined;
|
|
853
909
|
label?: string | undefined;
|
|
854
910
|
valueLabels?: string | undefined;
|
|
855
911
|
}, {
|
|
856
912
|
type: "column";
|
|
857
913
|
value: string;
|
|
914
|
+
format?: string | undefined;
|
|
858
915
|
label?: string | undefined;
|
|
859
916
|
valueLabels?: string | undefined;
|
|
860
917
|
}>, "many">>;
|
|
@@ -863,6 +920,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
863
920
|
content?: {
|
|
864
921
|
type: "column";
|
|
865
922
|
value: string;
|
|
923
|
+
format?: string | undefined;
|
|
866
924
|
label?: string | undefined;
|
|
867
925
|
valueLabels?: string | undefined;
|
|
868
926
|
}[] | undefined;
|
|
@@ -871,6 +929,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
871
929
|
content?: {
|
|
872
930
|
type: "column";
|
|
873
931
|
value: string;
|
|
932
|
+
format?: string | undefined;
|
|
874
933
|
label?: string | undefined;
|
|
875
934
|
valueLabels?: string | undefined;
|
|
876
935
|
}[] | undefined;
|
|
@@ -885,48 +944,57 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
885
944
|
keyColumn: z.ZodOptional<z.ZodObject<{
|
|
886
945
|
type: z.ZodLiteral<"column">;
|
|
887
946
|
value: z.ZodString;
|
|
947
|
+
format: z.ZodOptional<z.ZodString>;
|
|
888
948
|
label: z.ZodOptional<z.ZodString>;
|
|
889
949
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
890
950
|
}, "strip", z.ZodTypeAny, {
|
|
891
951
|
type: "column";
|
|
892
952
|
value: string;
|
|
953
|
+
format?: string | undefined;
|
|
893
954
|
label?: string | undefined;
|
|
894
955
|
valueLabels?: string | undefined;
|
|
895
956
|
}, {
|
|
896
957
|
type: "column";
|
|
897
958
|
value: string;
|
|
959
|
+
format?: string | undefined;
|
|
898
960
|
label?: string | undefined;
|
|
899
961
|
valueLabels?: string | undefined;
|
|
900
962
|
}>>;
|
|
901
963
|
x: z.ZodObject<{
|
|
902
964
|
type: z.ZodLiteral<"column">;
|
|
903
965
|
value: z.ZodString;
|
|
966
|
+
format: z.ZodOptional<z.ZodString>;
|
|
904
967
|
label: z.ZodOptional<z.ZodString>;
|
|
905
968
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
906
969
|
}, "strip", z.ZodTypeAny, {
|
|
907
970
|
type: "column";
|
|
908
971
|
value: string;
|
|
972
|
+
format?: string | undefined;
|
|
909
973
|
label?: string | undefined;
|
|
910
974
|
valueLabels?: string | undefined;
|
|
911
975
|
}, {
|
|
912
976
|
type: "column";
|
|
913
977
|
value: string;
|
|
978
|
+
format?: string | undefined;
|
|
914
979
|
label?: string | undefined;
|
|
915
980
|
valueLabels?: string | undefined;
|
|
916
981
|
}>;
|
|
917
982
|
y: z.ZodObject<{
|
|
918
983
|
type: z.ZodLiteral<"column">;
|
|
919
984
|
value: z.ZodString;
|
|
985
|
+
format: z.ZodOptional<z.ZodString>;
|
|
920
986
|
label: z.ZodOptional<z.ZodString>;
|
|
921
987
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
922
988
|
}, "strip", z.ZodTypeAny, {
|
|
923
989
|
type: "column";
|
|
924
990
|
value: string;
|
|
991
|
+
format?: string | undefined;
|
|
925
992
|
label?: string | undefined;
|
|
926
993
|
valueLabels?: string | undefined;
|
|
927
994
|
}, {
|
|
928
995
|
type: "column";
|
|
929
996
|
value: string;
|
|
997
|
+
format?: string | undefined;
|
|
930
998
|
label?: string | undefined;
|
|
931
999
|
valueLabels?: string | undefined;
|
|
932
1000
|
}>;
|
|
@@ -934,16 +1002,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
934
1002
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
935
1003
|
type: z.ZodLiteral<"column">;
|
|
936
1004
|
value: z.ZodString;
|
|
1005
|
+
format: z.ZodOptional<z.ZodString>;
|
|
937
1006
|
label: z.ZodOptional<z.ZodString>;
|
|
938
1007
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
939
1008
|
}, "strip", z.ZodTypeAny, {
|
|
940
1009
|
type: "column";
|
|
941
1010
|
value: string;
|
|
1011
|
+
format?: string | undefined;
|
|
942
1012
|
label?: string | undefined;
|
|
943
1013
|
valueLabels?: string | undefined;
|
|
944
1014
|
}, {
|
|
945
1015
|
type: "column";
|
|
946
1016
|
value: string;
|
|
1017
|
+
format?: string | undefined;
|
|
947
1018
|
label?: string | undefined;
|
|
948
1019
|
valueLabels?: string | undefined;
|
|
949
1020
|
}>]>>;
|
|
@@ -962,6 +1033,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
962
1033
|
title?: string | {
|
|
963
1034
|
type: "column";
|
|
964
1035
|
value: string;
|
|
1036
|
+
format?: string | undefined;
|
|
965
1037
|
label?: string | undefined;
|
|
966
1038
|
valueLabels?: string | undefined;
|
|
967
1039
|
} | undefined;
|
|
@@ -980,6 +1052,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
980
1052
|
title?: string | {
|
|
981
1053
|
type: "column";
|
|
982
1054
|
value: string;
|
|
1055
|
+
format?: string | undefined;
|
|
983
1056
|
label?: string | undefined;
|
|
984
1057
|
valueLabels?: string | undefined;
|
|
985
1058
|
} | undefined;
|
|
@@ -999,16 +1072,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
999
1072
|
title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1000
1073
|
type: z.ZodLiteral<"column">;
|
|
1001
1074
|
value: z.ZodString;
|
|
1075
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1002
1076
|
label: z.ZodOptional<z.ZodString>;
|
|
1003
1077
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1004
1078
|
}, "strip", z.ZodTypeAny, {
|
|
1005
1079
|
type: "column";
|
|
1006
1080
|
value: string;
|
|
1081
|
+
format?: string | undefined;
|
|
1007
1082
|
label?: string | undefined;
|
|
1008
1083
|
valueLabels?: string | undefined;
|
|
1009
1084
|
}, {
|
|
1010
1085
|
type: "column";
|
|
1011
1086
|
value: string;
|
|
1087
|
+
format?: string | undefined;
|
|
1012
1088
|
label?: string | undefined;
|
|
1013
1089
|
valueLabels?: string | undefined;
|
|
1014
1090
|
}>]>>;
|
|
@@ -1027,6 +1103,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1027
1103
|
title?: string | {
|
|
1028
1104
|
type: "column";
|
|
1029
1105
|
value: string;
|
|
1106
|
+
format?: string | undefined;
|
|
1030
1107
|
label?: string | undefined;
|
|
1031
1108
|
valueLabels?: string | undefined;
|
|
1032
1109
|
} | undefined;
|
|
@@ -1045,6 +1122,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1045
1122
|
title?: string | {
|
|
1046
1123
|
type: "column";
|
|
1047
1124
|
value: string;
|
|
1125
|
+
format?: string | undefined;
|
|
1048
1126
|
label?: string | undefined;
|
|
1049
1127
|
valueLabels?: string | undefined;
|
|
1050
1128
|
} | undefined;
|
|
@@ -1063,48 +1141,57 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1063
1141
|
grouping: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1064
1142
|
type: z.ZodLiteral<"column">;
|
|
1065
1143
|
value: z.ZodString;
|
|
1144
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1066
1145
|
label: z.ZodOptional<z.ZodString>;
|
|
1067
1146
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1068
1147
|
}, "strip", z.ZodTypeAny, {
|
|
1069
1148
|
type: "column";
|
|
1070
1149
|
value: string;
|
|
1150
|
+
format?: string | undefined;
|
|
1071
1151
|
label?: string | undefined;
|
|
1072
1152
|
valueLabels?: string | undefined;
|
|
1073
1153
|
}, {
|
|
1074
1154
|
type: "column";
|
|
1075
1155
|
value: string;
|
|
1156
|
+
format?: string | undefined;
|
|
1076
1157
|
label?: string | undefined;
|
|
1077
1158
|
valueLabels?: string | undefined;
|
|
1078
1159
|
}>, "many">>;
|
|
1079
1160
|
label: z.ZodOptional<z.ZodObject<{
|
|
1080
1161
|
type: z.ZodLiteral<"column">;
|
|
1081
1162
|
value: z.ZodString;
|
|
1163
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1082
1164
|
label: z.ZodOptional<z.ZodString>;
|
|
1083
1165
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1084
1166
|
}, "strip", z.ZodTypeAny, {
|
|
1085
1167
|
type: "column";
|
|
1086
1168
|
value: string;
|
|
1169
|
+
format?: string | undefined;
|
|
1087
1170
|
label?: string | undefined;
|
|
1088
1171
|
valueLabels?: string | undefined;
|
|
1089
1172
|
}, {
|
|
1090
1173
|
type: "column";
|
|
1091
1174
|
value: string;
|
|
1175
|
+
format?: string | undefined;
|
|
1092
1176
|
label?: string | undefined;
|
|
1093
1177
|
valueLabels?: string | undefined;
|
|
1094
1178
|
}>>;
|
|
1095
1179
|
highlight: z.ZodOptional<z.ZodObject<{
|
|
1096
1180
|
type: z.ZodLiteral<"column">;
|
|
1097
1181
|
value: z.ZodString;
|
|
1182
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1098
1183
|
label: z.ZodOptional<z.ZodString>;
|
|
1099
1184
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1100
1185
|
}, "strip", z.ZodTypeAny, {
|
|
1101
1186
|
type: "column";
|
|
1102
1187
|
value: string;
|
|
1188
|
+
format?: string | undefined;
|
|
1103
1189
|
label?: string | undefined;
|
|
1104
1190
|
valueLabels?: string | undefined;
|
|
1105
1191
|
}, {
|
|
1106
1192
|
type: "column";
|
|
1107
1193
|
value: string;
|
|
1194
|
+
format?: string | undefined;
|
|
1108
1195
|
label?: string | undefined;
|
|
1109
1196
|
valueLabels?: string | undefined;
|
|
1110
1197
|
}>>;
|
|
@@ -1152,16 +1239,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1152
1239
|
columnName: z.ZodObject<{
|
|
1153
1240
|
type: z.ZodLiteral<"column">;
|
|
1154
1241
|
value: z.ZodString;
|
|
1242
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1155
1243
|
label: z.ZodOptional<z.ZodString>;
|
|
1156
1244
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1157
1245
|
}, "strip", z.ZodTypeAny, {
|
|
1158
1246
|
type: "column";
|
|
1159
1247
|
value: string;
|
|
1248
|
+
format?: string | undefined;
|
|
1160
1249
|
label?: string | undefined;
|
|
1161
1250
|
valueLabels?: string | undefined;
|
|
1162
1251
|
}, {
|
|
1163
1252
|
type: "column";
|
|
1164
1253
|
value: string;
|
|
1254
|
+
format?: string | undefined;
|
|
1165
1255
|
label?: string | undefined;
|
|
1166
1256
|
valueLabels?: string | undefined;
|
|
1167
1257
|
}>;
|
|
@@ -1172,6 +1262,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1172
1262
|
columnName: {
|
|
1173
1263
|
type: "column";
|
|
1174
1264
|
value: string;
|
|
1265
|
+
format?: string | undefined;
|
|
1175
1266
|
label?: string | undefined;
|
|
1176
1267
|
valueLabels?: string | undefined;
|
|
1177
1268
|
};
|
|
@@ -1182,6 +1273,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1182
1273
|
columnName: {
|
|
1183
1274
|
type: "column";
|
|
1184
1275
|
value: string;
|
|
1276
|
+
format?: string | undefined;
|
|
1185
1277
|
label?: string | undefined;
|
|
1186
1278
|
valueLabels?: string | undefined;
|
|
1187
1279
|
};
|
|
@@ -1206,16 +1298,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1206
1298
|
columnName: z.ZodObject<{
|
|
1207
1299
|
type: z.ZodLiteral<"column">;
|
|
1208
1300
|
value: z.ZodString;
|
|
1301
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1209
1302
|
label: z.ZodOptional<z.ZodString>;
|
|
1210
1303
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1211
1304
|
}, "strip", z.ZodTypeAny, {
|
|
1212
1305
|
type: "column";
|
|
1213
1306
|
value: string;
|
|
1307
|
+
format?: string | undefined;
|
|
1214
1308
|
label?: string | undefined;
|
|
1215
1309
|
valueLabels?: string | undefined;
|
|
1216
1310
|
}, {
|
|
1217
1311
|
type: "column";
|
|
1218
1312
|
value: string;
|
|
1313
|
+
format?: string | undefined;
|
|
1219
1314
|
label?: string | undefined;
|
|
1220
1315
|
valueLabels?: string | undefined;
|
|
1221
1316
|
}>;
|
|
@@ -1226,6 +1321,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1226
1321
|
columnName: {
|
|
1227
1322
|
type: "column";
|
|
1228
1323
|
value: string;
|
|
1324
|
+
format?: string | undefined;
|
|
1229
1325
|
label?: string | undefined;
|
|
1230
1326
|
valueLabels?: string | undefined;
|
|
1231
1327
|
};
|
|
@@ -1236,6 +1332,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1236
1332
|
columnName: {
|
|
1237
1333
|
type: "column";
|
|
1238
1334
|
value: string;
|
|
1335
|
+
format?: string | undefined;
|
|
1239
1336
|
label?: string | undefined;
|
|
1240
1337
|
valueLabels?: string | undefined;
|
|
1241
1338
|
};
|
|
@@ -1248,6 +1345,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1248
1345
|
columnName: {
|
|
1249
1346
|
type: "column";
|
|
1250
1347
|
value: string;
|
|
1348
|
+
format?: string | undefined;
|
|
1251
1349
|
label?: string | undefined;
|
|
1252
1350
|
valueLabels?: string | undefined;
|
|
1253
1351
|
};
|
|
@@ -1268,6 +1366,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1268
1366
|
columnName: {
|
|
1269
1367
|
type: "column";
|
|
1270
1368
|
value: string;
|
|
1369
|
+
format?: string | undefined;
|
|
1271
1370
|
label?: string | undefined;
|
|
1272
1371
|
valueLabels?: string | undefined;
|
|
1273
1372
|
};
|
|
@@ -1280,6 +1379,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1280
1379
|
columnName: {
|
|
1281
1380
|
type: "column";
|
|
1282
1381
|
value: string;
|
|
1382
|
+
format?: string | undefined;
|
|
1283
1383
|
label?: string | undefined;
|
|
1284
1384
|
valueLabels?: string | undefined;
|
|
1285
1385
|
};
|
|
@@ -1300,6 +1400,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1300
1400
|
columnName: {
|
|
1301
1401
|
type: "column";
|
|
1302
1402
|
value: string;
|
|
1403
|
+
format?: string | undefined;
|
|
1303
1404
|
label?: string | undefined;
|
|
1304
1405
|
valueLabels?: string | undefined;
|
|
1305
1406
|
};
|
|
@@ -1315,6 +1416,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1315
1416
|
columnName: {
|
|
1316
1417
|
type: "column";
|
|
1317
1418
|
value: string;
|
|
1419
|
+
format?: string | undefined;
|
|
1318
1420
|
label?: string | undefined;
|
|
1319
1421
|
valueLabels?: string | undefined;
|
|
1320
1422
|
};
|
|
@@ -1335,6 +1437,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1335
1437
|
columnName: {
|
|
1336
1438
|
type: "column";
|
|
1337
1439
|
value: string;
|
|
1440
|
+
format?: string | undefined;
|
|
1338
1441
|
label?: string | undefined;
|
|
1339
1442
|
valueLabels?: string | undefined;
|
|
1340
1443
|
};
|
|
@@ -1350,6 +1453,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1350
1453
|
columnName: {
|
|
1351
1454
|
type: "column";
|
|
1352
1455
|
value: string;
|
|
1456
|
+
format?: string | undefined;
|
|
1353
1457
|
label?: string | undefined;
|
|
1354
1458
|
valueLabels?: string | undefined;
|
|
1355
1459
|
};
|
|
@@ -1370,6 +1474,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1370
1474
|
columnName: {
|
|
1371
1475
|
type: "column";
|
|
1372
1476
|
value: string;
|
|
1477
|
+
format?: string | undefined;
|
|
1373
1478
|
label?: string | undefined;
|
|
1374
1479
|
valueLabels?: string | undefined;
|
|
1375
1480
|
};
|
|
@@ -1400,16 +1505,19 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1400
1505
|
columnName: z.ZodObject<{
|
|
1401
1506
|
type: z.ZodLiteral<"column">;
|
|
1402
1507
|
value: z.ZodString;
|
|
1508
|
+
format: z.ZodOptional<z.ZodString>;
|
|
1403
1509
|
label: z.ZodOptional<z.ZodString>;
|
|
1404
1510
|
valueLabels: z.ZodOptional<z.ZodString>;
|
|
1405
1511
|
}, "strip", z.ZodTypeAny, {
|
|
1406
1512
|
type: "column";
|
|
1407
1513
|
value: string;
|
|
1514
|
+
format?: string | undefined;
|
|
1408
1515
|
label?: string | undefined;
|
|
1409
1516
|
valueLabels?: string | undefined;
|
|
1410
1517
|
}, {
|
|
1411
1518
|
type: "column";
|
|
1412
1519
|
value: string;
|
|
1520
|
+
format?: string | undefined;
|
|
1413
1521
|
label?: string | undefined;
|
|
1414
1522
|
valueLabels?: string | undefined;
|
|
1415
1523
|
}>;
|
|
@@ -1420,6 +1528,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1420
1528
|
columnName: {
|
|
1421
1529
|
type: "column";
|
|
1422
1530
|
value: string;
|
|
1531
|
+
format?: string | undefined;
|
|
1423
1532
|
label?: string | undefined;
|
|
1424
1533
|
valueLabels?: string | undefined;
|
|
1425
1534
|
};
|
|
@@ -1430,6 +1539,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1430
1539
|
columnName: {
|
|
1431
1540
|
type: "column";
|
|
1432
1541
|
value: string;
|
|
1542
|
+
format?: string | undefined;
|
|
1433
1543
|
label?: string | undefined;
|
|
1434
1544
|
valueLabels?: string | undefined;
|
|
1435
1545
|
};
|
|
@@ -1445,6 +1555,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1445
1555
|
columnName: {
|
|
1446
1556
|
type: "column";
|
|
1447
1557
|
value: string;
|
|
1558
|
+
format?: string | undefined;
|
|
1448
1559
|
label?: string | undefined;
|
|
1449
1560
|
valueLabels?: string | undefined;
|
|
1450
1561
|
};
|
|
@@ -1464,6 +1575,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1464
1575
|
columnName: {
|
|
1465
1576
|
type: "column";
|
|
1466
1577
|
value: string;
|
|
1578
|
+
format?: string | undefined;
|
|
1467
1579
|
label?: string | undefined;
|
|
1468
1580
|
valueLabels?: string | undefined;
|
|
1469
1581
|
};
|
|
@@ -1486,6 +1598,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1486
1598
|
columnName: {
|
|
1487
1599
|
type: "column";
|
|
1488
1600
|
value: string;
|
|
1601
|
+
format?: string | undefined;
|
|
1489
1602
|
label?: string | undefined;
|
|
1490
1603
|
valueLabels?: string | undefined;
|
|
1491
1604
|
};
|
|
@@ -1509,6 +1622,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1509
1622
|
columnName: {
|
|
1510
1623
|
type: "column";
|
|
1511
1624
|
value: string;
|
|
1625
|
+
format?: string | undefined;
|
|
1512
1626
|
label?: string | undefined;
|
|
1513
1627
|
valueLabels?: string | undefined;
|
|
1514
1628
|
};
|
|
@@ -1534,12 +1648,14 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1534
1648
|
x: {
|
|
1535
1649
|
type: "column";
|
|
1536
1650
|
value: string;
|
|
1651
|
+
format?: string | undefined;
|
|
1537
1652
|
label?: string | undefined;
|
|
1538
1653
|
valueLabels?: string | undefined;
|
|
1539
1654
|
};
|
|
1540
1655
|
y: {
|
|
1541
1656
|
type: "column";
|
|
1542
1657
|
value: string;
|
|
1658
|
+
format?: string | undefined;
|
|
1543
1659
|
label?: string | undefined;
|
|
1544
1660
|
valueLabels?: string | undefined;
|
|
1545
1661
|
};
|
|
@@ -1550,6 +1666,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1550
1666
|
columnName: {
|
|
1551
1667
|
type: "column";
|
|
1552
1668
|
value: string;
|
|
1669
|
+
format?: string | undefined;
|
|
1553
1670
|
label?: string | undefined;
|
|
1554
1671
|
valueLabels?: string | undefined;
|
|
1555
1672
|
};
|
|
@@ -1570,6 +1687,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1570
1687
|
columnName: {
|
|
1571
1688
|
type: "column";
|
|
1572
1689
|
value: string;
|
|
1690
|
+
format?: string | undefined;
|
|
1573
1691
|
label?: string | undefined;
|
|
1574
1692
|
valueLabels?: string | undefined;
|
|
1575
1693
|
};
|
|
@@ -1587,6 +1705,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1587
1705
|
columnName: {
|
|
1588
1706
|
type: "column";
|
|
1589
1707
|
value: string;
|
|
1708
|
+
format?: string | undefined;
|
|
1590
1709
|
label?: string | undefined;
|
|
1591
1710
|
valueLabels?: string | undefined;
|
|
1592
1711
|
};
|
|
@@ -1609,12 +1728,14 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1609
1728
|
label?: {
|
|
1610
1729
|
type: "column";
|
|
1611
1730
|
value: string;
|
|
1731
|
+
format?: string | undefined;
|
|
1612
1732
|
label?: string | undefined;
|
|
1613
1733
|
valueLabels?: string | undefined;
|
|
1614
1734
|
} | undefined;
|
|
1615
1735
|
grouping?: {
|
|
1616
1736
|
type: "column";
|
|
1617
1737
|
value: string;
|
|
1738
|
+
format?: string | undefined;
|
|
1618
1739
|
label?: string | undefined;
|
|
1619
1740
|
valueLabels?: string | undefined;
|
|
1620
1741
|
}[] | undefined;
|
|
@@ -1627,6 +1748,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1627
1748
|
content?: {
|
|
1628
1749
|
type: "column";
|
|
1629
1750
|
value: string;
|
|
1751
|
+
format?: string | undefined;
|
|
1630
1752
|
label?: string | undefined;
|
|
1631
1753
|
valueLabels?: string | undefined;
|
|
1632
1754
|
}[] | undefined;
|
|
@@ -1637,6 +1759,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1637
1759
|
keyColumn?: {
|
|
1638
1760
|
type: "column";
|
|
1639
1761
|
value: string;
|
|
1762
|
+
format?: string | undefined;
|
|
1640
1763
|
label?: string | undefined;
|
|
1641
1764
|
valueLabels?: string | undefined;
|
|
1642
1765
|
} | undefined;
|
|
@@ -1644,6 +1767,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1644
1767
|
title?: string | {
|
|
1645
1768
|
type: "column";
|
|
1646
1769
|
value: string;
|
|
1770
|
+
format?: string | undefined;
|
|
1647
1771
|
label?: string | undefined;
|
|
1648
1772
|
valueLabels?: string | undefined;
|
|
1649
1773
|
} | undefined;
|
|
@@ -1663,6 +1787,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1663
1787
|
title?: string | {
|
|
1664
1788
|
type: "column";
|
|
1665
1789
|
value: string;
|
|
1790
|
+
format?: string | undefined;
|
|
1666
1791
|
label?: string | undefined;
|
|
1667
1792
|
valueLabels?: string | undefined;
|
|
1668
1793
|
} | undefined;
|
|
@@ -1681,6 +1806,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1681
1806
|
highlight?: {
|
|
1682
1807
|
type: "column";
|
|
1683
1808
|
value: string;
|
|
1809
|
+
format?: string | undefined;
|
|
1684
1810
|
label?: string | undefined;
|
|
1685
1811
|
valueLabels?: string | undefined;
|
|
1686
1812
|
} | undefined;
|
|
@@ -1703,12 +1829,14 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1703
1829
|
x: {
|
|
1704
1830
|
type: "column";
|
|
1705
1831
|
value: string;
|
|
1832
|
+
format?: string | undefined;
|
|
1706
1833
|
label?: string | undefined;
|
|
1707
1834
|
valueLabels?: string | undefined;
|
|
1708
1835
|
};
|
|
1709
1836
|
y: {
|
|
1710
1837
|
type: "column";
|
|
1711
1838
|
value: string;
|
|
1839
|
+
format?: string | undefined;
|
|
1712
1840
|
label?: string | undefined;
|
|
1713
1841
|
valueLabels?: string | undefined;
|
|
1714
1842
|
};
|
|
@@ -1719,6 +1847,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1719
1847
|
columnName: {
|
|
1720
1848
|
type: "column";
|
|
1721
1849
|
value: string;
|
|
1850
|
+
format?: string | undefined;
|
|
1722
1851
|
label?: string | undefined;
|
|
1723
1852
|
valueLabels?: string | undefined;
|
|
1724
1853
|
};
|
|
@@ -1739,6 +1868,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1739
1868
|
columnName: {
|
|
1740
1869
|
type: "column";
|
|
1741
1870
|
value: string;
|
|
1871
|
+
format?: string | undefined;
|
|
1742
1872
|
label?: string | undefined;
|
|
1743
1873
|
valueLabels?: string | undefined;
|
|
1744
1874
|
};
|
|
@@ -1756,6 +1886,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1756
1886
|
columnName: {
|
|
1757
1887
|
type: "column";
|
|
1758
1888
|
value: string;
|
|
1889
|
+
format?: string | undefined;
|
|
1759
1890
|
label?: string | undefined;
|
|
1760
1891
|
valueLabels?: string | undefined;
|
|
1761
1892
|
};
|
|
@@ -1778,12 +1909,14 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1778
1909
|
label?: {
|
|
1779
1910
|
type: "column";
|
|
1780
1911
|
value: string;
|
|
1912
|
+
format?: string | undefined;
|
|
1781
1913
|
label?: string | undefined;
|
|
1782
1914
|
valueLabels?: string | undefined;
|
|
1783
1915
|
} | undefined;
|
|
1784
1916
|
grouping?: {
|
|
1785
1917
|
type: "column";
|
|
1786
1918
|
value: string;
|
|
1919
|
+
format?: string | undefined;
|
|
1787
1920
|
label?: string | undefined;
|
|
1788
1921
|
valueLabels?: string | undefined;
|
|
1789
1922
|
}[] | undefined;
|
|
@@ -1796,6 +1929,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1796
1929
|
content?: {
|
|
1797
1930
|
type: "column";
|
|
1798
1931
|
value: string;
|
|
1932
|
+
format?: string | undefined;
|
|
1799
1933
|
label?: string | undefined;
|
|
1800
1934
|
valueLabels?: string | undefined;
|
|
1801
1935
|
}[] | undefined;
|
|
@@ -1806,6 +1940,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1806
1940
|
keyColumn?: {
|
|
1807
1941
|
type: "column";
|
|
1808
1942
|
value: string;
|
|
1943
|
+
format?: string | undefined;
|
|
1809
1944
|
label?: string | undefined;
|
|
1810
1945
|
valueLabels?: string | undefined;
|
|
1811
1946
|
} | undefined;
|
|
@@ -1813,6 +1948,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1813
1948
|
title?: string | {
|
|
1814
1949
|
type: "column";
|
|
1815
1950
|
value: string;
|
|
1951
|
+
format?: string | undefined;
|
|
1816
1952
|
label?: string | undefined;
|
|
1817
1953
|
valueLabels?: string | undefined;
|
|
1818
1954
|
} | undefined;
|
|
@@ -1832,6 +1968,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1832
1968
|
title?: string | {
|
|
1833
1969
|
type: "column";
|
|
1834
1970
|
value: string;
|
|
1971
|
+
format?: string | undefined;
|
|
1835
1972
|
label?: string | undefined;
|
|
1836
1973
|
valueLabels?: string | undefined;
|
|
1837
1974
|
} | undefined;
|
|
@@ -1850,6 +1987,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
|
|
|
1850
1987
|
highlight?: {
|
|
1851
1988
|
type: "column";
|
|
1852
1989
|
value: string;
|
|
1990
|
+
format?: string | undefined;
|
|
1853
1991
|
label?: string | undefined;
|
|
1854
1992
|
valueLabels?: string | undefined;
|
|
1855
1993
|
} | undefined;
|