@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
@@ -63,6 +63,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
63
63
  format: z.ZodOptional<z.ZodString>;
64
64
  label: z.ZodOptional<z.ZodString>;
65
65
  valueLabels: z.ZodOptional<z.ZodString>;
66
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
66
67
  nullValueLabel: z.ZodOptional<z.ZodString>;
67
68
  }, "strip", z.ZodTypeAny, {
68
69
  type: "column";
@@ -70,6 +71,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
70
71
  format?: string | undefined;
71
72
  label?: string | undefined;
72
73
  valueLabels?: string | undefined;
74
+ valueLabelsMap?: Record<string, string> | undefined;
73
75
  nullValueLabel?: string | undefined;
74
76
  }, {
75
77
  type: "column";
@@ -77,6 +79,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
77
79
  format?: string | undefined;
78
80
  label?: string | undefined;
79
81
  valueLabels?: string | undefined;
82
+ valueLabelsMap?: Record<string, string> | undefined;
80
83
  nullValueLabel?: string | undefined;
81
84
  }>;
82
85
  valueColor: z.ZodObject<{
@@ -85,6 +88,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
85
88
  format: z.ZodOptional<z.ZodString>;
86
89
  label: z.ZodOptional<z.ZodString>;
87
90
  valueLabels: z.ZodOptional<z.ZodString>;
91
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
88
92
  nullValueLabel: z.ZodOptional<z.ZodString>;
89
93
  }, "strip", z.ZodTypeAny, {
90
94
  type: "column";
@@ -92,6 +96,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
92
96
  format?: string | undefined;
93
97
  label?: string | undefined;
94
98
  valueLabels?: string | undefined;
99
+ valueLabelsMap?: Record<string, string> | undefined;
95
100
  nullValueLabel?: string | undefined;
96
101
  }, {
97
102
  type: "column";
@@ -99,6 +104,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
99
104
  format?: string | undefined;
100
105
  label?: string | undefined;
101
106
  valueLabels?: string | undefined;
107
+ valueLabelsMap?: Record<string, string> | undefined;
102
108
  nullValueLabel?: string | undefined;
103
109
  }>;
104
110
  xColumn: z.ZodObject<{
@@ -107,6 +113,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
107
113
  format: z.ZodOptional<z.ZodString>;
108
114
  label: z.ZodOptional<z.ZodString>;
109
115
  valueLabels: z.ZodOptional<z.ZodString>;
116
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
110
117
  nullValueLabel: z.ZodOptional<z.ZodString>;
111
118
  }, "strip", z.ZodTypeAny, {
112
119
  type: "column";
@@ -114,6 +121,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
114
121
  format?: string | undefined;
115
122
  label?: string | undefined;
116
123
  valueLabels?: string | undefined;
124
+ valueLabelsMap?: Record<string, string> | undefined;
117
125
  nullValueLabel?: string | undefined;
118
126
  }, {
119
127
  type: "column";
@@ -121,6 +129,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
121
129
  format?: string | undefined;
122
130
  label?: string | undefined;
123
131
  valueLabels?: string | undefined;
132
+ valueLabelsMap?: Record<string, string> | undefined;
124
133
  nullValueLabel?: string | undefined;
125
134
  }>;
126
135
  yColumn: z.ZodObject<{
@@ -129,6 +138,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
129
138
  format: z.ZodOptional<z.ZodString>;
130
139
  label: z.ZodOptional<z.ZodString>;
131
140
  valueLabels: z.ZodOptional<z.ZodString>;
141
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
132
142
  nullValueLabel: z.ZodOptional<z.ZodString>;
133
143
  }, "strip", z.ZodTypeAny, {
134
144
  type: "column";
@@ -136,6 +146,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
136
146
  format?: string | undefined;
137
147
  label?: string | undefined;
138
148
  valueLabels?: string | undefined;
149
+ valueLabelsMap?: Record<string, string> | undefined;
139
150
  nullValueLabel?: string | undefined;
140
151
  }, {
141
152
  type: "column";
@@ -143,6 +154,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
143
154
  format?: string | undefined;
144
155
  label?: string | undefined;
145
156
  valueLabels?: string | undefined;
157
+ valueLabelsMap?: Record<string, string> | undefined;
146
158
  nullValueLabel?: string | undefined;
147
159
  }>;
148
160
  xGroupBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -151,6 +163,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
151
163
  format: z.ZodOptional<z.ZodString>;
152
164
  label: z.ZodOptional<z.ZodString>;
153
165
  valueLabels: z.ZodOptional<z.ZodString>;
166
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
154
167
  nullValueLabel: z.ZodOptional<z.ZodString>;
