@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
@@ -84,6 +84,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
84
84
  format: z.ZodOptional<z.ZodString>;
85
85
  label: z.ZodOptional<z.ZodString>;
86
86
  valueLabels: z.ZodOptional<z.ZodString>;
87
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
87
88
  nullValueLabel: z.ZodOptional<z.ZodString>;
88
89
  }, "strip", z.ZodTypeAny, {
89
90
  type: "column";
@@ -91,6 +92,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
91
92
  format?: string | undefined;
92
93
  label?: string | undefined;
93
94
  valueLabels?: string | undefined;
95
+ valueLabelsMap?: Record<string, string> | undefined;
94
96
  nullValueLabel?: string | undefined;
95
97
  }, {
96
98
  type: "column";
@@ -98,6 +100,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
98
100
  format?: string | undefined;
99
101
  label?: string | undefined;
100
102
  valueLabels?: string | undefined;
103
+ valueLabelsMap?: Record<string, string> | undefined;
101
104
  nullValueLabel?: string | undefined;
102
105
  }>;
103
106
  parentId: z.ZodObject<{
@@ -106,6 +109,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
106
109
  format: z.ZodOptional<z.ZodString>;
107
110
  label: z.ZodOptional<z.ZodString>;
108
111
  valueLabels: z.ZodOptional<z.ZodString>;
112
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
109
113
  nullValueLabel: z.ZodOptional<z.ZodString>;
110
114
  }, "strip", z.ZodTypeAny, {
111
115
  type: "column";
@@ -113,6 +117,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
113
117
  format?: string | undefined;
114
118
  label?: string | undefined;
115
119
  valueLabels?: string | undefined;
120
+ valueLabelsMap?: Record<string, string> | undefined;
116
121
  nullValueLabel?: string | undefined;
117
122
  }, {
118
123
  type: "column";
@@ -120,6 +125,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
120
125
  format?: string | undefined;
121
126
  label?: string | undefined;
122
127
  valueLabels?: string | undefined;
128
+ valueLabelsMap?: Record<string, string> | undefined;
123
129
  nullValueLabel?: string | undefined;
124
130
  }>;
125
131
  height: z.ZodOptional<z.ZodObject<{
@@ -128,6 +134,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
128
134
  format: z.ZodOptional<z.ZodString>;
129
135
  label: z.ZodOptional<z.ZodString>;
130
136
  valueLabels: z.ZodOptional<z.ZodString>;
137
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
131
138
  nullValueLabel: z.ZodOptional<z.ZodString>;
132
139
  }, "strip", z.ZodTypeAny, {
133
140
  type: "column";
@@ -135,6 +142,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
135
142
  format?: string | undefined;
136
143
  label?: string | undefined;
137
144
  valueLabels?: string | undefined;
145
+ valueLabelsMap?: Record<string, string> | undefined;
138
146
  nullValueLabel?: string | undefined;
139
147
  }, {
140
148
  type: "column";
@@ -142,6 +150,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
142
150
  format?: string | undefined;
143
151
  label?: string | undefined;
144
152
  valueLabels?: string | undefined;
153
+ valueLabelsMap?: Record<string, string> | undefined;
145
154
  nullValueLabel?: string | undefined;
146
155
  }>>;
147
156
  labels: z.ZodOptional<z.ZodObject<{
@@ -150,6 +159,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
150
159
  format: z.ZodOptional<z.ZodString>;
151
160
  label: z.ZodOptional<z.ZodString>;
152
161
  valueLabels: z.ZodOptional<z.ZodString>;
162
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
153
163
  nullValueLabel: z.ZodOptional<z.ZodString>;
154
164
  }, "strip", z.ZodTypeAny, {
155
165
  type: "column";
@@ -157,6 +167,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
157
167
  format?: string | undefined;
158
168
  label?: string | undefined;
159
169
  valueLabels?: string | undefined;
170
+ valueLabelsMap?: Record<string, string> | undefined;
160
171
  nullValueLabel?: string | undefined;
161
172
  }, {
162
173
  type: "column";
@@ -164,6 +175,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
164
175
  format?: string | undefined;
165
176
  label?: string | undefined;
166
177
  valueLabels?: string | undefined;
178
+ valueLabelsMap?: Record<string, string> | undefined;
167
179
  nullValueLabel?: string | undefined;
168
180
  }>>;
169
181
  facetBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -172,6 +184,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
172
184
  format: z.ZodOptional<z.ZodString>;
173
185
  label: z.ZodOptional<z.ZodString>;
174
186
  valueLabels: z.ZodOptional<z.ZodString>;
