@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
@@ -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,7 @@ 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;
301
321
  nullValueLabel?: string | undefined;
302
322
  }>, "many">>;
303
323
  facetBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -306,6 +326,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
306
326
  format: z.ZodOptional<z.ZodString>;
307
327
  label: z.ZodOptional<z.ZodString>;
308
328
  valueLabels: z.ZodOptional<z.ZodString>;
329
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
309
330
  nullValueLabel: z.ZodOptional<z.ZodString>;
310
331
  }, "strip", z.ZodTypeAny, {
311
332
  type: "column";
@@ -313,6 +334,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
313
334
  format?: string | undefined;
314
335
  label?: string | undefined;
315
336
  valueLabels?: string | undefined;
337
+ valueLabelsMap?: Record<string, string> | undefined;
316
338
  nullValueLabel?: string | undefined;
317
339
  }, {
318
340
  type: "column";
@@ -320,6 +342,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
320
342
  format?: string | undefined;
321
343
  label?: string | undefined;
322
344
  valueLabels?: string | undefined;
345
+ valueLabelsMap?: Record<string, string> | undefined;
323
346
  nullValueLabel?: string | undefined;
324
347
  }>, "many">>;
325
348
  keysOrder: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
@@ -356,6 +379,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
356
379
  format: z.ZodOptional<z.ZodString>;
357
380
  label: z.ZodOptional<z.ZodString>;
358
381
  valueLabels: z.ZodOptional<z.ZodString>;
382
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
359
383
  nullValueLabel: z.ZodOptional<z.ZodString>;
360
384
  }, "strip", z.ZodTypeAny, {
361
385
  type: "column";
@@ -363,6 +387,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
363
387
  format?: string | undefined;
364
388
  label?: string | undefined;
365
389
  valueLabels?: string | undefined;
390
+ valueLabelsMap?: Record<string, string> | undefined;
366
391
  nullValueLabel?: string | undefined;
367
392
  }, {
368
393
  type: "column";
@@ -370,6 +395,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
370
395
  format?: string | undefined;
371
396
  label?: string | undefined;
372
397
  valueLabels?: string | undefined;
398
+ valueLabelsMap?: Record<string, string> | undefined;
373
399
  nullValueLabel?: string | undefined;
374
400
  }>;
375
401
  type: z.ZodEnum<["discrete", "continuous"]>;
@@ -387,6 +413,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
387
413
  format?: string | undefined;
388
414
  label?: string | undefined;
389
415
  valueLabels?: string | undefined;
416
+ valueLabelsMap?: Record<string, string> | undefined;
390
417
  nullValueLabel?: string | undefined;
391
418
  };
392
419
  axis: "x";
@@ -402,6 +429,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
402
429
  format?: string | undefined;
403
430
  label?: string | undefined;
404
431
  valueLabels?: string | undefined;
432
+ valueLabelsMap?: Record<string, string> | undefined;
405
433
  nullValueLabel?: string | undefined;
406
434
  };
407
435
  axis: "x";
@@ -416,6 +444,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
416
444
  format: z.ZodOptional<z.ZodString>;
417
445
  label: z.ZodOptional<z.ZodString>;
418
446
  valueLabels: z.ZodOptional<z.ZodString>;
447
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
419
448
  nullValueLabel: z.ZodOptional<z.ZodString>;
420
449
  }, "strip", z.ZodTypeAny, {
421
450
  type: "column";
@@ -423,6 +452,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
423
452
  format?: string | undefined;
424
453
  label?: string | undefined;
425
454
  valueLabels?: string | undefined;
455
+ valueLabelsMap?: Record<string, string> | undefined;
426
456
  nullValueLabel?: string | undefined;
427
457
  }, {
428
458
  type: "column";
@@ -430,6 +460,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
430
460
  format?: string | undefined;
431
461
  label?: string | undefined;
432
462
  valueLabels?: string | undefined;
463
+ valueLabelsMap?: Record<string, string> | undefined;
433
464
  nullValueLabel?: string | undefined;
434
465
  }>;
435
466
  type: z.ZodEnum<["discrete", "continuous"]>;
@@ -447,6 +478,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
447
478
  format?: string | undefined;
448
479
  label?: string | undefined;
449
480
  valueLabels?: string | undefined;
481
+ valueLabelsMap?: Record<string, string> | undefined;
450
482
  nullValueLabel?: string | undefined;
451
483
  };
452
484
  axis: "y";
@@ -462,6 +494,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
462
494
  format?: string | undefined;
463
495
  label?: string | undefined;
464
496
  valueLabels?: string | undefined;
497
+ valueLabelsMap?: Record<string, string> | undefined;
465
498
  nullValueLabel?: string | undefined;
466
499
  };
467
500
  axis: "y";
@@ -485,6 +518,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
485
518
  format: z.ZodOptional<z.ZodString>;
486
519
  label: z.ZodOptional<z.ZodString>;
487
520
  valueLabels: z.ZodOptional<z.ZodString>;
521
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
488
522
  nullValueLabel: z.ZodOptional<z.ZodString>;
489
523
  }, "strip", z.ZodTypeAny, {
490
524
  type: "column";
@@ -492,6 +526,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
492
526
  format?: string | undefined;
493
527
  label?: string | undefined;
494
528
  valueLabels?: string | undefined;
529
+ valueLabelsMap?: Record<string, string> | undefined;
495
530
  nullValueLabel?: string | undefined;
496
531
  }, {
497
532
  type: "column";
@@ -499,6 +534,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
499
534
  format?: string | undefined;
500
535
  label?: string | undefined;
501
536
  valueLabels?: string | undefined;
537
+ valueLabelsMap?: Record<string, string> | undefined;
502
538
  nullValueLabel?: string | undefined;
503
539
  }>]>>;
504
540
  dotFill: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
@@ -507,6 +543,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
507
543
  format: z.ZodOptional<z.ZodString>;
508
544
  label: z.ZodOptional<z.ZodString>;
509
545
  valueLabels: z.ZodOptional<z.ZodString>;
546
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
510
547
  nullValueLabel: z.ZodOptional<z.ZodString>;
