@milaboratories/miplots4 1.0.179 → 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 (194) 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/scatterplot/ChartRenderer.d.ts +2 -2
  15. package/dist/scatterplot/ChartRenderer.d.ts.map +1 -1
  16. package/dist/scatterplot/ChartRenderer.js +155 -115
  17. package/dist/scatterplot/ChartRenderer.js.map +1 -1
  18. package/dist/scatterplot/ScatterplotSettingsImpl.d.ts +11 -1
  19. package/dist/scatterplot/ScatterplotSettingsImpl.d.ts.map +1 -1
  20. package/dist/scatterplot/ScatterplotSettingsImpl.js +20 -0
  21. package/dist/scatterplot/ScatterplotSettingsImpl.js.map +1 -1
  22. package/dist/scatterplot/components/ChartLayersData.d.ts +5 -0
  23. package/dist/scatterplot/components/ChartLayersData.d.ts.map +1 -1
  24. package/dist/scatterplot/components/ChartLayersData.js +115 -35
  25. package/dist/scatterplot/components/ChartLayersData.js.map +1 -1
  26. package/dist/scatterplot/components/types.d.ts +2 -0
  27. package/dist/scatterplot/components/types.d.ts.map +1 -1
  28. package/dist/scatterplot/getLayersData.d.ts +11 -2
  29. package/dist/scatterplot/getLayersData.d.ts.map +1 -1
  30. package/dist/scatterplot/getLayersData.js +36 -19
  31. package/dist/scatterplot/getLayersData.js.map +1 -1
  32. package/dist/scatterplot/index.d.ts.map +1 -1
  33. package/dist/scatterplot/index.js +51 -33
  34. package/dist/scatterplot/index.js.map +1 -1
  35. package/dist/scatterplot/linearRegression.js +1 -1
  36. package/dist/scatterplot/utils/createAesGetter.d.ts.map +1 -1
  37. package/dist/scatterplot/utils/createAesGetter.js +5 -3
  38. package/dist/scatterplot/utils/createAesGetter.js.map +1 -1
  39. package/dist/scatterplot/utils/createLegendInfo.d.ts +11 -2
  40. package/dist/scatterplot/utils/createLegendInfo.d.ts.map +1 -1
  41. package/dist/scatterplot/utils/createLegendInfo.js +21 -16
  42. package/dist/scatterplot/utils/createLegendInfo.js.map +1 -1
  43. package/dist/scatterplot-umap/ChartRenderer.d.ts +6 -6
  44. package/dist/scatterplot-umap/ChartRenderer.d.ts.map +1 -1
  45. package/dist/scatterplot-umap/ChartRenderer.js +99 -57
  46. package/dist/scatterplot-umap/ChartRenderer.js.map +1 -1
  47. package/dist/scatterplot-umap/SettingsImpl.d.ts +11 -1
  48. package/dist/scatterplot-umap/SettingsImpl.d.ts.map +1 -1
  49. package/dist/scatterplot-umap/SettingsImpl.js +21 -1
  50. package/dist/scatterplot-umap/SettingsImpl.js.map +1 -1
  51. package/dist/scatterplot-umap/components/LowerSVG.d.ts +3 -2
  52. package/dist/scatterplot-umap/components/LowerSVG.d.ts.map +1 -1
  53. package/dist/scatterplot-umap/components/LowerSVG.js +159 -108
  54. package/dist/scatterplot-umap/components/LowerSVG.js.map +1 -1
  55. package/dist/scatterplot-umap/components/SVGLayer.d.ts +1 -1
  56. package/dist/scatterplot-umap/components/SVGLayer.d.ts.map +1 -1
  57. package/dist/scatterplot-umap/components/SVGLayer.js +9 -8
  58. package/dist/scatterplot-umap/components/SVGLayer.js.map +1 -1
  59. package/dist/scatterplot-umap/index.d.ts +6 -1
  60. package/dist/scatterplot-umap/index.d.ts.map +1 -1
  61. package/dist/scatterplot-umap/index.js +65 -31
  62. package/dist/scatterplot-umap/index.js.map +1 -1
  63. package/dist/scatterplot-umap/types.d.ts +7 -0
  64. package/dist/scatterplot-umap/types.d.ts.map +1 -1
  65. package/dist/selection/ChartRenderer.d.ts +90 -0
  66. package/dist/selection/ChartRenderer.d.ts.map +1 -0
  67. package/dist/selection/ChartRenderer.js +254 -0
  68. package/dist/selection/ChartRenderer.js.map +1 -0
  69. package/dist/selection/SelectionSettingsImpl.d.ts +53 -0
  70. package/dist/selection/SelectionSettingsImpl.d.ts.map +1 -0
  71. package/dist/selection/SelectionSettingsImpl.js +47 -0
  72. package/dist/selection/SelectionSettingsImpl.js.map +1 -0
  73. package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts +8 -0
  74. package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts.map +1 -0
  75. package/dist/selection/components/Chart/Bars/GroupSelectedBars.js +57 -0
  76. package/dist/selection/components/Chart/Bars/GroupSelectedBars.js.map +1 -0
  77. package/dist/selection/components/Chart/Bars/StackedBars.d.ts +12 -0
  78. package/dist/selection/components/Chart/Bars/StackedBars.d.ts.map +1 -0
  79. package/dist/selection/components/Chart/Bars/StackedBars.js +58 -0
  80. package/dist/selection/components/Chart/Bars/StackedBars.js.map +1 -0
  81. package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts +6 -0
  82. package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts.map +1 -0
  83. package/dist/selection/components/Chart/Bars/UngroupedBars.js +38 -0
  84. package/dist/selection/components/Chart/Bars/UngroupedBars.js.map +1 -0
  85. package/dist/selection/components/Chart/Bars.d.ts +10 -0
  86. package/dist/selection/components/Chart/Bars.d.ts.map +1 -0
  87. package/dist/selection/components/Chart/Bars.js +48 -0
  88. package/dist/selection/components/Chart/Bars.js.map +1 -0
  89. package/dist/selection/components/Chart/ChartAxes.d.ts +7 -0
  90. package/dist/selection/components/Chart/ChartAxes.d.ts.map +1 -0
  91. package/dist/selection/components/Chart/ChartAxes.js +51 -0
  92. package/dist/selection/components/Chart/ChartAxes.js.map +1 -0
  93. package/dist/selection/components/Chart/ChartFrame.d.ts +9 -0
  94. package/dist/selection/components/Chart/ChartFrame.d.ts.map +1 -0
  95. package/dist/selection/components/Chart/ChartFrame.js +41 -0
  96. package/dist/selection/components/Chart/ChartFrame.js.map +1 -0
  97. package/dist/selection/components/Chart/Dividers.d.ts +8 -0
  98. package/dist/selection/components/Chart/Dividers.d.ts.map +1 -0
  99. package/dist/selection/components/Chart/Dividers.js +27 -0
  100. package/dist/selection/components/Chart/Dividers.js.map +1 -0
  101. package/dist/selection/components/Chart/Gridlines.d.ts +10 -0
  102. package/dist/selection/components/Chart/Gridlines.d.ts.map +1 -0
  103. package/dist/selection/components/Chart/Gridlines.js +32 -0
  104. package/dist/selection/components/Chart/Gridlines.js.map +1 -0
  105. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts +9 -0
  106. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts.map +1 -0
  107. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js +36 -0
  108. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js.map +1 -0
  109. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts +6 -0
  110. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts.map +1 -0
  111. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js +22 -0
  112. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js.map +1 -0
  113. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts +10 -0
  114. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts.map +1 -0
  115. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js +33 -0
  116. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js.map +1 -0
  117. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts +10 -0
  118. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts.map +1 -0
  119. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js +65 -0
  120. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js.map +1 -0
  121. package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts +10 -0
  122. package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts.map +1 -0
  123. package/dist/selection/components/Chart/Ribbons/ribbonPath.js +13 -0
  124. package/dist/selection/components/Chart/Ribbons/ribbonPath.js.map +1 -0
  125. package/dist/selection/components/Chart/Ribbons.d.ts +9 -0
  126. package/dist/selection/components/Chart/Ribbons.d.ts.map +1 -0
  127. package/dist/selection/components/Chart/Ribbons.js +58 -0
  128. package/dist/selection/components/Chart/Ribbons.js.map +1 -0
  129. package/dist/selection/components/Chart/StageCounts.d.ts +7 -0
  130. package/dist/selection/components/Chart/StageCounts.d.ts.map +1 -0
  131. package/dist/selection/components/Chart/StageCounts.js +20 -0
  132. package/dist/selection/components/Chart/StageCounts.js.map +1 -0
  133. package/dist/selection/components/Chart/types.d.ts +132 -0
  134. package/dist/selection/components/Chart/types.d.ts.map +1 -0
  135. package/dist/selection/components/Chart.d.ts +22 -0
  136. package/dist/selection/components/Chart.d.ts.map +1 -0
  137. package/dist/selection/components/Chart.js +97 -0
  138. package/dist/selection/components/Chart.js.map +1 -0
  139. package/dist/selection/components/ChartsGroup.d.ts +18 -0
  140. package/dist/selection/components/ChartsGroup.d.ts.map +1 -0
  141. package/dist/selection/components/ChartsGroup.js +181 -0
  142. package/dist/selection/components/ChartsGroup.js.map +1 -0
  143. package/dist/selection/components/FacetCell.d.ts +22 -0
  144. package/dist/selection/components/FacetCell.d.ts.map +1 -0
  145. package/dist/selection/components/FacetCell.js +18 -0
  146. package/dist/selection/components/FacetCell.js.map +1 -0
  147. package/dist/selection/components/types.d.ts +58 -0
  148. package/dist/selection/components/types.d.ts.map +1 -0
  149. package/dist/selection/constants.d.ts +25 -0
  150. package/dist/selection/constants.d.ts.map +1 -0
  151. package/dist/selection/constants.js +4 -0
  152. package/dist/selection/constants.js.map +1 -0
  153. package/dist/selection/createSelectionData.d.ts +50 -0
  154. package/dist/selection/createSelectionData.d.ts.map +1 -0
  155. package/dist/selection/createSelectionData.js +92 -0
  156. package/dist/selection/createSelectionData.js.map +1 -0
  157. package/dist/selection/index.d.ts +26 -0
  158. package/dist/selection/index.d.ts.map +1 -0
  159. package/dist/selection/index.js +96 -0
  160. package/dist/selection/index.js.map +1 -0
  161. package/dist/selection/utils.d.ts +4 -0
  162. package/dist/selection/utils.d.ts.map +1 -0
  163. package/dist/selection/utils.js +13 -0
  164. package/dist/selection/utils.js.map +1 -0
  165. package/dist/types/bubble.d.ts +42 -0
  166. package/dist/types/bubble.d.ts.map +1 -1
  167. package/dist/types/common.d.ts +38 -0
  168. package/dist/types/common.d.ts.map +1 -1
  169. package/dist/types/common.js +1 -0
  170. package/dist/types/common.js.map +1 -1
  171. package/dist/types/dendro.d.ts +103 -0
  172. package/dist/types/dendro.d.ts.map +1 -1
  173. package/dist/types/discrete.d.ts +167 -0
  174. package/dist/types/discrete.d.ts.map +1 -1
  175. package/dist/types/heatmap.d.ts +159 -0
  176. package/dist/types/heatmap.d.ts.map +1 -1
  177. package/dist/types/histogram.d.ts +22 -0
  178. package/dist/types/histogram.d.ts.map +1 -1
  179. package/dist/types/index.d.ts +3 -1
  180. package/dist/types/index.d.ts.map +1 -1
  181. package/dist/types/index.js +1 -0
  182. package/dist/types/scatterplot-umap.d.ts +951 -87
  183. package/dist/types/scatterplot-umap.d.ts.map +1 -1
  184. package/dist/types/scatterplot-umap.js +19 -3
  185. package/dist/types/scatterplot-umap.js.map +1 -1
  186. package/dist/types/scatterplot.d.ts +1647 -44
  187. package/dist/types/scatterplot.d.ts.map +1 -1
  188. package/dist/types/scatterplot.js +27 -3
  189. package/dist/types/scatterplot.js.map +1 -1
  190. package/dist/types/selection.d.ts +452 -0
  191. package/dist/types/selection.d.ts.map +1 -0
  192. package/dist/types/selection.js +53 -0
  193. package/dist/types/selection.js.map +1 -0
  194. 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[];