187
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
175
188
  nullValueLabel: z.ZodOptional<z.ZodString>;
176
189
  }, "strip", z.ZodTypeAny, {
177
190
  type: "column";
@@ -179,6 +192,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
179
192
  format?: string | undefined;
180
193
  label?: string | undefined;
181
194
  valueLabels?: string | undefined;
195
+ valueLabelsMap?: Record<string, string> | undefined;
182
196
  nullValueLabel?: string | undefined;
183
197
  }, {
184
198
  type: "column";
@@ -186,6 +200,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
186
200
  format?: string | undefined;
187
201
  label?: string | undefined;
188
202
  valueLabels?: string | undefined;
203
+ valueLabelsMap?: Record<string, string> | undefined;
189
204
  nullValueLabel?: string | undefined;
190
205
  }>, "many">>;
191
206
  heatmapAnnotation: z.ZodOptional<z.ZodObject<{
@@ -194,6 +209,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
194
209
  format: z.ZodOptional<z.ZodString>;
195
210
  label: z.ZodOptional<z.ZodString>;
196
211
  valueLabels: z.ZodOptional<z.ZodString>;
212
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
197
213
  nullValueLabel: z.ZodOptional<z.ZodString>;
198
214
  }, "strip", z.ZodTypeAny, {
199
215
  type: "column";
@@ -201,6 +217,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
201
217
  format?: string | undefined;
202
218
  label?: string | undefined;
203
219
  valueLabels?: string | undefined;
220
+ valueLabelsMap?: Record<string, string> | undefined;
204
221
  nullValueLabel?: string | undefined;
205
222
  }, {
206
223
  type: "column";
@@ -208,6 +225,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
208
225
  format?: string | undefined;
209
226
  label?: string | undefined;
210
227
  valueLabels?: string | undefined;
228
+ valueLabelsMap?: Record<string, string> | undefined;
211
229
  nullValueLabel?: string | undefined;
212
230
  }>>;
213
231
  heatmapAxis: z.ZodOptional<z.ZodObject<{
@@ -216,6 +234,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
216
234
  format: z.ZodOptional<z.ZodString>;
217
235
  label: z.ZodOptional<z.ZodString>;
218
236
  valueLabels: z.ZodOptional<z.ZodString>;
237
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
219
238
  nullValueLabel: z.ZodOptional<z.ZodString>;
220
239
  }, "strip", z.ZodTypeAny, {
221
240
  type: "column";
@@ -223,6 +242,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
223
242
  format?: string | undefined;
224
243
  label?: string | undefined;
225
244
  valueLabels?: string | undefined;
245
+ valueLabelsMap?: Record<string, string> | undefined;
226
246
  nullValueLabel?: string | undefined;
227
247
  }, {
228
248
  type: "column";
@@ -230,6 +250,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
230
250
  format?: string | undefined;
231
251
  label?: string | undefined;
232
252
  valueLabels?: string | undefined;
253
+ valueLabelsMap?: Record<string, string> | undefined;
233
254
  nullValueLabel?: string | undefined;
234
255
  }>>;
235
256
  heatmapGroup: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -238,6 +259,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
238
259
  format: z.ZodOptional<z.ZodString>;
239
260
  label: z.ZodOptional<z.ZodString>;
240
261
  valueLabels: z.ZodOptional<z.ZodString>;
262
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
241
263
  nullValueLabel: z.ZodOptional<z.ZodString>;
242
264
  }, "strip", z.ZodTypeAny, {
243
265
  type: "column";
@@ -245,6 +267,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
245
267
  format?: string | undefined;
246
268
  label?: string | undefined;
247
269
  valueLabels?: string | undefined;
270
+ valueLabelsMap?: Record<string, string> | undefined;
248
271
  nullValueLabel?: string | undefined;
249
272
  }, {
250
273
  type: "column";
@@ -252,6 +275,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
252
275
  format?: string | undefined;
253
276
  label?: string | undefined;
254
277
  valueLabels?: string | undefined;
278
+ valueLabelsMap?: Record<string, string> | undefined;
255
279
  nullValueLabel?: string | undefined;
256
280
  }>, "many">>;