155
168
  }, "strip", z.ZodTypeAny, {
156
169
  type: "column";
@@ -158,6 +171,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
158
171
  format?: string | undefined;
159
172
  label?: string | undefined;
160
173
  valueLabels?: string | undefined;
174
+ valueLabelsMap?: Record<string, string> | undefined;
161
175
  nullValueLabel?: string | undefined;
162
176
  }, {
163
177
  type: "column";
@@ -165,6 +179,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
165
179
  format?: string | undefined;
166
180
  label?: string | undefined;
167
181
  valueLabels?: string | undefined;
182
+ valueLabelsMap?: Record<string, string> | undefined;
168
183
  nullValueLabel?: string | undefined;
169
184
  }>, "many">>;
170
185
  yGroupBy: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -173,6 +188,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
173
188
  format: z.ZodOptional<z.ZodString>;
174
189
  label: z.ZodOptional<z.ZodString>;
175
190
  valueLabels: z.ZodOptional<z.ZodString>;
191
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
176
192
  nullValueLabel: z.ZodOptional<z.ZodString>;
177
193
  }, "strip", z.ZodTypeAny, {
178
194
  type: "column";
@@ -180,6 +196,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
180
196
  format?: string | undefined;
181
197
  label?: string | undefined;
182
198
  valueLabels?: string | undefined;
199
+ valueLabelsMap?: Record<string, string> | undefined;
183
200
  nullValueLabel?: string | undefined;
184
201
  }, {
185
202
  type: "column";
@@ -187,6 +204,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
187
204
  format?: string | undefined;
188
205
  label?: string | undefined;
189
206
  valueLabels?: string | undefined;
207
+ valueLabelsMap?: Record<string, string> | undefined;
190
208
  nullValueLabel?: string | undefined;
191
209
  }>, "many">>;
192
210
  keysOrder: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
@@ -275,6 +293,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
275
293
  format: z.ZodOptional<z.ZodString>;
276
294
  label: z.ZodOptional<z.ZodString>;
277
295
  valueLabels: z.ZodOptional<z.ZodString>;
296
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
278
297
  nullValueLabel: z.ZodOptional<z.ZodString>;
279
298
  }, "strip", z.ZodTypeAny, {
280
299
  type: "column";
@@ -282,6 +301,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
282
301
  format?: string | undefined;
283
302
  label?: string | undefined;
284
303
  valueLabels?: string | undefined;
304
+ valueLabelsMap?: Record<string, string> | undefined;
285
305
  nullValueLabel?: string | undefined;
286
306
  }, {
287
307
  type: "column";
@@ -289,6 +309,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
289
309
  format?: string | undefined;
290
310
  label?: string | undefined;
291
311
  valueLabels?: string | undefined;
312
+ valueLabelsMap?: Record<string, string> | undefined;
292
313
  nullValueLabel?: string | undefined;
293
314
  }>, "many">>;
294
315
  aes: z.ZodOptional<z.ZodObject<{
@@ -318,6 +339,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
318
339
  format: z.ZodOptional<z.ZodString>;
319
340
  label: z.ZodOptional<z.ZodString>;
320
341
  valueLabels: z.ZodOptional<z.ZodString>;
342
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
321
343
  nullValueLabel: z.ZodOptional<z.ZodString>;
322
344
  }, "strip", z.ZodTypeAny, {
323
345
  type: "column";
@@ -325,6 +347,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
325
347
  format?: string | undefined;
326
348
  label?: string | undefined;
327
349
  valueLabels?: string | undefined;
350
+ valueLabelsMap?: Record<string, string> | undefined;
328
351
  nullValueLabel?: string | undefined;
329
352
  }, {
330
353
  type: "column";
@@ -332,6 +355,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
332
355
  format?: string | undefined;
333
356
  label?: string | undefined;
334
357
  valueLabels?: string | undefined;
358
+ valueLabelsMap?: Record<string, string> | undefined;
335
359
  nullValueLabel?: string | undefined;
336
360
  }>, "many">>;
337
361
  }, "strip", z.ZodTypeAny, {
@@ -342,6 +366,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
342
366
  format?: string | undefined;
343
367
  label?: string | undefined;
344
368
  valueLabels?: string | undefined;
369
+ valueLabelsMap?: Record<string, string> | undefined;
345
370
  nullValueLabel?: string | undefined;
346
371
  }[] | undefined;
347
372
  }, {
@@ -352,6 +377,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
352
377
  format?: string | undefined;
353
378
  label?: string | undefined;
354
379
  valueLabels?: string | undefined;
380
+ valueLabelsMap?: Record<string, string> | undefined;
355
381
  nullValueLabel?: string | undefined;
356
382
  }[] | undefined;
357
383
  }>>;
@@ -371,6 +397,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
371
397
  format?: string | undefined;
372
398
  label?: string | undefined;
373
399
  valueLabels?: string | undefined;
400
+ valueLabelsMap?: Record<string, string> | undefined;
374
401
  nullValueLabel?: string | undefined;
375
402
  };
