@milaboratories/miplots4 1.1.0 → 1.2.0

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.
Files changed (139) hide show
  1. package/dist/MiPlots.d.ts.map +1 -1
  2. package/dist/MiPlots.js +16 -14
  3. package/dist/MiPlots.js.map +1 -1
  4. package/dist/common/ContinuousAxis.d.ts +3 -1
  5. package/dist/common/ContinuousAxis.d.ts.map +1 -1
  6. package/dist/common/ContinuousAxis.js +8 -8
  7. package/dist/common/ContinuousAxis.js.map +1 -1
  8. package/dist/common/Legend.d.ts +12 -1
  9. package/dist/common/Legend.d.ts.map +1 -1
  10. package/dist/common/Legend.js +14 -6
  11. package/dist/common/Legend.js.map +1 -1
  12. package/dist/index.d.ts +2 -2
  13. package/dist/index.d.ts.map +1 -1
  14. package/dist/selection/ChartRenderer.d.ts +90 -0
  15. package/dist/selection/ChartRenderer.d.ts.map +1 -0
  16. package/dist/selection/ChartRenderer.js +254 -0
  17. package/dist/selection/ChartRenderer.js.map +1 -0
  18. package/dist/selection/SelectionSettingsImpl.d.ts +53 -0
  19. package/dist/selection/SelectionSettingsImpl.d.ts.map +1 -0
  20. package/dist/selection/SelectionSettingsImpl.js +47 -0
  21. package/dist/selection/SelectionSettingsImpl.js.map +1 -0
  22. package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts +8 -0
  23. package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts.map +1 -0
  24. package/dist/selection/components/Chart/Bars/GroupSelectedBars.js +57 -0
  25. package/dist/selection/components/Chart/Bars/GroupSelectedBars.js.map +1 -0
  26. package/dist/selection/components/Chart/Bars/StackedBars.d.ts +12 -0
  27. package/dist/selection/components/Chart/Bars/StackedBars.d.ts.map +1 -0
  28. package/dist/selection/components/Chart/Bars/StackedBars.js +58 -0
  29. package/dist/selection/components/Chart/Bars/StackedBars.js.map +1 -0
  30. package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts +6 -0
  31. package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts.map +1 -0
  32. package/dist/selection/components/Chart/Bars/UngroupedBars.js +38 -0
  33. package/dist/selection/components/Chart/Bars/UngroupedBars.js.map +1 -0
  34. package/dist/selection/components/Chart/Bars.d.ts +10 -0
  35. package/dist/selection/components/Chart/Bars.d.ts.map +1 -0
  36. package/dist/selection/components/Chart/Bars.js +48 -0
  37. package/dist/selection/components/Chart/Bars.js.map +1 -0
  38. package/dist/selection/components/Chart/ChartAxes.d.ts +7 -0
  39. package/dist/selection/components/Chart/ChartAxes.d.ts.map +1 -0
  40. package/dist/selection/components/Chart/ChartAxes.js +51 -0
  41. package/dist/selection/components/Chart/ChartAxes.js.map +1 -0
  42. package/dist/selection/components/Chart/ChartFrame.d.ts +9 -0
  43. package/dist/selection/components/Chart/ChartFrame.d.ts.map +1 -0
  44. package/dist/selection/components/Chart/ChartFrame.js +41 -0
  45. package/dist/selection/components/Chart/ChartFrame.js.map +1 -0
  46. package/dist/selection/components/Chart/Dividers.d.ts +8 -0
  47. package/dist/selection/components/Chart/Dividers.d.ts.map +1 -0
  48. package/dist/selection/components/Chart/Dividers.js +27 -0
  49. package/dist/selection/components/Chart/Dividers.js.map +1 -0
  50. package/dist/selection/components/Chart/Gridlines.d.ts +10 -0
  51. package/dist/selection/components/Chart/Gridlines.d.ts.map +1 -0
  52. package/dist/selection/components/Chart/Gridlines.js +32 -0
  53. package/dist/selection/components/Chart/Gridlines.js.map +1 -0
  54. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts +9 -0
  55. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts.map +1 -0
  56. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js +36 -0
  57. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js.map +1 -0
  58. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts +6 -0
  59. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts.map +1 -0
  60. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js +22 -0
  61. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js.map +1 -0
  62. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts +10 -0
  63. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts.map +1 -0
  64. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js +33 -0
  65. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js.map +1 -0
  66. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts +10 -0
  67. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts.map +1 -0
  68. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js +65 -0
  69. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js.map +1 -0
  70. package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts +10 -0
  71. package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts.map +1 -0
  72. package/dist/selection/components/Chart/Ribbons/ribbonPath.js +13 -0
  73. package/dist/selection/components/Chart/Ribbons/ribbonPath.js.map +1 -0
  74. package/dist/selection/components/Chart/Ribbons.d.ts +9 -0
  75. package/dist/selection/components/Chart/Ribbons.d.ts.map +1 -0
  76. package/dist/selection/components/Chart/Ribbons.js +58 -0
  77. package/dist/selection/components/Chart/Ribbons.js.map +1 -0
  78. package/dist/selection/components/Chart/StageCounts.d.ts +7 -0
  79. package/dist/selection/components/Chart/StageCounts.d.ts.map +1 -0
  80. package/dist/selection/components/Chart/StageCounts.js +20 -0
  81. package/dist/selection/components/Chart/StageCounts.js.map +1 -0
  82. package/dist/selection/components/Chart/types.d.ts +132 -0
  83. package/dist/selection/components/Chart/types.d.ts.map +1 -0
  84. package/dist/selection/components/Chart.d.ts +22 -0
  85. package/dist/selection/components/Chart.d.ts.map +1 -0
  86. package/dist/selection/components/Chart.js +97 -0
  87. package/dist/selection/components/Chart.js.map +1 -0
  88. package/dist/selection/components/ChartsGroup.d.ts +18 -0
  89. package/dist/selection/components/ChartsGroup.d.ts.map +1 -0
  90. package/dist/selection/components/ChartsGroup.js +181 -0
  91. package/dist/selection/components/ChartsGroup.js.map +1 -0
  92. package/dist/selection/components/FacetCell.d.ts +22 -0
  93. package/dist/selection/components/FacetCell.d.ts.map +1 -0
  94. package/dist/selection/components/FacetCell.js +18 -0
  95. package/dist/selection/components/FacetCell.js.map +1 -0
  96. package/dist/selection/components/types.d.ts +58 -0
  97. package/dist/selection/components/types.d.ts.map +1 -0
  98. package/dist/selection/constants.d.ts +25 -0
  99. package/dist/selection/constants.d.ts.map +1 -0
  100. package/dist/selection/constants.js +4 -0
  101. package/dist/selection/constants.js.map +1 -0
  102. package/dist/selection/createSelectionData.d.ts +50 -0
  103. package/dist/selection/createSelectionData.d.ts.map +1 -0
  104. package/dist/selection/createSelectionData.js +92 -0
  105. package/dist/selection/createSelectionData.js.map +1 -0
  106. package/dist/selection/index.d.ts +26 -0
  107. package/dist/selection/index.d.ts.map +1 -0
  108. package/dist/selection/index.js +96 -0
  109. package/dist/selection/index.js.map +1 -0
  110. package/dist/selection/utils.d.ts +4 -0
  111. package/dist/selection/utils.d.ts.map +1 -0
  112. package/dist/selection/utils.js +13 -0
  113. package/dist/selection/utils.js.map +1 -0
  114. package/dist/types/bubble.d.ts +42 -0
  115. package/dist/types/bubble.d.ts.map +1 -1
  116. package/dist/types/common.d.ts +38 -0
  117. package/dist/types/common.d.ts.map +1 -1
  118. package/dist/types/common.js +1 -0
  119. package/dist/types/common.js.map +1 -1
  120. package/dist/types/dendro.d.ts +103 -0
  121. package/dist/types/dendro.d.ts.map +1 -1
  122. package/dist/types/discrete.d.ts +167 -0
  123. package/dist/types/discrete.d.ts.map +1 -1
  124. package/dist/types/heatmap.d.ts +159 -0
  125. package/dist/types/heatmap.d.ts.map +1 -1
  126. package/dist/types/histogram.d.ts +22 -0
  127. package/dist/types/histogram.d.ts.map +1 -1
  128. package/dist/types/index.d.ts +3 -1
  129. package/dist/types/index.d.ts.map +1 -1
  130. package/dist/types/index.js +1 -0
  131. package/dist/types/scatterplot-umap.d.ts +188 -0
  132. package/dist/types/scatterplot-umap.d.ts.map +1 -1
  133. package/dist/types/scatterplot.d.ts +270 -0
  134. package/dist/types/scatterplot.d.ts.map +1 -1
  135. package/dist/types/selection.d.ts +452 -0
  136. package/dist/types/selection.d.ts.map +1 -0
  137. package/dist/types/selection.js +53 -0
  138. package/dist/types/selection.js.map +1 -0
  139. package/package.json +2 -2
@@ -41,6 +41,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
41
41
  format: z.ZodOptional<z.ZodString>;
42
42
  label: z.ZodOptional<z.ZodString>;
43
43
  valueLabels: z.ZodOptional<z.ZodString>;
44
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
44
45
  nullValueLabel: z.ZodOptional<z.ZodString>;