257
281
  heatmapSettings: z.ZodOptional<z.ZodObject<{
@@ -294,6 +318,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
294
318
  format: z.ZodOptional<z.ZodString>;
295
319
  label: z.ZodOptional<z.ZodString>;
296
320
  valueLabels: z.ZodOptional<z.ZodString>;
321
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
297
322
  nullValueLabel: z.ZodOptional<z.ZodString>;
298
323
  }, "strip", z.ZodTypeAny, {
299
324
  type: "column";
@@ -301,6 +326,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
301
326
  format?: string | undefined;
302
327
  label?: string | undefined;
303
328
  valueLabels?: string | undefined;
329
+ valueLabelsMap?: Record<string, string> | undefined;
304
330
  nullValueLabel?: string | undefined;
305
331
  }, {
306
332
  type: "column";
@@ -308,6 +334,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
308
334
  format?: string | undefined;
309
335
  label?: string | undefined;
310
336
  valueLabels?: string | undefined;
337
+ valueLabelsMap?: Record<string, string> | undefined;
311
338
  nullValueLabel?: string | undefined;
312
339
  }>;
313
340
  valuesMap: z.ZodRecord<z.ZodString, 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"]>>;
@@ -318,6 +345,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
318
345
  format?: string | undefined;
319
346
  label?: string | undefined;
320
347
  valueLabels?: string | undefined;
348
+ valueLabelsMap?: Record<string, string> | undefined;
321
349
  nullValueLabel?: string | undefined;
322
350
  };
323
351
  valuesMap: Record<string, "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">;
@@ -328,6 +356,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
328
356
  format?: string | undefined;
329
357
  label?: string | undefined;
330
358
  valueLabels?: string | undefined;
359
+ valueLabelsMap?: Record<string, string> | undefined;
331
360
  nullValueLabel?: string | undefined;
332
361
  };
333
362
  valuesMap: Record<string, "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">;
@@ -339,6 +368,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
339
368
  format: z.ZodOptional<z.ZodString>;
340
369
  label: z.ZodOptional<z.ZodString>;
341
370
  valueLabels: z.ZodOptional<z.ZodString>;
371
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
342
372
  nullValueLabel: z.ZodOptional<z.ZodString>;
343
373
  }, "strip", z.ZodTypeAny, {
344
374
  type: "column";
@@ -346,6 +376,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
346
376
  format?: string | undefined;
347
377
  label?: string | undefined;
348
378
  valueLabels?: string | undefined;
379
+ valueLabelsMap?: Record<string, string> | undefined;
349
380
  nullValueLabel?: string | undefined;
350
381
  }, {
351
382
  type: "column";
@@ -353,6 +384,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
353
384
  format?: string | undefined;
354
385
  label?: string | undefined;
355
386
  valueLabels?: string | undefined;
387
+ valueLabelsMap?: Record<string, string> | undefined;
356
388
  nullValueLabel?: string | undefined;
357
389
  }>;
358
390
  valuesMap: z.ZodRecord<z.ZodString, z.ZodString>;
@@ -363,6 +395,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
363
395
  format?: string | undefined;
364
396
  label?: string | undefined;
365
397
  valueLabels?: string | undefined;
398
+ valueLabelsMap?: Record<string, string> | undefined;
366
399
  nullValueLabel?: string | undefined;
367
400
  };
368
401
  valuesMap: Record<string, string>;
@@ -373,6 +406,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
373
406
  format?: string | undefined;
374
407
  label?: string | undefined;
375
408
  valueLabels?: string | undefined;
409
+ valueLabelsMap?: Record<string, string> | undefined;
376
410
  nullValueLabel?: string | undefined;
377
411
  };
378
412
  valuesMap: Record<string, string>;
@@ -383,6 +417,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
383
417
  format: z.ZodOptional<z.ZodString>;
384
418
  label: z.ZodOptional<z.ZodString>;
385
419
  valueLabels: z.ZodOptional<z.ZodString>;
420
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
386
421
  nullValueLabel: z.ZodOptional<z.ZodString>;
387
422
  }, "strip", z.ZodTypeAny, {
388
423
  type: "column";
@@ -390,6 +425,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
390
425
  format?: string | undefined;
391
426
  label?: string | undefined;
392
427
  valueLabels?: string | undefined;
428
+ valueLabelsMap?: Record<string, string> | undefined;
393
429
  nullValueLabel?: string | undefined;
394
430
  }, {
395
431
  type: "column";
@@ -397,6 +433,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
397
433
  format?: string | undefined;
398
434
  label?: string | undefined;
399
435
  valueLabels?: string | undefined;
436
+ valueLabelsMap?: Record<string, string> | undefined;
400
437
  nullValueLabel?: string | undefined;
401
438
  }>;
402
439
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -409,6 +446,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
409
446
  format?: string | undefined;
410
447
  label?: string | undefined;
411
448
  valueLabels?: string | undefined;
449
+ valueLabelsMap?: Record<string, string> | undefined;
412
450
  nullValueLabel?: string | undefined;