511
548
  }, "strip", z.ZodTypeAny, {
512
549
  type: "column";
@@ -514,6 +551,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
514
551
  format?: string | undefined;
515
552
  label?: string | undefined;
516
553
  valueLabels?: string | undefined;
554
+ valueLabelsMap?: Record<string, string> | undefined;
517
555
  nullValueLabel?: string | undefined;
518
556
  }, {
519
557
  type: "column";
@@ -521,6 +559,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
521
559
  format?: string | undefined;
522
560
  label?: string | undefined;
523
561
  valueLabels?: string | undefined;
562
+ valueLabelsMap?: Record<string, string> | undefined;
524
563
  nullValueLabel?: string | undefined;
525
564
  }>]>>;
526
565
  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 +568,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
529
568
  format: z.ZodOptional<z.ZodString>;
530
569
  label: z.ZodOptional<z.ZodString>;
531
570
  valueLabels: z.ZodOptional<z.ZodString>;
571
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
532
572
  nullValueLabel: z.ZodOptional<z.ZodString>;
533
573
  }, "strip", z.ZodTypeAny, {
534
574
  type: "column";
@@ -536,6 +576,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
536
576
  format?: string | undefined;
537
577
  label?: string | undefined;
538
578
  valueLabels?: string | undefined;
579
+ valueLabelsMap?: Record<string, string> | undefined;
539
580
  nullValueLabel?: string | undefined;
540
581
  }, {
541
582
  type: "column";
@@ -543,6 +584,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
543
584
  format?: string | undefined;
544
585
  label?: string | undefined;
545
586
  valueLabels?: string | undefined;
587
+ valueLabelsMap?: Record<string, string> | undefined;
546
588
  nullValueLabel?: string | undefined;
547
589
  }>]>>;
548
590
  dotSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -551,6 +593,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
551
593
  format: z.ZodOptional<z.ZodString>;
552
594
  label: z.ZodOptional<z.ZodString>;
553
595
  valueLabels: z.ZodOptional<z.ZodString>;
596
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
554
597
  nullValueLabel: z.ZodOptional<z.ZodString>;
555
598
  }, "strip", z.ZodTypeAny, {
556
599
  type: "column";
@@ -558,6 +601,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
558
601
  format?: string | undefined;
559
602
  label?: string | undefined;
560
603
  valueLabels?: string | undefined;
604
+ valueLabelsMap?: Record<string, string> | undefined;
561
605
  nullValueLabel?: string | undefined;
562
606
  }, {
563
607
  type: "column";
@@ -565,6 +609,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
565
609
  format?: string | undefined;
566
610
  label?: string | undefined;
567
611
  valueLabels?: string | undefined;
612
+ valueLabelsMap?: Record<string, string> | undefined;
568
613
  nullValueLabel?: string | undefined;
569
614
  }>]>>;
570
615
  lineShape: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>, z.ZodObject<{
@@ -573,6 +618,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
573
618
  format: z.ZodOptional<z.ZodString>;
574
619
  label: z.ZodOptional<z.ZodString>;
575
620
  valueLabels: z.ZodOptional<z.ZodString>;
621
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
576
622
  nullValueLabel: z.ZodOptional<z.ZodString>;
577
623
  }, "strip", z.ZodTypeAny, {
578
624
  type: "column";
@@ -580,6 +626,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
580
626
  format?: string | undefined;
581
627
  label?: string | undefined;
582
628
  valueLabels?: string | undefined;
629
+ valueLabelsMap?: Record<string, string> | undefined;
583
630
  nullValueLabel?: string | undefined;
584
631
  }, {
585
632
  type: "column";
@@ -587,6 +634,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
587
634
  format?: string | undefined;
588
635
  label?: string | undefined;
589
636
  valueLabels?: string | undefined;
637
+ valueLabelsMap?: Record<string, string> | undefined;
590
638
  nullValueLabel?: string | undefined;
591
639
  }>]>>;
592
640
  lineWidth: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -595,6 +643,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
595
643
  format: z.ZodOptional<z.ZodString>;
596
644
  label: z.ZodOptional<z.ZodString>;
597
645
  valueLabels: z.ZodOptional<z.ZodString>;
646
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
598
647
  nullValueLabel: z.ZodOptional<z.ZodString>;
599
648
  }, "strip", z.ZodTypeAny, {
600
649
  type: "column";
@@ -602,6 +651,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
602
651
  format?: string | undefined;
603
652
  label?: string | undefined;
604
653
  valueLabels?: string | undefined;
654
+ valueLabelsMap?: Record<string, string> | undefined;
605
655
  nullValueLabel?: string | undefined;
606
656
  }, {
607
657
  type: "column";
@@ -609,6 +659,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
609
659
  format?: string | undefined;
610
660
  label?: string | undefined;
611
661
  valueLabels?: string | undefined;
662
+ valueLabelsMap?: Record<string, string> | undefined;
612
663
  nullValueLabel?: string | undefined;
613
664
  }>]>>;
614
665
  }, "strip", z.ZodTypeAny, {
@@ -618,6 +669,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
618
669
  format?: string | undefined;
619
670
  label?: string | undefined;
620
671
  valueLabels?: string | undefined;
672
+ valueLabelsMap?: Record<string, string> | undefined;
621
673
  nullValueLabel?: string | undefined;
622
674
  } | undefined;
623
675
  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 +678,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
626
678
  format?: string | undefined;
627
679
  label?: string | undefined;
628
680
  valueLabels?: string | undefined;
681
+ valueLabelsMap?: Record<string, string> | undefined;
629
682
  nullValueLabel?: string | undefined;
630
683
  } | undefined;
631
684
  dotSize?: number | {
@@ -634,6 +687,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
634
687
  format?: string | undefined;
635
688
  label?: string | undefined;
636
689
  valueLabels?: string | undefined;
690
+ valueLabelsMap?: Record<string, string> | undefined;
637
691
  nullValueLabel?: string | undefined;
638
692
  } | undefined;
639
693
  lineWidth?: number | {
@@ -642,6 +696,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
642
696
  format?: string | undefined;
643
697
  label?: string | undefined;
644
698
  valueLabels?: string | undefined;
699
+ valueLabelsMap?: Record<string, string> | undefined;
645
700
  nullValueLabel?: string | undefined;
646
701
  } | undefined;