376
403
  valueColor: {
@@ -379,6 +406,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
379
406
  format?: string | undefined;
380
407
  label?: string | undefined;
381
408
  valueLabels?: string | undefined;
409
+ valueLabelsMap?: Record<string, string> | undefined;
382
410
  nullValueLabel?: string | undefined;
383
411
  };
384
412
  xColumn: {
@@ -387,6 +415,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
387
415
  format?: string | undefined;
388
416
  label?: string | undefined;
389
417
  valueLabels?: string | undefined;
418
+ valueLabelsMap?: Record<string, string> | undefined;
390
419
  nullValueLabel?: string | undefined;
391
420
  };
392
421
  yColumn: {
@@ -395,6 +424,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
395
424
  format?: string | undefined;
396
425
  label?: string | undefined;
397
426
  valueLabels?: string | undefined;
427
+ valueLabelsMap?: Record<string, string> | undefined;
398
428
  nullValueLabel?: string | undefined;
399
429
  };
400
430
  size?: {
@@ -421,6 +451,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
421
451
  format?: string | undefined;
422
452
  label?: string | undefined;
423
453
  valueLabels?: string | undefined;
454
+ valueLabelsMap?: Record<string, string> | undefined;
424
455
  nullValueLabel?: string | undefined;
425
456
  }[] | undefined;
426
457
  } | undefined;
@@ -456,6 +487,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
456
487
  format?: string | undefined;
457
488
  label?: string | undefined;
458
489
  valueLabels?: string | undefined;
490
+ valueLabelsMap?: Record<string, string> | undefined;
459
491
  nullValueLabel?: string | undefined;
460
492
  }[] | undefined;
461
493
  xGroupBy?: {
@@ -464,6 +496,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
464
496
  format?: string | undefined;
465
497
  label?: string | undefined;
466
498
  valueLabels?: string | undefined;
499
+ valueLabelsMap?: Record<string, string> | undefined;
467
500
  nullValueLabel?: string | undefined;
468
501
  }[] | undefined;
469
502
  yGroupBy?: {
@@ -472,6 +505,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
472
505
  format?: string | undefined;
473
506
  label?: string | undefined;
474
507
  valueLabels?: string | undefined;
508
+ valueLabelsMap?: Record<string, string> | undefined;
475
509
  nullValueLabel?: string | undefined;
476
510
  }[] | undefined;
477
511
  keysOrder?: Record<string, string[]> | undefined;
@@ -502,6 +536,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
502
536
  format?: string | undefined;
503
537
  label?: string | undefined;
504
538
  valueLabels?: string | undefined;
539
+ valueLabelsMap?: Record<string, string> | undefined;
505
540
  nullValueLabel?: string | undefined;
506
541
  };
507
542
  valueColor: {
@@ -510,6 +545,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
510
545
  format?: string | undefined;
511
546
  label?: string | undefined;
512
547
  valueLabels?: string | undefined;
548
+ valueLabelsMap?: Record<string, string> | undefined;
513
549
  nullValueLabel?: string | undefined;
514
550
  };
515
551
  xColumn: {
@@ -518,6 +554,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
518
554
  format?: string | undefined;
519
555
  label?: string | undefined;
520
556
  valueLabels?: string | undefined;
557
+ valueLabelsMap?: Record<string, string> | undefined;
521
558
  nullValueLabel?: string | undefined;
522
559
  };
523
560
  yColumn: {
@@ -526,6 +563,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
526
563
  format?: string | undefined;
527
564
  label?: string | undefined;
528
565
  valueLabels?: string | undefined;
566
+ valueLabelsMap?: Record<string, string> | undefined;
529
567
  nullValueLabel?: string | undefined;
530
568
  };
531
569
  size?: {
@@ -552,6 +590,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
552
590
  format?: string | undefined;
553
591
  label?: string | undefined;
554
592
  valueLabels?: string | undefined;
593
+ valueLabelsMap?: Record<string, string> | undefined;
555
594
  nullValueLabel?: string | undefined;
556
595
  }[] | undefined;
557
596
  } | undefined;
@@ -587,6 +626,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
587
626
  format?: string | undefined;
588
627
  label?: string | undefined;
589
628
  valueLabels?: string | undefined;
629
+ valueLabelsMap?: Record<string, string> | undefined;
590
630
  nullValueLabel?: string | undefined;
591
631
  }[] | undefined;
592
632
  xGroupBy?: {
@@ -595,6 +635,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
595
635
  format?: string | undefined;
596
636
  label?: string | undefined;
597
637
  valueLabels?: string | undefined;
638
+ valueLabelsMap?: Record<string, string> | undefined;
598
639
  nullValueLabel?: string | undefined;
599
640
  }[] | undefined;