413
451
  };
414
452
  domain: number[];
@@ -421,6 +459,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
421
459
  format?: string | undefined;
422
460
  label?: string | undefined;
423
461
  valueLabels?: string | undefined;
462
+ valueLabelsMap?: Record<string, string> | undefined;
424
463
  nullValueLabel?: string | undefined;
425
464
  };
426
465
  domain: number[];
@@ -434,6 +473,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
434
473
  format: z.ZodOptional<z.ZodString>;
435
474
  label: z.ZodOptional<z.ZodString>;
436
475
  valueLabels: z.ZodOptional<z.ZodString>;
476
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
437
477
  nullValueLabel: z.ZodOptional<z.ZodString>;
438
478
  }, "strip", z.ZodTypeAny, {
439
479
  type: "column";
@@ -441,6 +481,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
441
481
  format?: string | undefined;
442
482
  label?: string | undefined;
443
483
  valueLabels?: string | undefined;
484
+ valueLabelsMap?: Record<string, string> | undefined;
444
485
  nullValueLabel?: string | undefined;
445
486
  }, {
446
487
  type: "column";
@@ -448,6 +489,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
448
489
  format?: string | undefined;
449
490
  label?: string | undefined;
450
491
  valueLabels?: string | undefined;
492
+ valueLabelsMap?: Record<string, string> | undefined;
451
493
  nullValueLabel?: string | undefined;
452
494
  }>;
453
495
  valuesMap: z.ZodRecord<z.ZodString, z.ZodNumber>;
@@ -458,6 +500,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
458
500
  format?: string | undefined;
459
501
  label?: string | undefined;
460
502
  valueLabels?: string | undefined;
503
+ valueLabelsMap?: Record<string, string> | undefined;
461
504
  nullValueLabel?: string | undefined;
462
505
  };
463
506
  valuesMap: Record<string, number>;
@@ -468,6 +511,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
468
511
  format?: string | undefined;
469
512
  label?: string | undefined;
470
513
  valueLabels?: string | undefined;
514
+ valueLabelsMap?: Record<string, string> | undefined;
471
515
  nullValueLabel?: string | undefined;
472
516
  };
473
517
  valuesMap: Record<string, number>;
@@ -478,6 +522,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
478
522
  format: z.ZodOptional<z.ZodString>;
479
523
  label: z.ZodOptional<z.ZodString>;
480
524
  valueLabels: z.ZodOptional<z.ZodString>;
525
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
481
526
  nullValueLabel: z.ZodOptional<z.ZodString>;
482
527
  }, "strip", z.ZodTypeAny, {
483
528
  type: "column";
@@ -485,6 +530,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
485
530
  format?: string | undefined;
486
531
  label?: string | undefined;
487
532
  valueLabels?: string | undefined;
533
+ valueLabelsMap?: Record<string, string> | undefined;
488
534
  nullValueLabel?: string | undefined;
489
535
  }, {
490
536
  type: "column";
@@ -492,6 +538,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
492
538
  format?: string | undefined;
493
539
  label?: string | undefined;
494
540
  valueLabels?: string | undefined;
541
+ valueLabelsMap?: Record<string, string> | undefined;
495
542
  nullValueLabel?: string | undefined;
496
543
  }>;
497
544
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -504,6 +551,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
504
551
  format?: string | undefined;
505
552
  label?: string | undefined;
506
553
  valueLabels?: string | undefined;
554
+ valueLabelsMap?: Record<string, string> | undefined;
507
555
  nullValueLabel?: string | undefined;
508
556
  };
509
557
  domain: number[];
@@ -516,6 +564,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
516
564
  format?: string | undefined;
517
565
  label?: string | undefined;
518
566
  valueLabels?: string | undefined;
567
+ valueLabelsMap?: Record<string, string> | undefined;
519
568
  nullValueLabel?: string | undefined;
520
569
  };
521
570
  domain: number[];
@@ -530,6 +579,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
530
579
  format: z.ZodOptional<z.ZodString>;
531
580
  label: z.ZodOptional<z.ZodString>;
532
581
  valueLabels: z.ZodOptional<z.ZodString>;
582
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
533
583
  nullValueLabel: z.ZodOptional<z.ZodString>;
534
584
  }, "strip", z.ZodTypeAny, {
535
585
  type: "column";
@@ -537,6 +587,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
537
587
  format?: string | undefined;
538
588
  label?: string | undefined;
539
589
  valueLabels?: string | undefined;
590
+ valueLabelsMap?: Record<string, string> | undefined;
540
591
  nullValueLabel?: string | undefined;
541
592
  }, {
542
593
  type: "column";
@@ -544,6 +595,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
544
595
  format?: string | undefined;
545
596
  label?: string | undefined;
546
597
  valueLabels?: string | undefined;
598
+ valueLabelsMap?: Record<string, string> | undefined;
547
599
  nullValueLabel?: string | undefined;
548
600
  }>;