45
46
  }, "strip", z.ZodTypeAny, {
46
47
  type: "column";
@@ -48,6 +49,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
48
49
  format?: string | undefined;
49
50
  label?: string | undefined;
50
51
  valueLabels?: string | undefined;
52
+ valueLabelsMap?: Record<string, string> | undefined;
51
53
  nullValueLabel?: string | undefined;
52
54
  }, {
53
55
  type: "column";
@@ -55,6 +57,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
55
57
  format?: string | undefined;
56
58
  label?: string | undefined;
57
59
  valueLabels?: string | undefined;
60
+ valueLabelsMap?: Record<string, string> | undefined;
58
61
  nullValueLabel?: string | undefined;
59
62
  }>;
60
63
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -67,6 +70,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
67
70
  format?: string | undefined;
68
71
  label?: string | undefined;
69
72
  valueLabels?: string | undefined;
73
+ valueLabelsMap?: Record<string, string> | undefined;
70
74
  nullValueLabel?: string | undefined;
71
75
  };
72
76
  domain: number[];
@@ -79,6 +83,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
79
83
  format?: string | undefined;
80
84
  label?: string | undefined;
81
85
  valueLabels?: string | undefined;
86
+ valueLabelsMap?: Record<string, string> | undefined;
82
87
  nullValueLabel?: string | undefined;
83
88
  };
84
89
  domain: number[];
@@ -105,6 +110,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
105
110
  format: z.ZodOptional<z.ZodString>;
106
111
  label: z.ZodOptional<z.ZodString>;
107
112
  valueLabels: z.ZodOptional<z.ZodString>;
113
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
108
114
  nullValueLabel: z.ZodOptional<z.ZodString>;
109
115
  }, "strip", z.ZodTypeAny, {
110
116
  type: "column";
@@ -112,6 +118,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
112
118
  format?: string | undefined;
113
119
  label?: string | undefined;
114
120
  valueLabels?: string | undefined;
121
+ valueLabelsMap?: Record<string, string> | undefined;
115
122
  nullValueLabel?: string | undefined;
116
123
  }, {
117
124
  type: "column";
@@ -119,6 +126,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
119
126
  format?: string | undefined;
120
127
  label?: string | undefined;
121
128
  valueLabels?: string | undefined;
129
+ valueLabelsMap?: Record<string, string> | undefined;
122
130
  nullValueLabel?: string | undefined;
123
131
  }>;
124
132
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -131,6 +139,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
131
139
  format?: string | undefined;
132
140
  label?: string | undefined;
133
141
  valueLabels?: string | undefined;
142
+ valueLabelsMap?: Record<string, string> | undefined;
134
143
  nullValueLabel?: string | undefined;
135
144
  };
136
145
  domain: number[];
@@ -143,6 +152,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
143
152
  format?: string | undefined;
144
153
  label?: string | undefined;
145
154
  valueLabels?: string | undefined;
155
+ valueLabelsMap?: Record<string, string> | undefined;
146
156
  nullValueLabel?: string | undefined;
147
157
  };
148
158
  domain: number[];
@@ -157,6 +167,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
157
167
  format?: string | undefined;
158
168
  label?: string | undefined;
159
169
  valueLabels?: string | undefined;
170
+ valueLabelsMap?: Record<string, string> | undefined;
160
171
  nullValueLabel?: string | undefined;
161
172
  };
162
173
  domain: number[];
@@ -179,6 +190,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
179
190
  format?: string | undefined;
180
191
  label?: string | undefined;
181
192
  valueLabels?: string | undefined;
193
+ valueLabelsMap?: Record<string, string> | undefined;
182
194
  nullValueLabel?: string | undefined;
183
195
  };
184
196
  domain: number[];
@@ -193,6 +205,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
193
205
  format?: string | undefined;
194
206
  label?: string | undefined;
195
207
  valueLabels?: string | undefined;
208
+ valueLabelsMap?: Record<string, string> | undefined;
196
209
  nullValueLabel?: string | undefined;
197
210
  };
198
211
  domain: number[];
@@ -215,6 +228,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
215
228
  format?: string | undefined;
216
229
  label?: string | undefined;
217
230
  valueLabels?: string | undefined;
231
+ valueLabelsMap?: Record<string, string> | undefined;
218
232
  nullValueLabel?: string | undefined;
219
233
  };
220
234
  domain: number[];
@@ -232,6 +246,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
232
246
  format?: string | undefined;
233
247
  label?: string | undefined;
234
248
  valueLabels?: string | undefined;
249
+ valueLabelsMap?: Record<string, string> | undefined;
235
250
  nullValueLabel?: string | undefined;
236
251
  };
237
252
  domain: number[];
@@ -254,6 +269,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
254
269
  format?: string | undefined;
255
270
  label?: string | undefined;
256
271
  valueLabels?: string | undefined;
272
+ valueLabelsMap?: Record<string, string> | undefined;
257
273
  nullValueLabel?: string | undefined;
258
274
  };
259
275
  domain: number[];
@@ -271,6 +287,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
271
287
  format?: string | undefined;
272
288
  label?: string | undefined;
273
289
  valueLabels?: string | undefined;
290
+ valueLabelsMap?: Record<string, string> | undefined;
274
291
  nullValueLabel?: string | undefined;
275
292
  };
276
293
  domain: number[];
@@ -293,6 +310,7 @@ declare const DotsUmapLayerSchema: z.ZodObject<{
293
310
  format?: string | undefined;
294
311
  label?: string | undefined;
295
312
  valueLabels?: string | undefined;
313
+ valueLabelsMap?: Record<string, string> | undefined;
296
314
  nullValueLabel?: string | undefined;
297
315
  };
298
316
  domain: number[];
@@ -326,6 +344,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
326
344
  format: z.ZodOptional<z.ZodString>;
327
345
  label: z.ZodOptional<z.ZodString>;
328
346
  valueLabels: z.ZodOptional<z.ZodString>;
347
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
329
348
  nullValueLabel: z.ZodOptional<z.ZodString>;
330
349
  }, "strip", z.ZodTypeAny, {
331
350
  type: "column";
@@ -333,6 +352,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
333
352
  format?: string | undefined;
334
353
  label?: string | undefined;
335
354
  valueLabels?: string | undefined;
355
+ valueLabelsMap?: Record<string, string> | undefined;
336
356
  nullValueLabel?: string | undefined;
337
357
  }, {
338
358
  type: "column";
@@ -340,6 +360,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
340
360
  format?: string | undefined;
341
361
  label?: string | undefined;
342
362
  valueLabels?: string | undefined;
363
+ valueLabelsMap?: Record<string, string> | undefined;
343
364
  nullValueLabel?: string | undefined;
344
365
  }>;
345
366
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -352,6 +373,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
352
373
  format?: string | undefined;
353
374
  label?: string | undefined;
354
375
  valueLabels?: string | undefined;
376
+ valueLabelsMap?: Record<string, string> | undefined;
355
377
  nullValueLabel?: string | undefined;
356
378
  };
357
379
  domain: number[];
@@ -364,6 +386,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
364
386
  format?: string | undefined;
365
387
  label?: string | undefined;
366
388
  valueLabels?: string | undefined;
389
+ valueLabelsMap?: Record<string, string> | undefined;
367
390
  nullValueLabel?: string | undefined;
368
391
  };
369
392
  domain: number[];
@@ -381,6 +404,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
381
404
  format?: string | undefined;
382
405
  label?: string | undefined;
383
406
  valueLabels?: string | undefined;
407
+ valueLabelsMap?: Record<string, string> | undefined;
384
408
  nullValueLabel?: string | undefined;
385
409
  };
386
410
  domain: number[];
@@ -402,6 +426,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
402
426
  format?: string | undefined;
403
427
  label?: string | undefined;
404
428
  valueLabels?: string | undefined;
429
+ valueLabelsMap?: Record<string, string> | undefined;
405
430
  nullValueLabel?: string | undefined;
406
431
  };
407
432
  domain: number[];
@@ -426,6 +451,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
426
451
  format?: string | undefined;
427
452
  label?: string | undefined;
428
453
  valueLabels?: string | undefined;
454
+ valueLabelsMap?: Record<string, string> | undefined;
429
455
  nullValueLabel?: string | undefined;
430
456
  };
431
457
  domain: number[];
@@ -451,6 +477,7 @@ declare const CurveUmapLayerSchema: z.ZodObject<{
451
477
  format?: string | undefined;
452
478
  label?: string | undefined;
453
479
  valueLabels?: string | undefined;
480
+ valueLabelsMap?: Record<string, string> | undefined;
454
481
  nullValueLabel?: string | undefined;
455
482
  };
456
483
  domain: number[];
@@ -487,6 +514,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
487
514
  format: z.ZodOptional<z.ZodString>;
488
515
  label: z.ZodOptional<z.ZodString>;
489
516
  valueLabels: z.ZodOptional<z.ZodString>;
517
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
490
518
  nullValueLabel: z.ZodOptional<z.ZodString>;
491
519
  }, "strip", z.ZodTypeAny, {
492
520
  type: "column";
@@ -494,6 +522,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
494
522
  format?: string | undefined;
495
523
  label?: string | undefined;
496
524
  valueLabels?: string | undefined;
525
+ valueLabelsMap?: Record<string, string> | undefined;
497
526
  nullValueLabel?: string | undefined;
498
527
  }, {
499
528
  type: "column";
@@ -501,6 +530,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
501
530
  format?: string | undefined;
502
531
  label?: string | undefined;
503
532
  valueLabels?: string | undefined;
533
+ valueLabelsMap?: Record<string, string> | undefined;
504
534
  nullValueLabel?: string | undefined;
505
535
  }>;
506
536
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -513,6 +543,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
513
543
  format?: string | undefined;
514
544
  label?: string | undefined;
515
545
  valueLabels?: string | undefined;