600
641
  yGroupBy?: {
@@ -603,6 +644,7 @@ export declare const BubblesSettingsSchema: z.ZodObject<{
603
644
  format?: string | undefined;
604
645
  label?: string | undefined;
605
646
  valueLabels?: string | undefined;
647
+ valueLabelsMap?: Record<string, string> | undefined;
606
648
  nullValueLabel?: string | undefined;
607
649
  }[] | undefined;
608
650
  keysOrder?: Record<string, string[]> | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"bubble.d.ts","sourceRoot":"","sources":["../../src/types/bubble.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAYxB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsEhC,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
1
+ {"version":3,"file":"bubble.d.ts","sourceRoot":"","sources":["../../src/types/bubble.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAYxB,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAsEhC,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
@@ -26,6 +26,7 @@ export declare const ColumnNameSchema: 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 ColumnNameSchema: 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 ColumnNameSchema: 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
  }>;
45
48
  export type ColumnName = z.infer<typeof ColumnNameSchema>;
@@ -110,6 +113,7 @@ export declare function categoricalAesMappingFromValueSchema<ValueType extends z
110
113
  format: z.ZodOptional<z.ZodString>;
111
114
  label: z.ZodOptional<z.ZodString>;
112
115
  valueLabels: z.ZodOptional<z.ZodString>;
116
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
113
117
  nullValueLabel: z.ZodOptional<z.ZodString>;
114
118
  }, "strip", z.ZodTypeAny, {
115
119
  type: "column";
@@ -117,6 +121,7 @@ export declare function categoricalAesMappingFromValueSchema<ValueType extends z
117
121
  format?: string | undefined;
118
122
  label?: string | undefined;
119
123
  valueLabels?: string | undefined;
124
+ valueLabelsMap?: Record<string, string> | undefined;
120
125
  nullValueLabel?: string | undefined;
121
126
  }, {
122
127
  type: "column";
@@ -124,6 +129,7 @@ export declare function categoricalAesMappingFromValueSchema<ValueType extends z
124
129
  format?: string | undefined;
125
130
  label?: string | undefined;
126
131
  valueLabels?: string | undefined;
132
+ valueLabelsMap?: Record<string, string> | undefined;
127
133
  nullValueLabel?: string | undefined;
128
134
  }>;
129
135
  valuesMap: z.ZodRecord<z.ZodString, ValueType>;
@@ -134,6 +140,7 @@ export declare function categoricalAesMappingFromValueSchema<ValueType extends z
134
140
  format?: string | undefined;
135
141
  label?: string | undefined;
136
142
  valueLabels?: string | undefined;
143
+ valueLabelsMap?: Record<string, string> | undefined;
137
144
  nullValueLabel?: string | undefined;
138
145
  };
139
146
  valuesMap: Record<string, ValueType["_output"]>;
@@ -144,6 +151,7 @@ export declare function categoricalAesMappingFromValueSchema<ValueType extends z
144
151
  format?: string | undefined;
145
152
  label?: string | undefined;
146
153
  valueLabels?: string | undefined;
154
+ valueLabelsMap?: Record<string, string> | undefined;
147
155
  nullValueLabel?: string | undefined;
148
156
  };
149
157
  valuesMap: Record<string, ValueType["_input"]>;
@@ -155,6 +163,7 @@ export declare function continuousAesMappingFromValueSchema<ValueType extends z.
155
163
  format: z.ZodOptional<z.ZodString>;
156
164
  label: z.ZodOptional<z.ZodString>;
157
165
  valueLabels: z.ZodOptional<z.ZodString>;
166
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
158
167
  nullValueLabel: z.ZodOptional<z.ZodString>;
159
168
  }, "strip", z.ZodTypeAny, {
160
169
  type: "column";
@@ -162,6 +171,7 @@ export declare function continuousAesMappingFromValueSchema<ValueType extends z.
162
171
  format?: string | undefined;
163
172
  label?: string | undefined;
164
173
  valueLabels?: string | undefined;
174
+ valueLabelsMap?: Record<string, string> | undefined;
165
175
  nullValueLabel?: string | undefined;
166
176
  }, {
167
177
  type: "column";
@@ -169,6 +179,7 @@ export declare function continuousAesMappingFromValueSchema<ValueType extends z.
169
179
  format?: string | undefined;
170
180
  label?: string | undefined;
171
181
  valueLabels?: string | undefined;
182
+ valueLabelsMap?: Record<string, string> | undefined;
172
183
  nullValueLabel?: string | undefined;
173
184
  }>;
174
185
  domain: z.ZodArray<z.ZodNumber, "many">;
@@ -181,6 +192,7 @@ export declare function continuousAesMappingFromValueSchema<ValueType extends z.
181
192
  format?: string | undefined;
182
193
  label?: string | undefined;
183
194
  valueLabels?: string | undefined;
195
+ valueLabelsMap?: Record<string, string> | undefined;
184
196
  nullValueLabel?: string | undefined;
185
197
  };
186
198
  domain: number[];
@@ -193,6 +205,7 @@ export declare function continuousAesMappingFromValueSchema<ValueType extends z.
193
205
  format?: string | undefined;