647
702
  lineShape?: {
@@ -650,6 +705,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
650
705
  format?: string | undefined;
651
706
  label?: string | undefined;
652
707
  valueLabels?: string | undefined;
708
+ valueLabelsMap?: Record<string, string> | undefined;
653
709
  nullValueLabel?: string | undefined;
654
710
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
655
711
  lineColor?: string | {
@@ -658,6 +714,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
658
714
  format?: string | undefined;
659
715
  label?: string | undefined;
660
716
  valueLabels?: string | undefined;
717
+ valueLabelsMap?: Record<string, string> | undefined;
661
718
  nullValueLabel?: string | undefined;
662
719
  } | undefined;
663
720
  }, {
@@ -667,6 +724,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
667
724
  format?: string | undefined;
668
725
  label?: string | undefined;
669
726
  valueLabels?: string | undefined;
727
+ valueLabelsMap?: Record<string, string> | undefined;
670
728
  nullValueLabel?: string | undefined;
671
729
  } | undefined;
672
730
  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 +733,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
675
733
  format?: string | undefined;
676
734
  label?: string | undefined;
677
735
  valueLabels?: string | undefined;
736
+ valueLabelsMap?: Record<string, string> | undefined;
678
737
  nullValueLabel?: string | undefined;
679
738
  } | undefined;
680
739
  dotSize?: number | {
@@ -683,6 +742,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
683
742
  format?: string | undefined;
684
743
  label?: string | undefined;
685
744
  valueLabels?: string | undefined;
745
+ valueLabelsMap?: Record<string, string> | undefined;
686
746
  nullValueLabel?: string | undefined;
687
747
  } | undefined;
688
748
  lineWidth?: number | {
@@ -691,6 +751,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
691
751
  format?: string | undefined;
692
752
  label?: string | undefined;
693
753
  valueLabels?: string | undefined;
754
+ valueLabelsMap?: Record<string, string> | undefined;
694
755
  nullValueLabel?: string | undefined;
695
756
  } | undefined;
696
757
  lineShape?: {
@@ -699,6 +760,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
699
760
  format?: string | undefined;
700
761
  label?: string | undefined;
701
762
  valueLabels?: string | undefined;
763
+ valueLabelsMap?: Record<string, string> | undefined;
702
764
  nullValueLabel?: string | undefined;
703
765
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
704
766
  lineColor?: string | {
@@ -707,6 +769,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
707
769
  format?: string | undefined;
708
770
  label?: string | undefined;
709
771
  valueLabels?: string | undefined;
772
+ valueLabelsMap?: Record<string, string> | undefined;
710
773
  nullValueLabel?: string | undefined;
711
774
  } | undefined;
712
775
  }>>;
@@ -721,6 +784,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
721
784
  format?: string | undefined;
722
785
  label?: string | undefined;
723
786
  valueLabels?: string | undefined;
787
+ valueLabelsMap?: Record<string, string> | undefined;
724
788
  nullValueLabel?: string | undefined;
725
789
  } | undefined;
726
790
  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 +793,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
729
793
  format?: string | undefined;
730
794
  label?: string | undefined;
731
795
  valueLabels?: string | undefined;
796
+ valueLabelsMap?: Record<string, string> | undefined;
732
797
  nullValueLabel?: string | undefined;
733
798
  } | undefined;
734
799
  dotSize?: number | {
@@ -737,6 +802,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
737
802
  format?: string | undefined;
738
803
  label?: string | undefined;
739
804
  valueLabels?: string | undefined;
805
+ valueLabelsMap?: Record<string, string> | undefined;
740
806
  nullValueLabel?: string | undefined;
741
807
  } | undefined;
742
808
  lineWidth?: number | {
@@ -745,6 +811,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
745
811
  format?: string | undefined;
746
812
  label?: string | undefined;
747
813
  valueLabels?: string | undefined;
814
+ valueLabelsMap?: Record<string, string> | undefined;
748
815
  nullValueLabel?: string | undefined;
749
816
  } | undefined;
750
817
  lineShape?: {
@@ -753,6 +820,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
753
820
  format?: string | undefined;
754
821
  label?: string | undefined;
755
822
  valueLabels?: string | undefined;
823
+ valueLabelsMap?: Record<string, string> | undefined;
756
824
  nullValueLabel?: string | undefined;
757
825
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
758
826
  lineColor?: string | {
@@ -761,6 +829,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
761
829
  format?: string | undefined;
762
830
  label?: string | undefined;
763
831
  valueLabels?: string | undefined;
832
+ valueLabelsMap?: Record<string, string> | undefined;
764
833
  nullValueLabel?: string | undefined;
765
834
  } | undefined;
766
835
  } | undefined;
@@ -780,6 +849,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
780
849
  format?: string | undefined;
781
850
  label?: string | undefined;
782
851
  valueLabels?: string | undefined;
852
+ valueLabelsMap?: Record<string, string> | undefined;
783
853
  nullValueLabel?: string | undefined;
784
854
  } | undefined;
785
855
  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 +858,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
788
858
  format?: string | undefined;
789
859
  label?: string | undefined;
790
860
  valueLabels?: string | undefined;
861
+ valueLabelsMap?: Record<string, string> | undefined;
791
862
  nullValueLabel?: string | undefined;
792
863
  } | undefined;
793
864
  dotSize?: number | {
@@ -796,6 +867,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
796
867
  format?: string | undefined;
797
868
  label?: string | undefined;
798
869
  valueLabels?: string | undefined;
870
+ valueLabelsMap?: Record<string, string> | undefined;
799
871
  nullValueLabel?: string | undefined;
800
872
  } | undefined;
801
873
  lineWidth?: number | {
@@ -804,6 +876,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
804
876
  format?: string | undefined;
805
877
  label?: string | undefined;
806
878
  valueLabels?: string | undefined;
879
+ valueLabelsMap?: Record<string, string> | undefined;
807
880
  nullValueLabel?: string | undefined;
808
881
  } | undefined;
809
882
  lineShape?: {
@@ -812,6 +885,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
812
885
  format?: string | undefined;
813
886
  label?: string | undefined;
814
887
  valueLabels?: string | undefined;
888
+ valueLabelsMap?: Record<string, string> | undefined;
815
889
  nullValueLabel?: string | undefined;
816
890
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
817
891
  lineColor?: string | {
@@ -820,6 +894,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
820
894
  format?: string | undefined;
821
895
  label?: string | undefined;
822
896
  valueLabels?: string | undefined;
897
+ valueLabelsMap?: Record<string, string> | undefined;
823
898
  nullValueLabel?: string | undefined;
824
899
  } | undefined;
825
900
  } | undefined;