@@ -913,6 +967,415 @@ declare const ScatterplotUmapLayerSchema: z.ZodUnion<[z.ZodObject<{
913
967
  export type DotsUmapLayer = z.infer<typeof DotsUmapLayerSchema>;
914
968
  export type CurveUmapLayer = z.infer<typeof CurveUmapLayerSchema>;
915
969
  export type ScatterplotUmapLayer = z.infer<typeof ScatterplotUmapLayerSchema>;
970
+ declare const AdditionalCurveUmapEntrySchema: z.ZodObject<{
971
+ columnName: z.ZodObject<{
972
+ type: z.ZodLiteral<"column">;
973
+ value: z.ZodString;
974
+ format: z.ZodOptional<z.ZodString>;
975
+ label: z.ZodOptional<z.ZodString>;
976
+ valueLabels: z.ZodOptional<z.ZodString>;
977
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
978
+ nullValueLabel: z.ZodOptional<z.ZodString>;
979
+ }, "strip", z.ZodTypeAny, {
980
+ type: "column";
981
+ value: string;
982
+ format?: string | undefined;
983
+ label?: string | undefined;
984
+ valueLabels?: string | undefined;
985
+ valueLabelsMap?: Record<string, string> | undefined;
986
+ nullValueLabel?: string | undefined;
987
+ }, {
988
+ type: "column";
989
+ value: string;
990
+ format?: string | undefined;
991
+ label?: string | undefined;
992
+ valueLabels?: string | undefined;
993
+ valueLabelsMap?: Record<string, string> | undefined;
994
+ nullValueLabel?: string | undefined;
995
+ }>;
996
+ label: z.ZodString;
997
+ lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
998
+ lineWidth: z.ZodOptional<z.ZodNumber>;
999
+ lineColor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1000
+ type: z.ZodLiteral<"grouping">;
1001
+ value: z.ZodString;
1002
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1003
+ }, "strip", z.ZodTypeAny, {
1004
+ type: "grouping";
1005
+ value: string;
1006
+ palette?: string[] | undefined;
1007
+ }, {
1008
+ type: "grouping";
1009
+ value: string;
1010
+ palette?: string[] | undefined;
1011
+ }>, z.ZodObject<{
1012
+ columnName: z.ZodObject<{
1013
+ type: z.ZodLiteral<"column">;
1014
+ value: z.ZodString;
1015
+ format: z.ZodOptional<z.ZodString>;
1016
+ label: z.ZodOptional<z.ZodString>;
1017
+ valueLabels: z.ZodOptional<z.ZodString>;
1018
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1019
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1020
+ }, "strip", z.ZodTypeAny, {
1021
+ type: "column";
1022
+ value: string;
1023
+ format?: string | undefined;
1024
+ label?: string | undefined;
1025
+ valueLabels?: string | undefined;
1026
+ valueLabelsMap?: Record<string, string> | undefined;
1027
+ nullValueLabel?: string | undefined;
1028
+ }, {
1029
+ type: "column";
1030
+ value: string;
1031
+ format?: string | undefined;
1032
+ label?: string | undefined;
1033
+ valueLabels?: string | undefined;
1034
+ valueLabelsMap?: Record<string, string> | undefined;
1035
+ nullValueLabel?: string | undefined;
1036
+ }>;
1037
+ domain: z.ZodArray<z.ZodNumber, "many">;
1038
+ range: z.ZodArray<z.ZodString, "many">;
1039
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
1040
+ }, "strip", z.ZodTypeAny, {
1041
+ columnName: {
1042
+ type: "column";
1043
+ value: string;
1044
+ format?: string | undefined;
1045
+ label?: string | undefined;
1046
+ valueLabels?: string | undefined;
1047
+ valueLabelsMap?: Record<string, string> | undefined;
1048
+ nullValueLabel?: string | undefined;
1049
+ };
1050
+ domain: number[];
1051
+ range: string[];
1052
+ type?: "linear" | "log" | undefined;
1053
+ }, {
1054
+ columnName: {
1055
+ type: "column";
1056
+ value: string;
1057
+ format?: string | undefined;
1058
+ label?: string | undefined;
1059
+ valueLabels?: string | undefined;
1060
+ valueLabelsMap?: Record<string, string> | undefined;
1061
+ nullValueLabel?: string | undefined;
1062
+ };
1063
+ domain: number[];
1064
+ range: string[];
1065
+ type?: "linear" | "log" | undefined;
1066
+ }>]>>;
1067
+ opacity: z.ZodOptional<z.ZodNumber>;
1068
+ showDots: z.ZodOptional<z.ZodBoolean>;
1069
+ }, "strip", z.ZodTypeAny, {
1070
+ label: string;
1071
+ columnName: {
1072
+ type: "column";
1073
+ value: string;
1074
+ format?: string | undefined;
1075
+ label?: string | undefined;
1076
+ valueLabels?: string | undefined;
1077
+ valueLabelsMap?: Record<string, string> | undefined;
1078
+ nullValueLabel?: string | undefined;
1079
+ };
1080
+ lineWidth?: number | undefined;
1081
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1082
+ lineColor?: string | {
1083
+ columnName: {
1084
+ type: "column";
1085
+ value: string;
1086
+ format?: string | undefined;
1087
+ label?: string | undefined;
1088
+ valueLabels?: string | undefined;
1089
+ valueLabelsMap?: Record<string, string> | undefined;
1090
+ nullValueLabel?: string | undefined;
1091
+ };
1092
+ domain: number[];
1093
+ range: string[];
1094
+ type?: "linear" | "log" | undefined;
1095
+ } | {
1096
+ type: "grouping";
1097
+ value: string;
1098
+ palette?: string[] | undefined;
1099
+ } | undefined;
1100
+ opacity?: number | undefined;
1101
+ showDots?: boolean | undefined;
1102
+ }, {
1103
+ label: string;
1104
+ columnName: {
1105
+ type: "column";
1106
+ value: string;
1107
+ format?: string | undefined;
1108
+ label?: string | undefined;
1109
+ valueLabels?: string | undefined;
1110
+ valueLabelsMap?: Record<string, string> | undefined;
1111
+ nullValueLabel?: string | undefined;
1112
+ };
1113
+ lineWidth?: number | undefined;
1114
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1115
+ lineColor?: string | {
1116
+ columnName: {
1117
+ type: "column";
1118
+ value: string;
1119
+ format?: string | undefined;
1120
+ label?: string | undefined;
1121
+ valueLabels?: string | undefined;
1122
+ valueLabelsMap?: Record<string, string> | undefined;
1123
+ nullValueLabel?: string | undefined;
1124
+ };
1125
+ domain: number[];
1126
+ range: string[];
1127
+ type?: "linear" | "log" | undefined;
1128
+ } | {
1129
+ type: "grouping";
1130
+ value: string;
1131
+ palette?: string[] | undefined;
1132
+ } | undefined;
1133
+ opacity?: number | undefined;
1134
+ showDots?: boolean | undefined;
1135
+ }>;
1136
+ declare const AdditionalCurvesUmapSchema: z.ZodObject<{
1137
+ curves: z.ZodArray<z.ZodObject<{
1138
+ columnName: z.ZodObject<{
1139
+ type: z.ZodLiteral<"column">;
1140
+ value: z.ZodString;
1141
+ format: z.ZodOptional<z.ZodString>;
1142
+ label: z.ZodOptional<z.ZodString>;
1143
+ valueLabels: z.ZodOptional<z.ZodString>;
1144
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1145
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1146
+ }, "strip", z.ZodTypeAny, {
1147
+ type: "column";
1148
+ value: string;
1149
+ format?: string | undefined;
1150
+ label?: string | undefined;
1151
+ valueLabels?: string | undefined;
1152
+ valueLabelsMap?: Record<string, string> | undefined;
1153
+ nullValueLabel?: string | undefined;
1154
+ }, {
1155
+ type: "column";
1156
+ value: string;
1157
+ format?: string | undefined;
1158
+ label?: string | undefined;
1159
+ valueLabels?: string | undefined;
1160
+ valueLabelsMap?: Record<string, string> | undefined;
1161
+ nullValueLabel?: string | undefined;
1162
+ }>;
1163
+ label: z.ZodString;
1164
+ lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
1165
+ lineWidth: z.ZodOptional<z.ZodNumber>;
1166
+ lineColor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1167
+ type: z.ZodLiteral<"grouping">;
1168
+ value: z.ZodString;
1169
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1170
+ }, "strip", z.ZodTypeAny, {
1171
+ type: "grouping";
1172
+ value: string;
1173
+ palette?: string[] | undefined;
1174
+ }, {
1175
+ type: "grouping";
1176
+ value: string;
1177
+ palette?: string[] | undefined;
1178
+ }>, z.ZodObject<{
1179
+ columnName: z.ZodObject<{
1180
+ type: z.ZodLiteral<"column">;
1181
+ value: z.ZodString;
1182
+ format: z.ZodOptional<z.ZodString>;
1183
+ label: z.ZodOptional<z.ZodString>;
1184
+ valueLabels: z.ZodOptional<z.ZodString>;
1185
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1186
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1187
+ }, "strip", z.ZodTypeAny, {
1188
+ type: "column";
1189
+ value: string;
1190
+ format?: string | undefined;
1191
+ label?: string | undefined;
1192
+ valueLabels?: string | undefined;
1193
+ valueLabelsMap?: Record<string, string> | undefined;
1194
+ nullValueLabel?: string | undefined;
1195
+ }, {
1196
+ type: "column";
1197
+ value: string;
1198
+ format?: string | undefined;
1199
+ label?: string | undefined;
1200
+ valueLabels?: string | undefined;
1201
+ valueLabelsMap?: Record<string, string> | undefined;
1202
+ nullValueLabel?: string | undefined;
1203
+ }>;
1204
+ domain: z.ZodArray<z.ZodNumber, "many">;
1205
+ range: z.ZodArray<z.ZodString, "many">;
1206
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
1207
+ }, "strip", z.ZodTypeAny, {
1208
+ columnName: {
1209
+ type: "column";
1210
+ value: string;
1211
+ format?: string | undefined;
1212
+ label?: string | undefined;
1213
+ valueLabels?: string | undefined;
1214
+ valueLabelsMap?: Record<string, string> | undefined;
1215
+ nullValueLabel?: string | undefined;
1216
+ };
1217
+ domain: number[];
1218
+ range: string[];
1219
+ type?: "linear" | "log" | undefined;
1220
+ }, {
1221
+ columnName: {
1222
+ type: "column";
1223
+ value: string;
1224
+ format?: string | undefined;
1225
+ label?: string | undefined;
1226
+ valueLabels?: string | undefined;
1227
+ valueLabelsMap?: Record<string, string> | undefined;
1228
+ nullValueLabel?: string | undefined;
1229
+ };
1230
+ domain: number[];
1231
+ range: string[];
1232
+ type?: "linear" | "log" | undefined;
1233
+ }>]>>;
1234
+ opacity: z.ZodOptional<z.ZodNumber>;
1235
+ showDots: z.ZodOptional<z.ZodBoolean>;
1236
+ }, "strip", z.ZodTypeAny, {
1237
+ label: string;
1238
+ columnName: {
1239
+ type: "column";
1240
+ value: string;
1241
+ format?: string | undefined;
1242
+ label?: string | undefined;
1243
+ valueLabels?: string | undefined;
1244
+ valueLabelsMap?: Record<string, string> | undefined;
1245
+ nullValueLabel?: string | undefined;
1246
+ };
1247
+ lineWidth?: number | undefined;
1248
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1249
+ lineColor?: string | {
1250
+ columnName: {
1251
+ type: "column";
1252
+ value: string;
1253
+ format?: string | undefined;
1254
+ label?: string | undefined;
1255
+ valueLabels?: string | undefined;
1256
+ valueLabelsMap?: Record<string, string> | undefined;
1257
+ nullValueLabel?: string | undefined;
1258
+ };
1259
+ domain: number[];
1260
+ range: string[];
1261
+ type?: "linear" | "log" | undefined;
1262
+ } | {
1263
+ type: "grouping";
1264
+ value: string;
1265
+ palette?: string[] | undefined;
1266
+ } | undefined;
1267
+ opacity?: number | undefined;
1268
+ showDots?: boolean | undefined;
1269
+ }, {
1270
+ label: string;
1271
+ columnName: {
1272
+ type: "column";
1273
+ value: string;
1274
+ format?: string | undefined;
1275
+ label?: string | undefined;
1276
+ valueLabels?: string | undefined;
1277
+ valueLabelsMap?: Record<string, string> | undefined;
1278
+ nullValueLabel?: string | undefined;
1279
+ };
1280
+ lineWidth?: number | undefined;
1281
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1282
+ lineColor?: string | {
1283
+ columnName: {
1284
+ type: "column";
1285
+ value: string;
1286
+ format?: string | undefined;
1287
+ label?: string | undefined;
1288
+ valueLabels?: string | undefined;
1289
+ valueLabelsMap?: Record<string, string> | undefined;
1290
+ nullValueLabel?: string | undefined;
1291
+ };
1292
+ domain: number[];
1293
+ range: string[];
1294
+ type?: "linear" | "log" | undefined;
1295
+ } | {
1296
+ type: "grouping";
1297
+ value: string;
1298
+ palette?: string[] | undefined;
1299
+ } | undefined;
1300
+ opacity?: number | undefined;
1301
+ showDots?: boolean | undefined;
1302
+ }>, "many">;
1303
+ smoothing: z.ZodOptional<z.ZodBoolean>;
1304
+ }, "strip", z.ZodTypeAny, {
1305
+ curves: {
1306
+ label: string;
1307
+ columnName: {
1308
+ type: "column";
1309
+ value: string;
1310
+ format?: string | undefined;
1311
+ label?: string | undefined;
1312
+ valueLabels?: string | undefined;
1313
+ valueLabelsMap?: Record<string, string> | undefined;
1314
+ nullValueLabel?: string | undefined;
1315
+ };
1316
+ lineWidth?: number | undefined;
1317
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1318
+ lineColor?: string | {
1319
+ columnName: {
1320
+ type: "column";
1321
+ value: string;
1322
+ format?: string | undefined;
1323
+ label?: string | undefined;
1324
+ valueLabels?: string | undefined;
1325
+ valueLabelsMap?: Record<string, string> | undefined;
1326
+ nullValueLabel?: string | undefined;
1327
+ };
1328
+ domain: number[];
1329
+ range: string[];
1330
+ type?: "linear" | "log" | undefined;
1331
+ } | {
1332
+ type: "grouping";
1333
+ value: string;
1334
+ palette?: string[] | undefined;
1335
+ } | undefined;
1336
+ opacity?: number | undefined;
1337
+ showDots?: boolean | undefined;
1338
+ }[];
1339
+ smoothing?: boolean | undefined;
1340
+ }, {
1341
+ curves: {
1342
+ label: string;
1343
+ columnName: {
1344
+ type: "column";
1345
+ value: string;
1346
+ format?: string | undefined;
1347
+ label?: string | undefined;
1348
+ valueLabels?: string | undefined;
1349
+ valueLabelsMap?: Record<string, string> | undefined;
1350
+ nullValueLabel?: string | undefined;
1351
+ };
1352
+ lineWidth?: number | undefined;
1353
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1354
+ lineColor?: string | {
1355
+ columnName: {
1356
+ type: "column";
1357
+ value: string;
1358
+ format?: string | undefined;
1359
+ label?: string | undefined;
1360
+ valueLabels?: string | undefined;
1361
+ valueLabelsMap?: Record<string, string> | undefined;
1362
+ nullValueLabel?: string | undefined;
1363
+ };
1364
+ domain: number[];
1365
+ range: string[];
1366
+ type?: "linear" | "log" | undefined;
1367
+ } | {
1368
+ type: "grouping";
1369
+ value: string;
1370
+ palette?: string[] | undefined;
1371
+ } | undefined;
1372
+ opacity?: number | undefined;
1373
+ showDots?: boolean | undefined;
1374
+ }[];
1375
+ smoothing?: boolean | undefined;
1376
+ }>;
1377
+ export type AdditionalCurveUmapEntry = z.infer<typeof AdditionalCurveUmapEntrySchema>;
1378
+ export type AdditionalCurvesUmap = z.infer<typeof AdditionalCurvesUmapSchema>;
916
1379
  export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
