@milaboratories/miplots4 1.1.0 → 1.2.1

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 (181) 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/bubble/BubbleSettingsImpl.d.ts +3 -0
  5. package/dist/bubble/BubbleSettingsImpl.d.ts.map +1 -1
  6. package/dist/bubble/BubbleSettingsImpl.js +4 -1
  7. package/dist/bubble/BubbleSettingsImpl.js.map +1 -1
  8. package/dist/bubble/ChartRenderer.d.ts +2 -12
  9. package/dist/bubble/ChartRenderer.d.ts.map +1 -1
  10. package/dist/bubble/ChartRenderer.js +13 -13
  11. package/dist/bubble/ChartRenderer.js.map +1 -1
  12. package/dist/bubble/getGroupedCellsData.d.ts +1 -1
  13. package/dist/bubble/getGroupedCellsData.d.ts.map +1 -1
  14. package/dist/bubble/getGroupedCellsData.js +20 -14
  15. package/dist/bubble/getGroupedCellsData.js.map +1 -1
  16. package/dist/bubble/index.d.ts.map +1 -1
  17. package/dist/bubble/index.js +6 -10
  18. package/dist/bubble/index.js.map +1 -1
  19. package/dist/common/ContinuousAxis.d.ts +3 -1
  20. package/dist/common/ContinuousAxis.d.ts.map +1 -1
  21. package/dist/common/ContinuousAxis.js +8 -8
  22. package/dist/common/ContinuousAxis.js.map +1 -1
  23. package/dist/common/Legend.d.ts +12 -1
  24. package/dist/common/Legend.d.ts.map +1 -1
  25. package/dist/common/Legend.js +14 -6
  26. package/dist/common/Legend.js.map +1 -1
  27. package/dist/heatmap/ChartRenderer.d.ts +2 -12
  28. package/dist/heatmap/ChartRenderer.d.ts.map +1 -1
  29. package/dist/heatmap/ChartRenderer.js +26 -26
  30. package/dist/heatmap/ChartRenderer.js.map +1 -1
  31. package/dist/heatmap/HeatmapSettingsImpl.d.ts +3 -0
  32. package/dist/heatmap/HeatmapSettingsImpl.d.ts.map +1 -1
  33. package/dist/heatmap/HeatmapSettingsImpl.js +5 -2
  34. package/dist/heatmap/HeatmapSettingsImpl.js.map +1 -1
  35. package/dist/heatmap/fillCellsData.d.ts +6 -1
  36. package/dist/heatmap/fillCellsData.d.ts.map +1 -1
  37. package/dist/heatmap/fillCellsData.js +135 -96
  38. package/dist/heatmap/fillCellsData.js.map +1 -1
  39. package/dist/heatmap/getCells.d.ts +4 -1
  40. package/dist/heatmap/getCells.d.ts.map +1 -1
  41. package/dist/heatmap/getCells.js +19 -16
  42. package/dist/heatmap/getCells.js.map +1 -1
  43. package/dist/heatmap/index.d.ts.map +1 -1
  44. package/dist/heatmap/index.js +32 -34
  45. package/dist/heatmap/index.js.map +1 -1
  46. package/dist/index.d.ts +2 -2
  47. package/dist/index.d.ts.map +1 -1
  48. package/dist/selection/ChartRenderer.d.ts +90 -0
  49. package/dist/selection/ChartRenderer.d.ts.map +1 -0
  50. package/dist/selection/ChartRenderer.js +254 -0
  51. package/dist/selection/ChartRenderer.js.map +1 -0
  52. package/dist/selection/SelectionSettingsImpl.d.ts +53 -0
  53. package/dist/selection/SelectionSettingsImpl.d.ts.map +1 -0
  54. package/dist/selection/SelectionSettingsImpl.js +47 -0
  55. package/dist/selection/SelectionSettingsImpl.js.map +1 -0
  56. package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts +8 -0
  57. package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts.map +1 -0
  58. package/dist/selection/components/Chart/Bars/GroupSelectedBars.js +57 -0
  59. package/dist/selection/components/Chart/Bars/GroupSelectedBars.js.map +1 -0
  60. package/dist/selection/components/Chart/Bars/StackedBars.d.ts +12 -0
  61. package/dist/selection/components/Chart/Bars/StackedBars.d.ts.map +1 -0
  62. package/dist/selection/components/Chart/Bars/StackedBars.js +58 -0
  63. package/dist/selection/components/Chart/Bars/StackedBars.js.map +1 -0
  64. package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts +6 -0
  65. package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts.map +1 -0
  66. package/dist/selection/components/Chart/Bars/UngroupedBars.js +38 -0
  67. package/dist/selection/components/Chart/Bars/UngroupedBars.js.map +1 -0
  68. package/dist/selection/components/Chart/Bars.d.ts +10 -0
  69. package/dist/selection/components/Chart/Bars.d.ts.map +1 -0
  70. package/dist/selection/components/Chart/Bars.js +48 -0
  71. package/dist/selection/components/Chart/Bars.js.map +1 -0
  72. package/dist/selection/components/Chart/ChartAxes.d.ts +7 -0
  73. package/dist/selection/components/Chart/ChartAxes.d.ts.map +1 -0
  74. package/dist/selection/components/Chart/ChartAxes.js +51 -0
  75. package/dist/selection/components/Chart/ChartAxes.js.map +1 -0
  76. package/dist/selection/components/Chart/ChartFrame.d.ts +9 -0
  77. package/dist/selection/components/Chart/ChartFrame.d.ts.map +1 -0
  78. package/dist/selection/components/Chart/ChartFrame.js +41 -0
  79. package/dist/selection/components/Chart/ChartFrame.js.map +1 -0
  80. package/dist/selection/components/Chart/Dividers.d.ts +8 -0
  81. package/dist/selection/components/Chart/Dividers.d.ts.map +1 -0
  82. package/dist/selection/components/Chart/Dividers.js +27 -0
  83. package/dist/selection/components/Chart/Dividers.js.map +1 -0
  84. package/dist/selection/components/Chart/Gridlines.d.ts +10 -0
  85. package/dist/selection/components/Chart/Gridlines.d.ts.map +1 -0
  86. package/dist/selection/components/Chart/Gridlines.js +32 -0
  87. package/dist/selection/components/Chart/Gridlines.js.map +1 -0
  88. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts +9 -0
  89. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts.map +1 -0
  90. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js +36 -0
  91. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js.map +1 -0
  92. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts +6 -0
  93. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts.map +1 -0
  94. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js +22 -0
  95. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js.map +1 -0
  96. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts +10 -0
  97. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts.map +1 -0
  98. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js +33 -0
  99. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js.map +1 -0
  100. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts +10 -0
  101. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts.map +1 -0
  102. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js +65 -0
  103. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js.map +1 -0
  104. package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts +10 -0
  105. package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts.map +1 -0
  106. package/dist/selection/components/Chart/Ribbons/ribbonPath.js +13 -0
  107. package/dist/selection/components/Chart/Ribbons/ribbonPath.js.map +1 -0
  108. package/dist/selection/components/Chart/Ribbons.d.ts +9 -0
  109. package/dist/selection/components/Chart/Ribbons.d.ts.map +1 -0
  110. package/dist/selection/components/Chart/Ribbons.js +58 -0
  111. package/dist/selection/components/Chart/Ribbons.js.map +1 -0
  112. package/dist/selection/components/Chart/StageCounts.d.ts +7 -0
  113. package/dist/selection/components/Chart/StageCounts.d.ts.map +1 -0
  114. package/dist/selection/components/Chart/StageCounts.js +20 -0
  115. package/dist/selection/components/Chart/StageCounts.js.map +1 -0
  116. package/dist/selection/components/Chart/types.d.ts +132 -0
  117. package/dist/selection/components/Chart/types.d.ts.map +1 -0
  118. package/dist/selection/components/Chart.d.ts +22 -0
  119. package/dist/selection/components/Chart.d.ts.map +1 -0
  120. package/dist/selection/components/Chart.js +97 -0
  121. package/dist/selection/components/Chart.js.map +1 -0
  122. package/dist/selection/components/ChartsGroup.d.ts +18 -0
  123. package/dist/selection/components/ChartsGroup.d.ts.map +1 -0
  124. package/dist/selection/components/ChartsGroup.js +181 -0
  125. package/dist/selection/components/ChartsGroup.js.map +1 -0
  126. package/dist/selection/components/FacetCell.d.ts +22 -0
  127. package/dist/selection/components/FacetCell.d.ts.map +1 -0
  128. package/dist/selection/components/FacetCell.js +18 -0
  129. package/dist/selection/components/FacetCell.js.map +1 -0
  130. package/dist/selection/components/types.d.ts +58 -0
  131. package/dist/selection/components/types.d.ts.map +1 -0
  132. package/dist/selection/constants.d.ts +25 -0
  133. package/dist/selection/constants.d.ts.map +1 -0
  134. package/dist/selection/constants.js +4 -0
  135. package/dist/selection/constants.js.map +1 -0
  136. package/dist/selection/createSelectionData.d.ts +50 -0
  137. package/dist/selection/createSelectionData.d.ts.map +1 -0
  138. package/dist/selection/createSelectionData.js +92 -0
  139. package/dist/selection/createSelectionData.js.map +1 -0
  140. package/dist/selection/index.d.ts +26 -0
  141. package/dist/selection/index.d.ts.map +1 -0
  142. package/dist/selection/index.js +96 -0
  143. package/dist/selection/index.js.map +1 -0
  144. package/dist/selection/utils.d.ts +4 -0
  145. package/dist/selection/utils.d.ts.map +1 -0
  146. package/dist/selection/utils.js +13 -0
  147. package/dist/selection/utils.js.map +1 -0
  148. package/dist/types/bubble.d.ts +131 -0
  149. package/dist/types/bubble.d.ts.map +1 -1
  150. package/dist/types/bubble.js +3 -0
  151. package/dist/types/bubble.js.map +1 -1
  152. package/dist/types/common.d.ts +38 -0
  153. package/dist/types/common.d.ts.map +1 -1
  154. package/dist/types/common.js +1 -0
  155. package/dist/types/common.js.map +1 -1
  156. package/dist/types/dendro.d.ts +103 -0
  157. package/dist/types/dendro.d.ts.map +1 -1
  158. package/dist/types/discrete.d.ts +167 -0
  159. package/dist/types/discrete.d.ts.map +1 -1
  160. package/dist/types/heatmap.d.ts +248 -0
  161. package/dist/types/heatmap.d.ts.map +1 -1
  162. package/dist/types/heatmap.js +3 -0
  163. package/dist/types/heatmap.js.map +1 -1
  164. package/dist/types/histogram.d.ts +22 -0
  165. package/dist/types/histogram.d.ts.map +1 -1
  166. package/dist/types/index.d.ts +3 -1
  167. package/dist/types/index.d.ts.map +1 -1
  168. package/dist/types/index.js +1 -0
  169. package/dist/types/scatterplot-umap.d.ts +188 -0
  170. package/dist/types/scatterplot-umap.d.ts.map +1 -1
  171. package/dist/types/scatterplot.d.ts +270 -0
  172. package/dist/types/scatterplot.d.ts.map +1 -1
  173. package/dist/types/selection.d.ts +452 -0
  174. package/dist/types/selection.d.ts.map +1 -0
  175. package/dist/types/selection.js +53 -0
  176. package/dist/types/selection.js.map +1 -0
  177. package/dist/utils/intersect.d.ts +2 -0
  178. package/dist/utils/intersect.d.ts.map +1 -0
  179. package/dist/utils/intersect.js +8 -0
  180. package/dist/utils/intersect.js.map +1 -0
  181. package/package.json +2 -2