@@ -846,6 +921,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
846
921
  format: z.ZodOptional<z.ZodString>;
847
922
  label: z.ZodOptional<z.ZodString>;
848
923
  valueLabels: z.ZodOptional<z.ZodString>;
924
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
849
925
  nullValueLabel: z.ZodOptional<z.ZodString>;
850
926
  }, "strip", z.ZodTypeAny, {
851
927
  type: "column";
@@ -853,6 +929,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
853
929
  format?: string | undefined;
854
930
  label?: string | undefined;
855
931
  valueLabels?: string | undefined;
932
+ valueLabelsMap?: Record<string, string> | undefined;
856
933
  nullValueLabel?: string | undefined;
857
934
  }, {
858
935
  type: "column";
@@ -860,6 +937,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
860
937
  format?: string | undefined;
861
938
  label?: string | undefined;
862
939
  valueLabels?: string | undefined;
940
+ valueLabelsMap?: Record<string, string> | undefined;
863
941
  nullValueLabel?: string | undefined;
864
942
  }>]>>;
865
943
  dotFill: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
@@ -868,6 +946,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
868
946
  format: z.ZodOptional<z.ZodString>;
869
947
  label: z.ZodOptional<z.ZodString>;
870
948
  valueLabels: z.ZodOptional<z.ZodString>;
949
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
871
950
  nullValueLabel: z.ZodOptional<z.ZodString>;
872
951
  }, "strip", z.ZodTypeAny, {
873
952
  type: "column";
@@ -875,6 +954,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
875
954
  format?: string | undefined;
876
955
  label?: string | undefined;
877
956
  valueLabels?: string | undefined;
957
+ valueLabelsMap?: Record<string, string> | undefined;
878
958
  nullValueLabel?: string | undefined;
879
959
  }, {
880
960
  type: "column";
@@ -882,6 +962,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
882
962
  format?: string | undefined;
883
963
  label?: string | undefined;
884
964
  valueLabels?: string | undefined;
965
+ valueLabelsMap?: Record<string, string> | undefined;
885
966
  nullValueLabel?: string | undefined;
886
967
  }>]>>;
887
968
  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 +971,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
890
971
  format: z.ZodOptional<z.ZodString>;
891
972
  label: z.ZodOptional<z.ZodString>;
892
973
  valueLabels: z.ZodOptional<z.ZodString>;
974
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
893
975
  nullValueLabel: z.ZodOptional<z.ZodString>;
894
976
  }, "strip", z.ZodTypeAny, {
895
977
  type: "column";
@@ -897,6 +979,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
897
979
  format?: string | undefined;
898
980
  label?: string | undefined;
899
981
  valueLabels?: string | undefined;
982
+ valueLabelsMap?: Record<string, string> | undefined;
900
983
  nullValueLabel?: string | undefined;
901
984
  }, {
902
985
  type: "column";
@@ -904,6 +987,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
904
987
  format?: string | undefined;
905
988
  label?: string | undefined;
906
989
  valueLabels?: string | undefined;
990
+ valueLabelsMap?: Record<string, string> | undefined;
907
991
  nullValueLabel?: string | undefined;
908
992
  }>]>>;
909
993
  dotSize: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -912,6 +996,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
912
996
  format: z.ZodOptional<z.ZodString>;
913
997
  label: z.ZodOptional<z.ZodString>;
914
998
  valueLabels: z.ZodOptional<z.ZodString>;
999
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
915
1000
  nullValueLabel: z.ZodOptional<z.ZodString>;
916
1001
  }, "strip", z.ZodTypeAny, {
917
1002
  type: "column";
@@ -919,6 +1004,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
919
1004
  format?: string | undefined;
920
1005
  label?: string | undefined;
921
1006
  valueLabels?: string | undefined;
1007
+ valueLabelsMap?: Record<string, string> | undefined;
922
1008
  nullValueLabel?: string | undefined;
923
1009
  }, {
924
1010
  type: "column";
@@ -926,6 +1012,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
926
1012
  format?: string | undefined;
927
1013
  label?: string | undefined;
928
1014
  valueLabels?: string | undefined;
1015
+ valueLabelsMap?: Record<string, string> | undefined;
929
1016
  nullValueLabel?: string | undefined;
930
1017
  }>]>>;
931
1018
  lineShape: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["solid", "dashed", "dotted", "dotdash", "longdash", "twodash"]>, z.ZodObject<{
@@ -934,6 +1021,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
934
1021
  format: z.ZodOptional<z.ZodString>;
935
1022
  label: z.ZodOptional<z.ZodString>;
936
1023
  valueLabels: z.ZodOptional<z.ZodString>;
1024
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
937
1025
  nullValueLabel: z.ZodOptional<z.ZodString>;
938
1026
  }, "strip", z.ZodTypeAny, {
939
1027
  type: "column";
@@ -941,6 +1029,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
941
1029
  format?: string | undefined;
942
1030
  label?: string | undefined;
943
1031
  valueLabels?: string | undefined;
1032
+ valueLabelsMap?: Record<string, string> | undefined;
944
1033
  nullValueLabel?: string | undefined;
945
1034
  }, {
946
1035
  type: "column";
@@ -948,6 +1037,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
948
1037
  format?: string | undefined;
949
1038
  label?: string | undefined;
950
1039
  valueLabels?: string | undefined;
1040
+ valueLabelsMap?: Record<string, string> | undefined;
951
1041
  nullValueLabel?: string | undefined;
952
1042
  }>]>>;
953
1043
  lineWidth: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
@@ -956,6 +1046,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
956
1046
  format: z.ZodOptional<z.ZodString>;
957
1047
  label: z.ZodOptional<z.ZodString>;
958
1048
  valueLabels: z.ZodOptional<z.ZodString>;
1049
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
959
1050
  nullValueLabel: z.ZodOptional<z.ZodString>;