917
1380
  type: z.ZodLiteral<"scatterplot-umap">;
918
1381
  title: z.ZodObject<{
@@ -956,6 +1419,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
956
1419
  format: z.ZodOptional<z.ZodString>;
957
1420
  label: z.ZodOptional<z.ZodString>;
958
1421
  valueLabels: z.ZodOptional<z.ZodString>;
1422
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
959
1423
  nullValueLabel: z.ZodOptional<z.ZodString>;
960
1424
  }, "strip", z.ZodTypeAny, {
961
1425
  type: "column";
@@ -963,6 +1427,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
963
1427
  format?: string | undefined;
964
1428
  label?: string | undefined;
965
1429
  valueLabels?: string | undefined;
1430
+ valueLabelsMap?: Record<string, string> | undefined;
966
1431
  nullValueLabel?: string | undefined;
967
1432
  }, {
968
1433
  type: "column";
@@ -970,6 +1435,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
970
1435
  format?: string | undefined;
971
1436
  label?: string | undefined;
972
1437
  valueLabels?: string | undefined;
1438
+ valueLabelsMap?: Record<string, string> | undefined;
973
1439
  nullValueLabel?: string | undefined;
974
1440
  }>, "many">>;
975
1441
  }, "strip", z.ZodTypeAny, {
@@ -980,6 +1446,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
980
1446
  format?: string | undefined;
981
1447
  label?: string | undefined;
982
1448
  valueLabels?: string | undefined;
1449
+ valueLabelsMap?: Record<string, string> | undefined;
983
1450
  nullValueLabel?: string | undefined;
984
1451
  }[] | undefined;