549
601
  valuesMap: z.ZodRecord<z.ZodString, z.ZodString>;
@@ -554,6 +606,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
554
606
  format?: string | undefined;
555
607
  label?: string | undefined;
556
608
  valueLabels?: string | undefined;
609
+ valueLabelsMap?: Record<string, string> | undefined;
557
610
  nullValueLabel?: string | undefined;
558
611
  };
559
612
  valuesMap: Record<string, string>;
@@ -564,6 +617,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
564
617
  format?: string | undefined;
565
618
  label?: string | undefined;
566
619
  valueLabels?: string | undefined;
620
+ valueLabelsMap?: Record<string, string> | undefined;
567
621
  nullValueLabel?: string | undefined;
568
622
  };
569
623
  valuesMap: Record<string, string>;
@@ -574,6 +628,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
574
628
  format: z.ZodOptional<z.ZodString>;
575
629
  label: z.ZodOptional<z.ZodString>;
576
630
  valueLabels: z.ZodOptional<z.ZodString>;
631
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
577
632
  nullValueLabel: z.ZodOptional<z.ZodString>;
578
633
  }, "strip", z.ZodTypeAny, {
579
634
  type: "column";
@@ -581,6 +636,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
581
636
  format?: string | undefined;
582
637
  label?: string | undefined;
583
638
  valueLabels?: string | undefined;
639
+ valueLabelsMap?: Record<string, string> | undefined;
584
640
  nullValueLabel?: string | undefined;
585
641
  }, {
586
642
  type: "column";
@@ -588,6 +644,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
588
644
  format?: string | undefined;
589
645
  label?: string | undefined;
590
646
  valueLabels?: string | undefined;
647
+ valueLabelsMap?: Record<string, string> | undefined;
591
648
  nullValueLabel?: string | undefined;
592
649
  }>;
593
650
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -600,6 +657,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
600
657
  format?: string | undefined;
601
658
  label?: string | undefined;
602
659
  valueLabels?: string | undefined;
660
+ valueLabelsMap?: Record<string, string> | undefined;
603
661
  nullValueLabel?: string | undefined;
604
662
  };
605
663
  domain: number[];
@@ -612,6 +670,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
612
670
  format?: string | undefined;
613
671
  label?: string | undefined;
614
672
  valueLabels?: string | undefined;
673
+ valueLabelsMap?: Record<string, string> | undefined;
615
674
  nullValueLabel?: string | undefined;
616
675
  };
617
676
  domain: number[];
@@ -627,6 +686,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
627
686
  format?: string | undefined;
628
687
  label?: string | undefined;
629
688
  valueLabels?: string | undefined;
689
+ valueLabelsMap?: Record<string, string> | undefined;
630
690
  nullValueLabel?: string | undefined;
631
691
  };
632
692
  domain: number[];
@@ -639,6 +699,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
639
699
  format?: string | undefined;
640
700
  label?: string | undefined;
641
701
  valueLabels?: string | undefined;
702
+ valueLabelsMap?: Record<string, string> | undefined;
642
703
  nullValueLabel?: string | undefined;
643
704
  };
644
705
  valuesMap: Record<string, string>;
@@ -650,6 +711,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
650
711
  format?: string | undefined;
651
712
  label?: string | undefined;
652
713
  valueLabels?: string | undefined;
714
+ valueLabelsMap?: Record<string, string> | undefined;
653
715
  nullValueLabel?: string | undefined;
654
716
  };
655
717
  valuesMap: Record<string, "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">;
@@ -661,6 +723,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
661
723
  format?: string | undefined;
662
724
  label?: string | undefined;
663
725
  valueLabels?: string | undefined;
726
+ valueLabelsMap?: Record<string, string> | undefined;
664
727
  nullValueLabel?: string | undefined;
665
728
  };
666
729
  domain: number[];
@@ -673,6 +736,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
673
736
  format?: string | undefined;
674
737
  label?: string | undefined;
675
738
  valueLabels?: string | undefined;
739
+ valueLabelsMap?: Record<string, string> | undefined;
676
740
  nullValueLabel?: string | undefined;
677
741
  };
678
742
  valuesMap: Record<string, string>;
@@ -684,6 +748,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
684
748
  format?: string | undefined;
685
749
  label?: string | undefined;