@@ -26,6 +26,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
26
26
  format: z.ZodOptional<z.ZodString>;
27
27
  label: z.ZodOptional<z.ZodString>;
28
28
  valueLabels: z.ZodOptional<z.ZodString>;
29
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
29
30
  nullValueLabel: z.ZodOptional<z.ZodString>;
30
31
  }, "strip", z.ZodTypeAny, {
31
32
  type: "column";
@@ -33,6 +34,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
33
34
  format?: string | undefined;
34
35
  label?: string | undefined;
35
36
  valueLabels?: string | undefined;
37
+ valueLabelsMap?: Record<string, string> | undefined;
36
38
  nullValueLabel?: string | undefined;
37
39
  }, {
38
40
  type: "column";
@@ -40,6 +42,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
40
42
  format?: string | undefined;
41
43
  label?: string | undefined;
42
44
  valueLabels?: string | undefined;
45
+ valueLabelsMap?: Record<string, string> | undefined;
43
46
  nullValueLabel?: string | undefined;
44
47
  }>, "many">>;
45
48
  }, "strip", z.ZodTypeAny, {
@@ -50,6 +53,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
50
53
  format?: string | undefined;
51
54
  label?: string | undefined;
52
55
  valueLabels?: string | undefined;
56
+ valueLabelsMap?: Record<string, string> | undefined;
53
57
  nullValueLabel?: string | undefined;
54
58
  }[] | undefined;
55
59
  }, {
@@ -60,6 +64,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
60
64
  format?: string | undefined;
61
65
  label?: string | undefined;
62
66
  valueLabels?: string | undefined;
67
+ valueLabelsMap?: Record<string, string> | undefined;
63
68
  nullValueLabel?: string | undefined;
64
69
  }[] | undefined;
65
70
  }>>;
@@ -196,6 +201,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
196
201
  format: z.ZodOptional<z.ZodString>;
197
202
  label: z.ZodOptional<z.ZodString>;
198
203
  valueLabels: z.ZodOptional<z.ZodString>;
204
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
199
205
  nullValueLabel: z.ZodOptional<z.ZodString>;
200
206
  }, "strip", z.ZodTypeAny, {
201
207
  type: "column";
@@ -203,6 +209,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
203
209
  format?: string | undefined;
204
210
  label?: string | undefined;
205
211
  valueLabels?: string | undefined;
212
+ valueLabelsMap?: Record<string, string> | undefined;
206
213
  nullValueLabel?: string | undefined;
207
214
  }, {
208
215
  type: "column";
@@ -210,6 +217,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
210
217
  format?: string | undefined;
211
218
  label?: string | undefined;
212
219
  valueLabels?: string | undefined;
220
+ valueLabelsMap?: Record<string, string> | undefined;
213
221
  nullValueLabel?: string | undefined;
214
222
  }>;
215
223
  yColumn: z.ZodObject<{
@@ -218,6 +226,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
218
226
  format: z.ZodOptional<z.ZodString>;
219
227
  label: z.ZodOptional<z.ZodString>;
220
228
  valueLabels: z.ZodOptional<z.ZodString>;
229
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
221
230
  nullValueLabel: z.ZodOptional<z.ZodString>;
222
231
  }, "strip", z.ZodTypeAny, {
223
232
  type: "column";
@@ -225,6 +234,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
225
234
  format?: string | undefined;
226
235
  label?: string | undefined;
227
236
  valueLabels?: string | undefined;
237
+ valueLabelsMap?: Record<string, string> | undefined;
228
238
  nullValueLabel?: string | undefined;
229
239
  }, {
230
240
  type: "column";
@@ -232,6 +242,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
232
242
  format?: string | undefined;
233
243
  label?: string | undefined;
234
244
  valueLabels?: string | undefined;
245
+ valueLabelsMap?: Record<string, string> | undefined;
235
246
  nullValueLabel?: string | undefined;
236
247
  }>;
237
248
  valueColumn: z.ZodObject<{
@@ -240,6 +251,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
240
251
  format: z.ZodOptional<z.ZodString>;
241
252
  label: z.ZodOptional<z.ZodString>;
242
253
  valueLabels: z.ZodOptional<z.ZodString>;
254
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
243
255
  nullValueLabel: z.ZodOptional<z.ZodString>;
244
256
  }, "strip", z.ZodTypeAny, {
245
257
  type: "column";
@@ -247,6 +259,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
247
259
  format?: string | undefined;
248
260
  label?: string | undefined;
249
261
  valueLabels?: string | undefined;
262
+ valueLabelsMap?: Record<string, string> | undefined;
250
263
  nullValueLabel?: string | undefined;
251
264
  }, {
252
265
  type: "column";
@@ -254,6 +267,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
254
267
  format?: string | undefined;
255
268
  label?: string | undefined;
256
269
  valueLabels?: string | undefined;
270
+ valueLabelsMap?: Record<string, string> | undefined;
257
271
  nullValueLabel?: string | undefined;
258
272
  }>;
259
273
  xGroupBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -262,6 +276,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
262
276
  format: z.ZodOptional<z.ZodString>;
263
277
  label: z.ZodOptional<z.ZodString>;
264
278
  valueLabels: z.ZodOptional<z.ZodString>;
279
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
265
280
  nullValueLabel: z.ZodOptional<z.ZodString>;
266
281
  }, "strip", z.ZodTypeAny, {
267
282
  type: "column";
@@ -269,6 +284,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
269
284
  format?: string | undefined;
270
285
  label?: string | undefined;
271
286
  valueLabels?: string | undefined;
287
+ valueLabelsMap?: Record<string, string> | undefined;
272
288
  nullValueLabel?: string | undefined;
273
289
  }, {
274
290
  type: "column";
@@ -276,6 +292,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
276
292
  format?: string | undefined;
277
293
  label?: string | undefined;
278
294
  valueLabels?: string | undefined;
295
+ valueLabelsMap?: Record<string, string> | undefined;
279
296
  nullValueLabel?: string | undefined;
280
297
  }>, "many">>;
281
298
  yGroupBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -284,6 +301,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
284
301
  format: z.ZodOptional<z.ZodString>;
285
302
  label: z.ZodOptional<z.ZodString>;
286
303
  valueLabels: z.ZodOptional<z.ZodString>;
304
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
287
305
  nullValueLabel: z.ZodOptional<z.ZodString>;