985
1452
  }, {
@@ -990,6 +1457,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
990
1457
  format?: string | undefined;
991
1458
  label?: string | undefined;
992
1459
  valueLabels?: string | undefined;
1460
+ valueLabelsMap?: Record<string, string> | undefined;
993
1461
  nullValueLabel?: string | undefined;
994
1462
  }[] | undefined;
995
1463
  }>>;
@@ -1006,6 +1474,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1006
1474
  format: z.ZodOptional<z.ZodString>;
1007
1475
  label: z.ZodOptional<z.ZodString>;
1008
1476
  valueLabels: z.ZodOptional<z.ZodString>;
1477
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1009
1478
  nullValueLabel: z.ZodOptional<z.ZodString>;
1010
1479
  }, "strip", z.ZodTypeAny, {
1011
1480
  type: "column";
@@ -1013,6 +1482,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1013
1482
  format?: string | undefined;
1014
1483
  label?: string | undefined;
1015
1484
  valueLabels?: string | undefined;
1485
+ valueLabelsMap?: Record<string, string> | undefined;
1016
1486
  nullValueLabel?: string | undefined;
1017
1487
  }, {
1018
1488
  type: "column";
@@ -1020,6 +1490,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1020
1490
  format?: string | undefined;
1021
1491
  label?: string | undefined;
1022
1492
  valueLabels?: string | undefined;
1493
+ valueLabelsMap?: Record<string, string> | undefined;
1023
1494
  nullValueLabel?: string | undefined;
1024
1495
  }>>;
1025
1496
  x: z.ZodObject<{
@@ -1028,6 +1499,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1028
1499
  format: z.ZodOptional<z.ZodString>;
1029
1500
  label: z.ZodOptional<z.ZodString>;
1030
1501
  valueLabels: z.ZodOptional<z.ZodString>;
1502
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1031
1503
  nullValueLabel: z.ZodOptional<z.ZodString>;
1032
1504
  }, "strip", z.ZodTypeAny, {
1033
1505
  type: "column";
@@ -1035,6 +1507,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1035
1507
  format?: string | undefined;
1036
1508
  label?: string | undefined;
1037
1509
  valueLabels?: string | undefined;
1510
+ valueLabelsMap?: Record<string, string> | undefined;
1038
1511
  nullValueLabel?: string | undefined;
1039
1512
  }, {
1040
1513
  type: "column";
@@ -1042,6 +1515,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1042
1515
  format?: string | undefined;
1043
1516
  label?: string | undefined;
1044
1517
  valueLabels?: string | undefined;
1518
+ valueLabelsMap?: Record<string, string> | undefined;
1045
1519
  nullValueLabel?: string | undefined;
1046
1520
  }>;
1047
1521
  y: z.ZodObject<{
@@ -1050,6 +1524,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1050
1524
  format: z.ZodOptional<z.ZodString>;
1051
1525
  label: z.ZodOptional<z.ZodString>;
1052
1526
  valueLabels: z.ZodOptional<z.ZodString>;
1527
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1053
1528
  nullValueLabel: z.ZodOptional<z.ZodString>;
1054
1529
  }, "strip", z.ZodTypeAny, {
1055
1530
  type: "column";
@@ -1057,6 +1532,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1057
1532
  format?: string | undefined;
1058
1533
  label?: string | undefined;
1059
1534
  valueLabels?: string | undefined;
1535
+ valueLabelsMap?: Record<string, string> | undefined;
1060
1536
  nullValueLabel?: string | undefined;
1061
1537
  }, {
1062
1538
  type: "column";
@@ -1064,6 +1540,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1064
1540
  format?: string | undefined;
1065
1541
  label?: string | undefined;
1066
1542
  valueLabels?: string | undefined;
1543
+ valueLabelsMap?: Record<string, string> | undefined;
1067
1544
  nullValueLabel?: string | undefined;
1068
1545
  }>;
1069
1546
  xAxis: z.ZodOptional<z.ZodObject<{
@@ -1073,6 +1550,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1073
1550
  format: z.ZodOptional<z.ZodString>;
1074
1551
  label: z.ZodOptional<z.ZodString>;
1075
1552
  valueLabels: z.ZodOptional<z.ZodString>;
1553
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1076
1554
  nullValueLabel: z.ZodOptional<z.ZodString>;
1077
1555
  }, "strip", z.ZodTypeAny, {
1078
1556
  type: "column";
@@ -1080,6 +1558,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1080
1558
  format?: string | undefined;
1081
1559
  label?: string | undefined;
1082
1560
  valueLabels?: string | undefined;
1561
+ valueLabelsMap?: Record<string, string> | undefined;
1083
1562
  nullValueLabel?: string | undefined;
1084
1563
  }, {
1085
1564
  type: "column";
@@ -1087,6 +1566,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1087
1566
  format?: string | undefined;
1088
1567
  label?: string | undefined;
1089
1568
  valueLabels?: string | undefined;
1569
+ valueLabelsMap?: Record<string, string> | undefined;
1090
1570
  nullValueLabel?: string | undefined;
1091
1571
  }>]>>;
1092
1572
  scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
@@ -1105,6 +1585,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1105
1585
  format?: string | undefined;
1106
1586
  label?: string | undefined;
1107
1587
  valueLabels?: string | undefined;
1588
+ valueLabelsMap?: Record<string, string> | undefined;
1108
1589
  nullValueLabel?: string | undefined;
1109
1590
  } | undefined;
1110
1591
  scale?: "linear" | "log" | undefined;
@@ -1123,6 +1604,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1123
1604
  format?: string | undefined;
1124
1605
  label?: string | undefined;
1125
1606
  valueLabels?: string | undefined;
1607
+ valueLabelsMap?: Record<string, string> | undefined;
1126
1608
  nullValueLabel?: string | undefined;
1127
1609
  } | undefined;
1128
1610
  scale?: "linear" | "log" | undefined;
@@ -1142,6 +1624,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1142
1624
  format: z.ZodOptional<z.ZodString>;
1143
1625
  label: z.ZodOptional<z.ZodString>;
1144
1626
  valueLabels: z.ZodOptional<z.ZodString>;
1627
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1145
1628
  nullValueLabel: z.ZodOptional<z.ZodString>;
1146
1629
  }, "strip", z.ZodTypeAny, {
1147
1630
  type: "column";
@@ -1149,6 +1632,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1149
1632
  format?: string | undefined;
1150
1633
  label?: string | undefined;
1151
1634
  valueLabels?: string | undefined;
1635
+ valueLabelsMap?: Record<string, string> | undefined;
1152
1636
  nullValueLabel?: string | undefined;
1153
1637
  }, {
1154
1638
  type: "column";
@@ -1156,6 +1640,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1156
1640
  format?: string | undefined;
1157
1641
  label?: string | undefined;
1158
1642
  valueLabels?: string | undefined;
1643
+ valueLabelsMap?: Record<string, string> | undefined;
1159
1644
  nullValueLabel?: string | undefined;
1160
1645
  }>]>>;
1161
1646
  scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
@@ -1174,6 +1659,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1174
1659
  format?: string | undefined;
1175
1660
  label?: string | undefined;
1176
1661
  valueLabels?: string | undefined;
1662
+ valueLabelsMap?: Record<string, string> | undefined;
1177
1663
  nullValueLabel?: string | undefined;
1178
1664
  } | undefined;
1179
1665
  scale?: "linear" | "log" | undefined;
@@ -1192,6 +1678,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1192
1678
  format?: string | undefined;
1193
1679
  label?: string | undefined;
1194
1680
  valueLabels?: string | undefined;
1681
+ valueLabelsMap?: Record<string, string> | undefined;
1195
1682
  nullValueLabel?: string | undefined;
1196
1683
  } | undefined;
1197
1684
  scale?: "linear" | "log" | undefined;
@@ -1211,6 +1698,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1211
1698
  format: z.ZodOptional<z.ZodString>;
1212
1699
  label: z.ZodOptional<z.ZodString>;
1213
1700
  valueLabels: z.ZodOptional<z.ZodString>;
1701
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1214
1702
  nullValueLabel: z.ZodOptional<z.ZodString>;
1215
1703
  }, "strip", z.ZodTypeAny, {
1216
1704
  type: "column";
@@ -1218,6 +1706,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1218
1706
  format?: string | undefined;
1219
1707
  label?: string | undefined;
1220
1708
  valueLabels?: string | undefined;
1709
+ valueLabelsMap?: Record<string, string> | undefined;
1221
1710
  nullValueLabel?: string | undefined;
1222
1711
  }, {
1223
1712
  type: "column";
@@ -1225,6 +1714,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1225
1714
  format?: string | undefined;
1226
1715
  label?: string | undefined;
1227
1716
  valueLabels?: string | undefined;
1717
+ valueLabelsMap?: Record<string, string> | undefined;
1228
1718
  nullValueLabel?: string | undefined;
1229
1719
  }>;