686
750
  valueLabels?: string | undefined;
751
+ valueLabelsMap?: Record<string, string> | undefined;
687
752
  nullValueLabel?: string | undefined;
688
753
  };
689
754
  domain: number[];
@@ -696,6 +761,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
696
761
  format?: string | undefined;
697
762
  label?: string | undefined;
698
763
  valueLabels?: string | undefined;
764
+ valueLabelsMap?: Record<string, string> | undefined;
699
765
  nullValueLabel?: string | undefined;
700
766
  };
701
767
  valuesMap: Record<string, number>;
@@ -709,6 +775,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
709
775
  format?: string | undefined;
710
776
  label?: string | undefined;
711
777
  valueLabels?: string | undefined;
778
+ valueLabelsMap?: Record<string, string> | undefined;
712
779
  nullValueLabel?: string | undefined;
713
780
  };
714
781
  domain: number[];
@@ -721,6 +788,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
721
788
  format?: string | undefined;
722
789
  label?: string | undefined;
723
790
  valueLabels?: string | undefined;
791
+ valueLabelsMap?: Record<string, string> | undefined;
724
792
  nullValueLabel?: string | undefined;
725
793
  };
726
794
  valuesMap: Record<string, string>;
@@ -732,6 +800,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
732
800
  format?: string | undefined;
733
801
  label?: string | undefined;
734
802
  valueLabels?: string | undefined;
803
+ valueLabelsMap?: Record<string, string> | undefined;
735
804
  nullValueLabel?: string | undefined;
736
805
  };
737
806
  valuesMap: Record<string, "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">;
@@ -743,6 +812,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
743
812
  format?: string | undefined;
744
813
  label?: string | undefined;
745
814
  valueLabels?: string | undefined;
815
+ valueLabelsMap?: Record<string, string> | undefined;
746
816
  nullValueLabel?: string | undefined;
747
817
  };
748
818
  domain: number[];
@@ -755,6 +825,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
755
825
  format?: string | undefined;
756
826
  label?: string | undefined;
757
827
  valueLabels?: string | undefined;
828
+ valueLabelsMap?: Record<string, string> | undefined;
758
829
  nullValueLabel?: string | undefined;
759
830
  };
760
831
  valuesMap: Record<string, string>;
@@ -766,6 +837,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
766
837
  format?: string | undefined;
767
838
  label?: string | undefined;
768
839
  valueLabels?: string | undefined;
840
+ valueLabelsMap?: Record<string, string> | undefined;
769
841
  nullValueLabel?: string | undefined;
770
842
  };
771
843
  domain: number[];
@@ -778,6 +850,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
778
850
  format?: string | undefined;
779
851
  label?: string | undefined;
780
852
  valueLabels?: string | undefined;
853
+ valueLabelsMap?: Record<string, string> | undefined;
781
854
  nullValueLabel?: string | undefined;
782
855
  };
783
856
  valuesMap: Record<string, number>;
@@ -796,6 +869,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
796
869
  format?: string | undefined;
797
870
  label?: string | undefined;
798
871
  valueLabels?: string | undefined;
872
+ valueLabelsMap?: Record<string, string> | undefined;
799
873
  nullValueLabel?: string | undefined;
800
874
  };
801
875
  parentId: {
@@ -804,6 +878,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
804
878
  format?: string | undefined;
805
879
  label?: string | undefined;
806
880
  valueLabels?: string | undefined;
881
+ valueLabelsMap?: Record<string, string> | undefined;
807
882
  nullValueLabel?: string | undefined;
808
883
  };
809
884
  size?: {
@@ -828,6 +903,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
828
903
  format?: string | undefined;
829
904
  label?: string | undefined;
830
905
  valueLabels?: string | undefined;
906
+ valueLabelsMap?: Record<string, string> | undefined;
831
907
  nullValueLabel?: string | undefined;
832
908
  };
833
909
  domain: number[];
@@ -840,6 +916,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
840
916
  format?: string | undefined;
841
917
  label?: string | undefined;
842
918
  valueLabels?: string | undefined;
919
+ valueLabelsMap?: Record<string, string> | undefined;
843
920
  nullValueLabel?: string | undefined;
844
921
  };
845
922
  valuesMap: Record<string, string>;
@@ -851,6 +928,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
851
928
  format?: string | undefined;
852
929
  label?: string | undefined;
853
930
  valueLabels?: string | undefined;
931
+ valueLabelsMap?: Record<string, string> | undefined;
854
932
  nullValueLabel?: string | undefined;
855
933
  };
856
934
  valuesMap: Record<string, "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">;
