@milaboratories/miplots4 1.1.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. package/dist/MiPlots.d.ts.map +1 -1
  2. package/dist/MiPlots.js +16 -14
  3. package/dist/MiPlots.js.map +1 -1
  4. package/dist/bubble/BubbleSettingsImpl.d.ts +3 -0
  5. package/dist/bubble/BubbleSettingsImpl.d.ts.map +1 -1
  6. package/dist/bubble/BubbleSettingsImpl.js +4 -1
  7. package/dist/bubble/BubbleSettingsImpl.js.map +1 -1
  8. package/dist/bubble/ChartRenderer.d.ts +2 -12
  9. package/dist/bubble/ChartRenderer.d.ts.map +1 -1
  10. package/dist/bubble/ChartRenderer.js +13 -13
  11. package/dist/bubble/ChartRenderer.js.map +1 -1
  12. package/dist/bubble/getGroupedCellsData.d.ts +1 -1
  13. package/dist/bubble/getGroupedCellsData.d.ts.map +1 -1
  14. package/dist/bubble/getGroupedCellsData.js +20 -14
  15. package/dist/bubble/getGroupedCellsData.js.map +1 -1
  16. package/dist/bubble/index.d.ts.map +1 -1
  17. package/dist/bubble/index.js +6 -10
  18. package/dist/bubble/index.js.map +1 -1
  19. package/dist/common/ContinuousAxis.d.ts +3 -1
  20. package/dist/common/ContinuousAxis.d.ts.map +1 -1
  21. package/dist/common/ContinuousAxis.js +8 -8
  22. package/dist/common/ContinuousAxis.js.map +1 -1
  23. package/dist/common/Legend.d.ts +12 -1
  24. package/dist/common/Legend.d.ts.map +1 -1
  25. package/dist/common/Legend.js +14 -6
  26. package/dist/common/Legend.js.map +1 -1
  27. package/dist/heatmap/ChartRenderer.d.ts +2 -12
  28. package/dist/heatmap/ChartRenderer.d.ts.map +1 -1
  29. package/dist/heatmap/ChartRenderer.js +26 -26
  30. package/dist/heatmap/ChartRenderer.js.map +1 -1
  31. package/dist/heatmap/HeatmapSettingsImpl.d.ts +3 -0
  32. package/dist/heatmap/HeatmapSettingsImpl.d.ts.map +1 -1
  33. package/dist/heatmap/HeatmapSettingsImpl.js +5 -2
  34. package/dist/heatmap/HeatmapSettingsImpl.js.map +1 -1
  35. package/dist/heatmap/fillCellsData.d.ts +6 -1
  36. package/dist/heatmap/fillCellsData.d.ts.map +1 -1
  37. package/dist/heatmap/fillCellsData.js +135 -96
  38. package/dist/heatmap/fillCellsData.js.map +1 -1
  39. package/dist/heatmap/getCells.d.ts +4 -1
  40. package/dist/heatmap/getCells.d.ts.map +1 -1
  41. package/dist/heatmap/getCells.js +19 -16
  42. package/dist/heatmap/getCells.js.map +1 -1
  43. package/dist/heatmap/index.d.ts.map +1 -1
  44. package/dist/heatmap/index.js +32 -34
  45. package/dist/heatmap/index.js.map +1 -1
  46. package/dist/index.d.ts +2 -2
  47. package/dist/index.d.ts.map +1 -1
  48. package/dist/selection/ChartRenderer.d.ts +90 -0
  49. package/dist/selection/ChartRenderer.d.ts.map +1 -0
  50. package/dist/selection/ChartRenderer.js +254 -0
  51. package/dist/selection/ChartRenderer.js.map +1 -0
  52. package/dist/selection/SelectionSettingsImpl.d.ts +53 -0
  53. package/dist/selection/SelectionSettingsImpl.d.ts.map +1 -0
  54. package/dist/selection/SelectionSettingsImpl.js +47 -0
  55. package/dist/selection/SelectionSettingsImpl.js.map +1 -0
  56. package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts +8 -0
  57. package/dist/selection/components/Chart/Bars/GroupSelectedBars.d.ts.map +1 -0
  58. package/dist/selection/components/Chart/Bars/GroupSelectedBars.js +57 -0
  59. package/dist/selection/components/Chart/Bars/GroupSelectedBars.js.map +1 -0
  60. package/dist/selection/components/Chart/Bars/StackedBars.d.ts +12 -0
  61. package/dist/selection/components/Chart/Bars/StackedBars.d.ts.map +1 -0
  62. package/dist/selection/components/Chart/Bars/StackedBars.js +58 -0
  63. package/dist/selection/components/Chart/Bars/StackedBars.js.map +1 -0
  64. package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts +6 -0
  65. package/dist/selection/components/Chart/Bars/UngroupedBars.d.ts.map +1 -0
  66. package/dist/selection/components/Chart/Bars/UngroupedBars.js +38 -0
  67. package/dist/selection/components/Chart/Bars/UngroupedBars.js.map +1 -0
  68. package/dist/selection/components/Chart/Bars.d.ts +10 -0
  69. package/dist/selection/components/Chart/Bars.d.ts.map +1 -0
  70. package/dist/selection/components/Chart/Bars.js +48 -0
  71. package/dist/selection/components/Chart/Bars.js.map +1 -0
  72. package/dist/selection/components/Chart/ChartAxes.d.ts +7 -0
  73. package/dist/selection/components/Chart/ChartAxes.d.ts.map +1 -0
  74. package/dist/selection/components/Chart/ChartAxes.js +51 -0
  75. package/dist/selection/components/Chart/ChartAxes.js.map +1 -0
  76. package/dist/selection/components/Chart/ChartFrame.d.ts +9 -0
  77. package/dist/selection/components/Chart/ChartFrame.d.ts.map +1 -0
  78. package/dist/selection/components/Chart/ChartFrame.js +41 -0
  79. package/dist/selection/components/Chart/ChartFrame.js.map +1 -0
  80. package/dist/selection/components/Chart/Dividers.d.ts +8 -0
  81. package/dist/selection/components/Chart/Dividers.d.ts.map +1 -0
  82. package/dist/selection/components/Chart/Dividers.js +27 -0
  83. package/dist/selection/components/Chart/Dividers.js.map +1 -0
  84. package/dist/selection/components/Chart/Gridlines.d.ts +10 -0
  85. package/dist/selection/components/Chart/Gridlines.d.ts.map +1 -0
  86. package/dist/selection/components/Chart/Gridlines.js +32 -0
  87. package/dist/selection/components/Chart/Gridlines.js.map +1 -0
  88. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts +9 -0
  89. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.d.ts.map +1 -0
  90. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js +36 -0
  91. package/dist/selection/components/Chart/Ribbons/GroupFlowRibbon.js.map +1 -0
  92. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts +6 -0
  93. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.d.ts.map +1 -0
  94. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js +22 -0
  95. package/dist/selection/components/Chart/Ribbons/MultiGroupRibbon.js.map +1 -0
  96. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts +10 -0
  97. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.d.ts.map +1 -0
  98. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js +33 -0
  99. package/dist/selection/components/Chart/Ribbons/SimpleRibbon.js.map +1 -0
  100. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts +10 -0
  101. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.d.ts.map +1 -0
  102. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js +65 -0
  103. package/dist/selection/components/Chart/Ribbons/StackedGroupFlowRibbon.js.map +1 -0
  104. package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts +10 -0
  105. package/dist/selection/components/Chart/Ribbons/ribbonPath.d.ts.map +1 -0
  106. package/dist/selection/components/Chart/Ribbons/ribbonPath.js +13 -0
  107. package/dist/selection/components/Chart/Ribbons/ribbonPath.js.map +1 -0
  108. package/dist/selection/components/Chart/Ribbons.d.ts +9 -0
  109. package/dist/selection/components/Chart/Ribbons.d.ts.map +1 -0
  110. package/dist/selection/components/Chart/Ribbons.js +58 -0
  111. package/dist/selection/components/Chart/Ribbons.js.map +1 -0
  112. package/dist/selection/components/Chart/StageCounts.d.ts +7 -0
  113. package/dist/selection/components/Chart/StageCounts.d.ts.map +1 -0
  114. package/dist/selection/components/Chart/StageCounts.js +20 -0
  115. package/dist/selection/components/Chart/StageCounts.js.map +1 -0
  116. package/dist/selection/components/Chart/types.d.ts +132 -0
  117. package/dist/selection/components/Chart/types.d.ts.map +1 -0
  118. package/dist/selection/components/Chart.d.ts +22 -0
  119. package/dist/selection/components/Chart.d.ts.map +1 -0
  120. package/dist/selection/components/Chart.js +97 -0
  121. package/dist/selection/components/Chart.js.map +1 -0
  122. package/dist/selection/components/ChartsGroup.d.ts +18 -0
  123. package/dist/selection/components/ChartsGroup.d.ts.map +1 -0
  124. package/dist/selection/components/ChartsGroup.js +181 -0
  125. package/dist/selection/components/ChartsGroup.js.map +1 -0
  126. package/dist/selection/components/FacetCell.d.ts +22 -0
  127. package/dist/selection/components/FacetCell.d.ts.map +1 -0
  128. package/dist/selection/components/FacetCell.js +18 -0
  129. package/dist/selection/components/FacetCell.js.map +1 -0
  130. package/dist/selection/components/types.d.ts +58 -0
  131. package/dist/selection/components/types.d.ts.map +1 -0
  132. package/dist/selection/constants.d.ts +25 -0
  133. package/dist/selection/constants.d.ts.map +1 -0
  134. package/dist/selection/constants.js +4 -0
  135. package/dist/selection/constants.js.map +1 -0
  136. package/dist/selection/createSelectionData.d.ts +50 -0
  137. package/dist/selection/createSelectionData.d.ts.map +1 -0
  138. package/dist/selection/createSelectionData.js +92 -0
  139. package/dist/selection/createSelectionData.js.map +1 -0
  140. package/dist/selection/index.d.ts +26 -0
  141. package/dist/selection/index.d.ts.map +1 -0
  142. package/dist/selection/index.js +96 -0
  143. package/dist/selection/index.js.map +1 -0
  144. package/dist/selection/utils.d.ts +4 -0
  145. package/dist/selection/utils.d.ts.map +1 -0
  146. package/dist/selection/utils.js +13 -0
  147. package/dist/selection/utils.js.map +1 -0
  148. package/dist/types/bubble.d.ts +131 -0
  149. package/dist/types/bubble.d.ts.map +1 -1
  150. package/dist/types/bubble.js +3 -0
  151. package/dist/types/bubble.js.map +1 -1
  152. package/dist/types/common.d.ts +38 -0
  153. package/dist/types/common.d.ts.map +1 -1
  154. package/dist/types/common.js +1 -0
  155. package/dist/types/common.js.map +1 -1
  156. package/dist/types/dendro.d.ts +103 -0
  157. package/dist/types/dendro.d.ts.map +1 -1
  158. package/dist/types/discrete.d.ts +167 -0
  159. package/dist/types/discrete.d.ts.map +1 -1
  160. package/dist/types/heatmap.d.ts +248 -0
  161. package/dist/types/heatmap.d.ts.map +1 -1
  162. package/dist/types/heatmap.js +3 -0
  163. package/dist/types/heatmap.js.map +1 -1
  164. package/dist/types/histogram.d.ts +22 -0
  165. package/dist/types/histogram.d.ts.map +1 -1
  166. package/dist/types/index.d.ts +3 -1
  167. package/dist/types/index.d.ts.map +1 -1
  168. package/dist/types/index.js +1 -0
  169. package/dist/types/scatterplot-umap.d.ts +188 -0
  170. package/dist/types/scatterplot-umap.d.ts.map +1 -1
  171. package/dist/types/scatterplot.d.ts +270 -0
  172. package/dist/types/scatterplot.d.ts.map +1 -1
  173. package/dist/types/selection.d.ts +452 -0
  174. package/dist/types/selection.d.ts.map +1 -0
  175. package/dist/types/selection.js +53 -0
  176. package/dist/types/selection.js.map +1 -0
  177. package/dist/utils/intersect.d.ts +2 -0
  178. package/dist/utils/intersect.d.ts.map +1 -0
  179. package/dist/utils/intersect.js +8 -0
  180. package/dist/utils/intersect.js.map +1 -0
  181. package/package.json +2 -2