546
+ valueLabelsMap?: Record<string, string> | undefined;
516
547
  nullValueLabel?: string | undefined;
517
548
  };
518
549
  domain: number[];
@@ -525,6 +556,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
525
556
  format?: string | undefined;
526
557
  label?: string | undefined;
527
558
  valueLabels?: string | undefined;
559
+ valueLabelsMap?: Record<string, string> | undefined;
528
560
  nullValueLabel?: string | undefined;
529
561
  };
530
562
  domain: number[];
@@ -551,6 +583,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
551
583
  format: z.ZodOptional<z.ZodString>;
552
584
  label: z.ZodOptional<z.ZodString>;
553
585
  valueLabels: z.ZodOptional<z.ZodString>;
586
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
554
587
  nullValueLabel: z.ZodOptional<z.ZodString>;
555
588
  }, "strip", z.ZodTypeAny, {
556
589
  type: "column";
@@ -558,6 +591,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
558
591
  format?: string | undefined;
559
592
  label?: string | undefined;
560
593
  valueLabels?: string | undefined;
594
+ valueLabelsMap?: Record<string, string> | undefined;
561
595
  nullValueLabel?: string | undefined;
562
596
  }, {
563
597
  type: "column";
@@ -565,6 +599,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
565
599
  format?: string | undefined;
566
600
  label?: string | undefined;
567
601
  valueLabels?: string | undefined;
602
+ valueLabelsMap?: Record<string, string> | undefined;
568
603
  nullValueLabel?: string | undefined;
569
604
  }>;
570
605
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -577,6 +612,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
577
612
  format?: string | undefined;
578
613
  label?: string | undefined;
579
614
  valueLabels?: string | undefined;
615
+ valueLabelsMap?: Record<string, string> | undefined;
580
616
  nullValueLabel?: string | undefined;
581
617
  };
582
618
  domain: number[];
@@ -589,6 +625,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
589
625
  format?: string | undefined;
590
626
  label?: string | undefined;
591
627
  valueLabels?: string | undefined;
628
+ valueLabelsMap?: Record<string, string> | undefined;
592
629
  nullValueLabel?: string | undefined;
593
630
  };
594
631
  domain: number[];
@@ -603,6 +640,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
603
640
  format?: string | undefined;
604
641
  label?: string | undefined;
605
642
  valueLabels?: string | undefined;
643
+ valueLabelsMap?: Record<string, string> | undefined;
606
644
  nullValueLabel?: string | undefined;
607
645
  };
608
646
  domain: number[];
@@ -625,6 +663,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
625
663
  format?: string | undefined;
626
664
  label?: string | undefined;
627
665
  valueLabels?: string | undefined;
666
+ valueLabelsMap?: Record<string, string> | undefined;
628
667
  nullValueLabel?: string | undefined;
629
668
  };
630
669
  domain: number[];
@@ -639,6 +678,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
639
678
  format?: string | undefined;
640
679
  label?: string | undefined;
641
680
  valueLabels?: string | undefined;
681
+ valueLabelsMap?: Record<string, string> | undefined;
642
682
  nullValueLabel?: string | undefined;
643
683
  };
644
684
  domain: number[];
@@ -661,6 +701,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
661
701
  format?: string | undefined;
662
702
  label?: string | undefined;
663
703
  valueLabels?: string | undefined;
704
+ valueLabelsMap?: Record<string, string> | undefined;
664
705
  nullValueLabel?: string | undefined;
665
706
  };
666
707
  domain: number[];
@@ -678,6 +719,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
678
719
  format?: string | undefined;
679
720
  label?: string | undefined;
680
721
  valueLabels?: string | undefined;
722
+ valueLabelsMap?: Record<string, string> | undefined;
681
723
  nullValueLabel?: string | undefined;
682
724
  };
683
725
  domain: number[];
@@ -700,6 +742,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
700
742
  format?: string | undefined;
701
743
  label?: string | undefined;
702
744
  valueLabels?: string | undefined;
745
+ valueLabelsMap?: Record<string, string> | undefined;
703
746
  nullValueLabel?: string | undefined;
704
747
  };
705
748
  domain: number[];
@@ -717,6 +760,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
717
760
  format?: string | undefined;
718
761
  label?: string | undefined;
719
762
  valueLabels?: string | undefined;
763
+ valueLabelsMap?: Record<string, string> | undefined;
720
764
  nullValueLabel?: string | undefined;
721
765
  };
722
766
  domain: number[];
@@ -739,6 +783,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
739
783
  format?: string | undefined;
740
784
  label?: string | undefined;
741
785
  valueLabels?: string | undefined;
786
+ valueLabelsMap?: Record<string, string> | undefined;
742
787
  nullValueLabel?: string | undefined;
743
788
  };
744
789
  domain: number[];
@@ -771,6 +816,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
771
816
  format: z.ZodOptional<z.ZodString>;
772
817
  label: z.ZodOptional<z.ZodString>;
773
818
  valueLabels: z.ZodOptional<z.ZodString>;
819
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
774
820
  nullValueLabel: z.ZodOptional<z.ZodString>;
775
821
  }, "strip", z.ZodTypeAny, {
776
822
  type: "column";
@@ -778,6 +824,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
778
824
  format?: string | undefined;
779
825
  label?: string | undefined;
780
826
  valueLabels?: string | undefined;
827
+ valueLabelsMap?: Record<string, string> | undefined;
781
828
  nullValueLabel?: string | undefined;
782
829
  }, {
783
830
  type: "column";
@@ -785,6 +832,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
785
832
  format?: string | undefined;
786
833
  label?: string | undefined;
787
834
  valueLabels?: string | undefined;
835
+ valueLabelsMap?: Record<string, string> | undefined;
788
836
  nullValueLabel?: string | undefined;
789
837
  }>;
790
838
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -797,6 +845,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
797
845
  format?: string | undefined;
798
846
  label?: string | undefined;
799
847
  valueLabels?: string | undefined;
848
+ valueLabelsMap?: Record<string, string> | undefined;
800
849
  nullValueLabel?: string | undefined;
801
850
  };
802
851
  domain: number[];
@@ -809,6 +858,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
809
858
  format?: string | undefined;
810
859
  label?: string | undefined;
811
860
  valueLabels?: string | undefined;
861
+ valueLabelsMap?: Record<string, string> | undefined;
812
862
  nullValueLabel?: string | undefined;
813
863
  };
814
864
  domain: number[];
@@ -826,6 +876,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
826
876
  format?: string | undefined;
827
877
  label?: string | undefined;
828
878
  valueLabels?: string | undefined;
879
+ valueLabelsMap?: Record<string, string> | undefined;
829
880
  nullValueLabel?: string | undefined;
830
881
  };
831
882
  domain: number[];
@@ -847,6 +898,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
847
898
  format?: string | undefined;
848
899
  label?: string | undefined;
849
900
  valueLabels?: string | undefined;
901
+ valueLabelsMap?: Record<string, string> | undefined;
850
902
  nullValueLabel?: string | undefined;
851
903
  };
852
904
  domain: number[];
@@ -871,6 +923,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
871
923
  format?: string | undefined;
872
924
  label?: string | undefined;
873
925
  valueLabels?: string | undefined;
926
+ valueLabelsMap?: Record<string, string> | undefined;
874
927
  nullValueLabel?: string | undefined;
875
928
  };
876
929
  domain: number[];
@@ -896,6 +949,7 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
896
949
  format?: string | undefined;
897
950
  label?: string | undefined;
898
951
  valueLabels?: string | undefined;
952
+ valueLabelsMap?: Record<string, string> | undefined;
899
953
  nullValueLabel?: string | undefined;
900
954
  };
901
955
  domain: number[];
@@ -920,6 +974,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
920
974
  format: z.ZodOptional<z.ZodString>;
921
975
  label: z.ZodOptional<z.ZodString>;
922
976
  valueLabels: z.ZodOptional<z.ZodString>;
977
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
923
978
  nullValueLabel: z.ZodOptional<z.ZodString>;
924
979
  }, "strip", z.ZodTypeAny, {
925
980
  type: "column";
@@ -927,6 +982,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
927
982
  format?: string | undefined;
928
983
  label?: string | undefined;
929
984
  valueLabels?: string | undefined;
985
+ valueLabelsMap?: Record<string, string> | undefined;
930
986
  nullValueLabel?: string | undefined;
931
987
  }, {
932
988
  type: "column";
@@ -934,6 +990,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
934
990
  format?: string | undefined;
935
991
  label?: string | undefined;
936
992
  valueLabels?: string | undefined;
993
+ valueLabelsMap?: Record<string, string> | undefined;
937
994
  nullValueLabel?: string | undefined;
938
995
  }>;
939
996
  label: z.ZodString;
@@ -958,6 +1015,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
958
1015
  format: z.ZodOptional<z.ZodString>;
959
1016
  label: z.ZodOptional<z.ZodString>;
960
1017
  valueLabels: z.ZodOptional<z.ZodString>;
1018
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
961
1019
  nullValueLabel: z.ZodOptional<z.ZodString>;
962
1020
  }, "strip", z.ZodTypeAny, {
963
1021
  type: "column";
@@ -965,6 +1023,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
965
1023
  format?: string | undefined;
966
1024
  label?: string | undefined;
967
1025
  valueLabels?: string | undefined;
1026
+ valueLabelsMap?: Record<string, string> | undefined;
968
1027
  nullValueLabel?: string | undefined;
969
1028
  }, {
970
1029
  type: "column";
@@ -972,6 +1031,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
972
1031
  format?: string | undefined;
973
1032
  label?: string | undefined;
974
1033
  valueLabels?: string | undefined;
1034
+ valueLabelsMap?: Record<string, string> | undefined;
975
1035
  nullValueLabel?: string | undefined;
976
1036
  }>;