960
1051
  }, "strip", z.ZodTypeAny, {
961
1052
  type: "column";
@@ -963,6 +1054,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
963
1054
  format?: string | undefined;
964
1055
  label?: string | undefined;
965
1056
  valueLabels?: string | undefined;
1057
+ valueLabelsMap?: Record<string, string> | undefined;
966
1058
  nullValueLabel?: string | undefined;
967
1059
  }, {
968
1060
  type: "column";
@@ -970,6 +1062,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
970
1062
  format?: string | undefined;
971
1063
  label?: string | undefined;
972
1064
  valueLabels?: string | undefined;
1065
+ valueLabelsMap?: Record<string, string> | undefined;
973
1066
  nullValueLabel?: string | undefined;
974
1067
  }>]>>;
975
1068
  }, "strip", z.ZodTypeAny, {
@@ -979,6 +1072,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
979
1072
  format?: string | undefined;
980
1073
  label?: string | undefined;
981
1074
  valueLabels?: string | undefined;
1075
+ valueLabelsMap?: Record<string, string> | undefined;
982
1076
  nullValueLabel?: string | undefined;
983
1077
  } | undefined;
984
1078
  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 +1081,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
987
1081
  format?: string | undefined;
988
1082
  label?: string | undefined;
989
1083
  valueLabels?: string | undefined;
1084
+ valueLabelsMap?: Record<string, string> | undefined;
990
1085
  nullValueLabel?: string | undefined;
991
1086
  } | undefined;
992
1087
  dotSize?: number | {
@@ -995,6 +1090,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
995
1090
  format?: string | undefined;
996
1091
  label?: string | undefined;
997
1092
  valueLabels?: string | undefined;
1093
+ valueLabelsMap?: Record<string, string> | undefined;
998
1094
  nullValueLabel?: string | undefined;
999
1095
  } | undefined;
1000
1096
  lineWidth?: number | {
@@ -1003,6 +1099,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1003
1099
  format?: string | undefined;
1004
1100
  label?: string | undefined;
1005
1101
  valueLabels?: string | undefined;
1102
+ valueLabelsMap?: Record<string, string> | undefined;
1006
1103
  nullValueLabel?: string | undefined;
1007
1104
  } | undefined;
1008
1105
  lineShape?: {
@@ -1011,6 +1108,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1011
1108
  format?: string | undefined;
1012
1109
  label?: string | undefined;
1013
1110
  valueLabels?: string | undefined;
1111
+ valueLabelsMap?: Record<string, string> | undefined;
1014
1112
  nullValueLabel?: string | undefined;
1015
1113
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1016
1114
  lineColor?: string | {
@@ -1019,6 +1117,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1019
1117
  format?: string | undefined;
1020
1118
  label?: string | undefined;
1021
1119
  valueLabels?: string | undefined;
1120
+ valueLabelsMap?: Record<string, string> | undefined;
1022
1121
  nullValueLabel?: string | undefined;
1023
1122
  } | undefined;
1024
1123
  }, {
@@ -1028,6 +1127,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1028
1127
  format?: string | undefined;
1029
1128
  label?: string | undefined;
1030
1129
  valueLabels?: string | undefined;
1130
+ valueLabelsMap?: Record<string, string> | undefined;
1031
1131
  nullValueLabel?: string | undefined;
1032
1132
  } | undefined;
1033
1133
  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 +1136,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1036
1136
  format?: string | undefined;
1037
1137
  label?: string | undefined;
1038
1138
  valueLabels?: string | undefined;
1139
+ valueLabelsMap?: Record<string, string> | undefined;
1039
1140
  nullValueLabel?: string | undefined;
1040
1141
  } | undefined;
1041
1142
  dotSize?: number | {
@@ -1044,6 +1145,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1044
1145
  format?: string | undefined;
1045
1146
  label?: string | undefined;
1046
1147
  valueLabels?: string | undefined;
1148
+ valueLabelsMap?: Record<string, string> | undefined;
1047
1149
  nullValueLabel?: string | undefined;
1048
1150
  } | undefined;
1049
1151
  lineWidth?: number | {
@@ -1052,6 +1154,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1052
1154
  format?: string | undefined;
1053
1155
  label?: string | undefined;
1054
1156
  valueLabels?: string | undefined;
1157
+ valueLabelsMap?: Record<string, string> | undefined;
1055
1158
  nullValueLabel?: string | undefined;
1056
1159
  } | undefined;
1057
1160
  lineShape?: {
@@ -1060,6 +1163,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1060
1163
  format?: string | undefined;
1061
1164
  label?: string | undefined;
1062
1165
  valueLabels?: string | undefined;
1166
+ valueLabelsMap?: Record<string, string> | undefined;
1063
1167
  nullValueLabel?: string | undefined;
1064
1168
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1065
1169
  lineColor?: string | {
@@ -1068,6 +1172,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1068
1172
  format?: string | undefined;
1069
1173
  label?: string | undefined;
1070
1174
  valueLabels?: string | undefined;
1175
+ valueLabelsMap?: Record<string, string> | undefined;
1071
1176
  nullValueLabel?: string | undefined;
1072
1177
  } | undefined;
1073
1178
  }>>;
@@ -1082,6 +1187,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1082
1187
  format?: string | undefined;
1083
1188
  label?: string | undefined;
1084
1189
  valueLabels?: string | undefined;
1190
+ valueLabelsMap?: Record<string, string> | undefined;
1085
1191
  nullValueLabel?: string | undefined;
1086
1192
  } | undefined;
1087
1193
  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 +1196,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1090
1196
  format?: string | undefined;
1091
1197
  label?: string | undefined;
1092
1198
  valueLabels?: string | undefined;
1199
+ valueLabelsMap?: Record<string, string> | undefined;
1093
1200
  nullValueLabel?: string | undefined;
1094
1201
  } | undefined;
1095
1202
  dotSize?: number | {
@@ -1098,6 +1205,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1098
1205
  format?: string | undefined;
1099
1206
  label?: string | undefined;
1100
1207
  valueLabels?: string | undefined;
1208
+ valueLabelsMap?: Record<string, string> | undefined;
1101
1209
  nullValueLabel?: string | undefined;
1102
1210
  } | undefined;