@@ -751,6 +751,7 @@ declare const BinnedDotsLayerSchema: z.ZodObject<{
751
751
  format: z.ZodOptional<z.ZodString>;
752
752
  label: z.ZodOptional<z.ZodString>;
753
753
  valueLabels: z.ZodOptional<z.ZodString>;
754
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
754
755
  nullValueLabel: z.ZodOptional<z.ZodString>;
755
756
  }, "strip", z.ZodTypeAny, {
756
757
  type: "column";
@@ -758,6 +759,7 @@ declare const BinnedDotsLayerSchema: z.ZodObject<{
758
759
  format?: string | undefined;
759
760
  label?: string | undefined;
760
761
  valueLabels?: string | undefined;
762
+ valueLabelsMap?: Record<string, string> | undefined;
761
763
  nullValueLabel?: string | undefined;
762
764
  }, {
763
765
  type: "column";
@@ -765,6 +767,7 @@ declare const BinnedDotsLayerSchema: z.ZodObject<{
765
767
  format?: string | undefined;
766
768
  label?: string | undefined;
767
769
  valueLabels?: string | undefined;
770
+ valueLabelsMap?: Record<string, string> | undefined;
768
771
  nullValueLabel?: string | undefined;
769
772
  }>>;
770
773
  aes: z.ZodOptional<z.ZodObject<{
@@ -834,6 +837,7 @@ declare const BinnedDotsLayerSchema: z.ZodObject<{
834
837
  format?: string | undefined;
835
838
  label?: string | undefined;
836
839
  valueLabels?: string | undefined;
840
+ valueLabelsMap?: Record<string, string> | undefined;
837
841
  nullValueLabel?: string | undefined;
838
842
  } | undefined;
839
843
  method?: "dotdensity" | "histodot" | undefined;
@@ -859,6 +863,7 @@ declare const BinnedDotsLayerSchema: z.ZodObject<{
859
863
  format?: string | undefined;
860
864
  label?: string | undefined;
861
865
  valueLabels?: string | undefined;
866
+ valueLabelsMap?: Record<string, string> | undefined;
862
867
  nullValueLabel?: string | undefined;
863
868
  } | undefined;
864
869
  method?: "dotdensity" | "histodot" | undefined;
@@ -872,6 +877,7 @@ declare const PairedPointsLayerSchema: z.ZodObject<{
872
877
  format: z.ZodOptional<z.ZodString>;
873
878
  label: z.ZodOptional<z.ZodString>;
874
879
  valueLabels: z.ZodOptional<z.ZodString>;
880
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
875
881
  nullValueLabel: z.ZodOptional<z.ZodString>;
876
882
  }, "strip", z.ZodTypeAny, {
877
883
  type: "column";
@@ -879,6 +885,7 @@ declare const PairedPointsLayerSchema: z.ZodObject<{
879
885
  format?: string | undefined;
880
886
  label?: string | undefined;
881
887
  valueLabels?: string | undefined;
888
+ valueLabelsMap?: Record<string, string> | undefined;
882
889
  nullValueLabel?: string | undefined;
883
890
  }, {
884
891
  type: "column";
@@ -886,6 +893,7 @@ declare const PairedPointsLayerSchema: z.ZodObject<{
886
893
  format?: string | undefined;
887
894
  label?: string | undefined;
888
895
  valueLabels?: string | undefined;
896
+ valueLabelsMap?: Record<string, string> | undefined;
889
897
  nullValueLabel?: string | undefined;
890
898
  }>;
891
899
  aes: z.ZodOptional<z.ZodObject<{
@@ -944,6 +952,7 @@ declare const PairedPointsLayerSchema: z.ZodObject<{
944
952
  format?: string | undefined;
945
953
  label?: string | undefined;
946
954
  valueLabels?: string | undefined;
955
+ valueLabelsMap?: Record<string, string> | undefined;
947
956
  nullValueLabel?: string | undefined;
948
957
  };
949
958
  aes?: {
@@ -968,6 +977,7 @@ declare const PairedPointsLayerSchema: z.ZodObject<{
968
977
  format?: string | undefined;
969
978
  label?: string | undefined;
970
979
  valueLabels?: string | undefined;
980
+ valueLabelsMap?: Record<string, string> | undefined;
971
981
  nullValueLabel?: string | undefined;
972
982
  };
973
983
  aes?: {
@@ -1976,6 +1986,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1976
1986
  format: z.ZodOptional<z.ZodString>;
1977
1987
  label: z.ZodOptional<z.ZodString>;
1978
1988
  valueLabels: z.ZodOptional<z.ZodString>;
1989
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1979
1990
  nullValueLabel: z.ZodOptional<z.ZodString>;
1980
1991
  }, "strip", z.ZodTypeAny, {
1981
1992
  type: "column";
@@ -1983,6 +1994,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1983
1994
  format?: string | undefined;
1984
1995
  label?: string | undefined;
1985
1996
  valueLabels?: string | undefined;
1997
+ valueLabelsMap?: Record<string, string> | undefined;
1986
1998
  nullValueLabel?: string | undefined;
1987
1999
  }, {
1988
2000
  type: "column";
@@ -1990,6 +2002,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
1990
2002
  format?: string | undefined;
1991
2003
  label?: string | undefined;
1992
2004
  valueLabels?: string | undefined;
2005
+ valueLabelsMap?: Record<string, string> | undefined;
1993
2006
  nullValueLabel?: string | undefined;
1994
2007
  }>>;
1995
2008
  aes: z.ZodOptional<z.ZodObject<{
@@ -2059,6 +2072,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
2059
2072
  format?: string | undefined;
2060
2073
  label?: string | undefined;
2061
2074
  valueLabels?: string | undefined;
2075
+ valueLabelsMap?: Record<string, string> | undefined;
2062
2076
  nullValueLabel?: string | undefined;
2063
2077
  } | undefined;
2064
2078
  method?: "dotdensity" | "histodot" | undefined;
@@ -2084,6 +2098,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
2084
2098
  format?: string | undefined;
2085
2099
  label?: string | undefined;
2086
2100
  valueLabels?: string | undefined;
2101
+ valueLabelsMap?: Record<string, string> | undefined;
2087
2102
  nullValueLabel?: string | undefined;
2088
2103
  } | undefined;
2089
2104
  method?: "dotdensity" | "histodot" | undefined;
@@ -2095,6 +2110,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
2095
2110
  format: z.ZodOptional<z.ZodString>;
2096
2111
  label: z.ZodOptional<z.ZodString>;
2097
2112
  valueLabels: z.ZodOptional<z.ZodString>;
2113
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2098
2114
  nullValueLabel: z.ZodOptional<z.ZodString>;
2099
2115
  }, "strip", z.ZodTypeAny, {
2100
2116
  type: "column";
@@ -2102,6 +2118,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
2102
2118
  format?: string | undefined;
2103
2119
  label?: string | undefined;
2104
2120
  valueLabels?: string | undefined;
2121
+ valueLabelsMap?: Record<string, string> | undefined;
2105
2122
  nullValueLabel?: string | undefined;
2106
2123
  }, {
2107
2124
  type: "column";
@@ -2109,6 +2126,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
2109
2126
  format?: string | undefined;
2110
2127
  label?: string | undefined;
2111
2128
  valueLabels?: string | undefined;
2129
+ valueLabelsMap?: Record<string, string> | undefined;
2112
2130
  nullValueLabel?: string | undefined;
2113
2131
  }>;
2114
2132
  aes: z.ZodOptional<z.ZodObject<{
@@ -2167,6 +2185,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
2167
2185
  format?: string | undefined;
2168
2186
  label?: string | undefined;
2169
2187
  valueLabels?: string | undefined;
2188
+ valueLabelsMap?: Record<string, string> | undefined;
2170
2189
  nullValueLabel?: string | undefined;
2171
2190
  };
2172
2191
  aes?: {
@@ -2191,6 +2210,7 @@ declare const DiscreteLayerSchema: z.ZodUnion<[z.ZodObject<{
2191
2210
  format?: string | undefined;
2192
2211
  label?: string | undefined;
2193
2212
  valueLabels?: string | undefined;
2213
+ valueLabelsMap?: Record<string, string> | undefined;
2194
2214
  nullValueLabel?: string | undefined;
2195
2215
  };
2196
2216
  aes?: {
@@ -2467,6 +2487,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2467
2487
  format: z.ZodOptional<z.ZodString>;
2468
2488
  label: z.ZodOptional<z.ZodString>;
2469
2489
  valueLabels: z.ZodOptional<z.ZodString>;
2490
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2470
2491
  nullValueLabel: z.ZodOptional<z.ZodString>;
2471
2492
  }, "strip", z.ZodTypeAny, {
2472
2493
  type: "column";
@@ -2474,6 +2495,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2474
2495
  format?: string | undefined;
2475
2496
  label?: string | undefined;
2476
2497
  valueLabels?: string | undefined;
2498
+ valueLabelsMap?: Record<string, string> | undefined;
2477
2499
  nullValueLabel?: string | undefined;
2478
2500
  }, {
2479
2501
  type: "column";
@@ -2481,6 +2503,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2481
2503
  format?: string | undefined;
2482
2504
  label?: string | undefined;
2483
2505
  valueLabels?: string | undefined;
2506
+ valueLabelsMap?: Record<string, string> | undefined;
2484
2507
  nullValueLabel?: string | undefined;
2485
2508
  }>;
2486
2509
  size: z.ZodOptional<z.ZodObject<{
@@ -2518,6 +2541,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2518
2541
  format: z.ZodOptional<z.ZodString>;
2519
2542
  label: z.ZodOptional<z.ZodString>;
2520
2543
  valueLabels: z.ZodOptional<z.ZodString>;
2544
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2521
2545
  nullValueLabel: z.ZodOptional<z.ZodString>;
2522
2546
  }, "strip", z.ZodTypeAny, {
2523
2547
  type: "column";
@@ -2525,6 +2549,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2525
2549
  format?: string | undefined;
2526
2550
  label?: string | undefined;
2527
2551
  valueLabels?: string | undefined;
2552
+ valueLabelsMap?: Record<string, string> | undefined;
2528
2553
  nullValueLabel?: string | undefined;
2529
2554
  }, {
2530
2555
  type: "column";
@@ -2532,6 +2557,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2532
2557
  format?: string | undefined;
2533
2558
  label?: string | undefined;
2534
2559
  valueLabels?: string | undefined;
2560
+ valueLabelsMap?: Record<string, string> | undefined;
2535
2561
  nullValueLabel?: string | undefined;
2536
2562
  }>, "many">>;
2537
2563
  }, "strip", z.ZodTypeAny, {
@@ -2542,6 +2568,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2542
2568
  format?: string | undefined;
2543
2569
  label?: string | undefined;
2544
2570
  valueLabels?: string | undefined;
2571
+ valueLabelsMap?: Record<string, string> | undefined;
2545
2572
  nullValueLabel?: string | undefined;
2546
2573
  }[] | undefined;
2547
2574
  }, {
@@ -2552,6 +2579,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2552
2579
  format?: string | undefined;
2553
2580
  label?: string | undefined;
2554
2581
  valueLabels?: string | undefined;
2582
+ valueLabelsMap?: Record<string, string> | undefined;
2555
2583
  nullValueLabel?: string | undefined;
2556
2584
  }[] | undefined;
2557
2585
  }>>;
@@ -2563,6 +2591,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2563
2591
  format: z.ZodOptional<z.ZodString>;
2564
2592
  label: z.ZodOptional<z.ZodString>;
2565
2593
  valueLabels: z.ZodOptional<z.ZodString>;
2594
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2566
2595
  nullValueLabel: z.ZodOptional<z.ZodString>;
2567
2596
  }, "strip", z.ZodTypeAny, {
2568
2597
  type: "column";
@@ -2570,6 +2599,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2570
2599
  format?: string | undefined;
2571
2600
  label?: string | undefined;
2572
2601
  valueLabels?: string | undefined;
2602
+ valueLabelsMap?: Record<string, string> | undefined;
2573
2603
  nullValueLabel?: string | undefined;
2574
2604
  }, {
2575
2605
  type: "column";
@@ -2577,6 +2607,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2577
2607
  format?: string | undefined;
2578
2608
  label?: string | undefined;
2579
2609
  valueLabels?: string | undefined;
2610
+ valueLabelsMap?: Record<string, string> | undefined;
2580
2611
  nullValueLabel?: string | undefined;
2581
2612
  }>, "many">>;
2582
2613
  }, "strip", z.ZodTypeAny, {
@@ -2587,6 +2618,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2587
2618
  format?: string | undefined;
2588
2619
  label?: string | undefined;
2589
2620
  valueLabels?: string | undefined;
2621
+ valueLabelsMap?: Record<string, string> | undefined;
2590
2622
  nullValueLabel?: string | undefined;
2591
2623
  }[] | undefined;
2592
2624
  }, {
@@ -2597,6 +2629,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2597
2629
  format?: string | undefined;
2598
2630
  label?: string | undefined;
2599
2631
  valueLabels?: string | undefined;
2632
+ valueLabelsMap?: Record<string, string> | undefined;
2600
2633
  nullValueLabel?: string | undefined;
2601
2634
  }[] | undefined;
2602
2635
  }>>;