288
306
  }, "strip", z.ZodTypeAny, {
289
307
  type: "column";
@@ -291,6 +309,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
291
309
  format?: string | undefined;
292
310
  label?: string | undefined;
293
311
  valueLabels?: string | undefined;
312
+ valueLabelsMap?: Record<string, string> | undefined;
294
313
  nullValueLabel?: string | undefined;
295
314
  }, {
296
315
  type: "column";
@@ -298,6 +317,57 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
298
317
  format?: string | undefined;
299
318
  label?: string | undefined;
300
319
  valueLabels?: string | undefined;
320
+ valueLabelsMap?: Record<string, string> | undefined;
321
+ nullValueLabel?: string | undefined;
322
+ }>, "many">>;
323
+ xSortBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
324
+ type: z.ZodLiteral<"column">;
325
+ value: z.ZodString;
326
+ format: z.ZodOptional<z.ZodString>;
327
+ label: z.ZodOptional<z.ZodString>;
328
+ valueLabels: z.ZodOptional<z.ZodString>;
329
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
330
+ nullValueLabel: z.ZodOptional<z.ZodString>;
331
+ }, "strip", z.ZodTypeAny, {
332
+ type: "column";
333
+ value: string;
334
+ format?: string | undefined;
335
+ label?: string | undefined;
336
+ valueLabels?: string | undefined;
337
+ valueLabelsMap?: Record<string, string> | undefined;
338
+ nullValueLabel?: string | undefined;
339
+ }, {
340
+ type: "column";
341
+ value: string;
342
+ format?: string | undefined;
343
+ label?: string | undefined;
344
+ valueLabels?: string | undefined;
345
+ valueLabelsMap?: Record<string, string> | undefined;
346
+ nullValueLabel?: string | undefined;
347
+ }>, "many">>;
348
+ ySortBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
349
+ type: z.ZodLiteral<"column">;
350
+ value: z.ZodString;
351
+ format: z.ZodOptional<z.ZodString>;
352
+ label: z.ZodOptional<z.ZodString>;
353
+ valueLabels: z.ZodOptional<z.ZodString>;
354
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
355
+ nullValueLabel: z.ZodOptional<z.ZodString>;
356
+ }, "strip", z.ZodTypeAny, {
357
+ type: "column";
358
+ value: string;
359
+ format?: string | undefined;
360
+ label?: string | undefined;
361
+ valueLabels?: string | undefined;
362
+ valueLabelsMap?: Record<string, string> | undefined;
363
+ nullValueLabel?: string | undefined;
364
+ }, {
365
+ type: "column";
366
+ value: string;
367
+ format?: string | undefined;
368
+ label?: string | undefined;
369
+ valueLabels?: string | undefined;
370
+ valueLabelsMap?: Record<string, string> | undefined;
301
371
  nullValueLabel?: string | undefined;
302
372
  }>, "many">>;
303
373
  facetBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -306,6 +376,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
306
376
  format: z.ZodOptional<z.ZodString>;
307
377
  label: z.ZodOptional<z.ZodString>;
308
378
  valueLabels: z.ZodOptional<z.ZodString>;
379
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
309
380
  nullValueLabel: z.ZodOptional<z.ZodString>;
310
381
  }, "strip", z.ZodTypeAny, {
311
382
  type: "column";
@@ -313,6 +384,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
313
384
  format?: string | undefined;
314
385
  label?: string | undefined;
315
386
  valueLabels?: string | undefined;
387
+ valueLabelsMap?: Record<string, string> | undefined;
316
388
  nullValueLabel?: string | undefined;
317
389
  }, {
318
390
  type: "column";
@@ -320,9 +392,11 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
320
392
  format?: string | undefined;
321
393
  label?: string | undefined;
322
394
  valueLabels?: string | undefined;
395
+ valueLabelsMap?: Record<string, string> | undefined;
323
396
  nullValueLabel?: string | undefined;
324
397
  }>, "many">>;
325
398
  keysOrder: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
399
+ transform: z.ZodOptional<z.ZodEnum<["log"]>>;
326
400
  normalization: z.ZodOptional<z.ZodObject<{
327
401
  direction: z.ZodEnum<["row", "column"]>;
328
402
  method: z.ZodEnum<["standardScaling", "meanNormalization"]>;
@@ -356,6 +430,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
356
430
  format: z.ZodOptional<z.ZodString>;
357
431
  label: z.ZodOptional<z.ZodString>;
358
432
  valueLabels: z.ZodOptional<z.ZodString>;
433
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
359
434
  nullValueLabel: z.ZodOptional<z.ZodString>;
360
435
  }, "strip", z.ZodTypeAny, {
361
436
  type: "column";
@@ -363,6 +438,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
363
438
  format?: string | undefined;
364
439
  label?: string | undefined;
365
440
  valueLabels?: string | undefined;
441
+ valueLabelsMap?: Record<string, string> | undefined;
366
442
  nullValueLabel?: string | undefined;
367
443
  }, {
368
444
  type: "column";
@@ -370,6 +446,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
370
446
  format?: string | undefined;
371
447
  label?: string | undefined;
372
448
  valueLabels?: string | undefined;
449
+ valueLabelsMap?: Record<string, string> | undefined;
373
450
  nullValueLabel?: string | undefined;
374
451
  }>;
375
452
  type: z.ZodEnum<["discrete", "continuous"]>;
@@ -387,6 +464,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
387
464
  format?: string | undefined;
388
465
  label?: string | undefined;
389
466
  valueLabels?: string | undefined;
467
+ valueLabelsMap?: Record<string, string> | undefined;
390
468
  nullValueLabel?: string | undefined;
391
469
  };
392
470
  axis: "x";
@@ -402,6 +480,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
402
480
  format?: string | undefined;
403
481
  label?: string | undefined;
404
482
  valueLabels?: string | undefined;
483
+ valueLabelsMap?: Record<string, string> | undefined;
405
484
  nullValueLabel?: string | undefined;
406
485
  };
407
486
  axis: "x";
@@ -416,6 +495,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
416
495
  format: z.ZodOptional<z.ZodString>;
417
496
  label: z.ZodOptional<z.ZodString>;
418
497
  valueLabels: z.ZodOptional<z.ZodString>;
498
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
419
499
  nullValueLabel: z.ZodOptional<z.ZodString>;
420
500
  }, "strip", z.ZodTypeAny, {
421
501
  type: "column";
@@ -423,6 +503,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
423
503
  format?: string | undefined;
424
504
  label?: string | undefined;
425
505
  valueLabels?: string | undefined;
506
+ valueLabelsMap?: Record<string, string> | undefined;
426
507
  nullValueLabel?: string | undefined;
427
508
  }, {
428
509
  type: "column";
@@ -430,6 +511,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
430
511
  format?: string | undefined;
431
512
  label?: string | undefined;
432
513
  valueLabels?: string | undefined;
514
+ valueLabelsMap?: Record<string, string> | undefined;
433
515
  nullValueLabel?: string | undefined;
434
516
  }>;
435
517
  type: z.ZodEnum<["discrete", "continuous"]>;
@@ -447,6 +529,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
447
529
  format?: string | undefined;
448
530
  label?: string | undefined;
449
531
  valueLabels?: string | undefined;
532
+ valueLabelsMap?: Record<string, string> | undefined;
450
533
  nullValueLabel?: string | undefined;
451
534
  };
452
535
  axis: "y";
@@ -462,6 +545,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
462
545
  format?: string | undefined;
463
546
  label?: string | undefined;
464
547
  valueLabels?: string | undefined;
548
+ valueLabelsMap?: Record<string, string> | undefined;
465
549
  nullValueLabel?: string | undefined;
466
550
  };
467
551
  axis: "y";
@@ -485,6 +569,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
485
569
  format: z.ZodOptional<z.ZodString>;
486
570
  label: z.ZodOptional<z.ZodString>;
487
571
  valueLabels: z.ZodOptional<z.ZodString>;
572
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
488
573
  nullValueLabel: z.ZodOptional<z.ZodString>;
489
574
  }, "strip", z.ZodTypeAny, {
490
575
  type: "column";
@@ -492,6 +577,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
492
577
  format?: string | undefined;
493
578
  label?: string | undefined;
494
579
  valueLabels?: string | undefined;
580
+ valueLabelsMap?: Record<string, string> | undefined;
495
581
  nullValueLabel?: string | undefined;
496
582
  }, {
497
583
  type: "column";
@@ -499,6 +585,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
499
585
  format?: string | undefined;
500
586
  label?: string | undefined;
501
587
  valueLabels?: string | undefined;
588
+ valueLabelsMap?: Record<string, string> | undefined;
502
589
  nullValueLabel?: string | undefined;
503
590
  }>]>>;
504
591
  dotFill: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
@@ -507,6 +594,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
507
594
  format: z.ZodOptional<z.ZodString>;
508
595
  label: z.ZodOptional<z.ZodString>;
509
596
  valueLabels: z.ZodOptional<z.ZodString>;
597
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
510
598
  nullValueLabel: z.ZodOptional<z.ZodString>;