1230
1720
  order: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>, "many">>;
@@ -1242,102 +1732,351 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1242
1732
  dotSize?: number | undefined;
1243
1733
  lineWidth?: number | undefined;
1244
1734
  lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1245
- lineColor?: string | undefined;
1246
- fillColor?: string | undefined;
1735
+ lineColor?: string | undefined;
1736
+ fillColor?: string | undefined;
1737
+ }, {
1738
+ dotFill?: string | undefined;
1739
+ dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
1740
+ dotSize?: number | undefined;
1741
+ lineWidth?: number | undefined;
1742
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1743
+ lineColor?: string | undefined;
1744
+ fillColor?: string | undefined;
1745
+ }>>>;
1746
+ allowNullGroup: z.ZodOptional<z.ZodBoolean>;
1747
+ }, "strip", z.ZodTypeAny, {
1748
+ columnName: {
1749
+ type: "column";
1750
+ value: string;
1751
+ format?: string | undefined;
1752
+ label?: string | undefined;
1753
+ valueLabels?: string | undefined;
1754
+ valueLabelsMap?: Record<string, string> | undefined;
1755
+ nullValueLabel?: string | undefined;
1756
+ };
1757
+ order?: (string | number | null)[] | undefined;
1758
+ inheritedAes?: Record<string, {
1759
+ dotFill?: string | undefined;
1760
+ dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
1761
+ dotSize?: number | undefined;
1762
+ lineWidth?: number | undefined;
1763
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1764
+ lineColor?: string | undefined;
1765
+ fillColor?: string | undefined;
1766
+ }> | undefined;
1767
+ allowNullGroup?: boolean | undefined;
1768
+ }, {
1769
+ columnName: {
1770
+ type: "column";
1771
+ value: string;
1772
+ format?: string | undefined;
1773
+ label?: string | undefined;
1774
+ valueLabels?: string | undefined;
1775
+ valueLabelsMap?: Record<string, string> | undefined;
1776
+ nullValueLabel?: string | undefined;
1777
+ };
1778
+ order?: (string | number | null)[] | undefined;
1779
+ inheritedAes?: Record<string, {
1780
+ dotFill?: string | undefined;
1781
+ dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
1782
+ dotSize?: number | undefined;
1783
+ lineWidth?: number | undefined;
1784
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1785
+ lineColor?: string | undefined;
1786
+ fillColor?: string | undefined;
1787
+ }> | undefined;
1788
+ allowNullGroup?: boolean | undefined;
1789
+ }>, "many">>;
1790
+ label: z.ZodOptional<z.ZodObject<{
1791
+ type: z.ZodLiteral<"column">;
1792
+ value: z.ZodString;
1793
+ format: z.ZodOptional<z.ZodString>;
1794
+ label: z.ZodOptional<z.ZodString>;
1795
+ valueLabels: z.ZodOptional<z.ZodString>;
1796
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1797
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1798
+ }, "strip", z.ZodTypeAny, {
1799
+ type: "column";
1800
+ value: string;
1801
+ format?: string | undefined;
1802
+ label?: string | undefined;
1803
+ valueLabels?: string | undefined;
1804
+ valueLabelsMap?: Record<string, string> | undefined;
1805
+ nullValueLabel?: string | undefined;
1806
+ }, {
1807
+ type: "column";
1808
+ value: string;
1809
+ format?: string | undefined;
1810
+ label?: string | undefined;
1811
+ valueLabels?: string | undefined;
1812
+ valueLabelsMap?: Record<string, string> | undefined;
1813
+ nullValueLabel?: string | undefined;
1814
+ }>>;
1815
+ highlight: z.ZodOptional<z.ZodObject<{
1816
+ type: z.ZodLiteral<"column">;
1817
+ value: z.ZodString;
1818
+ format: z.ZodOptional<z.ZodString>;
1819
+ label: z.ZodOptional<z.ZodString>;
1820
+ valueLabels: z.ZodOptional<z.ZodString>;
1821
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1822
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1823
+ }, "strip", z.ZodTypeAny, {
1824
+ type: "column";
1825
+ value: string;
1826
+ format?: string | undefined;
1827
+ label?: string | undefined;
1828
+ valueLabels?: string | undefined;
1829
+ valueLabelsMap?: Record<string, string> | undefined;
1830
+ nullValueLabel?: string | undefined;
1831
+ }, {
1832
+ type: "column";
1833
+ value: string;
1834
+ format?: string | undefined;
1835
+ label?: string | undefined;
1836
+ valueLabels?: string | undefined;
1837
+ valueLabelsMap?: Record<string, string> | undefined;
1838
+ nullValueLabel?: string | undefined;
1839
+ }>>;
1840
+ additionalCurves: z.ZodOptional<z.ZodObject<{
1841
+ curves: z.ZodArray<z.ZodObject<{
1842
+ columnName: z.ZodObject<{
1843
+ type: z.ZodLiteral<"column">;
1844
+ value: z.ZodString;
1845
+ format: z.ZodOptional<z.ZodString>;
1846
+ label: z.ZodOptional<z.ZodString>;
1847
+ valueLabels: z.ZodOptional<z.ZodString>;
1848
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1849
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1850
+ }, "strip", z.ZodTypeAny, {
1851
+ type: "column";
1852
+ value: string;
1853
+ format?: string | undefined;
1854
+ label?: string | undefined;
1855
+ valueLabels?: string | undefined;
1856
+ valueLabelsMap?: Record<string, string> | undefined;
1857
+ nullValueLabel?: string | undefined;
1858
+ }, {
1859
+ type: "column";
1860
+ value: string;
1861
+ format?: string | undefined;
1862
+ label?: string | undefined;
1863
+ valueLabels?: string | undefined;
1864
+ valueLabelsMap?: Record<string, string> | undefined;
1865
+ nullValueLabel?: string | undefined;
1866
+ }>;
1867
+ label: z.ZodString;
1868
+ lineShape: z.ZodOptional<z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>>;
1869
+ lineWidth: z.ZodOptional<z.ZodNumber>;
1870
+ lineColor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1871
+ type: z.ZodLiteral<"grouping">;
1872
+ value: z.ZodString;
1873
+ palette: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1874
+ }, "strip", z.ZodTypeAny, {
1875
+ type: "grouping";
1876
+ value: string;
1877
+ palette?: string[] | undefined;
1878
+ }, {
1879
+ type: "grouping";
1880
+ value: string;
1881
+ palette?: string[] | undefined;
1882
+ }>, z.ZodObject<{
1883
+ columnName: z.ZodObject<{
1884
+ type: z.ZodLiteral<"column">;
1885
+ value: z.ZodString;
1886
+ format: z.ZodOptional<z.ZodString>;
1887
+ label: z.ZodOptional<z.ZodString>;
1888
+ valueLabels: z.ZodOptional<z.ZodString>;
1889
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1890
+ nullValueLabel: z.ZodOptional<z.ZodString>;
1891
+ }, "strip", z.ZodTypeAny, {
1892
+ type: "column";
1893
+ value: string;
1894
+ format?: string | undefined;
1895
+ label?: string | undefined;
1896
+ valueLabels?: string | undefined;
1897
+ valueLabelsMap?: Record<string, string> | undefined;
1898
+ nullValueLabel?: string | undefined;
1899
+ }, {
1900
+ type: "column";
1901
+ value: string;
1902
+ format?: string | undefined;
1903
+ label?: string | undefined;
1904
+ valueLabels?: string | undefined;
1905
+ valueLabelsMap?: Record<string, string> | undefined;
1906
+ nullValueLabel?: string | undefined;
1907
+ }>;
1908
+ domain: z.ZodArray<z.ZodNumber, "many">;
1909
+ range: z.ZodArray<z.ZodString, "many">;
1910
+ type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
1911
+ }, "strip", z.ZodTypeAny, {
1912
+ columnName: {
1913
+ type: "column";
1914
+ value: string;
1915
+ format?: string | undefined;
1916
+ label?: string | undefined;
1917
+ valueLabels?: string | undefined;
1918
+ valueLabelsMap?: Record<string, string> | undefined;
1919
+ nullValueLabel?: string | undefined;
1920
+ };
1921
+ domain: number[];
1922
+ range: string[];
1923
+ type?: "linear" | "log" | undefined;
1924
+ }, {
1925
+ columnName: {
1926
+ type: "column";
1927
+ value: string;
1928
+ format?: string | undefined;
1929
+ label?: string | undefined;
1930
+ valueLabels?: string | undefined;
1931
+ valueLabelsMap?: Record<string, string> | undefined;
1932
+ nullValueLabel?: string | undefined;
1933
+ };
1934
+ domain: number[];
1935
+ range: string[];
1936
+ type?: "linear" | "log" | undefined;
1937
+ }>]>>;
1938
+ opacity: z.ZodOptional<z.ZodNumber>;
1939
+ showDots: z.ZodOptional<z.ZodBoolean>;
1940
+ }, "strip", z.ZodTypeAny, {
1941
+ label: string;
1942
+ columnName: {
1943
+ type: "column";
1944
+ value: string;
1945
+ format?: string | undefined;
1946
+ label?: string | undefined;
1947
+ valueLabels?: string | undefined;
1948
+ valueLabelsMap?: Record<string, string> | undefined;
1949
+ nullValueLabel?: string | undefined;
1950
+ };
1951
+ lineWidth?: number | undefined;
1952
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1953
+ lineColor?: string | {
1954
+ columnName: {
1955
+ type: "column";
1956
+ value: string;
1957
+ format?: string | undefined;
1958
+ label?: string | undefined;
1959
+ valueLabels?: string | undefined;
1960
+ valueLabelsMap?: Record<string, string> | undefined;
1961
+ nullValueLabel?: string | undefined;
1962
+ };
1963
+ domain: number[];
1964
+ range: string[];
1965
+ type?: "linear" | "log" | undefined;
1966
+ } | {
1967
+ type: "grouping";
1968
+ value: string;
1969
+ palette?: string[] | undefined;
1970
+ } | undefined;
1971
+ opacity?: number | undefined;
1972
+ showDots?: boolean | undefined;
1247
1973
  }, {
1248
- dotFill?: string | undefined;
1249
- dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
1250
- dotSize?: number | undefined;
1974
+ label: string;
1975
+ columnName: {
1976
+ type: "column";
1977
+ value: string;
1978
+ format?: string | undefined;
1979
+ label?: string | undefined;
1980
+ valueLabels?: string | undefined;
1981
+ valueLabelsMap?: Record<string, string> | undefined;
1982
+ nullValueLabel?: string | undefined;
1983
+ };
1251
1984
  lineWidth?: number | undefined;
1252
1985
  lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1253
- lineColor?: string | undefined;
1254
- fillColor?: string | undefined;
1255
- }>>>;
1256
- allowNullGroup: z.ZodOptional<z.ZodBoolean>;
1986
+ lineColor?: string | {
1987
+ columnName: {
1988
+ type: "column";
1989
+ value: string;
1990
+ format?: string | undefined;
1991
+ label?: string | undefined;
1992
+ valueLabels?: string | undefined;
1993
+ valueLabelsMap?: Record<string, string> | undefined;
1994
+ nullValueLabel?: string | undefined;
1995
+ };
1996
+ domain: number[];
1997
+ range: string[];
1998
+ type?: "linear" | "log" | undefined;
1999
+ } | {
2000
+ type: "grouping";
2001
+ value: string;
2002
+ palette?: string[] | undefined;
2003
+ } | undefined;
2004
+ opacity?: number | undefined;
2005
+ showDots?: boolean | undefined;
2006
+ }>, "many">;
2007
+ smoothing: z.ZodOptional<z.ZodBoolean>;
1257
2008
  }, "strip", z.ZodTypeAny, {
1258
- columnName: {
1259
- type: "column";
1260
- value: string;
1261
- format?: string | undefined;
1262
- label?: string | undefined;
1263
- valueLabels?: string | undefined;
1264
- nullValueLabel?: string | undefined;
1265
- };
1266
- order?: (string | number | null)[] | undefined;
1267
- inheritedAes?: Record<string, {
1268
- dotFill?: string | undefined;
1269
- dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
1270
- dotSize?: number | undefined;
2009
+ curves: {
2010
+ label: string;
2011
+ columnName: {
2012
+ type: "column";
2013
+ value: string;
2014
+ format?: string | undefined;
2015
+ label?: string | undefined;
2016
+ valueLabels?: string | undefined;
2017
+ valueLabelsMap?: Record<string, string> | undefined;
2018
+ nullValueLabel?: string | undefined;
2019
+ };
1271
2020
  lineWidth?: number | undefined;
1272
2021
  lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1273
- lineColor?: string | undefined;
1274
- fillColor?: string | undefined;
1275
- }> | undefined;
1276
- allowNullGroup?: boolean | undefined;
2022
+ lineColor?: string | {
2023
+ columnName: {
2024
+ type: "column";
2025
+ value: string;
2026
+ format?: string | undefined;
2027
+ label?: string | undefined;
2028
+ valueLabels?: string | undefined;
2029
+ valueLabelsMap?: Record<string, string> | undefined;
2030
+ nullValueLabel?: string | undefined;
2031
+ };
2032
+ domain: number[];
2033
+ range: string[];
2034
+ type?: "linear" | "log" | undefined;
2035
+ } | {
2036
+ type: "grouping";
2037
+ value: string;
2038
+ palette?: string[] | undefined;
2039
+ } | undefined;
2040
+ opacity?: number | undefined;
2041
+ showDots?: boolean | undefined;
2042
+ }[];
2043
+ smoothing?: boolean | undefined;
1277
2044
  }, {
1278
- columnName: {
1279
- type: "column";
1280
- value: string;
1281
- format?: string | undefined;
1282
- label?: string | undefined;
1283
- valueLabels?: string | undefined;
1284
- nullValueLabel?: string | undefined;
1285
- };
1286
- order?: (string | number | null)[] | undefined;
1287
- inheritedAes?: Record<string, {
1288
- dotFill?: string | undefined;
1289
- dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | undefined;
1290
- dotSize?: number | undefined;
2045
+ curves: {
2046
+ label: string;
2047
+ columnName: {
2048
+ type: "column";
2049
+ value: string;
2050
+ format?: string | undefined;
2051
+ label?: string | undefined;
2052
+ valueLabels?: string | undefined;
2053
+ valueLabelsMap?: Record<string, string> | undefined;
2054
+ nullValueLabel?: string | undefined;
2055
+ };
1291
2056
  lineWidth?: number | undefined;
1292
2057
  lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1293
- lineColor?: string | undefined;
1294
- fillColor?: string | undefined;
1295
- }> | undefined;
1296
- allowNullGroup?: boolean | undefined;
1297
- }>, "many">>;
1298
- label: z.ZodOptional<z.ZodObject<{
1299
- type: z.ZodLiteral<"column">;
1300
- value: z.ZodString;
1301
- format: z.ZodOptional<z.ZodString>;
1302
- label: z.ZodOptional<z.ZodString>;
1303
- valueLabels: z.ZodOptional<z.ZodString>;
1304
- nullValueLabel: z.ZodOptional<z.ZodString>;
1305
- }, "strip", z.ZodTypeAny, {
1306
- type: "column";
1307
- value: string;
1308
- format?: string | undefined;
1309
- label?: string | undefined;
1310
- valueLabels?: string | undefined;
1311
- nullValueLabel?: string | undefined;
1312
- }, {
1313
- type: "column";
1314
- value: string;
1315
- format?: string | undefined;
1316
- label?: string | undefined;
1317
- valueLabels?: string | undefined;
1318
- nullValueLabel?: string | undefined;
1319
- }>>;
1320
- highlight: z.ZodOptional<z.ZodObject<{
1321
- type: z.ZodLiteral<"column">;
1322
- value: z.ZodString;
1323
- format: z.ZodOptional<z.ZodString>;
1324
- label: z.ZodOptional<z.ZodString>;
1325
- valueLabels: z.ZodOptional<z.ZodString>;
1326
- nullValueLabel: z.ZodOptional<z.ZodString>;
1327
- }, "strip", z.ZodTypeAny, {
1328
- type: "column";
1329
- value: string;
1330
- format?: string | undefined;
1331
- label?: string | undefined;
1332
- valueLabels?: string | undefined;
1333
- nullValueLabel?: string | undefined;
1334
- }, {
1335
- type: "column";
1336
- value: string;
1337
- format?: string | undefined;
1338
- label?: string | undefined;
1339
- valueLabels?: string | undefined;
1340
- nullValueLabel?: string | undefined;
2058
+ lineColor?: string | {
2059
+ columnName: {
2060
+ type: "column";
2061
+ value: string;
2062
+ format?: string | undefined;
2063
+ label?: string | undefined;
2064
+ valueLabels?: string | undefined;
2065
+ valueLabelsMap?: Record<string, string> | undefined;
2066
+ nullValueLabel?: string | undefined;
2067
+ };
2068
+ domain: number[];
2069
+ range: string[];
2070
+ type?: "linear" | "log" | undefined;
2071
+ } | {
2072
+ type: "grouping";
2073
+ value: string;
2074
+ palette?: string[] | undefined;
2075
+ } | undefined;
2076
+ opacity?: number | undefined;
2077
+ showDots?: boolean | undefined;
2078
+ }[];
2079
+ smoothing?: boolean | undefined;
1341
2080
  }>>;