977
1037
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -984,6 +1044,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
984
1044
  format?: string | undefined;
985
1045
  label?: string | undefined;
986
1046
  valueLabels?: string | undefined;
1047
+ valueLabelsMap?: Record<string, string> | undefined;
987
1048
  nullValueLabel?: string | undefined;
988
1049
  };
989
1050
  domain: number[];
@@ -996,6 +1057,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
996
1057
  format?: string | undefined;
997
1058
  label?: string | undefined;
998
1059
  valueLabels?: string | undefined;
1060
+ valueLabelsMap?: Record<string, string> | undefined;
999
1061
  nullValueLabel?: string | undefined;
1000
1062
  };
1001
1063
  domain: number[];
@@ -1012,6 +1074,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
1012
1074
  format?: string | undefined;
1013
1075
  label?: string | undefined;
1014
1076
  valueLabels?: string | undefined;
1077
+ valueLabelsMap?: Record<string, string> | undefined;
1015
1078
  nullValueLabel?: string | undefined;
1016
1079
  };
1017
1080
  lineWidth?: number | undefined;
@@ -1023,6 +1086,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
1023
1086
  format?: string | undefined;
1024
1087
  label?: string | undefined;
1025
1088
  valueLabels?: string | undefined;
1089
+ valueLabelsMap?: Record<string, string> | undefined;
1026
1090
  nullValueLabel?: string | undefined;
1027
1091
  };
1028
1092
  domain: number[];
@@ -1043,6 +1107,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
1043
1107
  format?: string | undefined;
1044
1108
  label?: string | undefined;
1045
1109
  valueLabels?: string | undefined;
1110
+ valueLabelsMap?: Record<string, string> | undefined;
1046
1111
  nullValueLabel?: string | undefined;
1047
1112
  };
1048
1113
  lineWidth?: number | undefined;
@@ -1054,6 +1119,7 @@ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
1054
1119
  format?: string | undefined;
1055
1120
  label?: string | undefined;
1056
1121
  valueLabels?: string | undefined;
1122
+ valueLabelsMap?: Record<string, string> | undefined;
1057
1123
  nullValueLabel?: string | undefined;
1058
1124
  };
1059
1125
  domain: number[];
@@ -1075,6 +1141,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1075
1141
  format: z.ZodOptional<z.ZodString>;
1076
1142
  label: z.ZodOptional<z.ZodString>;
1077
1143
  valueLabels: z.ZodOptional<z.ZodString>;
1144
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1078
1145
  nullValueLabel: z.ZodOptional<z.ZodString>;
1079
1146
  }, "strip", z.ZodTypeAny, {
1080
1147
  type: "column";
@@ -1082,6 +1149,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1082
1149
  format?: string | undefined;
1083
1150
  label?: string | undefined;
1084
1151
  valueLabels?: string | undefined;
1152
+ valueLabelsMap?: Record<string, string> | undefined;
1085
1153
  nullValueLabel?: string | undefined;
1086
1154
  }, {
1087
1155
  type: "column";
@@ -1089,6 +1157,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1089
1157
  format?: string | undefined;
1090
1158
  label?: string | undefined;
1091
1159
  valueLabels?: string | undefined;
1160
+ valueLabelsMap?: Record<string, string> | undefined;
1092
1161
  nullValueLabel?: string | undefined;
1093
1162
  }>;
1094
1163
  label: z.ZodString;
@@ -1113,6 +1182,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1113
1182
  format: z.ZodOptional<z.ZodString>;
1114
1183
  label: z.ZodOptional<z.ZodString>;
1115
1184
  valueLabels: z.ZodOptional<z.ZodString>;
1185
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1116
1186
  nullValueLabel: z.ZodOptional<z.ZodString>;
1117
1187
  }, "strip", z.ZodTypeAny, {
1118
1188
  type: "column";
@@ -1120,6 +1190,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1120
1190
  format?: string | undefined;
1121
1191
  label?: string | undefined;
1122
1192
  valueLabels?: string | undefined;
1193
+ valueLabelsMap?: Record<string, string> | undefined;
1123
1194
  nullValueLabel?: string | undefined;
1124
1195
  }, {
1125
1196
  type: "column";
@@ -1127,6 +1198,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1127
1198
  format?: string | undefined;
1128
1199
  label?: string | undefined;
1129
1200
  valueLabels?: string | undefined;
1201
+ valueLabelsMap?: Record<string, string> | undefined;
1130
1202
  nullValueLabel?: string | undefined;
1131
1203
  }>;
1132
1204
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -1139,6 +1211,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1139
1211
  format?: string | undefined;
1140
1212
  label?: string | undefined;
1141
1213
  valueLabels?: string | undefined;
1214
+ valueLabelsMap?: Record<string, string> | undefined;
1142
1215
  nullValueLabel?: string | undefined;
1143
1216
  };
1144
1217
  domain: number[];
@@ -1151,6 +1224,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1151
1224
  format?: string | undefined;
1152
1225
  label?: string | undefined;
1153
1226
  valueLabels?: string | undefined;
1227
+ valueLabelsMap?: Record<string, string> | undefined;
1154
1228
  nullValueLabel?: string | undefined;
1155
1229
  };
1156
1230
  domain: number[];
@@ -1167,6 +1241,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1167
1241
  format?: string | undefined;
1168
1242
  label?: string | undefined;
1169
1243
  valueLabels?: string | undefined;
1244
+ valueLabelsMap?: Record<string, string> | undefined;
1170
1245
  nullValueLabel?: string | undefined;
1171
1246
  };
1172
1247
  lineWidth?: number | undefined;
@@ -1178,6 +1253,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1178
1253
  format?: string | undefined;
1179
1254
  label?: string | undefined;
1180
1255
  valueLabels?: string | undefined;
1256
+ valueLabelsMap?: Record<string, string> | undefined;
1181
1257
  nullValueLabel?: string | undefined;
1182
1258
  };
1183
1259
  domain: number[];
@@ -1198,6 +1274,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1198
1274
  format?: string | undefined;
1199
1275
  label?: string | undefined;
1200
1276
  valueLabels?: string | undefined;
1277
+ valueLabelsMap?: Record<string, string> | undefined;
1201
1278
  nullValueLabel?: string | undefined;
1202
1279
  };
1203
1280
  lineWidth?: number | undefined;
@@ -1209,6 +1286,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1209
1286
  format?: string | undefined;
1210
1287
  label?: string | undefined;
1211
1288
  valueLabels?: string | undefined;
1289
+ valueLabelsMap?: Record<string, string> | undefined;
1212
1290
  nullValueLabel?: string | undefined;
1213
1291
  };
1214
1292
  domain: number[];
@@ -1232,6 +1310,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1232
1310
  format?: string | undefined;
1233
1311
  label?: string | undefined;
1234
1312
  valueLabels?: string | undefined;
1313
+ valueLabelsMap?: Record<string, string> | undefined;
1235
1314
  nullValueLabel?: string | undefined;
1236
1315
  };
1237
1316
  lineWidth?: number | undefined;
@@ -1243,6 +1322,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1243
1322
  format?: string | undefined;
1244
1323
  label?: string | undefined;
1245
1324
  valueLabels?: string | undefined;
1325
+ valueLabelsMap?: Record<string, string> | undefined;
1246
1326
  nullValueLabel?: string | undefined;
1247
1327
  };
1248
1328
  domain: number[];
@@ -1266,6 +1346,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1266
1346
  format?: string | undefined;
1267
1347
  label?: string | undefined;
1268
1348
  valueLabels?: string | undefined;
1349
+ valueLabelsMap?: Record<string, string> | undefined;
1269
1350
  nullValueLabel?: string | undefined;
1270
1351
  };
1271
1352
  lineWidth?: number | undefined;
@@ -1277,6 +1358,7 @@ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1277
1358
  format?: string | undefined;
1278
1359
  label?: string | undefined;
1279
1360
  valueLabels?: string | undefined;
1361
+ valueLabelsMap?: Record<string, string> | undefined;
1280
1362
  nullValueLabel?: string | undefined;
1281
1363
  };
1282
1364
  domain: number[];
@@ -1337,6 +1419,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1337
1419
  format: z.ZodOptional<z.ZodString>;
1338
1420
  label: z.ZodOptional<z.ZodString>;
1339
1421
  valueLabels: z.ZodOptional<z.ZodString>;
1422
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1340
1423
  nullValueLabel: z.ZodOptional<z.ZodString>;
1341
1424
  }, "strip", z.ZodTypeAny, {
1342
1425
  type: "column";
@@ -1344,6 +1427,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1344
1427
  format?: string | undefined;
1345
1428
  label?: string | undefined;
1346
1429
  valueLabels?: string | undefined;
1430
+ valueLabelsMap?: Record<string, string> | undefined;
1347
1431
  nullValueLabel?: string | undefined;
1348
1432
  }, {
1349
1433
  type: "column";
@@ -1351,6 +1435,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1351
1435
  format?: string | undefined;
1352
1436
  label?: string | undefined;
1353
1437
  valueLabels?: string | undefined;
1438
+ valueLabelsMap?: Record<string, string> | undefined;
1354
1439
  nullValueLabel?: string | undefined;
1355
1440
  }>, "many">>;