511
599
  }, "strip", z.ZodTypeAny, {
512
600
  type: "column";
@@ -514,6 +602,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
514
602
  format?: string | undefined;
515
603
  label?: string | undefined;
516
604
  valueLabels?: string | undefined;
605
+ valueLabelsMap?: Record<string, string> | undefined;
517
606
  nullValueLabel?: string | undefined;
518
607
  }, {
519
608
  type: "column";
@@ -521,6 +610,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
521
610
  format?: string | undefined;
522
611
  label?: string | undefined;
523
612
  valueLabels?: string | undefined;
613
+ valueLabelsMap?: Record<string, string> | undefined;
524
614
  nullValueLabel?: string | undefined;
525
615
  }>]>>;
526
616
  dotShape: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "20", "21", "22", "23", "24", "25"]>, z.ZodObject<{
@@ -529,6 +619,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
529
619
  format: z.ZodOptional<z.ZodString>;
530
620
  label: z.ZodOptional<z.ZodString>;
531
621
  valueLabels: z.ZodOptional<z.ZodString>;
622
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
532
623
  nullValueLabel: z.ZodOptional<z.ZodString>;
533
624
  }, "strip", z.ZodTypeAny, {
534
625
  type: "column";
@@ -536,6 +627,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
536
627
  format?: string | undefined;
537
628
  label?: string | undefined;
538
629
  valueLabels?: string | undefined;
630
+ valueLabelsMap?: Record<string, string> | undefined;
539
631
  nullValueLabel?: string | undefined;
540
632
  }, {
541
633
  type: "column";
@@ -543,6 +635,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
543
635
  format?: string | undefined;
544
636
  label?: string | undefined;
545
637
  valueLabels?: string | undefined;
638
+ valueLabelsMap?: Record<string, string> | undefined;
546
639
  nullValueLabel?: string | undefined;
547
640
  }>]>>;
548
641
  dotSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -551,6 +644,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
551
644
  format: z.ZodOptional<z.ZodString>;
552
645
  label: z.ZodOptional<z.ZodString>;
553
646
  valueLabels: z.ZodOptional<z.ZodString>;
647
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
554
648
  nullValueLabel: z.ZodOptional<z.ZodString>;
555
649
  }, "strip", z.ZodTypeAny, {
556
650
  type: "column";
@@ -558,6 +652,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
558
652
  format?: string | undefined;
559
653
  label?: string | undefined;
560
654
  valueLabels?: string | undefined;
655
+ valueLabelsMap?: Record<string, string> | undefined;
561
656
  nullValueLabel?: string | undefined;
562
657
  }, {
563
658
  type: "column";
@@ -565,6 +660,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
565
660
  format?: string | undefined;
566
661
  label?: string | undefined;
567
662
  valueLabels?: string | undefined;
663
+ valueLabelsMap?: Record<string, string> | undefined;
568
664
  nullValueLabel?: string | undefined;
569
665
  }>]>>;
570
666
  lineShape: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>, z.ZodObject<{
@@ -573,6 +669,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
573
669
  format: z.ZodOptional<z.ZodString>;
574
670
  label: z.ZodOptional<z.ZodString>;
575
671
  valueLabels: z.ZodOptional<z.ZodString>;
672
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
576
673
  nullValueLabel: z.ZodOptional<z.ZodString>;
577
674
  }, "strip", z.ZodTypeAny, {
578
675
  type: "column";
@@ -580,6 +677,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
580
677
  format?: string | undefined;
581
678
  label?: string | undefined;
582
679
  valueLabels?: string | undefined;
680
+ valueLabelsMap?: Record<string, string> | undefined;
583
681
  nullValueLabel?: string | undefined;
584
682
  }, {
585
683
  type: "column";
@@ -587,6 +685,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
587
685
  format?: string | undefined;
588
686
  label?: string | undefined;
589
687
  valueLabels?: string | undefined;
688
+ valueLabelsMap?: Record<string, string> | undefined;
590
689
  nullValueLabel?: string | undefined;
591
690
  }>]>>;
592
691
  lineWidth: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -595,6 +694,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
595
694
  format: z.ZodOptional<z.ZodString>;
596
695
  label: z.ZodOptional<z.ZodString>;
597
696
  valueLabels: z.ZodOptional<z.ZodString>;
697
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
598
698
  nullValueLabel: z.ZodOptional<z.ZodString>;
599
699
  }, "strip", z.ZodTypeAny, {
600
700
  type: "column";
@@ -602,6 +702,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
602
702
  format?: string | undefined;
603
703
  label?: string | undefined;
604
704
  valueLabels?: string | undefined;
705
+ valueLabelsMap?: Record<string, string> | undefined;
605
706
  nullValueLabel?: string | undefined;
606
707
  }, {
607
708
  type: "column";
@@ -609,6 +710,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
609
710
  format?: string | undefined;
610
711
  label?: string | undefined;
611
712
  valueLabels?: string | undefined;
713
+ valueLabelsMap?: Record<string, string> | undefined;
612
714
  nullValueLabel?: string | undefined;
613
715
  }>]>>;
614
716
  }, "strip", z.ZodTypeAny, {
@@ -618,6 +720,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
618
720
  format?: string | undefined;
619
721
  label?: string | undefined;
620
722
  valueLabels?: string | undefined;
723
+ valueLabelsMap?: Record<string, string> | undefined;
621
724
  nullValueLabel?: string | undefined;
622
725
  } | undefined;
623
726
  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" | {
@@ -626,6 +729,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
626
729
  format?: string | undefined;
627
730
  label?: string | undefined;
628
731
  valueLabels?: string | undefined;
732
+ valueLabelsMap?: Record<string, string> | undefined;
629
733
  nullValueLabel?: string | undefined;
630
734
  } | undefined;
631
735
  dotSize?: number | {
@@ -634,6 +738,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
634
738
  format?: string | undefined;
635
739
  label?: string | undefined;
636
740
  valueLabels?: string | undefined;
741
+ valueLabelsMap?: Record<string, string> | undefined;
637
742
  nullValueLabel?: string | undefined;
638
743
  } | undefined;
639
744
  lineWidth?: number | {
@@ -642,6 +747,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
642
747
  format?: string | undefined;
643
748
  label?: string | undefined;
644
749
  valueLabels?: string | undefined;
750
+ valueLabelsMap?: Record<string, string> | undefined;
645
751
  nullValueLabel?: string | undefined;
646
752
  } | undefined;
647
753
  lineShape?: {
@@ -650,6 +756,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
650
756
  format?: string | undefined;
651
757
  label?: string | undefined;
652
758
  valueLabels?: string | undefined;
759
+ valueLabelsMap?: Record<string, string> | undefined;
653
760
  nullValueLabel?: string | undefined;
654
761
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
655
762
  lineColor?: string | {
@@ -658,6 +765,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
658
765
  format?: string | undefined;
659
766
  label?: string | undefined;
660
767
  valueLabels?: string | undefined;
768
+ valueLabelsMap?: Record<string, string> | undefined;
661
769
  nullValueLabel?: string | undefined;
662
770
  } | undefined;
663
771
  }, {
@@ -667,6 +775,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
667
775
  format?: string | undefined;
668
776
  label?: string | undefined;
669
777
  valueLabels?: string | undefined;
778
+ valueLabelsMap?: Record<string, string> | undefined;
670
779
  nullValueLabel?: string | undefined;
671
780
  } | undefined;
672
781
  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" | {
@@ -675,6 +784,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
675
784
  format?: string | undefined;
676
785
  label?: string | undefined;
677
786
  valueLabels?: string | undefined;
787
+ valueLabelsMap?: Record<string, string> | undefined;
678
788
  nullValueLabel?: string | undefined;
679
789
  } | undefined;
680
790
  dotSize?: number | {
@@ -683,6 +793,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
683
793
  format?: string | undefined;
684
794
  label?: string | undefined;
685
795
  valueLabels?: string | undefined;
796
+ valueLabelsMap?: Record<string, string> | undefined;
686
797
  nullValueLabel?: string | undefined;
687
798
  } | undefined;
688
799
  lineWidth?: number | {
@@ -691,6 +802,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
691
802
  format?: string | undefined;
692
803
  label?: string | undefined;
693
804
  valueLabels?: string | undefined;
805
+ valueLabelsMap?: Record<string, string> | undefined;
694
806
  nullValueLabel?: string | undefined;
695
807
  } | undefined;
696
808
  lineShape?: {
@@ -699,6 +811,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
699
811
  format?: string | undefined;
700
812
  label?: string | undefined;
701
813
  valueLabels?: string | undefined;
814
+ valueLabelsMap?: Record<string, string> | undefined;
702
815
  nullValueLabel?: string | undefined;
703
816
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
704
817
  lineColor?: string | {
@@ -707,6 +820,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
707
820
  format?: string | undefined;
708
821
  label?: string | undefined;
709
822
  valueLabels?: string | undefined;
823
+ valueLabelsMap?: Record<string, string> | undefined;
710
824
  nullValueLabel?: string | undefined;
711
825
  } | undefined;
712
826
  }>>;
@@ -721,6 +835,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
721
835
  format?: string | undefined;
722
836
  label?: string | undefined;
723
837
  valueLabels?: string | undefined;
838
+ valueLabelsMap?: Record<string, string> | undefined;
724
839
  nullValueLabel?: string | undefined;