194
206
  label?: string | undefined;
195
207
  valueLabels?: string | undefined;
208
+ valueLabelsMap?: Record<string, string> | undefined;
196
209
  nullValueLabel?: string | undefined;
197
210
  };
198
211
  domain: number[];
@@ -209,6 +222,7 @@ export declare const AxisSettingsDiscreteSchema: z.ZodObject<{
209
222
  format: z.ZodOptional<z.ZodString>;
210
223
  label: z.ZodOptional<z.ZodString>;
211
224
  valueLabels: z.ZodOptional<z.ZodString>;
225
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
212
226
  nullValueLabel: z.ZodOptional<z.ZodString>;
213
227
  }, "strip", z.ZodTypeAny, {
214
228
  type: "column";
@@ -216,6 +230,7 @@ export declare const AxisSettingsDiscreteSchema: z.ZodObject<{
216
230
  format?: string | undefined;
217
231
  label?: string | undefined;
218
232
  valueLabels?: string | undefined;
233
+ valueLabelsMap?: Record<string, string> | undefined;
219
234
  nullValueLabel?: string | undefined;
220
235
  }, {
221
236
  type: "column";
@@ -223,6 +238,7 @@ export declare const AxisSettingsDiscreteSchema: z.ZodObject<{
223
238
  format?: string | undefined;
224
239
  label?: string | undefined;
225
240
  valueLabels?: string | undefined;
241
+ valueLabelsMap?: Record<string, string> | undefined;
226
242
  nullValueLabel?: string | undefined;
227
243
  }>]>>;
228
244
  scale: z.ZodOptional<z.ZodLiteral<"discrete">>;
@@ -241,6 +257,7 @@ export declare const AxisSettingsDiscreteSchema: z.ZodObject<{
241
257
  format?: string | undefined;
242
258
  label?: string | undefined;
243
259
  valueLabels?: string | undefined;
260
+ valueLabelsMap?: Record<string, string> | undefined;
244
261
  nullValueLabel?: string | undefined;
245
262
  } | undefined;
246
263
  scale?: "discrete" | undefined;
@@ -258,6 +275,7 @@ export declare const AxisSettingsDiscreteSchema: z.ZodObject<{
258
275
  format?: string | undefined;
259
276
  label?: string | undefined;
260
277
  valueLabels?: string | undefined;
278
+ valueLabelsMap?: Record<string, string> | undefined;
261
279
  nullValueLabel?: string | undefined;
262
280
  } | undefined;
263
281
  scale?: "discrete" | undefined;
@@ -275,6 +293,7 @@ export declare const AxisSettingsContinuousSchema: z.ZodObject<{
275
293
  format: z.ZodOptional<z.ZodString>;
276
294
  label: z.ZodOptional<z.ZodString>;
277
295
  valueLabels: z.ZodOptional<z.ZodString>;
296
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
278
297
  nullValueLabel: z.ZodOptional<z.ZodString>;
279
298
  }, "strip", z.ZodTypeAny, {
280
299
  type: "column";
@@ -282,6 +301,7 @@ export declare const AxisSettingsContinuousSchema: z.ZodObject<{
282
301
  format?: string | undefined;
283
302
  label?: string | undefined;
284
303
  valueLabels?: string | undefined;
304
+ valueLabelsMap?: Record<string, string> | undefined;
285
305
  nullValueLabel?: string | undefined;
286
306
  }, {
287
307
  type: "column";
@@ -289,6 +309,7 @@ export declare const AxisSettingsContinuousSchema: z.ZodObject<{
289
309
  format?: string | undefined;
290
310
  label?: string | undefined;
291
311
  valueLabels?: string | undefined;
312
+ valueLabelsMap?: Record<string, string> | undefined;
292
313
  nullValueLabel?: string | undefined;
293
314
  }>]>>;
294
315
  scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
@@ -307,6 +328,7 @@ export declare const AxisSettingsContinuousSchema: z.ZodObject<{
307
328
  format?: string | undefined;
308
329
  label?: string | undefined;
309
330
  valueLabels?: string | undefined;
331
+ valueLabelsMap?: Record<string, string> | undefined;
310
332
  nullValueLabel?: string | undefined;
311
333
  } | undefined;
312
334
  scale?: "linear" | "log" | undefined;
@@ -325,6 +347,7 @@ export declare const AxisSettingsContinuousSchema: z.ZodObject<{
325
347
  format?: string | undefined;
326
348
  label?: string | undefined;
327
349
  valueLabels?: string | undefined;
350
+ valueLabelsMap?: Record<string, string> | undefined;
328
351
  nullValueLabel?: string | undefined;
329
352
  } | undefined;
330
353
  scale?: "linear" | "log" | undefined;
@@ -344,6 +367,7 @@ export declare const AxisSettingsSchema: z.ZodUnion<[z.ZodObject<{
344
367
  format: z.ZodOptional<z.ZodString>;
345
368
  label: z.ZodOptional<z.ZodString>;
346
369
  valueLabels: z.ZodOptional<z.ZodString>;
370
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
347
371
  nullValueLabel: z.ZodOptional<z.ZodString>;
348
372
  }, "strip", z.ZodTypeAny, {
349
373
  type: "column";
@@ -351,6 +375,7 @@ export declare const AxisSettingsSchema: z.ZodUnion<[z.ZodObject<{
351
375
  format?: string | undefined;
352
376
  label?: string | undefined;
353
377
  valueLabels?: string | undefined;
378
+ valueLabelsMap?: Record<string, string> | undefined;
354
379
  nullValueLabel?: string | undefined;
355
380
  }, {
356
381
  type: "column";
@@ -358,6 +383,7 @@ export declare const AxisSettingsSchema: z.ZodUnion<[z.ZodObject<{
358
383
  format?: string | undefined;
359
384
  label?: string | undefined;
360
385
  valueLabels?: string | undefined;
386
+ valueLabelsMap?: Record<string, string> | undefined;
361
387
  nullValueLabel?: string | undefined;
362
388
  }>]>>;
363
389
  scale: z.ZodOptional<z.ZodLiteral<"discrete">>;
@@ -376,6 +402,7 @@ export declare const AxisSettingsSchema: z.ZodUnion<[z.ZodObject<{
376
402
  format?: string | undefined;
377
403
  label?: string | undefined;
378
404
  valueLabels?: string | undefined;
405
+ valueLabelsMap?: Record<string, string> | undefined;
379
406
  nullValueLabel?: string | undefined;
380
407
  } | undefined;
381
408
  scale?: "discrete" | undefined;
@@ -393,6 +420,7 @@ export declare const AxisSettingsSchema: z.ZodUnion<[z.ZodObject<{
393
420
  format?: string | undefined;
394
421
  label?: string | undefined;
395
422
  valueLabels?: string | undefined;
423
+ valueLabelsMap?: Record<string, string> | undefined;
396
424
  nullValueLabel?: string | undefined;
397
425
  } | undefined;
398
426
  scale?: "discrete" | undefined;
@@ -409,6 +437,7 @@ export declare const AxisSettingsSchema: z.ZodUnion<[z.ZodObject<{
409
437
  format: z.ZodOptional<z.ZodString>;
410
438
  label: z.ZodOptional<z.ZodString>;
411
439
  valueLabels: z.ZodOptional<z.ZodString>;
440
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
412
441
  nullValueLabel: z.ZodOptional<z.ZodString>;
413
442
  }, "strip", z.ZodTypeAny, {
414
443
  type: "column";
@@ -416,6 +445,7 @@ export declare const AxisSettingsSchema: z.ZodUnion<[z.ZodObject<{
416
445
  format?: string | undefined;
417
446
  label?: string | undefined;
418
447
  valueLabels?: string | undefined;
448
+ valueLabelsMap?: Record<string, string> | undefined;
419
449
  nullValueLabel?: string | undefined;
420
450
  }, {
421
451
  type: "column";
@@ -423,6 +453,7 @@ export declare const AxisSettingsSchema: z.ZodUnion<[z.ZodObject<{
423
453
  format?: string | undefined;
424
454
  label?: string | undefined;
425
455
  valueLabels?: string | undefined;
456
+ valueLabelsMap?: Record<string, string> | undefined;
426
457
  nullValueLabel?: string | undefined;
427
458
  }>]>>;
428
459
  scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
@@ -441,6 +472,7 @@ export declare const AxisSettingsSchema: z.ZodUnion<[z.ZodObject<{
441
472
  format?: string | undefined;
442
473
  label?: string | undefined;
443
474
  valueLabels?: string | undefined;
475
+ valueLabelsMap?: Record<string, string> | undefined;
444
476
  nullValueLabel?: string | undefined;
445
477
  } | undefined;
446
478
  scale?: "linear" | "log" | undefined;
@@ -459,6 +491,7 @@ export declare const AxisSettingsSchema: z.ZodUnion<[z.ZodObject<{
459
491
  format?: string | undefined;
460
492
  label?: string | undefined;
461
493
  valueLabels?: string | undefined;
494
+ valueLabelsMap?: Record<string, string> | undefined;
462
495
  nullValueLabel?: string | undefined;
463
496
  } | undefined;
464
497
  scale?: "linear" | "log" | undefined;
@@ -483,6 +516,7 @@ export declare const TooltipSettingsSchema: z.ZodObject<{
483
516
  format: z.ZodOptional<z.ZodString>;
484
517
  label: z.ZodOptional<z.ZodString>;
485
518
  valueLabels: z.ZodOptional<z.ZodString>;
519
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
486
520
  nullValueLabel: z.ZodOptional<z.ZodString>;
487
521
  }, "strip", z.ZodTypeAny, {
488
522
  type: "column";
@@ -490,6 +524,7 @@ export declare const TooltipSettingsSchema: z.ZodObject<{
490
524
  format?: string | undefined;
491
525
  label?: string | undefined;
492
526
  valueLabels?: string | undefined;
527
+ valueLabelsMap?: Record<string, string> | undefined;
493
528
  nullValueLabel?: string | undefined;
494
529
  }, {
495
530
  type: "column";
@@ -497,6 +532,7 @@ export declare const TooltipSettingsSchema: z.ZodObject<{
497
532
  format?: string | undefined;
498
533
  label?: string | undefined;
499
534
  valueLabels?: string | undefined;
535
+ valueLabelsMap?: Record<string, string> | undefined;
500
536
  nullValueLabel?: string | undefined;
501
537
  }>, "many">>;
502
538
  }, "strip", z.ZodTypeAny, {
@@ -507,6 +543,7 @@ export declare const TooltipSettingsSchema: z.ZodObject<{
507
543
  format?: string | undefined;
508
544
  label?: string | undefined;
509
545
  valueLabels?: string | undefined;
546
+ valueLabelsMap?: Record<string, string> | undefined;
510
547
  nullValueLabel?: string | undefined;
511
548
  }[] | undefined;
512
549
  }, {
@@ -517,6 +554,7 @@ export declare const TooltipSettingsSchema: z.ZodObject<{
517
554
  format?: string | undefined;
518
555
  label?: string | undefined;
519
556
  valueLabels?: string | undefined;
557
+ valueLabelsMap?: Record<string, string> | undefined;
520
558
  nullValueLabel?: string | undefined;
521
559
  }[] | undefined;
522
560
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/types/common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,EAAE,kBAAkB,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AAC7E,OAAO,KAAK,EAAE,wBAAwB,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AAEvF,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;AAC/C,MAAM,MAAM,QAAQ,GAAG,MAAM,CAAC;AAC9B,eAAO,MAAM,eAAe,mDAA8C,CAAC;AAE3E,MAAM,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAA;AAE3C,MAAM,MAAM,KAAK,GAAG,MAAM,CAAC;AAE3B,eAAO,MAAM,uBAAuB,oDAAkD,CAAC;AACvF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAGxE,eAAO,MAAM,WAAW,uJA0Bd,CAAC;AACX,eAAO,MAAM,gBAAgB,yJAAsB,CAAC;AACpD,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAG1D,eAAO,MAAM,eAAe,4EAAqB,CAAC;AAClD,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAGxD,eAAO,MAAM,eAAe,+DAAqB,CAAC;AAClD,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAGxD,eAAO,MAAM,oBAAoB,iDAA0B,CAAC;AAC5D,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,cAAc,sCAAuC,CAAC;AACnE,eAAO,MAAM,mBAAmB,wCAAyB,CAAC;AAC1D,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;EAO3B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAA;AAEzD,MAAM,MAAM,OAAO,GAAG;IAClB,SAAS,CAAC,EAAE,KAAK,CAAC;IAClB,SAAS,CAAC,EAAE,KAAK,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,KAAK,CAAC;CACnB,CAAC;AACF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;EAQxB,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;GAA0B,CAAC;AACvD,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAExD,wBAAgB,oCAAoC,CAAC,SAAS,SAAS,CAAC,CAAC,UAAU,EAC/E,WAAW,EAAE,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAMzB;AACD,wBAAgB,mCAAmC,CAAC,SAAS,SAAS,CAAC,CAAC,UAAU,EAC9E,WAAW,EAAE,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAQzB;AAED,wBAAgB,gBAAgB,CAAC,SAAS,SAAS,MAAM,GAAG,MAAM,GAAG,UAAU,GAAG,SAAS,EACvF,IAAI,EAAE,SAAS,GAAG,wBAAwB,CAAC,SAAS,CAAC,GAAG,uBAAuB,CAAC,SAAS,CAAC,GAAG,OAAO,GACrG,IAAI,IAAI,wBAAwB,CAAC,SAAS,CAAC,CAK7C;AAED,wBAAgB,eAAe,CAAC,SAAS,SAAS,MAAM,GAAG,MAAM,GAAG,UAAU,GAAG,SAAS,EACtF,IAAI,EAAE,SAAS,GAAG,wBAAwB,CAAC,SAAS,CAAC,GAAG,uBAAuB,CAAC,SAAS,CAAC,GAAG,OAAO,GACrG,IAAI,IAAI,uBAAuB,CAAC,SAAS,CAAC,CAK5C;AAED,eAAO,MAAM,4BAA4B,oFAAyE,CAAC;AAEnH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUrC,CAAC;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWvC,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAsE,CAAC;AAEtG,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAC7D,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC9E,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAElF,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAElF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGhC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE,MAAM,WAAW,iBAAiB;IAC9B,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,MAAM,cAAc,GAAG;IACzB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,IAAI,EAAE,OAAO,CAAC;CACjB,CAAA;AAED,MAAM,MAAM,WAAW,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;AAE7C,MAAM,MAAM,kBAAkB,CAAC,CAAC,IAAI,CAAC,CAAC;AACtC,MAAM,MAAM,mBAAmB,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,cAAc,KAAK,IAAI,CAAC,CAAC,CAAA;AACnF,MAAM,MAAM,wBAAwB,GAAG,kBAAkB,CAAC;IACtD,eAAe,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,OAAO,EAAE,KAAK,IAAI,CAAC;IACrD,mBAAmB,EAAE,CAAC,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;IAC1C,kBAAkB,EAAE,MAAM,IAAI,CAAC;IAC/B,0BAA0B,EAAE,CAAC,CAAC,EAAE,kBAAkB,KAAK,IAAI,CAAC;IAC5D,YAAY,EAAE,CAAC,aAAa,EAAE,OAAO,KAAK,IAAI,CAAC;CAClD,CAAC,CAAA;AACF,MAAM,MAAM,oBAAoB,GAAG,kBAAkB,CAAC;IAClD,mBAAmB,EAAE,CAAC,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;IAC1C,eAAe,EAAE,CAAC,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC;CACzC,CAAC,CAAA;AAEF,MAAM,MAAM,mBAAmB,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC,CAAC,CAAA;AAC5E,MAAM,MAAM,qBAAqB,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC,CAAC,CAAA;AAC9E,MAAM,MAAM,sBAAsB,GAAG,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,KAAK,IAAI,CAAC,CAAC,CAAA;AAE/E,MAAM,MAAM,UAAU,GAAG,eAAe,GACtC,sBAAsB,GAAG,wBAAwB,GACjD,2BAA2B,GAAG,2BAA2B,GACzD,wBAAwB,GACxB,cAAc,CAAC;AACjB,KAAK,aAAa,GAAG;IAAE,IAAI,EAAE,UAAU,CAAC;IAAC,IAAI,EAAE,OAAO,CAAA;CAAE,CAAC;AACzD,MAAM,WAAW,eAAiB,SAAQ,aAAa;IACnD,IAAI,EAAE,eAAe,CAAC;IACtB,IAAI,EAAE;QACF,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;KACpB,CAAC;CACL;AACD,MAAM,WAAW,sBAAuB,SAAQ,aAAa;IACzD,IAAI,EAAE,sBAAsB,CAAC;IAC7B,IAAI,EAAE;QACF,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;KACpB,CAAC;CACL;AACD,MAAM,WAAW,wBAAyB,SAAQ,aAAa;IAC3D,IAAI,EAAE,wBAAwB,CAAC;IAC/B,IAAI,EAAE;QACF,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;KACpB,CAAC;CACL;AAED,MAAM,WAAW,2BAA4B,SAAQ,aAAa;IAC9D,IAAI,EAAE,2BAA2B,CAAC;IAClC,IAAI,EAAE;QACF,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;KACpB,CAAC;CACL;AACD,MAAM,WAAW,2BAA4B,SAAQ,aAAa;IAC9D,IAAI,EAAE,2BAA2B,CAAC;IAClC,IAAI,EAAE;QACF,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;KACpB,CAAC;CACL;AACD,MAAM,WAAW,wBAAyB,SAAQ,aAAa;IAC3D,IAAI,EAAE,wBAAwB,CAAC;IAC/B,IAAI,EAAE;QACF,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;KACpB,CAAC;CACL;AACD,MAAM,WAAW,gBAAiB,SAAQ,aAAa;IACnD,IAAI,EAAE,cAAc,CAAC;IACrB,IAAI,EAAE;QACF,OAAO,EAAE,MAAM,CAAC;QAChB,KAAK,EAAE,MAAM,GAAG,SAAS,CAAC;KAC7B,CAAC;CACL;AACD,MAAM,MAAM,SAAS,GAAG,eAAe,GAAG,sBAAsB,GAAG,wBAAwB,GAAG,2BAA2B,GAAG,2BAA2B,GAAG,wBAAwB,GAAG,gBAAgB,CAAC;AACtM,wBAAgB,WAAW,CAAC,KAAK,EAAE,OAAO,GAAG,KAAK,IAAI,SAAS,CAE9D;AACD,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,KAAK,GAAG,gBAAgB,CAQlE"}
1
+ {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../src/types/common.ts"],"names":[],"mappings":"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"}
@@ -63,6 +63,7 @@ const t = e.union([
63
63
  format: e.optional(e.string()),
64
64
  label: e.optional(e.string()),
65
65
  valueLabels: e.optional(e.string()),
66
+ valueLabelsMap: e.optional(e.record(e.string())),
66
67
  nullValueLabel: e.optional(e.string())
67
68
  }), d = e.object({
68
69
  fillColor: e.optional(e.string()),