1103
1211
  lineWidth?: number | {
@@ -1106,6 +1214,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1106
1214
  format?: string | undefined;
1107
1215
  label?: string | undefined;
1108
1216
  valueLabels?: string | undefined;
1217
+ valueLabelsMap?: Record<string, string> | undefined;
1109
1218
  nullValueLabel?: string | undefined;
1110
1219
  } | undefined;
1111
1220
  lineShape?: {
@@ -1114,6 +1223,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1114
1223
  format?: string | undefined;
1115
1224
  label?: string | undefined;
1116
1225
  valueLabels?: string | undefined;
1226
+ valueLabelsMap?: Record<string, string> | undefined;
1117
1227
  nullValueLabel?: string | undefined;
1118
1228
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1119
1229
  lineColor?: string | {
@@ -1122,6 +1232,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1122
1232
  format?: string | undefined;
1123
1233
  label?: string | undefined;
1124
1234
  valueLabels?: string | undefined;
1235
+ valueLabelsMap?: Record<string, string> | undefined;
1125
1236
  nullValueLabel?: string | undefined;
1126
1237
  } | undefined;
1127
1238
  } | undefined;
@@ -1141,6 +1252,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1141
1252
  format?: string | undefined;
1142
1253
  label?: string | undefined;
1143
1254
  valueLabels?: string | undefined;
1255
+ valueLabelsMap?: Record<string, string> | undefined;
1144
1256
  nullValueLabel?: string | undefined;
1145
1257
  } | undefined;
1146
1258
  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 +1261,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1149
1261
  format?: string | undefined;
1150
1262
  label?: string | undefined;
1151
1263
  valueLabels?: string | undefined;
1264
+ valueLabelsMap?: Record<string, string> | undefined;
1152
1265
  nullValueLabel?: string | undefined;
1153
1266
  } | undefined;
1154
1267
  dotSize?: number | {
@@ -1157,6 +1270,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1157
1270
  format?: string | undefined;
1158
1271
  label?: string | undefined;
1159
1272
  valueLabels?: string | undefined;
1273
+ valueLabelsMap?: Record<string, string> | undefined;
1160
1274
  nullValueLabel?: string | undefined;
1161
1275
  } | undefined;
1162
1276
  lineWidth?: number | {
@@ -1165,6 +1279,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1165
1279
  format?: string | undefined;
1166
1280
  label?: string | undefined;
1167
1281
  valueLabels?: string | undefined;
1282
+ valueLabelsMap?: Record<string, string> | undefined;
1168
1283
  nullValueLabel?: string | undefined;
1169
1284
  } | undefined;
1170
1285
  lineShape?: {
@@ -1173,6 +1288,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1173
1288
  format?: string | undefined;
1174
1289
  label?: string | undefined;
1175
1290
  valueLabels?: string | undefined;
1291
+ valueLabelsMap?: Record<string, string> | undefined;
1176
1292
  nullValueLabel?: string | undefined;
1177
1293
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1178
1294
  lineColor?: string | {
@@ -1181,6 +1297,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1181
1297
  format?: string | undefined;
1182
1298
  label?: string | undefined;
1183
1299
  valueLabels?: string | undefined;
1300
+ valueLabelsMap?: Record<string, string> | undefined;
1184
1301
  nullValueLabel?: string | undefined;
1185
1302
  } | undefined;
1186
1303
  } | undefined;
@@ -1262,6 +1379,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1262
1379
  format?: string | undefined;
1263
1380
  label?: string | undefined;
1264
1381
  valueLabels?: string | undefined;
1382
+ valueLabelsMap?: Record<string, string> | undefined;
1265
1383
  nullValueLabel?: string | undefined;
1266
1384
  };
1267
1385
  yColumn: {
@@ -1270,6 +1388,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1270
1388
  format?: string | undefined;
1271
1389
  label?: string | undefined;
1272
1390
  valueLabels?: string | undefined;
1391
+ valueLabelsMap?: Record<string, string> | undefined;
1273
1392
  nullValueLabel?: string | undefined;
1274
1393
  };
1275
1394
  valueColumn: {
@@ -1278,6 +1397,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1278
1397
  format?: string | undefined;
1279
1398
  label?: string | undefined;
1280
1399
  valueLabels?: string | undefined;
1400
+ valueLabelsMap?: Record<string, string> | undefined;
1281
1401
  nullValueLabel?: string | undefined;
1282
1402
  };
1283
1403
  size?: {
@@ -1310,6 +1430,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1310
1430
  format?: string | undefined;
1311
1431
  label?: string | undefined;
1312
1432
  valueLabels?: string | undefined;
1433
+ valueLabelsMap?: Record<string, string> | undefined;
1313
1434
  nullValueLabel?: string | undefined;
1314
1435
  }[] | undefined;
1315
1436
  } | undefined;
@@ -1353,6 +1474,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1353
1474
  format?: string | undefined;
1354
1475
  label?: string | undefined;
1355
1476
  valueLabels?: string | undefined;
1477
+ valueLabelsMap?: Record<string, string> | undefined;
1356
1478
  nullValueLabel?: string | undefined;
1357
1479
  }[] | undefined;
1358
1480
  xGroupBy?: {
@@ -1361,6 +1483,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1361
1483
  format?: string | undefined;
1362
1484
  label?: string | undefined;
1363
1485
  valueLabels?: string | undefined;
1486
+ valueLabelsMap?: Record<string, string> | undefined;
1364
1487
  nullValueLabel?: string | undefined;
1365
1488
  }[] | undefined;
1366
1489
  yGroupBy?: {
@@ -1369,6 +1492,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1369
1492
  format?: string | undefined;
1370
1493
  label?: string | undefined;
1371
1494
  valueLabels?: string | undefined;
1495
+ valueLabelsMap?: Record<string, string> | undefined;
1372
1496
  nullValueLabel?: string | undefined;
1373
1497
  }[] | undefined;
1374
1498
  keysOrder?: Record<string, string[]> | undefined;
@@ -1394,6 +1518,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1394
1518
  format?: string | undefined;
1395
1519
  label?: string | undefined;
1396
1520
  valueLabels?: string | undefined;
1521
+ valueLabelsMap?: Record<string, string> | undefined;
1397
1522
  nullValueLabel?: string | undefined;
1398
1523
  };
1399
1524
  axis: "x";
@@ -1409,6 +1534,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1409
1534
  format?: string | undefined;