725
840
  } | undefined;
726
841
  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" | {
@@ -729,6 +844,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
729
844
  format?: string | undefined;
730
845
  label?: string | undefined;
731
846
  valueLabels?: string | undefined;
847
+ valueLabelsMap?: Record<string, string> | undefined;
732
848
  nullValueLabel?: string | undefined;
733
849
  } | undefined;
734
850
  dotSize?: number | {
@@ -737,6 +853,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
737
853
  format?: string | undefined;
738
854
  label?: string | undefined;
739
855
  valueLabels?: string | undefined;
856
+ valueLabelsMap?: Record<string, string> | undefined;
740
857
  nullValueLabel?: string | undefined;
741
858
  } | undefined;
742
859
  lineWidth?: number | {
@@ -745,6 +862,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
745
862
  format?: string | undefined;
746
863
  label?: string | undefined;
747
864
  valueLabels?: string | undefined;
865
+ valueLabelsMap?: Record<string, string> | undefined;
748
866
  nullValueLabel?: string | undefined;
749
867
  } | undefined;
750
868
  lineShape?: {
@@ -753,6 +871,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
753
871
  format?: string | undefined;
754
872
  label?: string | undefined;
755
873
  valueLabels?: string | undefined;
874
+ valueLabelsMap?: Record<string, string> | undefined;
756
875
  nullValueLabel?: string | undefined;
757
876
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
758
877
  lineColor?: string | {
@@ -761,6 +880,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
761
880
  format?: string | undefined;
762
881
  label?: string | undefined;
763
882
  valueLabels?: string | undefined;
883
+ valueLabelsMap?: Record<string, string> | undefined;
764
884
  nullValueLabel?: string | undefined;
765
885
  } | undefined;
766
886
  } | undefined;
@@ -780,6 +900,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
780
900
  format?: string | undefined;
781
901
  label?: string | undefined;
782
902
  valueLabels?: string | undefined;
903
+ valueLabelsMap?: Record<string, string> | undefined;
783
904
  nullValueLabel?: string | undefined;
784
905
  } | undefined;
785
906
  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" | {
@@ -788,6 +909,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
788
909
  format?: string | undefined;
789
910
  label?: string | undefined;
790
911
  valueLabels?: string | undefined;
912
+ valueLabelsMap?: Record<string, string> | undefined;
791
913
  nullValueLabel?: string | undefined;
792
914
  } | undefined;
793
915
  dotSize?: number | {
@@ -796,6 +918,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
796
918
  format?: string | undefined;
797
919
  label?: string | undefined;
798
920
  valueLabels?: string | undefined;
921
+ valueLabelsMap?: Record<string, string> | undefined;
799
922
  nullValueLabel?: string | undefined;
800
923
  } | undefined;
801
924
  lineWidth?: number | {
@@ -804,6 +927,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
804
927
  format?: string | undefined;
805
928
  label?: string | undefined;
806
929
  valueLabels?: string | undefined;
930
+ valueLabelsMap?: Record<string, string> | undefined;
807
931
  nullValueLabel?: string | undefined;
808
932
  } | undefined;
809
933
  lineShape?: {
@@ -812,6 +936,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
812
936
  format?: string | undefined;
813
937
  label?: string | undefined;
814
938
  valueLabels?: string | undefined;
939
+ valueLabelsMap?: Record<string, string> | undefined;
815
940
  nullValueLabel?: string | undefined;
816
941
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
817
942
  lineColor?: string | {
@@ -820,6 +945,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
820
945
  format?: string | undefined;
821
946
  label?: string | undefined;
822
947
  valueLabels?: string | undefined;
948
+ valueLabelsMap?: Record<string, string> | undefined;
823
949
  nullValueLabel?: string | undefined;
824
950
  } | undefined;
825
951
  } | undefined;
@@ -846,6 +972,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
846
972
  format: z.ZodOptional<z.ZodString>;
847
973
  label: z.ZodOptional<z.ZodString>;
848
974
  valueLabels: z.ZodOptional<z.ZodString>;
975
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
849
976
  nullValueLabel: z.ZodOptional<z.ZodString>;
850
977
  }, "strip", z.ZodTypeAny, {
851
978
  type: "column";
@@ -853,6 +980,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
853
980
  format?: string | undefined;
854
981
  label?: string | undefined;
855
982
  valueLabels?: string | undefined;
983
+ valueLabelsMap?: Record<string, string> | undefined;
856
984
  nullValueLabel?: string | undefined;
857
985
  }, {
858
986
  type: "column";
@@ -860,6 +988,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
860
988
  format?: string | undefined;
861
989
  label?: string | undefined;
862
990
  valueLabels?: string | undefined;
991
+ valueLabelsMap?: Record<string, string> | undefined;
863
992
  nullValueLabel?: string | undefined;
864
993
  }>]>>;
865
994
  dotFill: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
@@ -868,6 +997,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
868
997
  format: z.ZodOptional<z.ZodString>;
869
998
  label: z.ZodOptional<z.ZodString>;
870
999
  valueLabels: z.ZodOptional<z.ZodString>;
1000
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
871
1001
  nullValueLabel: z.ZodOptional<z.ZodString>;
872
1002
  }, "strip", z.ZodTypeAny, {
873
1003
  type: "column";
@@ -875,6 +1005,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
875
1005
  format?: string | undefined;
876
1006
  label?: string | undefined;
877
1007
  valueLabels?: string | undefined;
1008
+ valueLabelsMap?: Record<string, string> | undefined;
878
1009
  nullValueLabel?: string | undefined;
879
1010
  }, {
880
1011
  type: "column";
@@ -882,6 +1013,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
882
1013
  format?: string | undefined;
883
1014
  label?: string | undefined;
884
1015
  valueLabels?: string | undefined;
1016
+ valueLabelsMap?: Record<string, string> | undefined;
885
1017
  nullValueLabel?: string | undefined;
886
1018
  }>]>>;
887
1019
  dotShape: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "20", "21", "22", "23", "24", "25"]>, z.ZodObject<{
@@ -890,6 +1022,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
890
1022
  format: z.ZodOptional<z.ZodString>;
891
1023
  label: z.ZodOptional<z.ZodString>;
892
1024
  valueLabels: z.ZodOptional<z.ZodString>;
1025
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
893
1026
  nullValueLabel: z.ZodOptional<z.ZodString>;
894
1027
  }, "strip", z.ZodTypeAny, {
895
1028
  type: "column";
@@ -897,6 +1030,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
897
1030
  format?: string | undefined;
898
1031
  label?: string | undefined;
899
1032
  valueLabels?: string | undefined;
1033
+ valueLabelsMap?: Record<string, string> | undefined;
900
1034
  nullValueLabel?: string | undefined;
901
1035
  }, {
902
1036
  type: "column";
@@ -904,6 +1038,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
904
1038
  format?: string | undefined;
905
1039
  label?: string | undefined;
906
1040
  valueLabels?: string | undefined;
1041
+ valueLabelsMap?: Record<string, string> | undefined;
907
1042
  nullValueLabel?: string | undefined;
908
1043
  }>]>>;
909
1044
  dotSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -912,6 +1047,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
912
1047
  format: z.ZodOptional<z.ZodString>;
913
1048
  label: z.ZodOptional<z.ZodString>;
914
1049
  valueLabels: z.ZodOptional<z.ZodString>;
1050
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
915
1051
  nullValueLabel: z.ZodOptional<z.ZodString>;
916
1052
  }, "strip", z.ZodTypeAny, {
917
1053
  type: "column";
@@ -919,6 +1055,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
919
1055
  format?: string | undefined;
920
1056
  label?: string | undefined;
921
1057
  valueLabels?: string | undefined;
1058
+ valueLabelsMap?: Record<string, string> | undefined;
922
1059
  nullValueLabel?: string | undefined;
923
1060
  }, {
924
1061
  type: "column";
@@ -926,6 +1063,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
926
1063
  format?: string | undefined;
927
1064
  label?: string | undefined;
928
1065
  valueLabels?: string | undefined;
1066
+ valueLabelsMap?: Record<string, string> | undefined;
929
1067
  nullValueLabel?: string | undefined;
930
1068
  }>]>>;
931
1069
  lineShape: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>, z.ZodObject<{
@@ -934,6 +1072,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
934
1072
  format: z.ZodOptional<z.ZodString>;
935
1073
  label: z.ZodOptional<z.ZodString>;
936
1074
  valueLabels: z.ZodOptional<z.ZodString>;
1075
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
937
1076
  nullValueLabel: z.ZodOptional<z.ZodString>;
938
1077
  }, "strip", z.ZodTypeAny, {
939
1078
  type: "column";
@@ -941,6 +1080,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
941
1080
  format?: string | undefined;
942
1081
  label?: string | undefined;
943
1082
  valueLabels?: string | undefined;
1083
+ valueLabelsMap?: Record<string, string> | undefined;
944
1084
  nullValueLabel?: string | undefined;
945
1085
  }, {
946
1086
  type: "column";
@@ -948,6 +1088,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
948
1088
  format?: string | undefined;
949
1089
  label?: string | undefined;
950
1090
  valueLabels?: string | undefined;
1091
+ valueLabelsMap?: Record<string, string> | undefined;
951
1092
  nullValueLabel?: string | undefined;
952
1093
  }>]>>;