@@ -2608,6 +2641,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2608
2641
  format: z.ZodOptional<z.ZodString>;
2609
2642
  label: z.ZodOptional<z.ZodString>;
2610
2643
  valueLabels: z.ZodOptional<z.ZodString>;
2644
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2611
2645
  nullValueLabel: z.ZodOptional<z.ZodString>;
2612
2646
  }, "strip", z.ZodTypeAny, {
2613
2647
  type: "column";
@@ -2615,6 +2649,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2615
2649
  format?: string | undefined;
2616
2650
  label?: string | undefined;
2617
2651
  valueLabels?: string | undefined;
2652
+ valueLabelsMap?: Record<string, string> | undefined;
2618
2653
  nullValueLabel?: string | undefined;
2619
2654
  }, {
2620
2655
  type: "column";
@@ -2622,6 +2657,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2622
2657
  format?: string | undefined;
2623
2658
  label?: string | undefined;
2624
2659
  valueLabels?: string | undefined;
2660
+ valueLabelsMap?: Record<string, string> | undefined;
2625
2661
  nullValueLabel?: string | undefined;
2626
2662
  }>, "many">>;
2627
2663
  }, "strip", z.ZodTypeAny, {
@@ -2632,6 +2668,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2632
2668
  format?: string | undefined;
2633
2669
  label?: string | undefined;
2634
2670
  valueLabels?: string | undefined;
2671
+ valueLabelsMap?: Record<string, string> | undefined;
2635
2672
  nullValueLabel?: string | undefined;
2636
2673
  }[] | undefined;
2637
2674
  }, {
@@ -2642,6 +2679,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2642
2679
  format?: string | undefined;
2643
2680
  label?: string | undefined;
2644
2681
  valueLabels?: string | undefined;
2682
+ valueLabelsMap?: Record<string, string> | undefined;
2645
2683
  nullValueLabel?: string | undefined;
2646
2684
  }[] | undefined;
2647
2685
  }>>;
@@ -2653,6 +2691,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2653
2691
  format: z.ZodOptional<z.ZodString>;
2654
2692
  label: z.ZodOptional<z.ZodString>;
2655
2693
  valueLabels: z.ZodOptional<z.ZodString>;
2694
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2656
2695
  nullValueLabel: z.ZodOptional<z.ZodString>;
2657
2696
  }, "strip", z.ZodTypeAny, {
2658
2697
  type: "column";
@@ -2660,6 +2699,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2660
2699
  format?: string | undefined;
2661
2700
  label?: string | undefined;
2662
2701
  valueLabels?: string | undefined;
2702
+ valueLabelsMap?: Record<string, string> | undefined;
2663
2703
  nullValueLabel?: string | undefined;
2664
2704
  }, {
2665
2705
  type: "column";
@@ -2667,6 +2707,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2667
2707
  format?: string | undefined;
2668
2708
  label?: string | undefined;
2669
2709
  valueLabels?: string | undefined;
2710
+ valueLabelsMap?: Record<string, string> | undefined;
2670
2711
  nullValueLabel?: string | undefined;
2671
2712
  }>, "many">>;