1342
2081
  layers: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1343
2082
  type: z.ZodLiteral<"dots">;
@@ -1361,6 +2100,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1361
2100
  format: z.ZodOptional<z.ZodString>;
1362
2101
  label: z.ZodOptional<z.ZodString>;
1363
2102
  valueLabels: z.ZodOptional<z.ZodString>;
2103
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1364
2104
  nullValueLabel: z.ZodOptional<z.ZodString>;
1365
2105
  }, "strip", z.ZodTypeAny, {
1366
2106
  type: "column";
@@ -1368,6 +2108,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1368
2108
  format?: string | undefined;
1369
2109
  label?: string | undefined;
1370
2110
  valueLabels?: string | undefined;
2111
+ valueLabelsMap?: Record<string, string> | undefined;
1371
2112
  nullValueLabel?: string | undefined;
1372
2113
  }, {
1373
2114
  type: "column";
@@ -1375,6 +2116,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1375
2116
  format?: string | undefined;
1376
2117
  label?: string | undefined;
1377
2118
  valueLabels?: string | undefined;
2119
+ valueLabelsMap?: Record<string, string> | undefined;
1378
2120
  nullValueLabel?: string | undefined;
1379
2121
  }>;
1380
2122
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -1387,6 +2129,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1387
2129
  format?: string | undefined;
1388
2130
  label?: string | undefined;
1389
2131
  valueLabels?: string | undefined;
2132
+ valueLabelsMap?: Record<string, string> | undefined;
1390
2133
  nullValueLabel?: string | undefined;
1391
2134
  };
1392
2135
  domain: number[];
@@ -1399,6 +2142,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1399
2142
  format?: string | undefined;
1400
2143
  label?: string | undefined;
1401
2144
  valueLabels?: string | undefined;
2145
+ valueLabelsMap?: Record<string, string> | undefined;
1402
2146
  nullValueLabel?: string | undefined;
1403
2147
  };
1404
2148
  domain: number[];
@@ -1425,6 +2169,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1425
2169
  format: z.ZodOptional<z.ZodString>;