1410
1535
  label?: string | undefined;
1411
1536
  valueLabels?: string | undefined;
1537
+ valueLabelsMap?: Record<string, string> | undefined;
1412
1538
  nullValueLabel?: string | undefined;
1413
1539
  };
1414
1540
  axis: "y";
@@ -1426,6 +1552,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1426
1552
  format?: string | undefined;
1427
1553
  label?: string | undefined;
1428
1554
  valueLabels?: string | undefined;
1555
+ valueLabelsMap?: Record<string, string> | undefined;
1429
1556
  nullValueLabel?: string | undefined;
1430
1557
  } | undefined;
1431
1558
  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 +1561,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1434
1561
  format?: string | undefined;
1435
1562
  label?: string | undefined;
1436
1563
  valueLabels?: string | undefined;
1564
+ valueLabelsMap?: Record<string, string> | undefined;
1437
1565
  nullValueLabel?: string | undefined;
1438
1566
  } | undefined;
1439
1567
  dotSize?: number | {
@@ -1442,6 +1570,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1442
1570
  format?: string | undefined;
1443
1571
  label?: string | undefined;
1444
1572
  valueLabels?: string | undefined;
1573
+ valueLabelsMap?: Record<string, string> | undefined;
1445
1574
  nullValueLabel?: string | undefined;
1446
1575
  } | undefined;
1447
1576
  lineWidth?: number | {
@@ -1450,6 +1579,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1450
1579
  format?: string | undefined;
1451
1580
  label?: string | undefined;
1452
1581
  valueLabels?: string | undefined;
1582
+ valueLabelsMap?: Record<string, string> | undefined;
1453
1583
  nullValueLabel?: string | undefined;
1454
1584
  } | undefined;
1455
1585
  lineShape?: {
@@ -1458,6 +1588,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1458
1588
  format?: string | undefined;
1459
1589
  label?: string | undefined;
1460
1590
  valueLabels?: string | undefined;
1591
+ valueLabelsMap?: Record<string, string> | undefined;
1461
1592
  nullValueLabel?: string | undefined;
1462
1593
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1463
1594
  lineColor?: string | {
@@ -1466,6 +1597,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1466
1597
  format?: string | undefined;
1467
1598
  label?: string | undefined;
1468
1599
  valueLabels?: string | undefined;
1600
+ valueLabelsMap?: Record<string, string> | undefined;
1469
1601
  nullValueLabel?: string | undefined;
1470
1602
  } | undefined;
1471
1603
  } | undefined;
@@ -1486,6 +1618,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1486
1618
  format?: string | undefined;
1487
1619
  label?: string | undefined;
1488
1620
  valueLabels?: string | undefined;
1621
+ valueLabelsMap?: Record<string, string> | undefined;
1489
1622
  nullValueLabel?: string | undefined;
1490
1623
  } | undefined;
1491
1624
  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 +1627,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1494
1627
  format?: string | undefined;
1495
1628
  label?: string | undefined;
1496
1629
  valueLabels?: string | undefined;
1630
+ valueLabelsMap?: Record<string, string> | undefined;
1497
1631
  nullValueLabel?: string | undefined;
1498
1632
  } | undefined;
1499
1633
  dotSize?: number | {
@@ -1502,6 +1636,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1502
1636
  format?: string | undefined;
1503
1637
  label?: string | undefined;
1504
1638
  valueLabels?: string | undefined;
1639
+ valueLabelsMap?: Record<string, string> | undefined;
1505
1640
  nullValueLabel?: string | undefined;
1506
1641
  } | undefined;
1507
1642
  lineWidth?: number | {
@@ -1510,6 +1645,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1510
1645
  format?: string | undefined;
1511
1646
  label?: string | undefined;
1512
1647
  valueLabels?: string | undefined;
1648
+ valueLabelsMap?: Record<string, string> | undefined;
1513
1649
  nullValueLabel?: string | undefined;
1514
1650
  } | undefined;
1515
1651
  lineShape?: {
@@ -1518,6 +1654,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1518
1654
  format?: string | undefined;
1519
1655
  label?: string | undefined;
1520
1656
  valueLabels?: string | undefined;
1657
+ valueLabelsMap?: Record<string, string> | undefined;
1521
1658
  nullValueLabel?: string | undefined;
1522
1659
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1523
1660
  lineColor?: string | {
@@ -1526,6 +1663,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1526
1663
  format?: string | undefined;
1527
1664
  label?: string | undefined;
1528
1665
  valueLabels?: string | undefined;
1666
+ valueLabelsMap?: Record<string, string> | undefined;
1529
1667
  nullValueLabel?: string | undefined;
1530
1668
  } | undefined;
1531
1669
  } | undefined;
@@ -1560,6 +1698,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1560
1698
  format?: string | undefined;
1561
1699
  label?: string | undefined;
1562
1700
  valueLabels?: string | undefined;
1701
+ valueLabelsMap?: Record<string, string> | undefined;
1563
1702
  nullValueLabel?: string | undefined;
1564
1703
  };
1565
1704
  yColumn: {
@@ -1568,6 +1707,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1568
1707
  format?: string | undefined;
1569
1708
  label?: string | undefined;
1570
1709
  valueLabels?: string | undefined;
1710
+ valueLabelsMap?: Record<string, string> | undefined;
1571
1711
  nullValueLabel?: string | undefined;
1572
1712
  };
1573
1713
  valueColumn: {
@@ -1576,6 +1716,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1576
1716
  format?: string | undefined;
1577
1717
  label?: string | undefined;
1578
1718
  valueLabels?: string | undefined;
1719
+ valueLabelsMap?: Record<string, string> | undefined;
1579
1720
  nullValueLabel?: string | undefined;
1580
1721
  };
1581
1722
  size?: {
@@ -1608,6 +1749,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1608
1749
  format?: string | undefined;
1609
1750
  label?: string | undefined;
1610
1751
  valueLabels?: string | undefined;
1752
+ valueLabelsMap?: Record<string, string> | undefined;
1611
1753
  nullValueLabel?: string | undefined;
1612
1754
  }[] | undefined;
1613
1755
  } | undefined;
@@ -1651,6 +1793,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1651
1793
  format?: string | undefined;
1652
1794
  label?: string | undefined;