1356
1441
  }, "strip", z.ZodTypeAny, {
@@ -1361,6 +1446,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1361
1446
  format?: string | undefined;
1362
1447
  label?: string | undefined;
1363
1448
  valueLabels?: string | undefined;
1449
+ valueLabelsMap?: Record<string, string> | undefined;
1364
1450
  nullValueLabel?: string | undefined;
1365
1451
  }[] | undefined;
1366
1452
  }, {
@@ -1371,6 +1457,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1371
1457
  format?: string | undefined;
1372
1458
  label?: string | undefined;
1373
1459
  valueLabels?: string | undefined;
1460
+ valueLabelsMap?: Record<string, string> | undefined;
1374
1461
  nullValueLabel?: string | undefined;
1375
1462
  }[] | undefined;
1376
1463
  }>>;
@@ -1387,6 +1474,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1387
1474
  format: z.ZodOptional<z.ZodString>;
1388
1475
  label: z.ZodOptional<z.ZodString>;
1389
1476
  valueLabels: z.ZodOptional<z.ZodString>;
1477
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1390
1478
  nullValueLabel: z.ZodOptional<z.ZodString>;
1391
1479
  }, "strip", z.ZodTypeAny, {
1392
1480
  type: "column";
@@ -1394,6 +1482,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1394
1482
  format?: string | undefined;
1395
1483
  label?: string | undefined;
1396
1484
  valueLabels?: string | undefined;
1485
+ valueLabelsMap?: Record<string, string> | undefined;
1397
1486
  nullValueLabel?: string | undefined;
1398
1487
  }, {
1399
1488
  type: "column";
@@ -1401,6 +1490,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1401
1490
  format?: string | undefined;
1402
1491
  label?: string | undefined;
1403
1492
  valueLabels?: string | undefined;
1493
+ valueLabelsMap?: Record<string, string> | undefined;
1404
1494
  nullValueLabel?: string | undefined;
1405
1495
  }>>;
1406
1496
  x: z.ZodObject<{
@@ -1409,6 +1499,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1409
1499
  format: z.ZodOptional<z.ZodString>;
1410
1500
  label: z.ZodOptional<z.ZodString>;
1411
1501
  valueLabels: z.ZodOptional<z.ZodString>;
1502
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1412
1503
  nullValueLabel: z.ZodOptional<z.ZodString>;
1413
1504
  }, "strip", z.ZodTypeAny, {
1414
1505
  type: "column";
@@ -1416,6 +1507,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1416
1507
  format?: string | undefined;
1417
1508
  label?: string | undefined;
1418
1509
  valueLabels?: string | undefined;
1510
+ valueLabelsMap?: Record<string, string> | undefined;
1419
1511
  nullValueLabel?: string | undefined;
1420
1512
  }, {
1421
1513
  type: "column";
@@ -1423,6 +1515,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1423
1515
  format?: string | undefined;
1424
1516
  label?: string | undefined;
1425
1517
  valueLabels?: string | undefined;
1518
+ valueLabelsMap?: Record<string, string> | undefined;
1426
1519
  nullValueLabel?: string | undefined;
1427
1520
  }>;
1428
1521
  y: z.ZodObject<{
@@ -1431,6 +1524,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1431
1524
  format: z.ZodOptional<z.ZodString>;
1432
1525
  label: z.ZodOptional<z.ZodString>;
1433
1526
  valueLabels: z.ZodOptional<z.ZodString>;
1527
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1434
1528
  nullValueLabel: z.ZodOptional<z.ZodString>;
1435
1529
  }, "strip", z.ZodTypeAny, {
1436
1530
  type: "column";
@@ -1438,6 +1532,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1438
1532
  format?: string | undefined;
1439
1533
  label?: string | undefined;
1440
1534
  valueLabels?: string | undefined;
1535
+ valueLabelsMap?: Record<string, string> | undefined;
1441
1536
  nullValueLabel?: string | undefined;
1442
1537
  }, {
1443
1538
  type: "column";
@@ -1445,6 +1540,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1445
1540
  format?: string | undefined;
1446
1541
  label?: string | undefined;
1447
1542
  valueLabels?: string | undefined;
1543
+ valueLabelsMap?: Record<string, string> | undefined;
1448
1544
  nullValueLabel?: string | undefined;
1449
1545
  }>;
1450
1546
  xAxis: z.ZodOptional<z.ZodObject<{
@@ -1454,6 +1550,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1454
1550
  format: z.ZodOptional<z.ZodString>;
1455
1551
  label: z.ZodOptional<z.ZodString>;
1456
1552
  valueLabels: z.ZodOptional<z.ZodString>;
1553
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1457
1554
  nullValueLabel: z.ZodOptional<z.ZodString>;
1458
1555
  }, "strip", z.ZodTypeAny, {
1459
1556
  type: "column";
@@ -1461,6 +1558,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1461
1558
  format?: string | undefined;
1462
1559
  label?: string | undefined;
1463
1560
  valueLabels?: string | undefined;
1561
+ valueLabelsMap?: Record<string, string> | undefined;
1464
1562
  nullValueLabel?: string | undefined;
1465
1563
  }, {
1466
1564
  type: "column";
@@ -1468,6 +1566,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1468
1566
  format?: string | undefined;
1469
1567
  label?: string | undefined;
1470
1568
  valueLabels?: string | undefined;
1569
+ valueLabelsMap?: Record<string, string> | undefined;
1471
1570
  nullValueLabel?: string | undefined;
1472
1571
  }>]>>;
1473
1572
  scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
@@ -1486,6 +1585,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1486
1585
  format?: string | undefined;
1487
1586
  label?: string | undefined;
1488
1587
  valueLabels?: string | undefined;
1588
+ valueLabelsMap?: Record<string, string> | undefined;
1489
1589
  nullValueLabel?: string | undefined;
1490
1590
  } | undefined;
1491
1591
  scale?: "linear" | "log" | undefined;
@@ -1504,6 +1604,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1504
1604
  format?: string | undefined;
1505
1605
  label?: string | undefined;
1506
1606
  valueLabels?: string | undefined;
1607
+ valueLabelsMap?: Record<string, string> | undefined;
1507
1608
  nullValueLabel?: string | undefined;
1508
1609
  } | undefined;
1509
1610
  scale?: "linear" | "log" | undefined;
@@ -1523,6 +1624,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1523
1624
  format: z.ZodOptional<z.ZodString>;
1524
1625
  label: z.ZodOptional<z.ZodString>;
1525
1626
  valueLabels: z.ZodOptional<z.ZodString>;
1627
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1526
1628
  nullValueLabel: z.ZodOptional<z.ZodString>;
1527
1629
  }, "strip", z.ZodTypeAny, {
1528
1630
  type: "column";
@@ -1530,6 +1632,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1530
1632
  format?: string | undefined;
1531
1633
  label?: string | undefined;
1532
1634
  valueLabels?: string | undefined;
1635
+ valueLabelsMap?: Record<string, string> | undefined;
1533
1636
  nullValueLabel?: string | undefined;
1534
1637
  }, {
1535
1638
  type: "column";
@@ -1537,6 +1640,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1537
1640
  format?: string | undefined;
1538
1641
  label?: string | undefined;
1539
1642
  valueLabels?: string | undefined;
1643
+ valueLabelsMap?: Record<string, string> | undefined;
1540
1644
  nullValueLabel?: string | undefined;
1541
1645
  }>]>>;
1542
1646
  scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
@@ -1555,6 +1659,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1555
1659
  format?: string | undefined;
1556
1660
  label?: string | undefined;
1557
1661
  valueLabels?: string | undefined;
1662
+ valueLabelsMap?: Record<string, string> | undefined;
1558
1663
  nullValueLabel?: string | undefined;
1559
1664
  } | undefined;
1560
1665
  scale?: "linear" | "log" | undefined;
@@ -1573,6 +1678,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1573
1678
  format?: string | undefined;
1574
1679
  label?: string | undefined;
1575
1680
  valueLabels?: string | undefined;
1681
+ valueLabelsMap?: Record<string, string> | undefined;
1576
1682
  nullValueLabel?: string | undefined;
1577
1683
  } | undefined;
1578
1684
  scale?: "linear" | "log" | undefined;
@@ -1592,6 +1698,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1592
1698
  format: z.ZodOptional<z.ZodString>;
1593
1699
  label: z.ZodOptional<z.ZodString>;
1594
1700
  valueLabels: z.ZodOptional<z.ZodString>;
1701
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1595
1702
  nullValueLabel: z.ZodOptional<z.ZodString>;
1596
1703
  }, "strip", z.ZodTypeAny, {
1597
1704
  type: "column";
@@ -1599,6 +1706,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1599
1706
  format?: string | undefined;
1600
1707
  label?: string | undefined;
1601
1708
  valueLabels?: string | undefined;
1709
+ valueLabelsMap?: Record<string, string> | undefined;
1602
1710
  nullValueLabel?: string | undefined;
1603
1711
  }, {
1604
1712
  type: "column";
@@ -1606,6 +1714,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1606
1714
  format?: string | undefined;
1607
1715
  label?: string | undefined;
1608
1716
  valueLabels?: string | undefined;
1717
+ valueLabelsMap?: Record<string, string> | undefined;
1609
1718
  nullValueLabel?: string | undefined;
1610
1719
  }>;
1611
1720
  order: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>, "many">>;
@@ -1642,6 +1751,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1642
1751
  format?: string | undefined;
1643
1752
  label?: string | undefined;
1644
1753
  valueLabels?: string | undefined;
1754
+ valueLabelsMap?: Record<string, string> | undefined;
1645
1755
  nullValueLabel?: string | undefined;
1646
1756
  };
1647
1757
  order?: (string | number | null)[] | undefined;