@@ -862,6 +940,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
862
940
  format?: string | undefined;
863
941
  label?: string | undefined;
864
942
  valueLabels?: string | undefined;
943
+ valueLabelsMap?: Record<string, string> | undefined;
865
944
  nullValueLabel?: string | undefined;
866
945
  };
867
946
  domain: number[];
@@ -874,6 +953,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
874
953
  format?: string | undefined;
875
954
  label?: string | undefined;
876
955
  valueLabels?: string | undefined;
956
+ valueLabelsMap?: Record<string, string> | undefined;
877
957
  nullValueLabel?: string | undefined;
878
958
  };
879
959
  valuesMap: Record<string, string>;
@@ -885,6 +965,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
885
965
  format?: string | undefined;
886
966
  label?: string | undefined;
887
967
  valueLabels?: string | undefined;
968
+ valueLabelsMap?: Record<string, string> | undefined;
888
969
  nullValueLabel?: string | undefined;
889
970
  };
890
971
  domain: number[];
@@ -897,6 +978,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
897
978
  format?: string | undefined;
898
979
  label?: string | undefined;
899
980
  valueLabels?: string | undefined;
981
+ valueLabelsMap?: Record<string, string> | undefined;
900
982
  nullValueLabel?: string | undefined;
901
983
  };
902
984
  valuesMap: Record<string, number>;
@@ -908,6 +990,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
908
990
  format?: string | undefined;
909
991
  label?: string | undefined;
910
992
  valueLabels?: string | undefined;
993
+ valueLabelsMap?: Record<string, string> | undefined;
911
994
  nullValueLabel?: string | undefined;
912
995
  } | undefined;
913
996
  height?: {
@@ -916,6 +999,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
916
999
  format?: string | undefined;
917
1000
  label?: string | undefined;
918
1001
  valueLabels?: string | undefined;
1002
+ valueLabelsMap?: Record<string, string> | undefined;
919
1003
  nullValueLabel?: string | undefined;
920
1004
  } | undefined;
921
1005
  legend?: {
@@ -933,6 +1017,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
933
1017
  format?: string | undefined;
934
1018
  label?: string | undefined;
935
1019
  valueLabels?: string | undefined;
1020
+ valueLabelsMap?: Record<string, string> | undefined;
936
1021
  nullValueLabel?: string | undefined;
937
1022
  }[] | undefined;
938
1023
  showNodes?: boolean | undefined;
@@ -946,6 +1031,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
946
1031
  format?: string | undefined;
947
1032
  label?: string | undefined;
948
1033
  valueLabels?: string | undefined;
1034
+ valueLabelsMap?: Record<string, string> | undefined;
949
1035
  nullValueLabel?: string | undefined;
950
1036
  } | undefined;
951
1037
  heatmapAxis?: {
@@ -954,6 +1040,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
954
1040
  format?: string | undefined;
955
1041
  label?: string | undefined;
956
1042
  valueLabels?: string | undefined;
1043
+ valueLabelsMap?: Record<string, string> | undefined;
957
1044
  nullValueLabel?: string | undefined;
958
1045
  } | undefined;
959
1046
  heatmapGroup?: {
@@ -962,6 +1049,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
962
1049
  format?: string | undefined;
963
1050
  label?: string | undefined;
964
1051
  valueLabels?: string | undefined;
1052
+ valueLabelsMap?: Record<string, string> | undefined;
965
1053
  nullValueLabel?: string | undefined;
966
1054
  }[] | undefined;
967
1055
  heatmapSettings?: {
@@ -989,6 +1077,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
989
1077
  format?: string | undefined;
990
1078
  label?: string | undefined;
991
1079
  valueLabels?: string | undefined;
1080
+ valueLabelsMap?: Record<string, string> | undefined;
992
1081
  nullValueLabel?: string | undefined;
993
1082
  };
994
1083
  parentId: {
@@ -997,6 +1086,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
997
1086
  format?: string | undefined;
998
1087
  label?: string | undefined;
999
1088
  valueLabels?: string | undefined;
1089
+ valueLabelsMap?: Record<string, string> | undefined;
1000
1090
  nullValueLabel?: string | undefined;
1001
1091
  };
1002
1092
  size?: {
@@ -1021,6 +1111,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1021
1111
  format?: string | undefined;
1022
1112
  label?: string | undefined;
1023
1113
  valueLabels?: string | undefined;
1114
+ valueLabelsMap?: Record<string, string> | undefined;
1024
1115
  nullValueLabel?: string | undefined;
1025
1116
  };
1026
1117
  domain: number[];