1426
2170
  label: z.ZodOptional<z.ZodString>;
1427
2171
  valueLabels: z.ZodOptional<z.ZodString>;
2172
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1428
2173
  nullValueLabel: z.ZodOptional<z.ZodString>;
1429
2174
  }, "strip", z.ZodTypeAny, {
1430
2175
  type: "column";
@@ -1432,6 +2177,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1432
2177
  format?: string | undefined;
1433
2178
  label?: string | undefined;
1434
2179
  valueLabels?: string | undefined;
2180
+ valueLabelsMap?: Record<string, string> | undefined;
1435
2181
  nullValueLabel?: string | undefined;
1436
2182
  }, {
1437
2183
  type: "column";
@@ -1439,6 +2185,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1439
2185
  format?: string | undefined;
1440
2186
  label?: string | undefined;
1441
2187
  valueLabels?: string | undefined;
2188
+ valueLabelsMap?: Record<string, string> | undefined;
1442
2189
  nullValueLabel?: string | undefined;
1443
2190
  }>;
1444
2191
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -1451,6 +2198,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1451
2198
  format?: string | undefined;
1452
2199
  label?: string | undefined;
1453
2200
  valueLabels?: string | undefined;
2201
+ valueLabelsMap?: Record<string, string> | undefined;
1454
2202
  nullValueLabel?: string | undefined;
1455
2203
  };
1456
2204
  domain: number[];
@@ -1463,6 +2211,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1463
2211
  format?: string | undefined;
1464
2212
  label?: string | undefined;
1465
2213
  valueLabels?: string | undefined;
2214
+ valueLabelsMap?: Record<string, string> | undefined;
1466
2215
  nullValueLabel?: string | undefined;
1467
2216
  };
1468
2217
  domain: number[];
@@ -1477,6 +2226,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1477
2226
  format?: string | undefined;
1478
2227
  label?: string | undefined;
1479
2228
  valueLabels?: string | undefined;
2229
+ valueLabelsMap?: Record<string, string> | undefined;
1480
2230
  nullValueLabel?: string | undefined;
1481
2231
  };
1482
2232
  domain: number[];
@@ -1499,6 +2249,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1499
2249
  format?: string | undefined;
1500
2250
  label?: string | undefined;
1501
2251
  valueLabels?: string | undefined;
2252
+ valueLabelsMap?: Record<string, string> | undefined;
1502
2253
  nullValueLabel?: string | undefined;
1503
2254
  };
1504
2255
  domain: number[];
@@ -1513,6 +2264,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1513
2264
  format?: string | undefined;
1514
2265
  label?: string | undefined;
1515
2266
  valueLabels?: string | undefined;
2267
+ valueLabelsMap?: Record<string, string> | undefined;
1516
2268
  nullValueLabel?: string | undefined;
1517
2269
  };
1518
2270
  domain: number[];
@@ -1535,6 +2287,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1535
2287
  format?: string | undefined;
1536
2288
  label?: string | undefined;
1537
2289
  valueLabels?: string | undefined;
2290
+ valueLabelsMap?: Record<string, string> | undefined;
1538
2291
  nullValueLabel?: string | undefined;
1539
2292
  };
1540
2293
  domain: number[];
@@ -1552,6 +2305,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1552
2305
  format?: string | undefined;
1553
2306
  label?: string | undefined;
1554
2307
  valueLabels?: string | undefined;
2308
+ valueLabelsMap?: Record<string, string> | undefined;
1555
2309
  nullValueLabel?: string | undefined;
1556
2310
  };
1557
2311
  domain: number[];
@@ -1574,6 +2328,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1574
2328
  format?: string | undefined;
1575
2329
  label?: string | undefined;
1576
2330
  valueLabels?: string | undefined;
2331
+ valueLabelsMap?: Record<string, string> | undefined;
1577
2332
  nullValueLabel?: string | undefined;
1578
2333
  };
1579
2334
  domain: number[];
@@ -1591,6 +2346,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1591
2346
  format?: string | undefined;
1592
2347
  label?: string | undefined;
1593
2348
  valueLabels?: string | undefined;
2349
+ valueLabelsMap?: Record<string, string> | undefined;
1594
2350
  nullValueLabel?: string | undefined;
1595
2351
  };
1596
2352
  domain: number[];
@@ -1613,6 +2369,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1613
2369
  format?: string | undefined;
1614
2370
  label?: string | undefined;
1615
2371
  valueLabels?: string | undefined;
2372
+ valueLabelsMap?: Record<string, string> | undefined;
1616
2373
  nullValueLabel?: string | undefined;
1617
2374
  };
1618
2375
  domain: number[];
@@ -1645,6 +2402,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1645
2402
  format: z.ZodOptional<z.ZodString>;
1646
2403
  label: z.ZodOptional<z.ZodString>;
1647
2404
  valueLabels: z.ZodOptional<z.ZodString>;
2405
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1648
2406
  nullValueLabel: z.ZodOptional<z.ZodString>;
1649
2407
  }, "strip", z.ZodTypeAny, {
1650
2408
  type: "column";
@@ -1652,6 +2410,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1652
2410
  format?: string | undefined;
1653
2411
  label?: string | undefined;
1654
2412
  valueLabels?: string | undefined;
2413
+ valueLabelsMap?: Record<string, string> | undefined;
1655
2414
  nullValueLabel?: string | undefined;
1656
2415
  }, {
1657
2416
  type: "column";
@@ -1659,6 +2418,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1659
2418
  format?: string | undefined;
1660
2419
  label?: string | undefined;
1661
2420
  valueLabels?: string | undefined;
2421
+ valueLabelsMap?: Record<string, string> | undefined;
1662
2422
  nullValueLabel?: string | undefined;
1663
2423
  }>;
1664
2424
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -1671,6 +2431,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1671
2431
  format?: string | undefined;
1672
2432
  label?: string | undefined;
1673
2433
  valueLabels?: string | undefined;
2434
+ valueLabelsMap?: Record<string, string> | undefined;
1674
2435
  nullValueLabel?: string | undefined;
1675
2436
  };
1676
2437
  domain: number[];
@@ -1683,6 +2444,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1683
2444
  format?: string | undefined;
1684
2445
  label?: string | undefined;
1685
2446
  valueLabels?: string | undefined;
2447
+ valueLabelsMap?: Record<string, string> | undefined;
1686
2448
  nullValueLabel?: string | undefined;
1687
2449
  };
1688
2450
  domain: number[];
@@ -1700,6 +2462,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1700
2462
  format?: string | undefined;
1701
2463
  label?: string | undefined;
1702
2464
  valueLabels?: string | undefined;
2465
+ valueLabelsMap?: Record<string, string> | undefined;
1703
2466
  nullValueLabel?: string | undefined;
1704
2467
  };
1705
2468
  domain: number[];
@@ -1721,6 +2484,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1721
2484
  format?: string | undefined;
1722
2485
  label?: string | undefined;
1723
2486
  valueLabels?: string | undefined;
2487
+ valueLabelsMap?: Record<string, string> | undefined;
1724
2488
  nullValueLabel?: string | undefined;
1725
2489
  };
1726
2490
  domain: number[];
@@ -1745,6 +2509,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1745
2509
  format?: string | undefined;
1746
2510
  label?: string | undefined;
1747
2511
  valueLabels?: string | undefined;
2512
+ valueLabelsMap?: Record<string, string> | undefined;
1748
2513
  nullValueLabel?: string | undefined;
1749
2514
  };
1750
2515
  domain: number[];
@@ -1770,6 +2535,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1770
2535
  format?: string | undefined;
1771
2536
  label?: string | undefined;
1772
2537
  valueLabels?: string | undefined;
2538
+ valueLabelsMap?: Record<string, string> | undefined;
1773
2539
  nullValueLabel?: string | undefined;
1774
2540
  };
1775
2541
  domain: number[];
@@ -1797,6 +2563,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1797
2563
  format?: string | undefined;
1798
2564
  label?: string | undefined;
1799
2565
  valueLabels?: string | undefined;
2566
+ valueLabelsMap?: Record<string, string> | undefined;
1800
2567
  nullValueLabel?: string | undefined;
1801
2568
  };
1802
2569
  y: {
@@ -1805,6 +2572,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1805
2572
  format?: string | undefined;
1806
2573
  label?: string | undefined;
1807
2574
  valueLabels?: string | undefined;
2575
+ valueLabelsMap?: Record<string, string> | undefined;
1808
2576
  nullValueLabel?: string | undefined;
1809
2577
  };
1810
2578
  layers: ({
@@ -1817,6 +2585,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1817
2585
  format?: string | undefined;
1818
2586
  label?: string | undefined;
1819
2587
  valueLabels?: string | undefined;
2588
+ valueLabelsMap?: Record<string, string> | undefined;
1820
2589
  nullValueLabel?: string | undefined;
1821
2590
  };
1822
2591
  domain: number[];
@@ -1839,6 +2608,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1839
2608
  format?: string | undefined;
1840
2609
  label?: string | undefined;
1841
2610
  valueLabels?: string | undefined;
2611
+ valueLabelsMap?: Record<string, string> | undefined;
1842
2612
  nullValueLabel?: string | undefined;
1843
2613
  };
1844
2614
  domain: number[];
@@ -1858,6 +2628,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1858
2628
  format?: string | undefined;
1859
2629
  label?: string | undefined;
1860
2630
  valueLabels?: string | undefined;
2631
+ valueLabelsMap?: Record<string, string> | undefined;
1861
2632
  nullValueLabel?: string | undefined;
1862
2633
  };
1863
2634
  domain: number[];
@@ -1882,6 +2653,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1882
2653
  format?: string | undefined;
1883
2654
  label?: string | undefined;
1884
2655
  valueLabels?: string | undefined;
2656
+ valueLabelsMap?: Record<string, string> | undefined;
1885
2657
  nullValueLabel?: string | undefined;