@@ -1662,6 +1772,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1662
1772
  format?: string | undefined;
1663
1773
  label?: string | undefined;
1664
1774
  valueLabels?: string | undefined;
1775
+ valueLabelsMap?: Record<string, string> | undefined;
1665
1776
  nullValueLabel?: string | undefined;
1666
1777
  };
1667
1778
  order?: (string | number | null)[] | undefined;
@@ -1682,6 +1793,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1682
1793
  format: z.ZodOptional<z.ZodString>;
1683
1794
  label: z.ZodOptional<z.ZodString>;
1684
1795
  valueLabels: z.ZodOptional<z.ZodString>;
1796
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1685
1797
  nullValueLabel: z.ZodOptional<z.ZodString>;
1686
1798
  }, "strip", z.ZodTypeAny, {
1687
1799
  type: "column";
@@ -1689,6 +1801,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1689
1801
  format?: string | undefined;
1690
1802
  label?: string | undefined;
1691
1803
  valueLabels?: string | undefined;
1804
+ valueLabelsMap?: Record<string, string> | undefined;
1692
1805
  nullValueLabel?: string | undefined;
1693
1806
  }, {
1694
1807
  type: "column";
@@ -1696,6 +1809,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1696
1809
  format?: string | undefined;
1697
1810
  label?: string | undefined;
1698
1811
  valueLabels?: string | undefined;
1812
+ valueLabelsMap?: Record<string, string> | undefined;
1699
1813
  nullValueLabel?: string | undefined;
1700
1814
  }>>;
1701
1815
  highlight: z.ZodOptional<z.ZodObject<{
@@ -1704,6 +1818,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1704
1818
  format: z.ZodOptional<z.ZodString>;
1705
1819
  label: z.ZodOptional<z.ZodString>;
1706
1820
  valueLabels: z.ZodOptional<z.ZodString>;
1821
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1707
1822
  nullValueLabel: z.ZodOptional<z.ZodString>;
1708
1823
  }, "strip", z.ZodTypeAny, {
1709
1824
  type: "column";
@@ -1711,6 +1826,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1711
1826
  format?: string | undefined;
1712
1827
  label?: string | undefined;
1713
1828
  valueLabels?: string | undefined;
1829
+ valueLabelsMap?: Record<string, string> | undefined;
1714
1830
  nullValueLabel?: string | undefined;
1715
1831
  }, {
1716
1832
  type: "column";
@@ -1718,6 +1834,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1718
1834
  format?: string | undefined;
1719
1835
  label?: string | undefined;
1720
1836
  valueLabels?: string | undefined;
1837
+ valueLabelsMap?: Record<string, string> | undefined;
1721
1838
  nullValueLabel?: string | undefined;
1722
1839
  }>>;
1723
1840
  additionalCurves: z.ZodOptional<z.ZodObject<{
@@ -1728,6 +1845,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1728
1845
  format: z.ZodOptional<z.ZodString>;
1729
1846
  label: z.ZodOptional<z.ZodString>;
1730
1847
  valueLabels: z.ZodOptional<z.ZodString>;
1848
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1731
1849
  nullValueLabel: z.ZodOptional<z.ZodString>;
1732
1850
  }, "strip", z.ZodTypeAny, {
1733
1851
  type: "column";
@@ -1735,6 +1853,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1735
1853
  format?: string | undefined;
1736
1854
  label?: string | undefined;
1737
1855
  valueLabels?: string | undefined;
1856
+ valueLabelsMap?: Record<string, string> | undefined;
1738
1857
  nullValueLabel?: string | undefined;
1739
1858
  }, {
1740
1859
  type: "column";
@@ -1742,6 +1861,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1742
1861
  format?: string | undefined;
1743
1862
  label?: string | undefined;
1744
1863
  valueLabels?: string | undefined;
1864
+ valueLabelsMap?: Record<string, string> | undefined;
1745
1865
  nullValueLabel?: string | undefined;
1746
1866
  }>;
1747
1867
  label: z.ZodString;
@@ -1766,6 +1886,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1766
1886
  format: z.ZodOptional<z.ZodString>;
1767
1887
  label: z.ZodOptional<z.ZodString>;
1768
1888
  valueLabels: z.ZodOptional<z.ZodString>;
1889
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1769
1890
  nullValueLabel: z.ZodOptional<z.ZodString>;
1770
1891
  }, "strip", z.ZodTypeAny, {
1771
1892
  type: "column";
@@ -1773,6 +1894,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1773
1894
  format?: string | undefined;
1774
1895
  label?: string | undefined;
1775
1896
  valueLabels?: string | undefined;
1897
+ valueLabelsMap?: Record<string, string> | undefined;
1776
1898
  nullValueLabel?: string | undefined;
1777
1899
  }, {
1778
1900
  type: "column";
@@ -1780,6 +1902,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1780
1902
  format?: string | undefined;
1781
1903
  label?: string | undefined;
1782
1904
  valueLabels?: string | undefined;
1905
+ valueLabelsMap?: Record<string, string> | undefined;
1783
1906
  nullValueLabel?: string | undefined;
1784
1907
  }>;
1785
1908
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -1792,6 +1915,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1792
1915
  format?: string | undefined;
1793
1916
  label?: string | undefined;
1794
1917
  valueLabels?: string | undefined;
1918
+ valueLabelsMap?: Record<string, string> | undefined;
1795
1919
  nullValueLabel?: string | undefined;
1796
1920
  };
1797
1921
  domain: number[];
@@ -1804,6 +1928,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1804
1928
  format?: string | undefined;
1805
1929
  label?: string | undefined;
1806
1930
  valueLabels?: string | undefined;
1931
+ valueLabelsMap?: Record<string, string> | undefined;
1807
1932
  nullValueLabel?: string | undefined;
1808
1933
  };
1809
1934
  domain: number[];
@@ -1820,6 +1945,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1820
1945
  format?: string | undefined;
1821
1946
  label?: string | undefined;
1822
1947
  valueLabels?: string | undefined;
1948
+ valueLabelsMap?: Record<string, string> | undefined;
1823
1949
  nullValueLabel?: string | undefined;
1824
1950
  };
1825
1951
  lineWidth?: number | undefined;
@@ -1831,6 +1957,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1831
1957
  format?: string | undefined;
1832
1958
  label?: string | undefined;
1833
1959
  valueLabels?: string | undefined;
1960
+ valueLabelsMap?: Record<string, string> | undefined;
1834
1961
  nullValueLabel?: string | undefined;
1835
1962
  };
1836
1963
  domain: number[];
@@ -1851,6 +1978,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1851
1978
  format?: string | undefined;
1852
1979
  label?: string | undefined;
1853
1980
  valueLabels?: string | undefined;
1981
+ valueLabelsMap?: Record<string, string> | undefined;
1854
1982
  nullValueLabel?: string | undefined;
1855
1983
  };
1856
1984
  lineWidth?: number | undefined;
@@ -1862,6 +1990,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1862
1990
  format?: string | undefined;
1863
1991
  label?: string | undefined;
1864
1992
  valueLabels?: string | undefined;
1993
+ valueLabelsMap?: Record<string, string> | undefined;
1865
1994
  nullValueLabel?: string | undefined;
1866
1995
  };
1867
1996
  domain: number[];
@@ -1885,6 +2014,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1885
2014
  format?: string | undefined;
1886
2015
  label?: string | undefined;
1887
2016
  valueLabels?: string | undefined;
2017
+ valueLabelsMap?: Record<string, string> | undefined;
1888
2018
  nullValueLabel?: string | undefined;
1889
2019
  };
1890
2020
  lineWidth?: number | undefined;
@@ -1896,6 +2026,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1896
2026
  format?: string | undefined;
1897
2027
  label?: string | undefined;
1898
2028
  valueLabels?: string | undefined;
2029
+ valueLabelsMap?: Record<string, string> | undefined;
1899
2030
  nullValueLabel?: string | undefined;
1900
2031
  };
1901
2032
  domain: number[];
@@ -1919,6 +2050,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1919
2050
  format?: string | undefined;
1920
2051
  label?: string | undefined;
1921
2052
  valueLabels?: string | undefined;
2053
+ valueLabelsMap?: Record<string, string> | undefined;
1922
2054
  nullValueLabel?: string | undefined;
1923
2055
  };
1924
2056
  lineWidth?: number | undefined;
@@ -1930,6 +2062,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1930
2062
  format?: string | undefined;
1931
2063
  label?: string | undefined;
1932
2064
  valueLabels?: string | undefined;
2065
+ valueLabelsMap?: Record<string, string> | undefined;
1933
2066
  nullValueLabel?: string | undefined;
1934
2067
  };
1935
2068
  domain: number[];
@@ -1967,6 +2100,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1967
2100
  format: z.ZodOptional<z.ZodString>;
1968
2101
  label: z.ZodOptional<z.ZodString>;
1969
2102
  valueLabels: z.ZodOptional<z.ZodString>;
2103
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1970
2104
  nullValueLabel: z.ZodOptional<z.ZodString>;
1971
2105
  }, "strip", z.ZodTypeAny, {
1972
2106
  type: "column";
@@ -1974,6 +2108,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1974
2108
  format?: string | undefined;
1975
2109
  label?: string | undefined;
1976
2110
  valueLabels?: string | undefined;
2111
+ valueLabelsMap?: Record<string, string> | undefined;
1977
2112
  nullValueLabel?: string | undefined;
1978
2113
  }, {
1979
2114
  type: "column";
@@ -1981,6 +2116,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1981
2116
  format?: string | undefined;
1982
2117
  label?: string | undefined;
1983
2118
  valueLabels?: string | undefined;
2119
+ valueLabelsMap?: Record<string, string> | undefined;
1984
2120
  nullValueLabel?: string | undefined;
1985
2121
  }>;