@@ -1033,6 +1124,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1033
1124
  format?: string | undefined;
1034
1125
  label?: string | undefined;
1035
1126
  valueLabels?: string | undefined;
1127
+ valueLabelsMap?: Record<string, string> | undefined;
1036
1128
  nullValueLabel?: string | undefined;
1037
1129
  };
1038
1130
  valuesMap: Record<string, string>;
@@ -1044,6 +1136,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1044
1136
  format?: string | undefined;
1045
1137
  label?: string | undefined;
1046
1138
  valueLabels?: string | undefined;
1139
+ valueLabelsMap?: Record<string, string> | undefined;
1047
1140
  nullValueLabel?: string | undefined;
1048
1141
  };
1049
1142
  valuesMap: Record<string, "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">;
@@ -1055,6 +1148,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1055
1148
  format?: string | undefined;
1056
1149
  label?: string | undefined;
1057
1150
  valueLabels?: string | undefined;
1151
+ valueLabelsMap?: Record<string, string> | undefined;
1058
1152
  nullValueLabel?: string | undefined;
1059
1153
  };
1060
1154
  domain: number[];
@@ -1067,6 +1161,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1067
1161
  format?: string | undefined;
1068
1162
  label?: string | undefined;
1069
1163
  valueLabels?: string | undefined;
1164
+ valueLabelsMap?: Record<string, string> | undefined;
1070
1165
  nullValueLabel?: string | undefined;
1071
1166
  };
1072
1167
  valuesMap: Record<string, string>;
@@ -1078,6 +1173,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1078
1173
  format?: string | undefined;
1079
1174
  label?: string | undefined;
1080
1175
  valueLabels?: string | undefined;
1176
+ valueLabelsMap?: Record<string, string> | undefined;
1081
1177
  nullValueLabel?: string | undefined;
1082
1178
  };
1083
1179
  domain: number[];
@@ -1090,6 +1186,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1090
1186
  format?: string | undefined;
1091
1187
  label?: string | undefined;
1092
1188
  valueLabels?: string | undefined;
1189
+ valueLabelsMap?: Record<string, string> | undefined;
1093
1190
  nullValueLabel?: string | undefined;
1094
1191
  };
1095
1192
  valuesMap: Record<string, number>;
@@ -1101,6 +1198,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1101
1198
  format?: string | undefined;
1102
1199
  label?: string | undefined;
1103
1200
  valueLabels?: string | undefined;
1201
+ valueLabelsMap?: Record<string, string> | undefined;
1104
1202
  nullValueLabel?: string | undefined;
1105
1203
  } | undefined;
1106
1204
  height?: {
@@ -1109,6 +1207,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1109
1207
  format?: string | undefined;
1110
1208
  label?: string | undefined;
1111
1209
  valueLabels?: string | undefined;
1210
+ valueLabelsMap?: Record<string, string> | undefined;
1112
1211
  nullValueLabel?: string | undefined;
1113
1212
  } | undefined;
1114
1213
  legend?: {
@@ -1126,6 +1225,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1126
1225
  format?: string | undefined;
1127
1226
  label?: string | undefined;
1128
1227
  valueLabels?: string | undefined;
1228
+ valueLabelsMap?: Record<string, string> | undefined;
1129
1229
  nullValueLabel?: string | undefined;
1130
1230
  }[] | undefined;
1131
1231
  showNodes?: boolean | undefined;
@@ -1139,6 +1239,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1139
1239
  format?: string | undefined;
1140
1240
  label?: string | undefined;
1141
1241
  valueLabels?: string | undefined;
1242
+ valueLabelsMap?: Record<string, string> | undefined;
1142
1243
  nullValueLabel?: string | undefined;
1143
1244
  } | undefined;
1144
1245
  heatmapAxis?: {
@@ -1147,6 +1248,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1147
1248
  format?: string | undefined;
1148
1249
  label?: string | undefined;
1149
1250
  valueLabels?: string | undefined;
1251
+ valueLabelsMap?: Record<string, string> | undefined;
1150
1252
  nullValueLabel?: string | undefined;
1151
1253
  } | undefined;
1152
1254
  heatmapGroup?: {
@@ -1155,6 +1257,7 @@ export declare const DendroSettingsSchema: z.ZodObject<{
1155
1257
  format?: string | undefined;
1156
1258
  label?: string | undefined;
1157
1259
  valueLabels?: string | undefined;
1260
+ valueLabelsMap?: Record<string, string> | undefined;
1158
1261
  nullValueLabel?: string | undefined;
1159
1262
  }[] | undefined;
1160
1263
  heatmapSettings?: {