1886
2658
  } | undefined;
1887
2659
  grouping?: {
@@ -1891,6 +2663,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1891
2663
  format?: string | undefined;
1892
2664
  label?: string | undefined;
1893
2665
  valueLabels?: string | undefined;
2666
+ valueLabelsMap?: Record<string, string> | undefined;
1894
2667
  nullValueLabel?: string | undefined;
1895
2668
  };
1896
2669
  order?: (string | number | null)[] | undefined;
@@ -1917,6 +2690,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1917
2690
  format?: string | undefined;
1918
2691
  label?: string | undefined;
1919
2692
  valueLabels?: string | undefined;
2693
+ valueLabelsMap?: Record<string, string> | undefined;
1920
2694
  nullValueLabel?: string | undefined;
1921
2695
  }[] | undefined;
1922
2696
  } | undefined;
@@ -1929,6 +2703,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1929
2703
  format?: string | undefined;
1930
2704
  label?: string | undefined;
1931
2705
  valueLabels?: string | undefined;
2706
+ valueLabelsMap?: Record<string, string> | undefined;
1932
2707
  nullValueLabel?: string | undefined;
1933
2708
  } | undefined;
1934
2709
  xAxis?: {
@@ -1938,6 +2713,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1938
2713
  format?: string | undefined;
1939
2714
  label?: string | undefined;
1940
2715
  valueLabels?: string | undefined;
2716
+ valueLabelsMap?: Record<string, string> | undefined;
1941
2717
  nullValueLabel?: string | undefined;
1942
2718
  } | undefined;
1943
2719
  scale?: "linear" | "log" | undefined;
@@ -1957,6 +2733,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1957
2733
  format?: string | undefined;
1958
2734
  label?: string | undefined;
1959
2735
  valueLabels?: string | undefined;
2736
+ valueLabelsMap?: Record<string, string> | undefined;
1960
2737
  nullValueLabel?: string | undefined;
1961
2738
  } | undefined;
1962
2739
  scale?: "linear" | "log" | undefined;
@@ -1975,8 +2752,46 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1975
2752
  format?: string | undefined;
1976
2753
  label?: string | undefined;
1977
2754
  valueLabels?: string | undefined;
2755
+ valueLabelsMap?: Record<string, string> | undefined;
1978
2756
  nullValueLabel?: string | undefined;
1979
2757
  } | undefined;
2758
+ additionalCurves?: {
2759
+ curves: {
2760
+ label: string;
2761
+ columnName: {
2762
+ type: "column";
2763
+ value: string;
2764
+ format?: string | undefined;
2765
+ label?: string | undefined;
2766
+ valueLabels?: string | undefined;
2767
+ valueLabelsMap?: Record<string, string> | undefined;
2768
+ nullValueLabel?: string | undefined;
2769
+ };
2770
+ lineWidth?: number | undefined;
2771
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
2772
+ lineColor?: string | {
2773
+ columnName: {
2774
+ type: "column";
2775
+ value: string;
2776
+ format?: string | undefined;
2777
+ label?: string | undefined;
2778
+ valueLabels?: string | undefined;
2779
+ valueLabelsMap?: Record<string, string> | undefined;
2780
+ nullValueLabel?: string | undefined;
2781
+ };
2782
+ domain: number[];
2783
+ range: string[];
2784
+ type?: "linear" | "log" | undefined;
2785
+ } | {
2786
+ type: "grouping";
2787
+ value: string;
2788
+ palette?: string[] | undefined;
2789
+ } | undefined;
2790
+ opacity?: number | undefined;
2791
+ showDots?: boolean | undefined;
2792
+ }[];
2793
+ smoothing?: boolean | undefined;
2794
+ } | undefined;
1980
2795
  }, {
1981
2796
  type: "scatterplot-umap";
1982
2797
  title: {
@@ -1990,6 +2805,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1990
2805
  format?: string | undefined;
1991
2806
  label?: string | undefined;
1992
2807
  valueLabels?: string | undefined;
2808
+ valueLabelsMap?: Record<string, string> | undefined;
1993
2809
  nullValueLabel?: string | undefined;
1994
2810
  };
1995
2811
  y: {
@@ -1998,6 +2814,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
1998
2814
  format?: string | undefined;
1999
2815
  label?: string | undefined;
2000
2816
  valueLabels?: string | undefined;
2817
+ valueLabelsMap?: Record<string, string> | undefined;
2001
2818
  nullValueLabel?: string | undefined;
2002
2819
  };
2003
2820
  layers: ({
@@ -2010,6 +2827,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2010
2827
  format?: string | undefined;
2011
2828
  label?: string | undefined;
2012
2829
  valueLabels?: string | undefined;
2830
+ valueLabelsMap?: Record<string, string> | undefined;
2013
2831
  nullValueLabel?: string | undefined;
2014
2832
  };
2015
2833
  domain: number[];
@@ -2032,6 +2850,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2032
2850
  format?: string | undefined;
2033
2851
  label?: string | undefined;
2034
2852
  valueLabels?: string | undefined;
2853
+ valueLabelsMap?: Record<string, string> | undefined;
2035
2854
  nullValueLabel?: string | undefined;
2036
2855
  };
2037
2856
  domain: number[];
@@ -2051,6 +2870,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2051
2870
  format?: string | undefined;
2052
2871
  label?: string | undefined;
2053
2872
  valueLabels?: string | undefined;
2873
+ valueLabelsMap?: Record<string, string> | undefined;
2054
2874
  nullValueLabel?: string | undefined;
2055
2875
  };
2056
2876
  domain: number[];
@@ -2075,6 +2895,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2075
2895
  format?: string | undefined;
2076
2896
  label?: string | undefined;
2077
2897
  valueLabels?: string | undefined;
2898
+ valueLabelsMap?: Record<string, string> | undefined;
2078
2899
  nullValueLabel?: string | undefined;
2079
2900
  } | undefined;
2080
2901
  grouping?: {
@@ -2084,6 +2905,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2084
2905
  format?: string | undefined;
2085
2906
  label?: string | undefined;
2086
2907
  valueLabels?: string | undefined;
2908
+ valueLabelsMap?: Record<string, string> | undefined;
2087
2909
  nullValueLabel?: string | undefined;
2088
2910
  };
2089
2911
  order?: (string | number | null)[] | undefined;
@@ -2110,6 +2932,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2110
2932
  format?: string | undefined;
2111
2933
  label?: string | undefined;
2112
2934
  valueLabels?: string | undefined;
2935
+ valueLabelsMap?: Record<string, string> | undefined;
2113
2936
  nullValueLabel?: string | undefined;
2114
2937
  }[] | undefined;
2115
2938
  } | undefined;
@@ -2122,6 +2945,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2122
2945
  format?: string | undefined;
2123
2946
  label?: string | undefined;
2124
2947
  valueLabels?: string | undefined;
2948
+ valueLabelsMap?: Record<string, string> | undefined;
2125
2949
  nullValueLabel?: string | undefined;
2126
2950
  } | undefined;
2127
2951
  xAxis?: {
@@ -2131,6 +2955,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2131
2955
  format?: string | undefined;
2132
2956
  label?: string | undefined;
2133
2957
  valueLabels?: string | undefined;
2958
+ valueLabelsMap?: Record<string, string> | undefined;
2134
2959
  nullValueLabel?: string | undefined;
2135
2960
  } | undefined;
2136
2961
  scale?: "linear" | "log" | undefined;
@@ -2150,6 +2975,7 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2150
2975
  format?: string | undefined;
2151
2976
  label?: string | undefined;
2152
2977
  valueLabels?: string | undefined;
2978
+ valueLabelsMap?: Record<string, string> | undefined;
2153
2979
  nullValueLabel?: string | undefined;
2154
2980
  } | undefined;
2155
2981
  scale?: "linear" | "log" | undefined;
@@ -2168,8 +2994,46 @@ export declare const ScatterplotUmapSettingsSchema: z.ZodObject<{
2168
2994
  format?: string | undefined;
2169
2995
  label?: string | undefined;
2170
2996
  valueLabels?: string | undefined;
2997
+ valueLabelsMap?: Record<string, string> | undefined;
2171
2998
  nullValueLabel?: string | undefined;
2172
2999
  } | undefined;
3000
+ additionalCurves?: {
3001
+ curves: {
3002
+ label: string;
3003
+ columnName: {
3004
+ type: "column";
3005
+ value: string;
3006
+ format?: string | undefined;
3007
+ label?: string | undefined;
3008
+ valueLabels?: string | undefined;
3009
+ valueLabelsMap?: Record<string, string> | undefined;
3010
+ nullValueLabel?: string | undefined;
3011
+ };
3012
+ lineWidth?: number | undefined;
3013
+ lineShape?: "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
3014
+ lineColor?: string | {
3015
+ columnName: {
3016
+ type: "column";
3017
+ value: string;
3018
+ format?: string | undefined;
3019
+ label?: string | undefined;
3020
+ valueLabels?: string | undefined;
3021
+ valueLabelsMap?: Record<string, string> | undefined;
3022
+ nullValueLabel?: string | undefined;
3023
+ };
3024
+ domain: number[];
3025
+ range: string[];
3026
+ type?: "linear" | "log" | undefined;
3027
+ } | {
3028
+ type: "grouping";
3029
+ value: string;
3030
+ palette?: string[] | undefined;
3031
+ } | undefined;
3032
+ opacity?: number | undefined;
3033
+ showDots?: boolean | undefined;
3034
+ }[];
3035
+ smoothing?: boolean | undefined;
3036
+ } | undefined;
2173
3037
  }>;
2174
3038
  export type ScatterplotUmapSettings = z.infer<typeof ScatterplotUmapSettingsSchema>;
2175
3039
  export type ScatterplotUmapLegendInfo = ScatterplotLegendInfo;