1986
2122
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -1993,6 +2129,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1993
2129
  format?: string | undefined;
1994
2130
  label?: string | undefined;
1995
2131
  valueLabels?: string | undefined;
2132
+ valueLabelsMap?: Record<string, string> | undefined;
1996
2133
  nullValueLabel?: string | undefined;
1997
2134
  };
1998
2135
  domain: number[];
@@ -2005,6 +2142,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2005
2142
  format?: string | undefined;
2006
2143
  label?: string | undefined;
2007
2144
  valueLabels?: string | undefined;
2145
+ valueLabelsMap?: Record<string, string> | undefined;
2008
2146
  nullValueLabel?: string | undefined;
2009
2147
  };
2010
2148
  domain: number[];
@@ -2031,6 +2169,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2031
2169
  format: z.ZodOptional<z.ZodString>;
2032
2170
  label: z.ZodOptional<z.ZodString>;
2033
2171
  valueLabels: z.ZodOptional<z.ZodString>;
2172
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2034
2173
  nullValueLabel: z.ZodOptional<z.ZodString>;
2035
2174
  }, "strip", z.ZodTypeAny, {
2036
2175
  type: "column";
@@ -2038,6 +2177,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2038
2177
  format?: string | undefined;
2039
2178
  label?: string | undefined;
2040
2179
  valueLabels?: string | undefined;
2180
+ valueLabelsMap?: Record<string, string> | undefined;
2041
2181
  nullValueLabel?: string | undefined;
2042
2182
  }, {
2043
2183
  type: "column";
@@ -2045,6 +2185,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2045
2185
  format?: string | undefined;
2046
2186
  label?: string | undefined;
2047
2187
  valueLabels?: string | undefined;
2188
+ valueLabelsMap?: Record<string, string> | undefined;
2048
2189
  nullValueLabel?: string | undefined;
2049
2190
  }>;
2050
2191
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -2057,6 +2198,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2057
2198
  format?: string | undefined;
2058
2199
  label?: string | undefined;
2059
2200
  valueLabels?: string | undefined;
2201
+ valueLabelsMap?: Record<string, string> | undefined;
2060
2202
  nullValueLabel?: string | undefined;
2061
2203
  };
2062
2204
  domain: number[];
@@ -2069,6 +2211,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2069
2211
  format?: string | undefined;
2070
2212
  label?: string | undefined;
2071
2213
  valueLabels?: string | undefined;
2214
+ valueLabelsMap?: Record<string, string> | undefined;
2072
2215
  nullValueLabel?: string | undefined;
2073
2216
  };
2074
2217
  domain: number[];
@@ -2083,6 +2226,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2083
2226
  format?: string | undefined;
2084
2227
  label?: string | undefined;
2085
2228
  valueLabels?: string | undefined;
2229
+ valueLabelsMap?: Record<string, string> | undefined;
2086
2230
  nullValueLabel?: string | undefined;
2087
2231
  };
2088
2232
  domain: number[];
@@ -2105,6 +2249,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2105
2249
  format?: string | undefined;
2106
2250
  label?: string | undefined;
2107
2251
  valueLabels?: string | undefined;
2252
+ valueLabelsMap?: Record<string, string> | undefined;
2108
2253
  nullValueLabel?: string | undefined;
2109
2254
  };
2110
2255
  domain: number[];
@@ -2119,6 +2264,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2119
2264
  format?: string | undefined;
2120
2265
  label?: string | undefined;
2121
2266
  valueLabels?: string | undefined;
2267
+ valueLabelsMap?: Record<string, string> | undefined;
2122
2268
  nullValueLabel?: string | undefined;
2123
2269
  };
2124
2270
  domain: number[];
@@ -2141,6 +2287,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2141
2287
  format?: string | undefined;
2142
2288
  label?: string | undefined;
2143
2289
  valueLabels?: string | undefined;
2290
+ valueLabelsMap?: Record<string, string> | undefined;
2144
2291
  nullValueLabel?: string | undefined;
2145
2292
  };
2146
2293
  domain: number[];
@@ -2158,6 +2305,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2158
2305
  format?: string | undefined;
2159
2306
  label?: string | undefined;
2160
2307
  valueLabels?: string | undefined;
2308
+ valueLabelsMap?: Record<string, string> | undefined;
2161
2309
  nullValueLabel?: string | undefined;
2162
2310
  };
2163
2311
  domain: number[];
@@ -2180,6 +2328,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2180
2328
  format?: string | undefined;
2181
2329
  label?: string | undefined;
2182
2330
  valueLabels?: string | undefined;
2331
+ valueLabelsMap?: Record<string, string> | undefined;
2183
2332
  nullValueLabel?: string | undefined;
2184
2333
  };
2185
2334
  domain: number[];
@@ -2197,6 +2346,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2197
2346
  format?: string | undefined;
2198
2347
  label?: string | undefined;
2199
2348
  valueLabels?: string | undefined;
2349
+ valueLabelsMap?: Record<string, string> | undefined;
2200
2350
  nullValueLabel?: string | undefined;
2201
2351
  };
2202
2352
  domain: number[];
@@ -2219,6 +2369,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2219
2369
  format?: string | undefined;
2220
2370
  label?: string | undefined;
2221
2371
  valueLabels?: string | undefined;
2372
+ valueLabelsMap?: Record<string, string> | undefined;
2222
2373
  nullValueLabel?: string | undefined;
2223
2374
  };
2224
2375
  domain: number[];
@@ -2251,6 +2402,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2251
2402
  format: z.ZodOptional<z.ZodString>;
2252
2403
  label: z.ZodOptional<z.ZodString>;
2253
2404
  valueLabels: z.ZodOptional<z.ZodString>;
2405
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2254
2406
  nullValueLabel: z.ZodOptional<z.ZodString>;
2255
2407
  }, "strip", z.ZodTypeAny, {
2256
2408
  type: "column";
@@ -2258,6 +2410,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2258
2410
  format?: string | undefined;
2259
2411
  label?: string | undefined;
2260
2412
  valueLabels?: string | undefined;
2413
+ valueLabelsMap?: Record<string, string> | undefined;
2261
2414
  nullValueLabel?: string | undefined;
2262
2415
  }, {
2263
2416
  type: "column";
@@ -2265,6 +2418,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2265
2418
  format?: string | undefined;
2266
2419
  label?: string | undefined;
2267
2420
  valueLabels?: string | undefined;
2421
+ valueLabelsMap?: Record<string, string> | undefined;
2268
2422
  nullValueLabel?: string | undefined;
2269
2423
  }>;
2270
2424
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -2277,6 +2431,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2277
2431
  format?: string | undefined;
2278
2432
  label?: string | undefined;
2279
2433
  valueLabels?: string | undefined;
2434
+ valueLabelsMap?: Record<string, string> | undefined;
2280
2435
  nullValueLabel?: string | undefined;
2281
2436
  };
2282
2437
  domain: number[];
@@ -2289,6 +2444,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2289
2444
  format?: string | undefined;
2290
2445
  label?: string | undefined;
2291
2446
  valueLabels?: string | undefined;
2447
+ valueLabelsMap?: Record<string, string> | undefined;
2292
2448
  nullValueLabel?: string | undefined;
2293
2449
  };
2294
2450
  domain: number[];
@@ -2306,6 +2462,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2306
2462
  format?: string | undefined;
2307
2463
  label?: string | undefined;
2308
2464
  valueLabels?: string | undefined;
2465
+ valueLabelsMap?: Record<string, string> | undefined;
2309
2466
  nullValueLabel?: string | undefined;
2310
2467
  };
2311
2468
  domain: number[];
@@ -2327,6 +2484,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2327
2484
  format?: string | undefined;
2328
2485
  label?: string | undefined;
2329
2486
  valueLabels?: string | undefined;
2487
+ valueLabelsMap?: Record<string, string> | undefined;
2330
2488
  nullValueLabel?: string | undefined;
2331
2489
  };
2332
2490
  domain: number[];
@@ -2351,6 +2509,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2351
2509
  format?: string | undefined;
2352
2510
  label?: string | undefined;
2353
2511
  valueLabels?: string | undefined;
2512
+ valueLabelsMap?: Record<string, string> | undefined;
2354
2513
  nullValueLabel?: string | undefined;
2355
2514
  };
2356
2515
  domain: number[];
@@ -2376,6 +2535,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2376
2535
  format?: string | undefined;
2377
2536
  label?: string | undefined;
2378
2537
  valueLabels?: string | undefined;
2538
+ valueLabelsMap?: Record<string, string> | undefined;
2379
2539
  nullValueLabel?: string | undefined;
2380
2540
  };
2381
2541
  domain: number[];
@@ -2403,6 +2563,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2403
2563
  format?: string | undefined;
2404
2564
  label?: string | undefined;
2405
2565
  valueLabels?: string | undefined;
2566
+ valueLabelsMap?: Record<string, string> | undefined;
2406
2567
  nullValueLabel?: string | undefined;
2407
2568
  };
2408
2569
  y: {
@@ -2411,6 +2572,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2411
2572
  format?: string | undefined;
2412
2573
  label?: string | undefined;
2413
2574
  valueLabels?: string | undefined;
2575
+ valueLabelsMap?: Record<string, string> | undefined;
2414
2576
  nullValueLabel?: string | undefined;
2415
2577
  };