2672
2713
  }, "strip", z.ZodTypeAny, {
@@ -2677,6 +2718,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2677
2718
  format?: string | undefined;
2678
2719
  label?: string | undefined;
2679
2720
  valueLabels?: string | undefined;
2721
+ valueLabelsMap?: Record<string, string> | undefined;
2680
2722
  nullValueLabel?: string | undefined;
2681
2723
  }[] | undefined;
2682
2724
  }, {
@@ -2687,6 +2729,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2687
2729
  format?: string | undefined;
2688
2730
  label?: string | undefined;
2689
2731
  valueLabels?: string | undefined;
2732
+ valueLabelsMap?: Record<string, string> | undefined;
2690
2733
  nullValueLabel?: string | undefined;
2691
2734
  }[] | undefined;
2692
2735
  }>>;
@@ -2698,6 +2741,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2698
2741
  format: z.ZodOptional<z.ZodString>;
2699
2742
  label: z.ZodOptional<z.ZodString>;
2700
2743
  valueLabels: z.ZodOptional<z.ZodString>;
2744
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2701
2745
  nullValueLabel: z.ZodOptional<z.ZodString>;
2702
2746
  }, "strip", z.ZodTypeAny, {
2703
2747
  type: "column";
@@ -2705,6 +2749,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2705
2749
  format?: string | undefined;
2706
2750
  label?: string | undefined;
2707
2751
  valueLabels?: string | undefined;
2752
+ valueLabelsMap?: Record<string, string> | undefined;
2708
2753
  nullValueLabel?: string | undefined;
2709
2754
  }, {
2710
2755
  type: "column";
@@ -2712,6 +2757,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2712
2757
  format?: string | undefined;
2713
2758
  label?: string | undefined;
2714
2759
  valueLabels?: string | undefined;
2760
+ valueLabelsMap?: Record<string, string> | undefined;
2715
2761
  nullValueLabel?: string | undefined;
2716
2762
  }>, "many">>;
2717
2763
  }, "strip", z.ZodTypeAny, {
@@ -2722,6 +2768,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2722
2768
  format?: string | undefined;
2723
2769
  label?: string | undefined;
2724
2770
  valueLabels?: string | undefined;
2771
+ valueLabelsMap?: Record<string, string> | undefined;
2725
2772
  nullValueLabel?: string | undefined;
2726
2773
  }[] | undefined;
2727
2774
  }, {
@@ -2732,6 +2779,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2732
2779
  format?: string | undefined;
2733
2780
  label?: string | undefined;
2734
2781
  valueLabels?: string | undefined;
2782
+ valueLabelsMap?: Record<string, string> | undefined;
2735
2783
  nullValueLabel?: string | undefined;
2736
2784
  }[] | undefined;
2737
2785
  }>>;
@@ -2743,6 +2791,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2743
2791
  format: z.ZodOptional<z.ZodString>;
2744
2792
  label: z.ZodOptional<z.ZodString>;
2745
2793
  valueLabels: z.ZodOptional<z.ZodString>;
2794
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2746
2795
  nullValueLabel: z.ZodOptional<z.ZodString>;
2747
2796
  }, "strip", z.ZodTypeAny, {
2748
2797
  type: "column";
@@ -2750,6 +2799,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2750
2799
  format?: string | undefined;
2751
2800
  label?: string | undefined;
2752
2801
  valueLabels?: string | undefined;
2802
+ valueLabelsMap?: Record<string, string> | undefined;
2753
2803
  nullValueLabel?: string | undefined;
2754
2804
  }, {
2755
2805
  type: "column";
@@ -2757,6 +2807,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2757
2807
  format?: string | undefined;
2758
2808
  label?: string | undefined;
2759
2809
  valueLabels?: string | undefined;
2810
+ valueLabelsMap?: Record<string, string> | undefined;
2760
2811
  nullValueLabel?: string | undefined;
2761
2812
  }>, "many">>;
2762
2813
  }, "strip", z.ZodTypeAny, {
@@ -2767,6 +2818,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2767
2818
  format?: string | undefined;
2768
2819
  label?: string | undefined;
2769
2820
  valueLabels?: string | undefined;
2821
+ valueLabelsMap?: Record<string, string> | undefined;
2770
2822
  nullValueLabel?: string | undefined;
2771
2823
  }[] | undefined;
2772
2824
  }, {
@@ -2777,6 +2829,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2777
2829
  format?: string | undefined;
2778
2830
  label?: string | undefined;
2779
2831
  valueLabels?: string | undefined;
2832
+ valueLabelsMap?: Record<string, string> | undefined;
2780
2833
  nullValueLabel?: string | undefined;
2781
2834
  }[] | undefined;
2782
2835
  }>>;
@@ -2788,6 +2841,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2788
2841
  format: z.ZodOptional<z.ZodString>;
2789
2842
  label: z.ZodOptional<z.ZodString>;
2790
2843
  valueLabels: z.ZodOptional<z.ZodString>;
2844
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2791
2845
  nullValueLabel: z.ZodOptional<z.ZodString>;
2792
2846
  }, "strip", z.ZodTypeAny, {
2793
2847
  type: "column";
@@ -2795,6 +2849,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2795
2849
  format?: string | undefined;
2796
2850
  label?: string | undefined;
2797
2851
  valueLabels?: string | undefined;
2852
+ valueLabelsMap?: Record<string, string> | undefined;
2798
2853
  nullValueLabel?: string | undefined;
2799
2854
  }, {
2800
2855
  type: "column";
@@ -2802,6 +2857,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2802
2857
  format?: string | undefined;
2803
2858
  label?: string | undefined;
2804
2859
  valueLabels?: string | undefined;
2860
+ valueLabelsMap?: Record<string, string> | undefined;
2805
2861
  nullValueLabel?: string | undefined;
2806
2862
  }>, "many">>;
2807
2863
  }, "strip", z.ZodTypeAny, {
@@ -2812,6 +2868,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2812
2868
  format?: string | undefined;
2813
2869
  label?: string | undefined;
2814
2870
  valueLabels?: string | undefined;
2871
+ valueLabelsMap?: Record<string, string> | undefined;
2815
2872
  nullValueLabel?: string | undefined;
2816
2873
  }[] | undefined;
2817
2874
  }, {
@@ -2822,6 +2879,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2822
2879
  format?: string | undefined;
2823
2880
  label?: string | undefined;
2824
2881
  valueLabels?: string | undefined;
2882
+ valueLabelsMap?: Record<string, string> | undefined;
2825
2883
  nullValueLabel?: string | undefined;
2826
2884
  }[] | undefined;
2827
2885
  }>>;
@@ -2833,6 +2891,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2833
2891
  format: z.ZodOptional<z.ZodString>;
2834
2892
  label: z.ZodOptional<z.ZodString>;
2835
2893
  valueLabels: z.ZodOptional<z.ZodString>;
2894
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2836
2895
  nullValueLabel: z.ZodOptional<z.ZodString>;
2837
2896
  }, "strip", z.ZodTypeAny, {
2838
2897
  type: "column";
@@ -2840,6 +2899,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2840
2899
  format?: string | undefined;
2841
2900
  label?: string | undefined;
2842
2901
  valueLabels?: string | undefined;
2902
+ valueLabelsMap?: Record<string, string> | undefined;
2843
2903
  nullValueLabel?: string | undefined;
2844
2904
  }, {
2845
2905
  type: "column";
@@ -2847,6 +2907,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2847
2907
  format?: string | undefined;
2848
2908
  label?: string | undefined;
2849
2909
  valueLabels?: string | undefined;
2910
+ valueLabelsMap?: Record<string, string> | undefined;
2850
2911
  nullValueLabel?: string | undefined;
2851
2912
  }>, "many">>;
2852
2913
  }, "strip", z.ZodTypeAny, {
@@ -2857,6 +2918,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2857
2918
  format?: string | undefined;
2858
2919
  label?: string | undefined;
2859
2920
  valueLabels?: string | undefined;
2921
+ valueLabelsMap?: Record<string, string> | undefined;
2860
2922
  nullValueLabel?: string | undefined;
2861
2923
  }[] | undefined;
2862
2924
  }, {
@@ -2867,6 +2929,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2867
2929
  format?: string | undefined;
2868
2930
  label?: string | undefined;
2869
2931
  valueLabels?: string | undefined;
2932
+ valueLabelsMap?: Record<string, string> | undefined;
2870
2933
  nullValueLabel?: string | undefined;
2871
2934
  }[] | undefined;
2872
2935
  }>>;
@@ -2878,6 +2941,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2878
2941
  format: z.ZodOptional<z.ZodString>;
2879
2942
  label: z.ZodOptional<z.ZodString>;
2880
2943
  valueLabels: z.ZodOptional<z.ZodString>;
2944
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2881
2945
  nullValueLabel: z.ZodOptional<z.ZodString>;
2882
2946
  }, "strip", z.ZodTypeAny, {
2883
2947
  type: "column";
@@ -2885,6 +2949,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2885
2949
  format?: string | undefined;
2886
2950
  label?: string | undefined;
2887
2951
  valueLabels?: string | undefined;
2952
+ valueLabelsMap?: Record<string, string> | undefined;
2888
2953
  nullValueLabel?: string | undefined;
2889
2954
  }, {
2890
2955
  type: "column";
@@ -2892,6 +2957,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2892
2957
  format?: string | undefined;
2893
2958
  label?: string | undefined;
2894
2959
  valueLabels?: string | undefined;
2960
+ valueLabelsMap?: Record<string, string> | undefined;
2895
2961
  nullValueLabel?: string | undefined;
2896
2962
  }>, "many">>;