953
1094
  lineWidth: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -956,6 +1097,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
956
1097
  format: z.ZodOptional<z.ZodString>;
957
1098
  label: z.ZodOptional<z.ZodString>;
958
1099
  valueLabels: z.ZodOptional<z.ZodString>;
1100
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
959
1101
  nullValueLabel: z.ZodOptional<z.ZodString>;
960
1102
  }, "strip", z.ZodTypeAny, {
961
1103
  type: "column";
@@ -963,6 +1105,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
963
1105
  format?: string | undefined;
964
1106
  label?: string | undefined;
965
1107
  valueLabels?: string | undefined;
1108
+ valueLabelsMap?: Record<string, string> | undefined;
966
1109
  nullValueLabel?: string | undefined;
967
1110
  }, {
968
1111
  type: "column";
@@ -970,6 +1113,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
970
1113
  format?: string | undefined;
971
1114
  label?: string | undefined;
972
1115
  valueLabels?: string | undefined;
1116
+ valueLabelsMap?: Record<string, string> | undefined;
973
1117
  nullValueLabel?: string | undefined;
974
1118
  }>]>>;
975
1119
  }, "strip", z.ZodTypeAny, {
@@ -979,6 +1123,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
979
1123
  format?: string | undefined;
980
1124
  label?: string | undefined;
981
1125
  valueLabels?: string | undefined;
1126
+ valueLabelsMap?: Record<string, string> | undefined;
982
1127
  nullValueLabel?: string | undefined;
983
1128
  } | undefined;
984
1129
  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" | {
@@ -987,6 +1132,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
987
1132
  format?: string | undefined;
988
1133
  label?: string | undefined;
989
1134
  valueLabels?: string | undefined;
1135
+ valueLabelsMap?: Record<string, string> | undefined;
990
1136
  nullValueLabel?: string | undefined;
991
1137
  } | undefined;
992
1138
  dotSize?: number | {
@@ -995,6 +1141,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
995
1141
  format?: string | undefined;
996
1142
  label?: string | undefined;
997
1143
  valueLabels?: string | undefined;
1144
+ valueLabelsMap?: Record<string, string> | undefined;
998
1145
  nullValueLabel?: string | undefined;
999
1146
  } | undefined;
1000
1147
  lineWidth?: number | {
@@ -1003,6 +1150,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1003
1150
  format?: string | undefined;
1004
1151
  label?: string | undefined;
1005
1152
  valueLabels?: string | undefined;
1153
+ valueLabelsMap?: Record<string, string> | undefined;
1006
1154
  nullValueLabel?: string | undefined;
1007
1155
  } | undefined;
1008
1156
  lineShape?: {
@@ -1011,6 +1159,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1011
1159
  format?: string | undefined;
1012
1160
  label?: string | undefined;
1013
1161
  valueLabels?: string | undefined;
1162
+ valueLabelsMap?: Record<string, string> | undefined;
1014
1163
  nullValueLabel?: string | undefined;
1015
1164
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1016
1165
  lineColor?: string | {
@@ -1019,6 +1168,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1019
1168
  format?: string | undefined;
1020
1169
  label?: string | undefined;
1021
1170
  valueLabels?: string | undefined;
1171
+ valueLabelsMap?: Record<string, string> | undefined;
1022
1172
  nullValueLabel?: string | undefined;
1023
1173
  } | undefined;
1024
1174
  }, {
@@ -1028,6 +1178,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1028
1178
  format?: string | undefined;
1029
1179
  label?: string | undefined;
1030
1180
  valueLabels?: string | undefined;
1181
+ valueLabelsMap?: Record<string, string> | undefined;
1031
1182
  nullValueLabel?: string | undefined;
1032
1183
  } | undefined;
1033
1184
  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" | {
@@ -1036,6 +1187,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1036
1187
  format?: string | undefined;
1037
1188
  label?: string | undefined;
1038
1189
  valueLabels?: string | undefined;
1190
+ valueLabelsMap?: Record<string, string> | undefined;
1039
1191
  nullValueLabel?: string | undefined;
1040
1192
  } | undefined;
1041
1193
  dotSize?: number | {
@@ -1044,6 +1196,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1044
1196
  format?: string | undefined;
1045
1197
  label?: string | undefined;
1046
1198
  valueLabels?: string | undefined;
1199
+ valueLabelsMap?: Record<string, string> | undefined;
1047
1200
  nullValueLabel?: string | undefined;
1048
1201
  } | undefined;
1049
1202
  lineWidth?: number | {
@@ -1052,6 +1205,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1052
1205
  format?: string | undefined;
1053
1206
  label?: string | undefined;
1054
1207
  valueLabels?: string | undefined;
1208
+ valueLabelsMap?: Record<string, string> | undefined;
1055
1209
  nullValueLabel?: string | undefined;
1056
1210
  } | undefined;
1057
1211
  lineShape?: {
@@ -1060,6 +1214,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1060
1214
  format?: string | undefined;
1061
1215
  label?: string | undefined;
1062
1216
  valueLabels?: string | undefined;
1217
+ valueLabelsMap?: Record<string, string> | undefined;
1063
1218
  nullValueLabel?: string | undefined;
1064
1219
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1065
1220
  lineColor?: string | {
@@ -1068,6 +1223,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1068
1223
  format?: string | undefined;
1069
1224
  label?: string | undefined;
1070
1225
  valueLabels?: string | undefined;
1226
+ valueLabelsMap?: Record<string, string> | undefined;
1071
1227
  nullValueLabel?: string | undefined;
1072
1228
  } | undefined;
1073
1229
  }>>;
@@ -1082,6 +1238,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1082
1238
  format?: string | undefined;
1083
1239
  label?: string | undefined;
1084
1240
  valueLabels?: string | undefined;
1241
+ valueLabelsMap?: Record<string, string> | undefined;
1085
1242
  nullValueLabel?: string | undefined;
1086
1243
  } | undefined;
1087
1244
  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" | {
@@ -1090,6 +1247,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1090
1247
  format?: string | undefined;
1091
1248
  label?: string | undefined;
1092
1249
  valueLabels?: string | undefined;
1250
+ valueLabelsMap?: Record<string, string> | undefined;
1093
1251
  nullValueLabel?: string | undefined;
1094
1252
  } | undefined;
1095
1253
  dotSize?: number | {
@@ -1098,6 +1256,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1098
1256
  format?: string | undefined;
1099
1257
  label?: string | undefined;
1100
1258
  valueLabels?: string | undefined;
1259
+ valueLabelsMap?: Record<string, string> | undefined;
1101
1260
  nullValueLabel?: string | undefined;
1102
1261
  } | undefined;
1103
1262
  lineWidth?: number | {
@@ -1106,6 +1265,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1106
1265
  format?: string | undefined;
1107
1266
  label?: string | undefined;
1108
1267
  valueLabels?: string | undefined;
1268
+ valueLabelsMap?: Record<string, string> | undefined;
1109
1269
  nullValueLabel?: string | undefined;
1110
1270
  } | undefined;
1111
1271
  lineShape?: {
@@ -1114,6 +1274,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1114
1274
  format?: string | undefined;
1115
1275
  label?: string | undefined;
1116
1276
  valueLabels?: string | undefined;
1277
+ valueLabelsMap?: Record<string, string> | undefined;
1117
1278
  nullValueLabel?: string | undefined;
1118
1279
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1119
1280
  lineColor?: string | {
@@ -1122,6 +1283,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1122
1283
  format?: string | undefined;
1123
1284
  label?: string | undefined;
1124
1285
  valueLabels?: string | undefined;
1286
+ valueLabelsMap?: Record<string, string> | undefined;
1125
1287
  nullValueLabel?: string | undefined;
1126
1288
  } | undefined;
1127
1289
  } | undefined;
@@ -1141,6 +1303,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1141
1303
  format?: string | undefined;
1142
1304
  label?: string | undefined;
1143
1305
  valueLabels?: string | undefined;
1306
+ valueLabelsMap?: Record<string, string> | undefined;
1144
1307
  nullValueLabel?: string | undefined;
1145
1308
  } | undefined;
1146
1309
  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" | {
@@ -1149,6 +1312,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1149
1312
  format?: string | undefined;
1150
1313
  label?: string | undefined;
1151
1314
  valueLabels?: string | undefined;
1315
+ valueLabelsMap?: Record<string, string> | undefined;
1152
1316
  nullValueLabel?: string | undefined;
1153
1317
  } | undefined;
1154
1318
  dotSize?: number | {
@@ -1157,6 +1321,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1157
1321
  format?: string | undefined;
1158
1322
  label?: string | undefined;
1159
1323
  valueLabels?: string | undefined;
1324
+ valueLabelsMap?: Record<string, string> | undefined;
1160
1325
  nullValueLabel?: string | undefined;
1161
1326
  } | undefined;