2416
2578
  layers: ({
@@ -2423,6 +2585,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2423
2585
  format?: string | undefined;
2424
2586
  label?: string | undefined;
2425
2587
  valueLabels?: string | undefined;
2588
+ valueLabelsMap?: Record<string, string> | undefined;
2426
2589
  nullValueLabel?: string | undefined;
2427
2590
  };
2428
2591
  domain: number[];
@@ -2445,6 +2608,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2445
2608
  format?: string | undefined;
2446
2609
  label?: string | undefined;
2447
2610
  valueLabels?: string | undefined;
2611
+ valueLabelsMap?: Record<string, string> | undefined;
2448
2612
  nullValueLabel?: string | undefined;
2449
2613
  };
2450
2614
  domain: number[];
@@ -2464,6 +2628,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2464
2628
  format?: string | undefined;
2465
2629
  label?: string | undefined;
2466
2630
  valueLabels?: string | undefined;
2631
+ valueLabelsMap?: Record<string, string> | undefined;
2467
2632
  nullValueLabel?: string | undefined;
2468
2633
  };
2469
2634
  domain: number[];
@@ -2488,6 +2653,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2488
2653
  format?: string | undefined;
2489
2654
  label?: string | undefined;
2490
2655
  valueLabels?: string | undefined;
2656
+ valueLabelsMap?: Record<string, string> | undefined;
2491
2657
  nullValueLabel?: string | undefined;
2492
2658
  } | undefined;
2493
2659
  grouping?: {
@@ -2497,6 +2663,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2497
2663
  format?: string | undefined;
2498
2664
  label?: string | undefined;
2499
2665
  valueLabels?: string | undefined;
2666
+ valueLabelsMap?: Record<string, string> | undefined;
2500
2667
  nullValueLabel?: string | undefined;
2501
2668
  };
2502
2669
  order?: (string | number | null)[] | undefined;
@@ -2523,6 +2690,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2523
2690
  format?: string | undefined;
2524
2691
  label?: string | undefined;
2525
2692
  valueLabels?: string | undefined;
2693
+ valueLabelsMap?: Record<string, string> | undefined;
2526
2694
  nullValueLabel?: string | undefined;
2527
2695
  }[] | undefined;
2528
2696
  } | undefined;
@@ -2535,6 +2703,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2535
2703
  format?: string | undefined;
2536
2704
  label?: string | undefined;
2537
2705
  valueLabels?: string | undefined;
2706
+ valueLabelsMap?: Record<string, string> | undefined;
2538
2707
  nullValueLabel?: string | undefined;
2539
2708
  } | undefined;
2540
2709
  xAxis?: {
@@ -2544,6 +2713,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2544
2713
  format?: string | undefined;
2545
2714
  label?: string | undefined;
2546
2715
  valueLabels?: string | undefined;
2716
+ valueLabelsMap?: Record<string, string> | undefined;
2547
2717
  nullValueLabel?: string | undefined;
2548
2718
  } | undefined;
2549
2719
  scale?: "linear" | "log" | undefined;
@@ -2563,6 +2733,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2563
2733
  format?: string | undefined;
2564
2734
  label?: string | undefined;
2565
2735
  valueLabels?: string | undefined;
2736
+ valueLabelsMap?: Record<string, string> | undefined;
2566
2737
  nullValueLabel?: string | undefined;
2567
2738
  } | undefined;
2568
2739
  scale?: "linear" | "log" | undefined;
@@ -2581,6 +2752,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2581
2752
  format?: string | undefined;
2582
2753
  label?: string | undefined;
2583
2754
  valueLabels?: string | undefined;
2755
+ valueLabelsMap?: Record<string, string> | undefined;
2584
2756
  nullValueLabel?: string | undefined;
2585
2757
  } | undefined;
2586
2758
  additionalCurves?: {
@@ -2592,6 +2764,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2592
2764
  format?: string | undefined;
2593
2765
  label?: string | undefined;
2594
2766
  valueLabels?: string | undefined;
2767
+ valueLabelsMap?: Record<string, string> | undefined;
2595
2768
  nullValueLabel?: string | undefined;
2596
2769
  };
2597
2770
  lineWidth?: number | undefined;
@@ -2603,6 +2776,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2603
2776
  format?: string | undefined;
2604
2777
  label?: string | undefined;
2605
2778
  valueLabels?: string | undefined;
2779
+ valueLabelsMap?: Record<string, string> | undefined;
2606
2780
  nullValueLabel?: string | undefined;
2607
2781
  };
2608
2782
  domain: number[];
@@ -2631,6 +2805,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2631
2805
  format?: string | undefined;
2632
2806
  label?: string | undefined;
2633
2807
  valueLabels?: string | undefined;
2808
+ valueLabelsMap?: Record<string, string> | undefined;
2634
2809
  nullValueLabel?: string | undefined;
2635
2810
  };
2636
2811
  y: {
@@ -2639,6 +2814,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2639
2814
  format?: string | undefined;
2640
2815
  label?: string | undefined;
2641
2816
  valueLabels?: string | undefined;
2817
+ valueLabelsMap?: Record<string, string> | undefined;
2642
2818
  nullValueLabel?: string | undefined;
2643
2819
  };
2644
2820
  layers: ({
@@ -2651,6 +2827,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2651
2827
  format?: string | undefined;
2652
2828
  label?: string | undefined;
2653
2829
  valueLabels?: string | undefined;
2830
+ valueLabelsMap?: Record<string, string> | undefined;
2654
2831
  nullValueLabel?: string | undefined;
2655
2832
  };
2656
2833
  domain: number[];
@@ -2673,6 +2850,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2673
2850
  format?: string | undefined;
2674
2851
  label?: string | undefined;
2675
2852
  valueLabels?: string | undefined;
2853
+ valueLabelsMap?: Record<string, string> | undefined;
2676
2854
  nullValueLabel?: string | undefined;
2677
2855
  };
2678
2856
  domain: number[];
@@ -2692,6 +2870,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2692
2870
  format?: string | undefined;
2693
2871
  label?: string | undefined;
2694
2872
  valueLabels?: string | undefined;
2873
+ valueLabelsMap?: Record<string, string> | undefined;
2695
2874
  nullValueLabel?: string | undefined;
2696
2875
  };
2697
2876
  domain: number[];
@@ -2716,6 +2895,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2716
2895
  format?: string | undefined;
2717
2896
  label?: string | undefined;
2718
2897
  valueLabels?: string | undefined;
2898
+ valueLabelsMap?: Record<string, string> | undefined;
2719
2899
  nullValueLabel?: string | undefined;
2720
2900
  } | undefined;
2721
2901
  grouping?: {
@@ -2725,6 +2905,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2725
2905
  format?: string | undefined;
2726
2906
  label?: string | undefined;
2727
2907
  valueLabels?: string | undefined;
2908
+ valueLabelsMap?: Record<string, string> | undefined;
2728
2909
  nullValueLabel?: string | undefined;
2729
2910
  };
2730
2911
  order?: (string | number | null)[] | undefined;
@@ -2751,6 +2932,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2751
2932
  format?: string | undefined;
2752
2933
  label?: string | undefined;
2753
2934
  valueLabels?: string | undefined;
2935
+ valueLabelsMap?: Record<string, string> | undefined;
2754
2936
  nullValueLabel?: string | undefined;
2755
2937
  }[] | undefined;
2756
2938
  } | undefined;
@@ -2763,6 +2945,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2763
2945
  format?: string | undefined;
2764
2946
  label?: string | undefined;
2765
2947
  valueLabels?: string | undefined;
2948
+ valueLabelsMap?: Record<string, string> | undefined;
2766
2949
  nullValueLabel?: string | undefined;
2767
2950
  } | undefined;
2768
2951
  xAxis?: {
@@ -2772,6 +2955,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2772
2955
  format?: string | undefined;
2773
2956
  label?: string | undefined;
2774
2957
  valueLabels?: string | undefined;
2958
+ valueLabelsMap?: Record<string, string> | undefined;
2775
2959
  nullValueLabel?: string | undefined;
2776
2960
  } | undefined;
2777
2961
  scale?: "linear" | "log" | undefined;
@@ -2791,6 +2975,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2791
2975
  format?: string | undefined;
2792
2976
  label?: string | undefined;
2793
2977
  valueLabels?: string | undefined;
2978
+ valueLabelsMap?: Record<string, string> | undefined;
2794
2979
  nullValueLabel?: string | undefined;
2795
2980
  } | undefined;
2796
2981
  scale?: "linear" | "log" | undefined;
@@ -2809,6 +2994,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2809
2994
  format?: string | undefined;
2810
2995
  label?: string | undefined;
2811
2996
  valueLabels?: string | undefined;
2997
+ valueLabelsMap?: Record<string, string> | undefined;
2812
2998
  nullValueLabel?: string | undefined;
2813
2999
  } | undefined;
2814
3000
  additionalCurves?: {
@@ -2820,6 +3006,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2820
3006
  format?: string | undefined;
2821
3007
  label?: string | undefined;
2822
3008
  valueLabels?: string | undefined;
3009
+ valueLabelsMap?: Record<string, string> | undefined;
2823
3010
  nullValueLabel?: string | undefined;
2824
3011
  };
2825
3012
  lineWidth?: number | undefined;
@@ -2831,6 +3018,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2831
3018
  format?: string | undefined;
2832
3019
  label?: string | undefined;
2833
3020
  valueLabels?: string | undefined;
3021
+ valueLabelsMap?: Record<string, string> | undefined;
2834
3022
  nullValueLabel?: string | undefined;
2835
3023
  };
2836
3024
  domain: number[];