2897
2963
  }, "strip", z.ZodTypeAny, {
@@ -2902,6 +2968,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2902
2968
  format?: string | undefined;
2903
2969
  label?: string | undefined;
2904
2970
  valueLabels?: string | undefined;
2971
+ valueLabelsMap?: Record<string, string> | undefined;
2905
2972
  nullValueLabel?: string | undefined;
2906
2973
  }[] | undefined;
2907
2974
  }, {
@@ -2912,6 +2979,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2912
2979
  format?: string | undefined;
2913
2980
  label?: string | undefined;
2914
2981
  valueLabels?: string | undefined;
2982
+ valueLabelsMap?: Record<string, string> | undefined;
2915
2983
  nullValueLabel?: string | undefined;
2916
2984
  }[] | undefined;
2917
2985
  }>>;
@@ -2923,6 +2991,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2923
2991
  format: z.ZodOptional<z.ZodString>;
2924
2992
  label: z.ZodOptional<z.ZodString>;
2925
2993
  valueLabels: z.ZodOptional<z.ZodString>;
2994
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2926
2995
  nullValueLabel: z.ZodOptional<z.ZodString>;
2927
2996
  }, "strip", z.ZodTypeAny, {
2928
2997
  type: "column";
@@ -2930,6 +2999,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2930
2999
  format?: string | undefined;
2931
3000
  label?: string | undefined;
2932
3001
  valueLabels?: string | undefined;
3002
+ valueLabelsMap?: Record<string, string> | undefined;
2933
3003
  nullValueLabel?: string | undefined;
2934
3004
  }, {
2935
3005
  type: "column";
@@ -2937,6 +3007,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2937
3007
  format?: string | undefined;
2938
3008
  label?: string | undefined;
2939
3009
  valueLabels?: string | undefined;
3010
+ valueLabelsMap?: Record<string, string> | undefined;
2940
3011
  nullValueLabel?: string | undefined;
2941
3012
  }>, "many">>;
2942
3013
  }, "strip", z.ZodTypeAny, {
@@ -2947,6 +3018,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2947
3018
  format?: string | undefined;
2948
3019
  label?: string | undefined;
2949
3020
  valueLabels?: string | undefined;
3021
+ valueLabelsMap?: Record<string, string> | undefined;
2950
3022
  nullValueLabel?: string | undefined;
2951
3023
  }[] | undefined;
2952
3024
  }, {
@@ -2957,6 +3029,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2957
3029
  format?: string | undefined;
2958
3030
  label?: string | undefined;
2959
3031
  valueLabels?: string | undefined;
3032
+ valueLabelsMap?: Record<string, string> | undefined;
2960
3033
  nullValueLabel?: string | undefined;
2961
3034
  }[] | undefined;
2962
3035
  }>>;
@@ -2969,6 +3042,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2969
3042
  format?: string | undefined;
2970
3043
  label?: string | undefined;
2971
3044
  valueLabels?: string | undefined;
3045
+ valueLabelsMap?: Record<string, string> | undefined;
2972
3046
  nullValueLabel?: string | undefined;
2973
3047
  }[] | undefined;
2974
3048
  } | undefined;
@@ -2980,6 +3054,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2980
3054
  format?: string | undefined;
2981
3055
  label?: string | undefined;
2982
3056
  valueLabels?: string | undefined;
3057
+ valueLabelsMap?: Record<string, string> | undefined;
2983
3058
  nullValueLabel?: string | undefined;
2984
3059
  }[] | undefined;
2985
3060
  } | undefined;
@@ -2991,6 +3066,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
2991
3066
  format?: string | undefined;
2992
3067
  label?: string | undefined;
2993
3068
  valueLabels?: string | undefined;
3069
+ valueLabelsMap?: Record<string, string> | undefined;
2994
3070
  nullValueLabel?: string | undefined;
2995
3071
  }[] | undefined;
2996
3072
  } | undefined;
@@ -3002,6 +3078,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3002
3078
  format?: string | undefined;
3003
3079
  label?: string | undefined;
3004
3080
  valueLabels?: string | undefined;
3081
+ valueLabelsMap?: Record<string, string> | undefined;
3005
3082
  nullValueLabel?: string | undefined;
3006
3083
  }[] | undefined;
3007
3084
  } | undefined;
@@ -3013,6 +3090,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3013
3090
  format?: string | undefined;
3014
3091
  label?: string | undefined;
3015
3092
  valueLabels?: string | undefined;
3093
+ valueLabelsMap?: Record<string, string> | undefined;
3016
3094
  nullValueLabel?: string | undefined;
3017
3095
  }[] | undefined;
3018
3096
  } | undefined;
@@ -3024,6 +3102,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3024
3102
  format?: string | undefined;
3025
3103
  label?: string | undefined;
3026
3104
  valueLabels?: string | undefined;
3105
+ valueLabelsMap?: Record<string, string> | undefined;
3027
3106
  nullValueLabel?: string | undefined;
3028
3107
  }[] | undefined;
3029
3108
  } | undefined;
@@ -3035,6 +3114,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3035
3114
  format?: string | undefined;
3036
3115
  label?: string | undefined;
3037
3116
  valueLabels?: string | undefined;
3117
+ valueLabelsMap?: Record<string, string> | undefined;
3038
3118
  nullValueLabel?: string | undefined;
3039
3119
  }[] | undefined;
3040
3120
  } | undefined;
@@ -3046,6 +3126,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3046
3126
  format?: string | undefined;
3047
3127
  label?: string | undefined;
3048
3128
  valueLabels?: string | undefined;
3129
+ valueLabelsMap?: Record<string, string> | undefined;
3049
3130
  nullValueLabel?: string | undefined;
3050
3131
  }[] | undefined;
3051
3132
  } | undefined;
@@ -3057,6 +3138,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3057
3138
  format?: string | undefined;
3058
3139
  label?: string | undefined;
3059
3140
  valueLabels?: string | undefined;
3141
+ valueLabelsMap?: Record<string, string> | undefined;
3060
3142
  nullValueLabel?: string | undefined;
3061
3143
  }[] | undefined;
3062
3144
  } | undefined;
@@ -3068,6 +3150,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3068
3150
  format?: string | undefined;
3069
3151
  label?: string | undefined;
3070
3152
  valueLabels?: string | undefined;
3153
+ valueLabelsMap?: Record<string, string> | undefined;
3071
3154
  nullValueLabel?: string | undefined;
3072
3155
  }[] | undefined;
3073
3156
  } | undefined;
@@ -3080,6 +3163,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3080
3163
  format?: string | undefined;
3081
3164
  label?: string | undefined;
3082
3165
  valueLabels?: string | undefined;
3166
+ valueLabelsMap?: Record<string, string> | undefined;
3083
3167
  nullValueLabel?: string | undefined;
3084
3168
  }[] | undefined;
3085
3169
  } | undefined;
@@ -3091,6 +3175,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3091
3175
  format?: string | undefined;
3092
3176
  label?: string | undefined;
3093
3177
  valueLabels?: string | undefined;
3178
+ valueLabelsMap?: Record<string, string> | undefined;
3094
3179
  nullValueLabel?: string | undefined;
3095
3180
  }[] | undefined;
3096
3181
  } | undefined;
@@ -3102,6 +3187,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3102
3187
  format?: string | undefined;
3103
3188
  label?: string | undefined;
3104
3189
  valueLabels?: string | undefined;
3190
+ valueLabelsMap?: Record<string, string> | undefined;
3105
3191
  nullValueLabel?: string | undefined;
3106
3192
  }[] | undefined;
3107
3193
  } | undefined;
@@ -3113,6 +3199,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3113
3199
  format?: string | undefined;
3114
3200
  label?: string | undefined;
3115
3201
  valueLabels?: string | undefined;
3202
+ valueLabelsMap?: Record<string, string> | undefined;
3116
3203
  nullValueLabel?: string | undefined;
3117
3204
  }[] | undefined;
3118
3205
  } | undefined;
@@ -3124,6 +3211,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3124
3211
  format?: string | undefined;
3125
3212
  label?: string | undefined;
3126
3213
  valueLabels?: string | undefined;
3214
+ valueLabelsMap?: Record<string, string> | undefined;
3127
3215
  nullValueLabel?: string | undefined;
3128
3216
  }[] | undefined;
3129
3217
  } | undefined;
@@ -3135,6 +3223,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3135
3223
  format?: string | undefined;
3136
3224
  label?: string | undefined;
3137
3225
  valueLabels?: string | undefined;
3226
+ valueLabelsMap?: Record<string, string> | undefined;
3138
3227
  nullValueLabel?: string | undefined;
3139
3228
  }[] | undefined;
3140
3229
  } | undefined;
@@ -3146,6 +3235,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3146
3235
  format?: string | undefined;
3147
3236
  label?: string | undefined;
3148
3237
  valueLabels?: string | undefined;
3238
+ valueLabelsMap?: Record<string, string> | undefined;
3149
3239
  nullValueLabel?: string | undefined;
3150
3240
  }[] | undefined;
3151
3241
  } | undefined;
@@ -3157,6 +3247,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3157
3247
  format?: string | undefined;
3158
3248
  label?: string | undefined;
3159
3249
  valueLabels?: string | undefined;
3250
+ valueLabelsMap?: Record<string, string> | undefined;
3160
3251
  nullValueLabel?: string | undefined;
3161
3252
  }[] | undefined;
3162
3253
  } | undefined;
@@ -3168,6 +3259,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3168
3259
  format?: string | undefined;
3169
3260
  label?: string | undefined;
3170
3261
  valueLabels?: string | undefined;
3262
+ valueLabelsMap?: Record<string, string> | undefined;
3171
3263
  nullValueLabel?: string | undefined;
3172
3264
  }[] | undefined;