1162
1327
  lineWidth?: number | {
@@ -1165,6 +1330,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1165
1330
  format?: string | undefined;
1166
1331
  label?: string | undefined;
1167
1332
  valueLabels?: string | undefined;
1333
+ valueLabelsMap?: Record<string, string> | undefined;
1168
1334
  nullValueLabel?: string | undefined;
1169
1335
  } | undefined;
1170
1336
  lineShape?: {
@@ -1173,6 +1339,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1173
1339
  format?: string | undefined;
1174
1340
  label?: string | undefined;
1175
1341
  valueLabels?: string | undefined;
1342
+ valueLabelsMap?: Record<string, string> | undefined;
1176
1343
  nullValueLabel?: string | undefined;
1177
1344
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1178
1345
  lineColor?: string | {
@@ -1181,6 +1348,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1181
1348
  format?: string | undefined;
1182
1349
  label?: string | undefined;
1183
1350
  valueLabels?: string | undefined;
1351
+ valueLabelsMap?: Record<string, string> | undefined;
1184
1352
  nullValueLabel?: string | undefined;
1185
1353
  } | undefined;
1186
1354
  } | undefined;
@@ -1262,6 +1430,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1262
1430
  format?: string | undefined;
1263
1431
  label?: string | undefined;
1264
1432
  valueLabels?: string | undefined;
1433
+ valueLabelsMap?: Record<string, string> | undefined;
1265
1434
  nullValueLabel?: string | undefined;
1266
1435
  };
1267
1436
  yColumn: {
@@ -1270,6 +1439,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1270
1439
  format?: string | undefined;
1271
1440
  label?: string | undefined;
1272
1441
  valueLabels?: string | undefined;
1442
+ valueLabelsMap?: Record<string, string> | undefined;
1273
1443
  nullValueLabel?: string | undefined;
1274
1444
  };
1275
1445
  valueColumn: {
@@ -1278,6 +1448,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1278
1448
  format?: string | undefined;
1279
1449
  label?: string | undefined;
1280
1450
  valueLabels?: string | undefined;
1451
+ valueLabelsMap?: Record<string, string> | undefined;
1281
1452
  nullValueLabel?: string | undefined;
1282
1453
  };
1283
1454
  size?: {
@@ -1310,6 +1481,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1310
1481
  format?: string | undefined;
1311
1482
  label?: string | undefined;
1312
1483
  valueLabels?: string | undefined;
1484
+ valueLabelsMap?: Record<string, string> | undefined;
1313
1485
  nullValueLabel?: string | undefined;
1314
1486
  }[] | undefined;
1315
1487
  } | undefined;
@@ -1353,6 +1525,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1353
1525
  format?: string | undefined;
1354
1526
  label?: string | undefined;
1355
1527
  valueLabels?: string | undefined;
1528
+ valueLabelsMap?: Record<string, string> | undefined;
1356
1529
  nullValueLabel?: string | undefined;
1357
1530
  }[] | undefined;
1358
1531
  xGroupBy?: {
@@ -1361,6 +1534,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1361
1534
  format?: string | undefined;
1362
1535
  label?: string | undefined;
1363
1536
  valueLabels?: string | undefined;
1537
+ valueLabelsMap?: Record<string, string> | undefined;
1364
1538
  nullValueLabel?: string | undefined;
1365
1539
  }[] | undefined;
1366
1540
  yGroupBy?: {
@@ -1369,8 +1543,28 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1369
1543
  format?: string | undefined;
1370
1544
  label?: string | undefined;
1371
1545
  valueLabels?: string | undefined;
1546
+ valueLabelsMap?: Record<string, string> | undefined;
1547
+ nullValueLabel?: string | undefined;
1548
+ }[] | undefined;
1549
+ xSortBy?: {
1550
+ type: "column";
1551
+ value: string;
1552
+ format?: string | undefined;
1553
+ label?: string | undefined;
1554
+ valueLabels?: string | undefined;
1555
+ valueLabelsMap?: Record<string, string> | undefined;
1372
1556
  nullValueLabel?: string | undefined;
1373
1557
  }[] | undefined;
1558
+ ySortBy?: {
1559
+ type: "column";
1560
+ value: string;
1561
+ format?: string | undefined;
1562
+ label?: string | undefined;
1563
+ valueLabels?: string | undefined;
1564
+ valueLabelsMap?: Record<string, string> | undefined;
1565
+ nullValueLabel?: string | undefined;
1566
+ }[] | undefined;
1567
+ transform?: "log" | undefined;
1374
1568
  keysOrder?: Record<string, string[]> | undefined;
1375
1569
  normalization?: {
1376
1570
  direction: "column" | "row";
@@ -1394,6 +1588,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1394
1588
  format?: string | undefined;
1395
1589
  label?: string | undefined;
1396
1590
  valueLabels?: string | undefined;
1591
+ valueLabelsMap?: Record<string, string> | undefined;
1397
1592
  nullValueLabel?: string | undefined;
1398
1593
  };
1399
1594
  axis: "x";
@@ -1409,6 +1604,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1409
1604
  format?: string | undefined;
1410
1605
  label?: string | undefined;
1411
1606
  valueLabels?: string | undefined;
1607
+ valueLabelsMap?: Record<string, string> | undefined;
1412
1608
  nullValueLabel?: string | undefined;
1413
1609
  };
1414
1610
  axis: "y";
@@ -1426,6 +1622,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1426
1622
  format?: string | undefined;
1427
1623
  label?: string | undefined;
1428
1624
  valueLabels?: string | undefined;
1625
+ valueLabelsMap?: Record<string, string> | undefined;
1429
1626
  nullValueLabel?: string | undefined;
1430
1627
  } | undefined;
1431
1628
  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" | {
@@ -1434,6 +1631,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1434
1631
  format?: string | undefined;
1435
1632
  label?: string | undefined;
1436
1633
  valueLabels?: string | undefined;
1634
+ valueLabelsMap?: Record<string, string> | undefined;
1437
1635
  nullValueLabel?: string | undefined;
1438
1636
  } | undefined;
1439
1637
  dotSize?: number | {
@@ -1442,6 +1640,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1442
1640
  format?: string | undefined;
1443
1641
  label?: string | undefined;
1444
1642
  valueLabels?: string | undefined;
1643
+ valueLabelsMap?: Record<string, string> | undefined;
1445
1644
  nullValueLabel?: string | undefined;
1446
1645
  } | undefined;
1447
1646
  lineWidth?: number | {
@@ -1450,6 +1649,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1450
1649
  format?: string | undefined;
1451
1650
  label?: string | undefined;
1452
1651
  valueLabels?: string | undefined;
1652
+ valueLabelsMap?: Record<string, string> | undefined;
1453
1653
  nullValueLabel?: string | undefined;
1454
1654
  } | undefined;
1455
1655
  lineShape?: {
@@ -1458,6 +1658,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1458
1658
  format?: string | undefined;
1459
1659
  label?: string | undefined;
1460
1660
  valueLabels?: string | undefined;
1661
+ valueLabelsMap?: Record<string, string> | undefined;
1461
1662
  nullValueLabel?: string | undefined;
1462
1663
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1463
1664
  lineColor?: string | {
@@ -1466,6 +1667,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1466
1667
  format?: string | undefined;
1467
1668
  label?: string | undefined;
1468
1669
  valueLabels?: string | undefined;
1670
+ valueLabelsMap?: Record<string, string> | undefined;
1469
1671
  nullValueLabel?: string | undefined;
1470
1672
  } | undefined;
1471
1673
  } | undefined;
@@ -1486,6 +1688,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1486
1688
  format?: string | undefined;
1487
1689
  label?: string | undefined;
1488
1690
  valueLabels?: string | undefined;
1691
+ valueLabelsMap?: Record<string, string> | undefined;
1489
1692
  nullValueLabel?: string | undefined;
1490
1693
  } | undefined;
1491
1694
  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" | {
@@ -1494,6 +1697,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1494
1697
  format?: string | undefined;
1495
1698
  label?: string | undefined;
1496
1699
  valueLabels?: string | undefined;
1700
+ valueLabelsMap?: Record<string, string> | undefined;
1497
1701
  nullValueLabel?: string | undefined;
1498
1702
  } | undefined;
1499
1703
  dotSize?: number | {
@@ -1502,6 +1706,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1502
1706
  format?: string | undefined;
1503
1707
  label?: string | undefined;
1504
1708
  valueLabels?: string | undefined;
1709
+ valueLabelsMap?: Record<string, string> | undefined;
1505
1710
  nullValueLabel?: string | undefined;
1506
1711
  } | undefined;
1507
1712
  lineWidth?: number | {
@@ -1510,6 +1715,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1510
1715
  format?: string | undefined;
1511
1716
  label?: string | undefined;
1512
1717
  valueLabels?: string | undefined;
1718
+ valueLabelsMap?: Record<string, string> | undefined;
1513
1719
  nullValueLabel?: string | undefined;
1514
1720
  } | undefined;