1653
1795
  valueLabels?: string | undefined;
1796
+ valueLabelsMap?: Record<string, string> | undefined;
1654
1797
  nullValueLabel?: string | undefined;
1655
1798
  }[] | undefined;
1656
1799
  xGroupBy?: {
@@ -1659,6 +1802,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1659
1802
  format?: string | undefined;
1660
1803
  label?: string | undefined;
1661
1804
  valueLabels?: string | undefined;
1805
+ valueLabelsMap?: Record<string, string> | undefined;
1662
1806
  nullValueLabel?: string | undefined;
1663
1807
  }[] | undefined;
1664
1808
  yGroupBy?: {
@@ -1667,6 +1811,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1667
1811
  format?: string | undefined;
1668
1812
  label?: string | undefined;
1669
1813
  valueLabels?: string | undefined;
1814
+ valueLabelsMap?: Record<string, string> | undefined;
1670
1815
  nullValueLabel?: string | undefined;
1671
1816
  }[] | undefined;
1672
1817
  keysOrder?: Record<string, string[]> | undefined;
@@ -1692,6 +1837,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1692
1837
  format?: string | undefined;
1693
1838
  label?: string | undefined;
1694
1839
  valueLabels?: string | undefined;
1840
+ valueLabelsMap?: Record<string, string> | undefined;
1695
1841
  nullValueLabel?: string | undefined;
1696
1842
  };
1697
1843
  axis: "x";
@@ -1707,6 +1853,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1707
1853
  format?: string | undefined;
1708
1854
  label?: string | undefined;
1709
1855
  valueLabels?: string | undefined;
1856
+ valueLabelsMap?: Record<string, string> | undefined;
1710
1857
  nullValueLabel?: string | undefined;
1711
1858
  };
1712
1859
  axis: "y";
@@ -1724,6 +1871,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1724
1871
  format?: string | undefined;
1725
1872
  label?: string | undefined;
1726
1873
  valueLabels?: string | undefined;
1874
+ valueLabelsMap?: Record<string, string> | undefined;
1727
1875
  nullValueLabel?: string | undefined;
1728
1876
  } | undefined;
1729
1877
  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 +1880,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1732
1880
  format?: string | undefined;
1733
1881
  label?: string | undefined;
1734
1882
  valueLabels?: string | undefined;
1883
+ valueLabelsMap?: Record<string, string> | undefined;
1735
1884
  nullValueLabel?: string | undefined;
1736
1885
  } | undefined;
1737
1886
  dotSize?: number | {
@@ -1740,6 +1889,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1740
1889
  format?: string | undefined;
1741
1890
  label?: string | undefined;
1742
1891
  valueLabels?: string | undefined;
1892
+ valueLabelsMap?: Record<string, string> | undefined;
1743
1893
  nullValueLabel?: string | undefined;
1744
1894
  } | undefined;
1745
1895
  lineWidth?: number | {
@@ -1748,6 +1898,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1748
1898
  format?: string | undefined;
1749
1899
  label?: string | undefined;
1750
1900
  valueLabels?: string | undefined;
1901
+ valueLabelsMap?: Record<string, string> | undefined;
1751
1902
  nullValueLabel?: string | undefined;
1752
1903
  } | undefined;
1753
1904
  lineShape?: {
@@ -1756,6 +1907,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1756
1907
  format?: string | undefined;
1757
1908
  label?: string | undefined;
1758
1909
  valueLabels?: string | undefined;
1910
+ valueLabelsMap?: Record<string, string> | undefined;
1759
1911
  nullValueLabel?: string | undefined;
1760
1912
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1761
1913
  lineColor?: string | {
@@ -1764,6 +1916,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1764
1916
  format?: string | undefined;
1765
1917
  label?: string | undefined;
1766
1918
  valueLabels?: string | undefined;
1919
+ valueLabelsMap?: Record<string, string> | undefined;
1767
1920
  nullValueLabel?: string | undefined;
1768
1921
  } | undefined;
1769
1922
  } | undefined;
@@ -1784,6 +1937,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1784
1937
  format?: string | undefined;
1785
1938
  label?: string | undefined;
1786
1939
  valueLabels?: string | undefined;
1940
+ valueLabelsMap?: Record<string, string> | undefined;
1787
1941
  nullValueLabel?: string | undefined;
1788
1942
  } | undefined;
1789
1943
  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 +1946,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1792
1946
  format?: string | undefined;
1793
1947
  label?: string | undefined;
1794
1948
  valueLabels?: string | undefined;
1949
+ valueLabelsMap?: Record<string, string> | undefined;
1795
1950
  nullValueLabel?: string | undefined;
1796
1951
  } | undefined;
1797
1952
  dotSize?: number | {
@@ -1800,6 +1955,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1800
1955
  format?: string | undefined;
1801
1956
  label?: string | undefined;
1802
1957
  valueLabels?: string | undefined;
1958
+ valueLabelsMap?: Record<string, string> | undefined;
1803
1959
  nullValueLabel?: string | undefined;
1804
1960
  } | undefined;
1805
1961
  lineWidth?: number | {
@@ -1808,6 +1964,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1808
1964
  format?: string | undefined;
1809
1965
  label?: string | undefined;
1810
1966
  valueLabels?: string | undefined;
1967
+ valueLabelsMap?: Record<string, string> | undefined;
1811
1968
  nullValueLabel?: string | undefined;
1812
1969
  } | undefined;
1813
1970
  lineShape?: {
@@ -1816,6 +1973,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1816
1973
  format?: string | undefined;
1817
1974
  label?: string | undefined;
1818
1975
  valueLabels?: string | undefined;
1976
+ valueLabelsMap?: Record<string, string> | undefined;
1819
1977
  nullValueLabel?: string | undefined;
1820
1978
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
1821
1979
  lineColor?: string | {
@@ -1824,6 +1982,7 @@ export declare const HeatmapSettingsSchema: z.ZodObject<{
1824
1982
  format?: string | undefined;
1825
1983
  label?: string | undefined;
1826
1984
  valueLabels?: string | undefined;
1985
+ valueLabelsMap?: Record<string, string> | undefined;
1827
1986
  nullValueLabel?: string | undefined;
1828
1987
  } | undefined;
1829
1988
  } | undefined;