3173
3265
  } | undefined;
@@ -3179,6 +3271,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3179
3271
  format?: string | undefined;
3180
3272
  label?: string | undefined;
3181
3273
  valueLabels?: string | undefined;
3274
+ valueLabelsMap?: Record<string, string> | undefined;
3182
3275
  nullValueLabel?: string | undefined;
3183
3276
  }[] | undefined;
3184
3277
  } | undefined;
@@ -3197,6 +3290,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3197
3290
  format: z.ZodOptional<z.ZodString>;
3198
3291
  label: z.ZodOptional<z.ZodString>;
3199
3292
  valueLabels: z.ZodOptional<z.ZodString>;
3293
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3200
3294
  nullValueLabel: z.ZodOptional<z.ZodString>;
3201
3295
  }, "strip", z.ZodTypeAny, {
3202
3296
  type: "column";
@@ -3204,6 +3298,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3204
3298
  format?: string | undefined;
3205
3299
  label?: string | undefined;
3206
3300
  valueLabels?: string | undefined;
3301
+ valueLabelsMap?: Record<string, string> | undefined;
3207
3302
  nullValueLabel?: string | undefined;
3208
3303
  }, {
3209
3304
  type: "column";
@@ -3211,6 +3306,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3211
3306
  format?: string | undefined;
3212
3307
  label?: string | undefined;
3213
3308
  valueLabels?: string | undefined;
3309
+ valueLabelsMap?: Record<string, string> | undefined;
3214
3310
  nullValueLabel?: string | undefined;
3215
3311
  }>>;
3216
3312
  primaryGrouping: z.ZodOptional<z.ZodObject<{
@@ -3220,6 +3316,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3220
3316
  format: z.ZodOptional<z.ZodString>;
3221
3317
  label: z.ZodOptional<z.ZodString>;
3222
3318
  valueLabels: z.ZodOptional<z.ZodString>;
3319
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3223
3320
  nullValueLabel: z.ZodOptional<z.ZodString>;
3224
3321
  }, "strip", z.ZodTypeAny, {
3225
3322
  type: "column";
@@ -3227,6 +3324,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3227
3324
  format?: string | undefined;
3228
3325
  label?: string | undefined;
3229
3326
  valueLabels?: string | undefined;
3327
+ valueLabelsMap?: Record<string, string> | undefined;
3230
3328
  nullValueLabel?: string | undefined;
3231
3329
  }, {
3232
3330
  type: "column";
@@ -3234,6 +3332,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3234
3332
  format?: string | undefined;
3235
3333
  label?: string | undefined;
3236
3334
  valueLabels?: string | undefined;
3335
+ valueLabelsMap?: Record<string, string> | undefined;
3237
3336
  nullValueLabel?: string | undefined;
3238
3337
  }>;
3239
3338
  order: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>, "many">>;
@@ -3271,6 +3370,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3271
3370
  format?: string | undefined;
3272
3371
  label?: string | undefined;
3273
3372
  valueLabels?: string | undefined;
3373
+ valueLabelsMap?: Record<string, string> | undefined;
3274
3374
  nullValueLabel?: string | undefined;
3275
3375
  };
3276
3376
  order?: (string | number | null)[] | undefined;
@@ -3292,6 +3392,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3292
3392
  format?: string | undefined;
3293
3393
  label?: string | undefined;
3294
3394
  valueLabels?: string | undefined;
3395
+ valueLabelsMap?: Record<string, string> | undefined;
3295
3396
  nullValueLabel?: string | undefined;
3296
3397
  };
3297
3398
  order?: (string | number | null)[] | undefined;
@@ -3314,6 +3415,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3314
3415
  format: z.ZodOptional<z.ZodString>;
3315
3416
  label: z.ZodOptional<z.ZodString>;
3316
3417
  valueLabels: z.ZodOptional<z.ZodString>;
3418
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3317
3419
  nullValueLabel: z.ZodOptional<z.ZodString>;
3318
3420
  }, "strip", z.ZodTypeAny, {
3319
3421
  type: "column";
@@ -3321,6 +3423,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3321
3423
  format?: string | undefined;
3322
3424
  label?: string | undefined;
3323
3425
  valueLabels?: string | undefined;
3426
+ valueLabelsMap?: Record<string, string> | undefined;
3324
3427
  nullValueLabel?: string | undefined;
3325
3428
  }, {
3326
3429
  type: "column";
@@ -3328,6 +3431,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3328
3431
  format?: string | undefined;
3329
3432
  label?: string | undefined;
3330
3433
  valueLabels?: string | undefined;
3434
+ valueLabelsMap?: Record<string, string> | undefined;
3331
3435
  nullValueLabel?: string | undefined;
3332
3436
  }>;
3333
3437
  order: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodNull]>, "many">>;
@@ -3365,6 +3469,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3365
3469
  format?: string | undefined;
3366
3470
  label?: string | undefined;
3367
3471
  valueLabels?: string | undefined;
3472
+ valueLabelsMap?: Record<string, string> | undefined;
3368
3473
  nullValueLabel?: string | undefined;
3369
3474
  };
3370
3475
  order?: (string | number | null)[] | undefined;
@@ -3386,6 +3491,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3386
3491
  format?: string | undefined;
3387
3492
  label?: string | undefined;
3388
3493
  valueLabels?: string | undefined;
3494
+ valueLabelsMap?: Record<string, string> | undefined;
3389
3495
  nullValueLabel?: string | undefined;
3390
3496
  };
3391
3497
  order?: (string | number | null)[] | undefined;
@@ -3407,6 +3513,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3407
3513
  format: z.ZodOptional<z.ZodString>;
3408
3514
  label: z.ZodOptional<z.ZodString>;
3409
3515
  valueLabels: z.ZodOptional<z.ZodString>;
3516
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3410
3517
  nullValueLabel: z.ZodOptional<z.ZodString>;
3411
3518
  }, "strip", z.ZodTypeAny, {
3412
3519
  type: "column";
@@ -3414,6 +3521,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3414
3521
  format?: string | undefined;
3415
3522
  label?: string | undefined;
3416
3523
  valueLabels?: string | undefined;
3524
+ valueLabelsMap?: Record<string, string> | undefined;
3417
3525
  nullValueLabel?: string | undefined;
3418
3526
  }, {
3419
3527
  type: "column";
@@ -3421,6 +3529,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3421
3529
  format?: string | undefined;
3422
3530
  label?: string | undefined;
3423
3531
  valueLabels?: string | undefined;
3532
+ valueLabelsMap?: Record<string, string> | undefined;
3424
3533
  nullValueLabel?: string | undefined;
3425
3534
  }>, "many">>;
3426
3535
  facetSettings: z.ZodOptional<z.ZodObject<{
@@ -3453,6 +3562,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3453
3562
  format: z.ZodOptional<z.ZodString>;
3454
3563
  label: z.ZodOptional<z.ZodString>;
3455
3564
  valueLabels: z.ZodOptional<z.ZodString>;
3565
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3456
3566
  nullValueLabel: z.ZodOptional<z.ZodString>;
3457
3567
  }, "strip", z.ZodTypeAny, {
3458
3568
  type: "column";
@@ -3460,6 +3570,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3460
3570
  format?: string | undefined;
3461
3571
  label?: string | undefined;
3462
3572
  valueLabels?: string | undefined;
3573
+ valueLabelsMap?: Record<string, string> | undefined;
3463
3574
  nullValueLabel?: string | undefined;
3464
3575
  }, {
3465
3576
  type: "column";
@@ -3467,6 +3578,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3467
3578
  format?: string | undefined;
3468
3579
  label?: string | undefined;
3469
3580
  valueLabels?: string | undefined;
3581
+ valueLabelsMap?: Record<string, string> | undefined;
3470
3582
  nullValueLabel?: string | undefined;
3471
3583
  }>]>>;
3472
3584
  scale: z.ZodOptional<z.ZodLiteral<"discrete">>;
@@ -3485,6 +3597,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3485
3597
  format?: string | undefined;
3486
3598
  label?: string | undefined;
3487
3599
  valueLabels?: string | undefined;
3600
+ valueLabelsMap?: Record<string, string> | undefined;
3488
3601
  nullValueLabel?: string | undefined;
3489
3602
  } | undefined;
3490
3603
  scale?: "discrete" | undefined;
@@ -3502,6 +3615,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3502
3615
  format?: string | undefined;
3503
3616
  label?: string | undefined;
3504
3617
  valueLabels?: string | undefined;
3618
+ valueLabelsMap?: Record<string, string> | undefined;
3505
3619
  nullValueLabel?: string | undefined;
3506
3620
  } | undefined;
3507
3621
  scale?: "discrete" | undefined;
@@ -3519,6 +3633,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3519
3633
  format: z.ZodOptional<z.ZodString>;
3520
3634
  label: z.ZodOptional<z.ZodString>;
3521
3635
  valueLabels: z.ZodOptional<z.ZodString>;
3636
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3522
3637
  nullValueLabel: z.ZodOptional<z.ZodString>;
3523
3638
  }, "strip", z.ZodTypeAny, {
3524
3639
  type: "column";
@@ -3526,6 +3641,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3526
3641
  format?: string | undefined;
3527
3642
  label?: string | undefined;
3528
3643
  valueLabels?: string | undefined;
3644
+ valueLabelsMap?: Record<string, string> | undefined;
3529
3645
  nullValueLabel?: string | undefined;
3530
3646
  }, {
3531
3647
  type: "column";
@@ -3533,6 +3649,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3533
3649
  format?: string | undefined;
3534
3650
  label?: string | undefined;
3535
3651
  valueLabels?: string | undefined;
3652
+ valueLabelsMap?: Record<string, string> | undefined;
3536
3653
  nullValueLabel?: string | undefined;
3537
3654
  }>]>>;