1515
1721
  lineShape?: {
@@ -1518,6 +1724,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1518
1724
  format?: string | undefined;
1519
1725
  label?: string | undefined;
1520
1726
  valueLabels?: string | undefined;
1727
+ valueLabelsMap?: Record<string, string> | undefined;
1521
1728
  nullValueLabel?: string | undefined;
1522
1729
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1523
1730
  lineColor?: string | {
@@ -1526,6 +1733,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1526
1733
  format?: string | undefined;
1527
1734
  label?: string | undefined;
1528
1735
  valueLabels?: string | undefined;
1736
+ valueLabelsMap?: Record<string, string> | undefined;
1529
1737
  nullValueLabel?: string | undefined;
1530
1738
  } | undefined;
1531
1739
  } | undefined;
@@ -1560,6 +1768,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1560
1768
  format?: string | undefined;
1561
1769
  label?: string | undefined;
1562
1770
  valueLabels?: string | undefined;
1771
+ valueLabelsMap?: Record<string, string> | undefined;
1563
1772
  nullValueLabel?: string | undefined;
1564
1773
  };
1565
1774
  yColumn: {
@@ -1568,6 +1777,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1568
1777
  format?: string | undefined;
1569
1778
  label?: string | undefined;
1570
1779
  valueLabels?: string | undefined;
1780
+ valueLabelsMap?: Record<string, string> | undefined;
1571
1781
  nullValueLabel?: string | undefined;
1572
1782
  };
1573
1783
  valueColumn: {
@@ -1576,6 +1786,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1576
1786
  format?: string | undefined;
1577
1787
  label?: string | undefined;
1578
1788
  valueLabels?: string | undefined;
1789
+ valueLabelsMap?: Record<string, string> | undefined;
1579
1790
  nullValueLabel?: string | undefined;
1580
1791
  };
1581
1792
  size?: {
@@ -1608,6 +1819,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1608
1819
  format?: string | undefined;
1609
1820
  label?: string | undefined;
1610
1821
  valueLabels?: string | undefined;
1822
+ valueLabelsMap?: Record<string, string> | undefined;
1611
1823
  nullValueLabel?: string | undefined;
1612
1824
  }[] | undefined;
1613
1825
  } | undefined;
@@ -1651,6 +1863,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1651
1863
  format?: string | undefined;
1652
1864
  label?: string | undefined;
1653
1865
  valueLabels?: string | undefined;
1866
+ valueLabelsMap?: Record<string, string> | undefined;
1654
1867
  nullValueLabel?: string | undefined;
1655
1868
  }[] | undefined;
1656
1869
  xGroupBy?: {
@@ -1659,6 +1872,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1659
1872
  format?: string | undefined;
1660
1873
  label?: string | undefined;
1661
1874
  valueLabels?: string | undefined;
1875
+ valueLabelsMap?: Record<string, string> | undefined;
1662
1876
  nullValueLabel?: string | undefined;
1663
1877
  }[] | undefined;
1664
1878
  yGroupBy?: {
@@ -1667,8 +1881,28 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1667
1881
  format?: string | undefined;
1668
1882
  label?: string | undefined;
1669
1883
  valueLabels?: string | undefined;
1884
+ valueLabelsMap?: Record<string, string> | undefined;
1885
+ nullValueLabel?: string | undefined;
1886
+ }[] | undefined;
1887
+ xSortBy?: {
1888
+ type: "column";
1889
+ value: string;
1890
+ format?: string | undefined;
1891
+ label?: string | undefined;
1892
+ valueLabels?: string | undefined;
1893
+ valueLabelsMap?: Record<string, string> | undefined;
1894
+ nullValueLabel?: string | undefined;
1895
+ }[] | undefined;
1896
+ ySortBy?: {
1897
+ type: "column";
1898
+ value: string;
1899
+ format?: string | undefined;
1900
+ label?: string | undefined;
1901
+ valueLabels?: string | undefined;
1902
+ valueLabelsMap?: Record<string, string> | undefined;
1670
1903
  nullValueLabel?: string | undefined;
1671
1904
  }[] | undefined;
1905
+ transform?: "log" | undefined;
1672
1906
  keysOrder?: Record<string, string[]> | undefined;
1673
1907
  normalization?: {
1674
1908
  direction: "column" | "row";
@@ -1692,6 +1926,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1692
1926
  format?: string | undefined;
1693
1927
  label?: string | undefined;
1694
1928
  valueLabels?: string | undefined;
1929
+ valueLabelsMap?: Record<string, string> | undefined;
1695
1930
  nullValueLabel?: string | undefined;
1696
1931
  };
1697
1932
  axis: "x";
@@ -1707,6 +1942,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1707
1942
  format?: string | undefined;
1708
1943
  label?: string | undefined;
1709
1944
  valueLabels?: string | undefined;
1945
+ valueLabelsMap?: Record<string, string> | undefined;
1710
1946
  nullValueLabel?: string | undefined;
1711
1947
  };
1712
1948
  axis: "y";
@@ -1724,6 +1960,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1724
1960
  format?: string | undefined;
1725
1961
  label?: string | undefined;
1726
1962
  valueLabels?: string | undefined;
1963
+ valueLabelsMap?: Record<string, string> | undefined;
1727
1964
  nullValueLabel?: string | undefined;
1728
1965
  } | undefined;
1729
1966
  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" | {
@@ -1732,6 +1969,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1732
1969
  format?: string | undefined;
1733
1970
  label?: string | undefined;
1734
1971
  valueLabels?: string | undefined;
1972
+ valueLabelsMap?: Record<string, string> | undefined;
1735
1973
  nullValueLabel?: string | undefined;
1736
1974
  } | undefined;
1737
1975
  dotSize?: number | {
@@ -1740,6 +1978,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1740
1978
  format?: string | undefined;
1741
1979
  label?: string | undefined;
1742
1980
  valueLabels?: string | undefined;
1981
+ valueLabelsMap?: Record<string, string> | undefined;
1743
1982
  nullValueLabel?: string | undefined;
1744
1983
  } | undefined;
1745
1984
  lineWidth?: number | {
@@ -1748,6 +1987,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1748
1987
  format?: string | undefined;
1749
1988
  label?: string | undefined;
1750
1989
  valueLabels?: string | undefined;
1990
+ valueLabelsMap?: Record<string, string> | undefined;
1751
1991
  nullValueLabel?: string | undefined;
1752
1992
  } | undefined;
1753
1993
  lineShape?: {
@@ -1756,6 +1996,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1756
1996
  format?: string | undefined;
1757
1997
  label?: string | undefined;
1758
1998
  valueLabels?: string | undefined;
1999
+ valueLabelsMap?: Record<string, string> | undefined;
1759
2000
  nullValueLabel?: string | undefined;
1760
2001
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1761
2002
  lineColor?: string | {
@@ -1764,6 +2005,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1764
2005
  format?: string | undefined;
1765
2006
  label?: string | undefined;
1766
2007
  valueLabels?: string | undefined;
2008
+ valueLabelsMap?: Record<string, string> | undefined;
1767
2009
  nullValueLabel?: string | undefined;
1768
2010
  } | undefined;
1769
2011
  } | undefined;
@@ -1784,6 +2026,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1784
2026
  format?: string | undefined;
1785
2027
  label?: string | undefined;
1786
2028
  valueLabels?: string | undefined;
2029
+ valueLabelsMap?: Record<string, string> | undefined;
1787
2030
  nullValueLabel?: string | undefined;
1788
2031
  } | undefined;
1789
2032
  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" | {
@@ -1792,6 +2035,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1792
2035
  format?: string | undefined;
1793
2036
  label?: string | undefined;
1794
2037
  valueLabels?: string | undefined;
2038
+ valueLabelsMap?: Record<string, string> | undefined;
1795
2039
  nullValueLabel?: string | undefined;
1796
2040
  } | undefined;
1797
2041
  dotSize?: number | {
@@ -1800,6 +2044,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1800
2044
  format?: string | undefined;
1801
2045
  label?: string | undefined;
1802
2046
  valueLabels?: string | undefined;
2047
+ valueLabelsMap?: Record<string, string> | undefined;
1803
2048
  nullValueLabel?: string | undefined;
1804
2049
  } | undefined;
1805
2050
  lineWidth?: number | {
@@ -1808,6 +2053,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1808
2053
  format?: string | undefined;
1809
2054
  label?: string | undefined;
1810
2055
  valueLabels?: string | undefined;
2056
+ valueLabelsMap?: Record<string, string> | undefined;
1811
2057
  nullValueLabel?: string | undefined;
1812
2058
  } | undefined;
1813
2059
  lineShape?: {
@@ -1816,6 +2062,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1816
2062
  format?: string | undefined;
1817
2063
  label?: string | undefined;
1818
2064
  valueLabels?: string | undefined;
2065
+ valueLabelsMap?: Record<string, string> | undefined;
1819
2066
  nullValueLabel?: string | undefined;
1820
2067
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1821
2068
  lineColor?: string | {
@@ -1824,6 +2071,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1824
2071
  format?: string | undefined;
1825
2072
  label?: string | undefined;
1826
2073
  valueLabels?: string | undefined;
2074
+ valueLabelsMap?: Record<string, string> | undefined;
1827
2075
  nullValueLabel?: string | undefined;
1828
2076
  } | undefined;
1829
2077
  } | undefined;