3538
3655
  scale: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"linear">, z.ZodLiteral<"log">]>>;
@@ -3551,6 +3668,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3551
3668
  format?: string | undefined;
3552
3669
  label?: string | undefined;
3553
3670
  valueLabels?: string | undefined;
3671
+ valueLabelsMap?: Record<string, string> | undefined;
3554
3672
  nullValueLabel?: string | undefined;
3555
3673
  } | undefined;
3556
3674
  scale?: "linear" | "log" | undefined;
@@ -3569,6 +3687,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
3569
3687
  format?: string | undefined;
3570
3688
  label?: string | undefined;
3571
3689
  valueLabels?: string | undefined;
3690
+ valueLabelsMap?: Record<string, string> | undefined;
3572
3691
  nullValueLabel?: string | undefined;
3573
3692
  } | undefined;
3574
3693
  scale?: "linear" | "log" | undefined;
@@ -4310,6 +4429,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4310
4429
  format: z.ZodOptional<z.ZodString>;
4311
4430
  label: z.ZodOptional<z.ZodString>;
4312
4431
  valueLabels: z.ZodOptional<z.ZodString>;
4432
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4313
4433
  nullValueLabel: z.ZodOptional<z.ZodString>;
4314
4434
  }, "strip", z.ZodTypeAny, {
4315
4435
  type: "column";
@@ -4317,6 +4437,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4317
4437
  format?: string | undefined;
4318
4438
  label?: string | undefined;
4319
4439
  valueLabels?: string | undefined;
4440
+ valueLabelsMap?: Record<string, string> | undefined;
4320
4441
  nullValueLabel?: string | undefined;
4321
4442
  }, {
4322
4443
  type: "column";
@@ -4324,6 +4445,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4324
4445
  format?: string | undefined;
4325
4446
  label?: string | undefined;
4326
4447
  valueLabels?: string | undefined;
4448
+ valueLabelsMap?: Record<string, string> | undefined;
4327
4449
  nullValueLabel?: string | undefined;
4328
4450
  }>>;
4329
4451
  aes: z.ZodOptional<z.ZodObject<{
@@ -4393,6 +4515,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4393
4515
  format?: string | undefined;
4394
4516
  label?: string | undefined;
4395
4517
  valueLabels?: string | undefined;
4518
+ valueLabelsMap?: Record<string, string> | undefined;
4396
4519
  nullValueLabel?: string | undefined;
4397
4520
  } | undefined;
4398
4521
  method?: "dotdensity" | "histodot" | undefined;
@@ -4418,6 +4541,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4418
4541
  format?: string | undefined;
4419
4542
  label?: string | undefined;
4420
4543
  valueLabels?: string | undefined;
4544
+ valueLabelsMap?: Record<string, string> | undefined;
4421
4545
  nullValueLabel?: string | undefined;
4422
4546
  } | undefined;
4423
4547
  method?: "dotdensity" | "histodot" | undefined;
@@ -4429,6 +4553,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4429
4553
  format: z.ZodOptional<z.ZodString>;
4430
4554
  label: z.ZodOptional<z.ZodString>;
4431
4555
  valueLabels: z.ZodOptional<z.ZodString>;
4556
+ valueLabelsMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4432
4557
  nullValueLabel: z.ZodOptional<z.ZodString>;
4433
4558
  }, "strip", z.ZodTypeAny, {
4434
4559
  type: "column";
@@ -4436,6 +4561,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4436
4561
  format?: string | undefined;
4437
4562
  label?: string | undefined;
4438
4563
  valueLabels?: string | undefined;
4564
+ valueLabelsMap?: Record<string, string> | undefined;
4439
4565
  nullValueLabel?: string | undefined;
4440
4566
  }, {
4441
4567
  type: "column";
@@ -4443,6 +4569,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4443
4569
  format?: string | undefined;
4444
4570
  label?: string | undefined;
4445
4571
  valueLabels?: string | undefined;
4572
+ valueLabelsMap?: Record<string, string> | undefined;
4446
4573
  nullValueLabel?: string | undefined;
4447
4574
  }>;
4448
4575
  aes: z.ZodOptional<z.ZodObject<{
@@ -4501,6 +4628,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4501
4628
  format?: string | undefined;
4502
4629
  label?: string | undefined;
4503
4630
  valueLabels?: string | undefined;
4631
+ valueLabelsMap?: Record<string, string> | undefined;
4504
4632
  nullValueLabel?: string | undefined;
4505
4633
  };
4506
4634
  aes?: {
@@ -4525,6 +4653,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4525
4653
  format?: string | undefined;
4526
4654
  label?: string | undefined;
4527
4655
  valueLabels?: string | undefined;
4656
+ valueLabelsMap?: Record<string, string> | undefined;
4528
4657
  nullValueLabel?: string | undefined;
4529
4658
  };
4530
4659
  aes?: {
@@ -4790,6 +4919,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4790
4919
  format?: string | undefined;
4791
4920
  label?: string | undefined;
4792
4921
  valueLabels?: string | undefined;
4922
+ valueLabelsMap?: Record<string, string> | undefined;
4793
4923
  nullValueLabel?: string | undefined;
4794
4924
  };
4795
4925
  layers: ({
@@ -4953,6 +5083,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4953
5083
  format?: string | undefined;
4954
5084
  label?: string | undefined;
4955
5085
  valueLabels?: string | undefined;
5086
+ valueLabelsMap?: Record<string, string> | undefined;
4956
5087
  nullValueLabel?: string | undefined;
4957
5088
  } | undefined;
4958
5089
  method?: "dotdensity" | "histodot" | undefined;
@@ -4964,6 +5095,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
4964
5095
  format?: string | undefined;
4965
5096
  label?: string | undefined;
4966
5097
  valueLabels?: string | undefined;
5098
+ valueLabelsMap?: Record<string, string> | undefined;
4967
5099
  nullValueLabel?: string | undefined;
4968
5100
  };
4969
5101
  aes?: {
@@ -5053,6 +5185,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5053
5185
  format?: string | undefined;
5054
5186
  label?: string | undefined;
5055
5187
  valueLabels?: string | undefined;
5188
+ valueLabelsMap?: Record<string, string> | undefined;
5056
5189
  nullValueLabel?: string | undefined;
5057
5190
  }[] | undefined;
5058
5191
  } | undefined;
@@ -5064,6 +5197,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5064
5197
  format?: string | undefined;
5065
5198
  label?: string | undefined;
5066
5199
  valueLabels?: string | undefined;
5200
+ valueLabelsMap?: Record<string, string> | undefined;
5067
5201
  nullValueLabel?: string | undefined;
5068
5202
  }[] | undefined;
5069
5203
  } | undefined;
@@ -5075,6 +5209,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5075
5209
  format?: string | undefined;
5076
5210
  label?: string | undefined;
5077
5211
  valueLabels?: string | undefined;
5212
+ valueLabelsMap?: Record<string, string> | undefined;
5078
5213
  nullValueLabel?: string | undefined;
5079
5214
  }[] | undefined;
5080
5215
  } | undefined;
@@ -5086,6 +5221,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5086
5221
  format?: string | undefined;
5087
5222
  label?: string | undefined;
5088
5223
  valueLabels?: string | undefined;
5224
+ valueLabelsMap?: Record<string, string> | undefined;
5089
5225
  nullValueLabel?: string | undefined;
5090
5226
  }[] | undefined;
5091
5227
  } | undefined;
@@ -5097,6 +5233,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5097
5233
  format?: string | undefined;
5098
5234
  label?: string | undefined;
5099
5235
  valueLabels?: string | undefined;
5236
+ valueLabelsMap?: Record<string, string> | undefined;
5100
5237
  nullValueLabel?: string | undefined;
5101
5238
  }[] | undefined;
5102
5239
  } | undefined;
@@ -5108,6 +5245,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5108
5245
  format?: string | undefined;
5109
5246
  label?: string | undefined;
5110
5247
  valueLabels?: string | undefined;
5248
+ valueLabelsMap?: Record<string, string> | undefined;
5111
5249
  nullValueLabel?: string | undefined;
5112
5250
  }[] | undefined;
5113
5251
  } | undefined;
@@ -5119,6 +5257,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5119
5257
  format?: string | undefined;
5120
5258
  label?: string | undefined;
5121
5259
  valueLabels?: string | undefined;
5260
+ valueLabelsMap?: Record<string, string> | undefined;
5122
5261
  nullValueLabel?: string | undefined;
5123
5262
  }[] | undefined;
5124
5263
  } | undefined;
@@ -5130,6 +5269,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5130
5269
  format?: string | undefined;
5131
5270
  label?: string | undefined;
5132
5271
  valueLabels?: string | undefined;
5272
+ valueLabelsMap?: Record<string, string> | undefined;
5133
5273
  nullValueLabel?: string | undefined;
5134
5274
  }[] | undefined;
5135
5275
  } | undefined;
@@ -5141,6 +5281,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5141
5281
  format?: string | undefined;
5142
5282
  label?: string | undefined;
5143
5283
  valueLabels?: string | undefined;
5284
+ valueLabelsMap?: Record<string, string> | undefined;
5144
5285
  nullValueLabel?: string | undefined;
5145
5286
  }[] | undefined;
5146
5287
  } | undefined;
@@ -5152,6 +5293,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5152
5293
  format?: string | undefined;
5153
5294
  label?: string | undefined;
5154
5295
  valueLabels?: string | undefined;
5296
+ valueLabelsMap?: Record<string, string> | undefined;
5155
5297
  nullValueLabel?: string | undefined;
5156
5298
  }[] | undefined;
5157
5299
  } | undefined;
@@ -5173,6 +5315,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5173
5315
  format?: string | undefined;
5174
5316
  label?: string | undefined;
5175
5317
  valueLabels?: string | undefined;
5318
+ valueLabelsMap?: Record<string, string> | undefined;
5176
5319
  nullValueLabel?: string | undefined;
5177
5320
  } | undefined;
5178
5321
  xAxis?: {
@@ -5183,6 +5326,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5183
5326
  format?: string | undefined;
5184
5327
  label?: string | undefined;
5185
5328
  valueLabels?: string | undefined;
5329
+ valueLabelsMap?: Record<string, string> | undefined;
5186
5330
  nullValueLabel?: string | undefined;
5187
5331
  } | undefined;
5188
5332
  scale?: "discrete" | undefined;
@@ -5200,6 +5344,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5200
5344
  format?: string | undefined;
5201
5345
  label?: string | undefined;
5202
5346
  valueLabels?: string | undefined;
5347
+ valueLabelsMap?: Record<string, string> | undefined;
5203
5348
  nullValueLabel?: string | undefined;
5204
5349
  } | undefined;
5205
5350
  scale?: "linear" | "log" | undefined;
@@ -5218,6 +5363,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5218
5363
  format?: string | undefined;
5219
5364
  label?: string | undefined;
5220
5365
  valueLabels?: string | undefined;
5366
+ valueLabelsMap?: Record<string, string> | undefined;
5221
5367
  nullValueLabel?: string | undefined;
5222
5368
  }[] | undefined;
5223
5369
  primaryGrouping?: {
@@ -5227,6 +5373,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5227
5373
  format?: string | undefined;
5228
5374
  label?: string | undefined;
5229
5375
  valueLabels?: string | undefined;
5376
+ valueLabelsMap?: Record<string, string> | undefined;
5230
5377
  nullValueLabel?: string | undefined;
5231
5378
  };
5232
5379
  order?: (string | number | null)[] | undefined;
@@ -5249,6 +5396,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5249
5396
  format?: string | undefined;
5250
5397
  label?: string | undefined;
5251
5398
  valueLabels?: string | undefined;
5399
+ valueLabelsMap?: Record<string, string> | undefined;
5252
5400
  nullValueLabel?: string | undefined;
5253
5401
  };
5254
5402
  order?: (string | number | null)[] | undefined;
@@ -5278,6 +5426,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5278
5426
  format?: string | undefined;
5279
5427
  label?: string | undefined;
5280
5428
  valueLabels?: string | undefined;
5429
+ valueLabelsMap?: Record<string, string> | undefined;
5281
5430
  nullValueLabel?: string | undefined;
5282
5431
  };
5283
5432
  layers: ({
@@ -5441,6 +5590,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5441
5590
  format?: string | undefined;
5442
5591
  label?: string | undefined;
5443
5592
  valueLabels?: string | undefined;
5593
+ valueLabelsMap?: Record<string, string> | undefined;
5444
5594
  nullValueLabel?: string | undefined;
5445
5595
  } | undefined;
5446
5596
  method?: "dotdensity" | "histodot" | undefined;
@@ -5452,6 +5602,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5452
5602
  format?: string | undefined;
5453
5603
  label?: string | undefined;
5454
5604
  valueLabels?: string | undefined;
5605
+ valueLabelsMap?: Record<string, string> | undefined;
5455
5606
  nullValueLabel?: string | undefined;
5456
5607
  };
5457
5608
  aes?: {
@@ -5541,6 +5692,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5541
5692
  format?: string | undefined;
5542
5693
  label?: string | undefined;
5543
5694
  valueLabels?: string | undefined;
5695
+ valueLabelsMap?: Record<string, string> | undefined;
5544
5696
  nullValueLabel?: string | undefined;
5545
5697
  }[] | undefined;
5546
5698
  } | undefined;
@@ -5552,6 +5704,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5552
5704
  format?: string | undefined;
5553
5705
  label?: string | undefined;
5554
5706
  valueLabels?: string | undefined;
5707
+ valueLabelsMap?: Record<string, string> | undefined;
5555
5708
  nullValueLabel?: string | undefined;
5556
5709
  }[] | undefined;
5557
5710
  } | undefined;
@@ -5563,6 +5716,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5563
5716
  format?: string | undefined;
5564
5717
  label?: string | undefined;
5565
5718
  valueLabels?: string | undefined;
5719
+ valueLabelsMap?: Record<string, string> | undefined;
5566
5720
  nullValueLabel?: string | undefined;
5567
5721
  }[] | undefined;
5568
5722
  } | undefined;
@@ -5574,6 +5728,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5574
5728
  format?: string | undefined;
5575
5729
  label?: string | undefined;
5576
5730
  valueLabels?: string | undefined;
5731
+ valueLabelsMap?: Record<string, string> | undefined;
5577
5732
  nullValueLabel?: string | undefined;
5578
5733
  }[] | undefined;
5579
5734
  } | undefined;
@@ -5585,6 +5740,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5585
5740
  format?: string | undefined;
5586
5741
  label?: string | undefined;
5587
5742
  valueLabels?: string | undefined;
5743
+ valueLabelsMap?: Record<string, string> | undefined;
5588
5744
  nullValueLabel?: string | undefined;
5589
5745
  }[] | undefined;
5590
5746
  } | undefined;
@@ -5596,6 +5752,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5596
5752
  format?: string | undefined;
5597
5753
  label?: string | undefined;
5598
5754
  valueLabels?: string | undefined;
5755
+ valueLabelsMap?: Record<string, string> | undefined;
5599
5756
  nullValueLabel?: string | undefined;
5600
5757
  }[] | undefined;
5601
5758
  } | undefined;
@@ -5607,6 +5764,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5607
5764
  format?: string | undefined;
5608
5765
  label?: string | undefined;
5609
5766
  valueLabels?: string | undefined;
5767
+ valueLabelsMap?: Record<string, string> | undefined;
5610
5768
  nullValueLabel?: string | undefined;
5611
5769
  }[] | undefined;
5612
5770
  } | undefined;
@@ -5618,6 +5776,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5618
5776
  format?: string | undefined;
5619
5777
  label?: string | undefined;
5620
5778
  valueLabels?: string | undefined;
5779
+ valueLabelsMap?: Record<string, string> | undefined;
5621
5780
  nullValueLabel?: string | undefined;
5622
5781
  }[] | undefined;
5623
5782
  } | undefined;
@@ -5629,6 +5788,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5629
5788
  format?: string | undefined;
5630
5789
  label?: string | undefined;
5631
5790
  valueLabels?: string | undefined;
5791
+ valueLabelsMap?: Record<string, string> | undefined;
5632
5792
  nullValueLabel?: string | undefined;
5633
5793
  }[] | undefined;
5634
5794
  } | undefined;
@@ -5640,6 +5800,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5640
5800
  format?: string | undefined;
5641
5801
  label?: string | undefined;
5642
5802
  valueLabels?: string | undefined;
5803
+ valueLabelsMap?: Record<string, string> | undefined;
5643
5804
  nullValueLabel?: string | undefined;
5644
5805
  }[] | undefined;
5645
5806
  } | undefined;
@@ -5661,6 +5822,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5661
5822
  format?: string | undefined;
5662
5823
  label?: string | undefined;
5663
5824
  valueLabels?: string | undefined;
5825
+ valueLabelsMap?: Record<string, string> | undefined;
5664
5826
  nullValueLabel?: string | undefined;
5665
5827
  } | undefined;
5666
5828
  xAxis?: {
@@ -5671,6 +5833,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5671
5833
  format?: string | undefined;
5672
5834
  label?: string | undefined;
5673
5835
  valueLabels?: string | undefined;
5836
+ valueLabelsMap?: Record<string, string> | undefined;
5674
5837
  nullValueLabel?: string | undefined;
5675
5838
  } | undefined;
5676
5839
  scale?: "discrete" | undefined;
@@ -5688,6 +5851,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5688
5851
  format?: string | undefined;
5689
5852
  label?: string | undefined;
5690
5853
  valueLabels?: string | undefined;
5854
+ valueLabelsMap?: Record<string, string> | undefined;
5691
5855
  nullValueLabel?: string | undefined;
5692
5856
  } | undefined;
5693
5857
  scale?: "linear" | "log" | undefined;
@@ -5706,6 +5870,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5706
5870
  format?: string | undefined;
5707
5871
  label?: string | undefined;
5708
5872
  valueLabels?: string | undefined;
5873
+ valueLabelsMap?: Record<string, string> | undefined;
5709
5874
  nullValueLabel?: string | undefined;
5710
5875
  }[] | undefined;
5711
5876
  primaryGrouping?: {
@@ -5715,6 +5880,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5715
5880
  format?: string | undefined;
5716
5881
  label?: string | undefined;
5717
5882
  valueLabels?: string | undefined;
5883
+ valueLabelsMap?: Record<string, string> | undefined;
5718
5884
  nullValueLabel?: string | undefined;
5719
5885
  };
5720
5886
  order?: (string | number | null)[] | undefined;
@@ -5737,6 +5903,7 @@ export declare const DiscreteSettingsSchema: z.ZodObject<{
5737
5903
  format?: string | undefined;
5738
5904
  label?: string | undefined;
5739
5905
  valueLabels?: string | undefined;
5906
+ valueLabelsMap?: Record<string, string> | undefined;
5740
5907
  nullValueLabel?: string | undefined;
5741
5908
  };
5742
5909
  order?: (string | number | null)[] | undefined;