@milaboratories/graph-maker 1.1.138 → 1.1.139

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 (219) hide show
  1. package/dist/GraphMaker/components/LassoControls/index.vue.js +15 -13
  2. package/dist/GraphMaker/components/LassoControls/index.vue.js.map +1 -1
  3. package/dist/GraphMaker/utils/createChartSettingsForRender/composeBubbleSettings.d.ts +9 -3
  4. package/dist/GraphMaker/utils/createChartSettingsForRender/composeBubbleSettings.d.ts.map +1 -1
  5. package/dist/GraphMaker/utils/createChartSettingsForRender/composeDendroSettings.d.ts +17 -2
  6. package/dist/GraphMaker/utils/createChartSettingsForRender/composeDendroSettings.d.ts.map +1 -1
  7. package/dist/GraphMaker/utils/createChartSettingsForRender/composeDiscreteSettings.d.ts +13 -4
  8. package/dist/GraphMaker/utils/createChartSettingsForRender/composeDiscreteSettings.d.ts.map +1 -1
  9. package/dist/GraphMaker/utils/createChartSettingsForRender/composeHeatmapSettings.d.ts +28 -7
  10. package/dist/GraphMaker/utils/createChartSettingsForRender/composeHeatmapSettings.d.ts.map +1 -1
  11. package/dist/GraphMaker/utils/createChartSettingsForRender/composeHistogramSettings.d.ts +6 -2
  12. package/dist/GraphMaker/utils/createChartSettingsForRender/composeHistogramSettings.d.ts.map +1 -1
  13. package/dist/GraphMaker/utils/createChartSettingsForRender/composeScatterplotSettings.d.ts +16 -2
  14. package/dist/GraphMaker/utils/createChartSettingsForRender/composeScatterplotSettings.d.ts.map +1 -1
  15. package/dist/GraphMaker/utils/createChartSettingsForRender/composeScatterplotUmapSettings.d.ts +14 -2
  16. package/dist/GraphMaker/utils/createChartSettingsForRender/composeScatterplotUmapSettings.d.ts.map +1 -1
  17. package/dist/node_modules/@milaboratories/miplots4/dist/DataFrame.js +95 -72
  18. package/dist/node_modules/@milaboratories/miplots4/dist/DataFrame.js.map +1 -1
  19. package/dist/node_modules/@milaboratories/miplots4/dist/MiPlots.js +1 -1
  20. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/ChartRenderer.js +124 -122
  21. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/ChartRenderer.js.map +1 -1
  22. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/components/Chart.js +72 -91
  23. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/components/Chart.js.map +1 -1
  24. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/components/ChartsGroup.js +43 -41
  25. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/components/ChartsGroup.js.map +1 -1
  26. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/getCellTooltip.js +28 -0
  27. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/getCellTooltip.js.map +1 -0
  28. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/getGroupedCellsData.js +94 -0
  29. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/getGroupedCellsData.js.map +1 -0
  30. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/index.js +42 -38
  31. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/index.js.map +1 -1
  32. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/utils/calculateCaptionTails.js.map +1 -1
  33. package/dist/node_modules/@milaboratories/miplots4/dist/common/Legend.js.map +1 -1
  34. package/dist/node_modules/@milaboratories/miplots4/dist/common/Tooltip.js +11 -11
  35. package/dist/node_modules/@milaboratories/miplots4/dist/common/Tooltip.js.map +1 -1
  36. package/dist/node_modules/@milaboratories/miplots4/dist/common/useDataFrame.js +20 -0
  37. package/dist/node_modules/@milaboratories/miplots4/dist/common/useDataFrame.js.map +1 -0
  38. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/ChartRenderer.js +181 -181
  39. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/ChartRenderer.js.map +1 -1
  40. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/DendroSettingsImpl.js +2 -2
  41. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/DendroSettingsImpl.js.map +1 -1
  42. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/components/Chart.js +45 -45
  43. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/components/Chart.js.map +1 -1
  44. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/components/Heatmap.js +27 -27
  45. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/components/Heatmap.js.map +1 -1
  46. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/components/Legend.js.map +1 -1
  47. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/components/LinksGroup.js +18 -18
  48. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/components/LinksGroup.js.map +1 -1
  49. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/components/NodesGroup.js +36 -36
  50. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/components/NodesGroup.js.map +1 -1
  51. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/getHeatmapData.js +45 -41
  52. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/getHeatmapData.js.map +1 -1
  53. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/getHierarchyData.js +33 -33
  54. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/getHierarchyData.js.map +1 -1
  55. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/index.js +90 -93
  56. package/dist/node_modules/@milaboratories/miplots4/dist/dendro/index.js.map +1 -1
  57. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/ChartRenderer.js +200 -199
  58. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/ChartRenderer.js.map +1 -1
  59. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/DiscreteSettingsImpl.js +17 -17
  60. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/DiscreteSettingsImpl.js.map +1 -1
  61. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/components/layers/BoxElement.js.map +1 -1
  62. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/index.js +102 -99
  63. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/index.js.map +1 -1
  64. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/bar.js +31 -36
  65. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/bar.js.map +1 -1
  66. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/binnedDots.js +62 -74
  67. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/binnedDots.js.map +1 -1
  68. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/boxes.js +52 -53
  69. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/boxes.js.map +1 -1
  70. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/dots.js +32 -32
  71. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/dots.js.map +1 -1
  72. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/lines.js +7 -6
  73. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/lines.js.map +1 -1
  74. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/logo.js +23 -23
  75. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/logo.js.map +1 -1
  76. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/pairedPoints.js +63 -63
  77. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/pairedPoints.js.map +1 -1
  78. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/sina.js +60 -64
  79. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/sina.js.map +1 -1
  80. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/stackedBar.js +23 -23
  81. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/layers/stackedBar.js.map +1 -1
  82. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/utils/getOutliersBounds.js +5 -5
  83. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/utils/getOutliersBounds.js.map +1 -1
  84. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/utils/splitTextByWidth.js +13 -13
  85. package/dist/node_modules/@milaboratories/miplots4/dist/discrete/utils/splitTextByWidth.js.map +1 -1
  86. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/ChartRenderer.js +258 -256
  87. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/ChartRenderer.js.map +1 -1
  88. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/HeatmapSettingsImpl.js +1 -1
  89. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/HeatmapSettingsImpl.js.map +1 -1
  90. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/components/Annotations/Annotation.js +45 -44
  91. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/components/Annotations/Annotation.js.map +1 -1
  92. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/components/Chart.js +107 -106
  93. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/components/Chart.js.map +1 -1
  94. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/components/ChartsGroup.js +18 -18
  95. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/components/ChartsGroup.js.map +1 -1
  96. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/getCells.js +99 -95
  97. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/getCells.js.map +1 -1
  98. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/index.js +30 -29
  99. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/index.js.map +1 -1
  100. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/utils/calculateAnnotationTitleSizes.js +1 -1
  101. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/utils/calculateAnnotationTitleSizes.js.map +1 -1
  102. package/dist/node_modules/@milaboratories/miplots4/dist/heatmap/utils/calculateCaptionTails.js.map +1 -1
  103. package/dist/node_modules/@milaboratories/miplots4/dist/histogram/ChartRenderer.js +143 -142
  104. package/dist/node_modules/@milaboratories/miplots4/dist/histogram/ChartRenderer.js.map +1 -1
  105. package/dist/node_modules/@milaboratories/miplots4/dist/histogram/HistogramSettingsImpl.js.map +1 -1
  106. package/dist/node_modules/@milaboratories/miplots4/dist/histogram/components/Chart.js +30 -30
  107. package/dist/node_modules/@milaboratories/miplots4/dist/histogram/components/Chart.js.map +1 -1
  108. package/dist/node_modules/@milaboratories/miplots4/dist/histogram/components/ChartsGroup.js +7 -7
  109. package/dist/node_modules/@milaboratories/miplots4/dist/histogram/getHistogramData.js +53 -54
  110. package/dist/node_modules/@milaboratories/miplots4/dist/histogram/getHistogramData.js.map +1 -1
  111. package/dist/node_modules/@milaboratories/miplots4/dist/histogram/index.js +59 -55
  112. package/dist/node_modules/@milaboratories/miplots4/dist/histogram/index.js.map +1 -1
  113. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/@d3fc/d3fc-axis/src/axisBase.js +7 -7
  114. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-array/src/min.js +6 -12
  115. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-array/src/min.js.map +1 -1
  116. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-shape/src/line.js.map +1 -1
  117. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/kdbush/index.js +148 -0
  118. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/kdbush/index.js.map +1 -0
  119. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/ChartRenderer.js +172 -168
  120. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/ChartRenderer.js.map +1 -1
  121. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/ScatterplotSettingsImpl.js +26 -26
  122. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/ScatterplotSettingsImpl.js.map +1 -1
  123. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/components/Chart.js +11 -11
  124. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/components/ChartAxisTitles.js +30 -29
  125. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/components/ChartAxisTitles.js.map +1 -1
  126. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/components/ChartLayersData.js +135 -153
  127. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/components/ChartLayersData.js.map +1 -1
  128. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/components/ChartTooltip.js +35 -32
  129. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/components/ChartTooltip.js.map +1 -1
  130. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/components/ChartTrendsData.js +27 -27
  131. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/components/ChartTrendsData.js.map +1 -1
  132. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/components/ChartsGroup.js +14 -14
  133. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/constants.js.map +1 -1
  134. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/dots.js +24 -22
  135. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/dots.js.map +1 -1
  136. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/getLayersData.js +11 -14
  137. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/getLayersData.js.map +1 -1
  138. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/index.js +57 -58
  139. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/index.js.map +1 -1
  140. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/linearRegression.js +85 -83
  141. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/linearRegression.js.map +1 -1
  142. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/utils/createAesGetter.js +20 -20
  143. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/utils/createAesGetter.js.map +1 -1
  144. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/utils/createLegendInfo.js +44 -37
  145. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/utils/createLegendInfo.js.map +1 -1
  146. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/utils/formatColumnValue.js +11 -0
  147. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/utils/formatColumnValue.js.map +1 -0
  148. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/utils/getVisibleLabels.js +46 -56
  149. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot/utils/getVisibleLabels.js.map +1 -1
  150. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/ChartRenderer.js +223 -205
  151. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/ChartRenderer.js.map +1 -1
  152. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/SettingsImpl.js +22 -22
  153. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/SettingsImpl.js.map +1 -1
  154. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/colors.js +42 -0
  155. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/colors.js.map +1 -0
  156. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/components/LowerSVG.js +84 -81
  157. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/components/LowerSVG.js.map +1 -1
  158. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/components/SVGLayer.js +11 -11
  159. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/components/UpperSVG.js +15 -14
  160. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/components/UpperSVG.js.map +1 -1
  161. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/index.js +89 -114
  162. package/dist/node_modules/@milaboratories/miplots4/dist/scatterplot-umap/index.js.map +1 -1
  163. package/dist/node_modules/@milaboratories/miplots4/dist/types/common.js +3 -1
  164. package/dist/node_modules/@milaboratories/miplots4/dist/types/common.js.map +1 -1
  165. package/dist/node_modules/@milaboratories/miplots4/dist/types/dendro.js +1 -1
  166. package/dist/node_modules/@milaboratories/miplots4/dist/types/dendro.js.map +1 -1
  167. package/dist/node_modules/@milaboratories/miplots4/dist/types/discrete.js +1 -1
  168. package/dist/node_modules/@milaboratories/miplots4/dist/types/discrete.js.map +1 -1
  169. package/dist/node_modules/@milaboratories/miplots4/dist/types/heatmap.js +1 -1
  170. package/dist/node_modules/@milaboratories/miplots4/dist/types/heatmap.js.map +1 -1
  171. package/dist/node_modules/@milaboratories/miplots4/dist/types/histogram.js +1 -1
  172. package/dist/node_modules/@milaboratories/miplots4/dist/types/histogram.js.map +1 -1
  173. package/dist/node_modules/@milaboratories/miplots4/dist/types/scatterplot-umap.js +1 -1
  174. package/dist/node_modules/@milaboratories/miplots4/dist/types/scatterplot-umap.js.map +1 -1
  175. package/dist/node_modules/@milaboratories/miplots4/dist/types/scatterplot.js +4 -4
  176. package/dist/node_modules/@milaboratories/miplots4/dist/types/scatterplot.js.map +1 -1
  177. package/dist/node_modules/@milaboratories/miplots4/dist/utils/TextMeasurer/TextMeasurer.js +39 -0
  178. package/dist/node_modules/@milaboratories/miplots4/dist/utils/TextMeasurer/TextMeasurer.js.map +1 -0
  179. package/dist/node_modules/@milaboratories/miplots4/dist/utils/TextMeasurer/charToWidth.json.js +101 -0
  180. package/dist/node_modules/@milaboratories/miplots4/dist/utils/TextMeasurer/charToWidth.json.js.map +1 -0
  181. package/dist/node_modules/@milaboratories/miplots4/dist/utils/arrangeLegendParts.js +4 -4
  182. package/dist/node_modules/@milaboratories/miplots4/dist/utils/arrangeLegendParts.js.map +1 -1
  183. package/dist/node_modules/@milaboratories/miplots4/dist/utils/getLegendWidth.js +3 -3
  184. package/dist/node_modules/@milaboratories/miplots4/dist/utils/getLegendWidth.js.map +1 -1
  185. package/dist/node_modules/@milaboratories/pf-plots/dist/index.js +1031 -1023
  186. package/dist/node_modules/@milaboratories/pf-plots/dist/index.js.map +1 -1
  187. package/package.json +3 -3
  188. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/getCells.js +0 -91
  189. package/dist/node_modules/@milaboratories/miplots4/dist/bubble/getCells.js.map +0 -1
  190. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/add.js +0 -30
  191. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/add.js.map +0 -1
  192. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/cover.js +0 -29
  193. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/cover.js.map +0 -1
  194. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/data.js +0 -12
  195. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/data.js.map +0 -1
  196. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/extent.js +0 -7
  197. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/extent.js.map +0 -1
  198. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/find.js +0 -26
  199. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/find.js.map +0 -1
  200. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/quad.js +0 -7
  201. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/quad.js.map +0 -1
  202. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/quadtree.js +0 -51
  203. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/quadtree.js.map +0 -1
  204. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/remove.js +0 -21
  205. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/remove.js.map +0 -1
  206. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/root.js +0 -7
  207. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/root.js.map +0 -1
  208. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/size.js +0 -12
  209. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/size.js.map +0 -1
  210. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/visit.js +0 -14
  211. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/visit.js.map +0 -1
  212. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/visitAfter.js +0 -19
  213. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/visitAfter.js.map +0 -1
  214. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/x.js +0 -11
  215. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/x.js.map +0 -1
  216. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/y.js +0 -11
  217. package/dist/node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/y.js.map +0 -1
  218. package/dist/node_modules/@milaboratories/miplots4/dist/utils/TextMeasurer.js +0 -24
  219. package/dist/node_modules/@milaboratories/miplots4/dist/utils/TextMeasurer.js.map +0 -1
@@ -1,9 +1,9 @@
1
1
  import { defineComponent as R, computed as P, onMounted as _, onUnmounted as x, createElementBlock as L, openBlock as M, createElementVNode as a, createVNode as r, unref as i, normalizeClass as h, withCtx as T } from "vue";
2
2
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/lodash/lodash.js";
3
- import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-hierarchy/src/hierarchy/index.js";
4
3
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/react-dom/server.browser.js";
5
4
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/zod/lib/index.js";
6
5
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/react/jsx-runtime.js";
6
+ import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/react-dom/client.js";
7
7
  import "../../../node_modules/@milaboratories/miplots4/dist/types/common.js";
8
8
  import "../../../node_modules/@milaboratories/miplots4/dist/types/discrete.js";
9
9
  import "../../../node_modules/@milaboratories/miplots4/dist/types/scatterplot.js";
@@ -12,7 +12,7 @@ import "../../../node_modules/@milaboratories/miplots4/dist/types/dendro.js";
12
12
  import "../../../node_modules/@milaboratories/miplots4/dist/types/histogram.js";
13
13
  import "../../../node_modules/@milaboratories/miplots4/dist/types/bubble.js";
14
14
  import "../../../node_modules/@milaboratories/miplots4/dist/utils/getLegendWidth.js";
15
- import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/react-dom/client.js";
15
+ import "../../../node_modules/@milaboratories/miplots4/dist/utils/TextMeasurer/TextMeasurer.js";
16
16
  import "../../../node_modules/@milaboratories/miplots4/dist/_virtual/index.js";
17
17
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/react-dom/index.js";
18
18
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-interpolate/src/rgb.js";
@@ -20,8 +20,11 @@ import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-colo
20
20
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-array/src/bisect.js";
21
21
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-format/src/formatSpecifier.js";
22
22
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-format/src/defaultLocale.js";
23
- import "../../../node_modules/@milaboratories/miplots4/dist/common/ErrorBoundary.js";
23
+ import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-hierarchy/src/hierarchy/index.js";
24
+ import "../../../node_modules/@milaboratories/miplots4/dist/DataFrame.js";
25
+ import "../../../node_modules/@milaboratories/miplots4/dist/common/useDataFrame.js";
24
26
  import "../../../node_modules/@milaboratories/miplots4/dist/utils/arrangeLegendParts.js";
27
+ import "../../../node_modules/@milaboratories/miplots4/dist/common/ErrorBoundary.js";
25
28
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-shape/src/curve/linear.js";
26
29
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-shape/src/curve/basis.js";
27
30
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/@stdlib/stats-anova1/lib/main.js";
@@ -50,23 +53,22 @@ import "../../../node_modules/@milaboratories/miplots4/dist/heatmap/utils/calcul
50
53
  import "../../../node_modules/@milaboratories/miplots4/dist/scatterplot/components/Chart.js";
51
54
  import "../../../node_modules/@milaboratories/miplots4/dist/scatterplot/components/ChartTooltip.js";
52
55
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/@stdlib/stats-base-dists-f-cdf/lib/index.js";
53
- import "../../../node_modules/@milaboratories/miplots4/dist/scatterplot-umap/components/LowerSVG.js";
54
- import { SCATTERPLOT_LASSO_EVENTS as s } from "../../../node_modules/@milaboratories/miplots4/dist/scatterplot-umap/constants.js";
55
56
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-selection/src/selection/index.js";
56
- import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-drag/src/event.js";
57
- import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-dispatch/src/dispatch.js";
57
+ import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/@d3fc/d3fc-element/index.js";
58
+ import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/@d3fc/d3fc-chart/src/css.js";
59
+ import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/@d3fc/d3fc-webgl/src/scale/scaleMapper.js";
58
60
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-transition/src/selection/index.js";
59
61
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-transition/src/transition/schedule.js";
60
62
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-zoom/src/transform.js";
63
+ import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-dispatch/src/dispatch.js";
61
64
  import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-interpolate/src/zoom.js";
62
- import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/@d3fc/d3fc-element/index.js";
63
- import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/@d3fc/d3fc-chart/src/css.js";
64
- import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/@d3fc/d3fc-webgl/src/scale/scaleMapper.js";
65
- import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-quadtree/src/quadtree.js";
65
+ import "../../../node_modules/@milaboratories/miplots4/dist/scatterplot-umap/components/LowerSVG.js";
66
+ import { SCATTERPLOT_LASSO_EVENTS as s } from "../../../node_modules/@milaboratories/miplots4/dist/scatterplot-umap/constants.js";
67
+ import "../../../node_modules/@milaboratories/miplots4/dist/node_modules/d3-drag/src/event.js";
66
68
  import "../../../node_modules/@milaboratories/miplots4/dist/types/scatterplot-umap.js";
67
69
  import { PlBtnGhost as m, PlMaskIcon24 as z } from "@platforma-sdk/ui-vue";
68
70
  import { useStore as B } from "../../store.js";
69
- const N = { class: "lasso-controls-container" }, O = { class: "lasso-buttons-group" }, Xt = /* @__PURE__ */ R({
71
+ const N = { class: "lasso-controls-container" }, O = { class: "lasso-buttons-group" }, Zt = /* @__PURE__ */ R({
70
72
  __name: "index",
71
73
  props: {
72
74
  chartRef: {}
@@ -153,6 +155,6 @@ const N = { class: "lasso-controls-container" }, O = { class: "lasso-buttons-gro
153
155
  }
154
156
  });
155
157
  export {
156
- Xt as default
158
+ Zt as default
157
159
  };
158
160
  //# sourceMappingURL=index.vue.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.vue.js","sources":["../../../../src/GraphMaker/components/LassoControls/index.vue"],"sourcesContent":["<script setup lang=\"ts\">\nimport { ChartInterface, SCATTERPLOT_LASSO_EVENTS } from '@milaboratories/miplots4';\nimport { PlBtnGhost, PlMaskIcon24 } from '@platforma-sdk/ui-vue';\nimport { computed, onMounted, onUnmounted } from 'vue';\nimport { useStore } from '../../../GraphMaker/store.ts';\n\nconst props = defineProps<{\n chartRef: ChartInterface | null\n}>();\n\nconst store = useStore();\nconst controlsState = computed(() => store.value.reactive.lassoControlsState);\n\nfunction setPen() {\n props.chartRef?.updateChartState(SCATTERPLOT_LASSO_EVENTS.selectMode, 'pen')\n}\nfunction setSelection() {\n props.chartRef?.updateChartState(SCATTERPLOT_LASSO_EVENTS.selectMode, 'selection')\n}\nfunction back() {\n props.chartRef?.updateChartState(SCATTERPLOT_LASSO_EVENTS.back, null);\n}\nfunction forward() {\n props.chartRef?.updateChartState(SCATTERPLOT_LASSO_EVENTS.forward, null);\n}\nfunction deletePolygon() {\n props.chartRef?.updateChartState(SCATTERPLOT_LASSO_EVENTS.delete, null)\n}\n\nfunction onKeyDown(e:KeyboardEvent) {\n if (e.key === 'p') {\n setPen();\n }\n if (e.key === 'v') {\n setSelection();\n }\n if (controlsState.value?.backEnabled && e.key === 'z' && (e.ctrlKey || e.metaKey) && !e.shiftKey) {\n back();\n }\n if (controlsState.value?.forwardEnabled && e.key === 'z' && (e.ctrlKey || e.metaKey) && e.shiftKey) {\n forward()\n }\n}\nonMounted(() => {\n document.addEventListener('keydown', onKeyDown);\n});\nonUnmounted(() => {\n document.removeEventListener('keydown', onKeyDown);\n});\n\n</script>\n<template>\n <div class=\"lasso-controls-container\">\n <div class=\"lasso-buttons-group\">\n <div class=\"lasso-controls-border\"/>\n <pl-btn-ghost\n @click=\"setPen\"\n :class=\"{\n 'lasso-button-selected': controlsState?.mode === 'pen' || !controlsState,\n 'lasso-button-not-selected': controlsState?.mode !== 'pen' && controlsState,\n }\"\n icon=\"cursor-pointer\"\n />\n <pl-btn-ghost\n @click=\"setSelection\"\n :class=\"{\n 'lasso-button-selected': controlsState?.mode === 'selection',\n 'lasso-button-not-selected': controlsState?.mode !== 'selection',\n }\"\n icon=\"pen-tool\"\n />\n <div class=\"lasso-controls-separator\"/>\n <pl-btn-ghost\n :disabled=\"!controlsState?.backEnabled\"\n icon=\"arrow-left-curved\"\n @click=\"back\"\n />\n <pl-btn-ghost\n :disabled=\"!controlsState?.forwardEnabled\"\n @click=\"forward\"\n >\n <template #icon>\n <PlMaskIcon24 name=\"arrow-left-curved\" :style=\"{transform: 'scale(-1, 1)'}\"/>\n </template>\n </pl-btn-ghost>\n <div class=\"lasso-controls-separator\"/>\n <pl-btn-ghost\n :disabled=\"!controlsState?.deleteEnabled\"\n icon=\"delete-bin\"\n @click=\"deletePolygon\"\n />\n </div>\n <div class=\"lasso-hint\">\n Hold Cmd/Ctrl and left-click to pan the canvas\n </div>\n </div>\n</template>\n"],"names":["props","__props","store","useStore","controlsState","computed","setPen","_a","SCATTERPLOT_LASSO_EVENTS","setSelection","back","forward","deletePolygon","onKeyDown","e","_b","onMounted","onUnmounted"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,UAAMA,IAAQC,GAIRC,IAAQC,EAAA,GACRC,IAAgBC,EAAS,MAAMH,EAAM,MAAM,SAAS,kBAAkB;AAE5E,aAASI,IAAS;;AAChB,OAAAC,IAAAP,EAAM,aAAN,QAAAO,EAAgB,iBAAiBC,EAAyB,YAAY;AAAA,IACxE;AACA,aAASC,IAAe;;AACtB,OAAAF,IAAAP,EAAM,aAAN,QAAAO,EAAgB,iBAAiBC,EAAyB,YAAY;AAAA,IACxE;AACA,aAASE,IAAO;;AACd,OAAAH,IAAAP,EAAM,aAAN,QAAAO,EAAgB,iBAAiBC,EAAyB,MAAM;AAAA,IAClE;AACA,aAASG,IAAU;;AACjB,OAAAJ,IAAAP,EAAM,aAAN,QAAAO,EAAgB,iBAAiBC,EAAyB,SAAS;AAAA,IACrE;AACA,aAASI,IAAgB;;AACvB,OAAAL,IAAAP,EAAM,aAAN,QAAAO,EAAgB,iBAAiBC,EAAyB,QAAQ;AAAA,IACpE;AAEA,aAASK,EAAUC,GAAiB;;AAClC,MAAIA,EAAE,QAAQ,OACZR,EAAA,GAEEQ,EAAE,QAAQ,OACZL,EAAA,IAEEF,IAAAH,EAAc,UAAd,QAAAG,EAAqB,eAAeO,EAAE,QAAQ,QAAQA,EAAE,WAAWA,EAAE,YAAY,CAACA,EAAE,YACtFJ,EAAA,IAEEK,IAAAX,EAAc,UAAd,QAAAW,EAAqB,kBAAkBD,EAAE,QAAQ,QAAQA,EAAE,WAAWA,EAAE,YAAYA,EAAE,YACxFH,EAAA;AAAA,IAEJ;AACA,WAAAK,EAAU,MAAM;AACd,eAAS,iBAAiB,WAAWH,CAAS;AAAA,IAChD,CAAC,GACDI,EAAY,MAAM;AAChB,eAAS,oBAAoB,WAAWJ,CAAS;AAAA,IACnD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.vue.js","sources":["../../../../src/GraphMaker/components/LassoControls/index.vue"],"sourcesContent":["<script setup lang=\"ts\">\nimport { ChartInterface, SCATTERPLOT_LASSO_EVENTS } from '@milaboratories/miplots4';\nimport { PlBtnGhost, PlMaskIcon24 } from '@platforma-sdk/ui-vue';\nimport { computed, onMounted, onUnmounted } from 'vue';\nimport { useStore } from '../../../GraphMaker/store.ts';\n\nconst props = defineProps<{\n chartRef: ChartInterface | null\n}>();\n\nconst store = useStore();\nconst controlsState = computed(() => store.value.reactive.lassoControlsState);\n\nfunction setPen() {\n props.chartRef?.updateChartState(SCATTERPLOT_LASSO_EVENTS.selectMode, 'pen')\n}\nfunction setSelection() {\n props.chartRef?.updateChartState(SCATTERPLOT_LASSO_EVENTS.selectMode, 'selection')\n}\nfunction back() {\n props.chartRef?.updateChartState(SCATTERPLOT_LASSO_EVENTS.back, null);\n}\nfunction forward() {\n props.chartRef?.updateChartState(SCATTERPLOT_LASSO_EVENTS.forward, null);\n}\nfunction deletePolygon() {\n props.chartRef?.updateChartState(SCATTERPLOT_LASSO_EVENTS.delete, null)\n}\n\nfunction onKeyDown(e:KeyboardEvent) {\n if (e.key === 'p') {\n setPen();\n }\n if (e.key === 'v') {\n setSelection();\n }\n if (controlsState.value?.backEnabled && e.key === 'z' && (e.ctrlKey || e.metaKey) && !e.shiftKey) {\n back();\n }\n if (controlsState.value?.forwardEnabled && e.key === 'z' && (e.ctrlKey || e.metaKey) && e.shiftKey) {\n forward()\n }\n}\nonMounted(() => {\n document.addEventListener('keydown', onKeyDown);\n});\nonUnmounted(() => {\n document.removeEventListener('keydown', onKeyDown);\n});\n\n</script>\n<template>\n <div class=\"lasso-controls-container\">\n <div class=\"lasso-buttons-group\">\n <div class=\"lasso-controls-border\"/>\n <pl-btn-ghost\n @click=\"setPen\"\n :class=\"{\n 'lasso-button-selected': controlsState?.mode === 'pen' || !controlsState,\n 'lasso-button-not-selected': controlsState?.mode !== 'pen' && controlsState,\n }\"\n icon=\"cursor-pointer\"\n />\n <pl-btn-ghost\n @click=\"setSelection\"\n :class=\"{\n 'lasso-button-selected': controlsState?.mode === 'selection',\n 'lasso-button-not-selected': controlsState?.mode !== 'selection',\n }\"\n icon=\"pen-tool\"\n />\n <div class=\"lasso-controls-separator\"/>\n <pl-btn-ghost\n :disabled=\"!controlsState?.backEnabled\"\n icon=\"arrow-left-curved\"\n @click=\"back\"\n />\n <pl-btn-ghost\n :disabled=\"!controlsState?.forwardEnabled\"\n @click=\"forward\"\n >\n <template #icon>\n <PlMaskIcon24 name=\"arrow-left-curved\" :style=\"{transform: 'scale(-1, 1)'}\"/>\n </template>\n </pl-btn-ghost>\n <div class=\"lasso-controls-separator\"/>\n <pl-btn-ghost\n :disabled=\"!controlsState?.deleteEnabled\"\n icon=\"delete-bin\"\n @click=\"deletePolygon\"\n />\n </div>\n <div class=\"lasso-hint\">\n Hold Cmd/Ctrl and left-click to pan the canvas\n </div>\n </div>\n</template>\n"],"names":["props","__props","store","useStore","controlsState","computed","setPen","_a","SCATTERPLOT_LASSO_EVENTS","setSelection","back","forward","deletePolygon","onKeyDown","e","_b","onMounted","onUnmounted"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,UAAMA,IAAQC,GAIRC,IAAQC,EAAA,GACRC,IAAgBC,EAAS,MAAMH,EAAM,MAAM,SAAS,kBAAkB;AAE5E,aAASI,IAAS;;AAChB,OAAAC,IAAAP,EAAM,aAAN,QAAAO,EAAgB,iBAAiBC,EAAyB,YAAY;AAAA,IACxE;AACA,aAASC,IAAe;;AACtB,OAAAF,IAAAP,EAAM,aAAN,QAAAO,EAAgB,iBAAiBC,EAAyB,YAAY;AAAA,IACxE;AACA,aAASE,IAAO;;AACd,OAAAH,IAAAP,EAAM,aAAN,QAAAO,EAAgB,iBAAiBC,EAAyB,MAAM;AAAA,IAClE;AACA,aAASG,IAAU;;AACjB,OAAAJ,IAAAP,EAAM,aAAN,QAAAO,EAAgB,iBAAiBC,EAAyB,SAAS;AAAA,IACrE;AACA,aAASI,IAAgB;;AACvB,OAAAL,IAAAP,EAAM,aAAN,QAAAO,EAAgB,iBAAiBC,EAAyB,QAAQ;AAAA,IACpE;AAEA,aAASK,EAAUC,GAAiB;;AAClC,MAAIA,EAAE,QAAQ,OACZR,EAAA,GAEEQ,EAAE,QAAQ,OACZL,EAAA,IAEEF,IAAAH,EAAc,UAAd,QAAAG,EAAqB,eAAeO,EAAE,QAAQ,QAAQA,EAAE,WAAWA,EAAE,YAAY,CAACA,EAAE,YACtFJ,EAAA,IAEEK,IAAAX,EAAc,UAAd,QAAAW,EAAqB,kBAAkBD,EAAE,QAAQ,QAAQA,EAAE,WAAWA,EAAE,YAAYA,EAAE,YACxFH,EAAA;AAAA,IAEJ;AACA,WAAAK,EAAU,MAAM;AACd,eAAS,iBAAiB,WAAWH,CAAS;AAAA,IAChD,CAAC,GACDI,EAAY,MAAM;AAChB,eAAS,oBAAoB,WAAWJ,CAAS;AAAA,IACnD,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -5,29 +5,33 @@ export declare function composeBubbleSettings(settings: BubbleSettings, reactive
5
5
  title: {
6
6
  name: string;
7
7
  show?: boolean | undefined;
8
- position?: "left" | "center" | "right" | undefined;
8
+ position?: "right" | "left" | "center" | undefined;
9
9
  };
10
10
  valueSize: {
11
11
  type: "column";
12
12
  value: string;
13
+ format?: string | undefined;
13
14
  label?: string | undefined;
14
15
  valueLabels?: string | undefined;
15
16
  };
16
17
  valueColor: {
17
18
  type: "column";
18
19
  value: string;
20
+ format?: string | undefined;
19
21
  label?: string | undefined;
20
22
  valueLabels?: string | undefined;
21
23
  };
22
24
  xColumn: {
23
25
  type: "column";
24
26
  value: string;
27
+ format?: string | undefined;
25
28
  label?: string | undefined;
26
29
  valueLabels?: string | undefined;
27
30
  };
28
31
  yColumn: {
29
32
  type: "column";
30
33
  value: string;
34
+ format?: string | undefined;
31
35
  label?: string | undefined;
32
36
  valueLabels?: string | undefined;
33
37
  };
@@ -45,13 +49,14 @@ export declare function composeBubbleSettings(settings: BubbleSettings, reactive
45
49
  } | undefined;
46
50
  legend?: {
47
51
  show?: boolean | undefined;
48
- position?: "right" | "inside" | "top" | "bottom" | undefined;
52
+ position?: "right" | "top" | "bottom" | "inside" | undefined;
49
53
  } | undefined;
50
54
  tooltips?: {
51
55
  show?: boolean | undefined;
52
56
  content?: {
53
57
  type: "column";
54
58
  value: string;
59
+ format?: string | undefined;
55
60
  label?: string | undefined;
56
61
  valueLabels?: string | undefined;
57
62
  }[] | undefined;
@@ -74,7 +79,7 @@ export declare function composeBubbleSettings(settings: BubbleSettings, reactive
74
79
  } | undefined;
75
80
  yAxis?: {
76
81
  title?: string | undefined;
77
- position?: "left" | "right" | undefined;
82
+ position?: "right" | "left" | undefined;
78
83
  showTicks?: boolean | undefined;
79
84
  sorting?: "asc" | "desc" | undefined;
80
85
  showTitle?: boolean | undefined;
@@ -84,6 +89,7 @@ export declare function composeBubbleSettings(settings: BubbleSettings, reactive
84
89
  facetBy?: {
85
90
  type: "column";
86
91
  value: string;
92
+ format?: string | undefined;
87
93
  label?: string | undefined;
88
94
  valueLabels?: string | undefined;
89
95
  }[] | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"composeBubbleSettings.d.ts","sourceRoot":"","sources":["../../../../src/GraphMaker/utils/createChartSettingsForRender/composeBubbleSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAM1D,OAAO,EAAe,aAAa,EAAE,MAAM,aAAa,CAAC;AAMzD,wBAAgB,qBAAqB,CACnC,QAAQ,EAAE,cAAc,EACxB,aAAa,EAAE,aAAa;;;;YA4B+hQ,CAAC;gBAAuC,CAAC;;;;;aAA+H,CAAC;mBAAyC,CAAC;;;;;aAA2G,CAAC;mBAAyC,CAAC;;;;;aAAwG,CAAC;mBAAyC,CAAC;;;;;aAAwG,CAAC;mBAAyC,CAAC;;;aAAuD,CAAC;cAAoC,CAAC;gBAAsC,CAAC;;;kBAAuE,CAAC;iBAAyC,CAAC;iBAAuC,CAAC;uBAA6C,CAAC;sBAA4C,CAAC;;;YAAoE,CAAC;gBAAuC,CAAC;;;YAAqG,CAAC;eAAsC,CAAC;;;iBAA4E,CAAC;uBAA6C,CAAC;;;;YAA4F,CAAC;;;aAA0H,CAAC;aAAmC,CAAC;;;aAAoE,CAAC;gBAAsC,CAAC;iBAAiD,CAAC;eAAsC,CAAC;iBAA+C,CAAC;sBAA6C,CAAC;uBAA8C,CAAC;;;aAAyE,CAAC;gBAAsC,CAAC;iBAAiD,CAAC;eAAsC,CAAC;iBAA+C,CAAC;sBAA6C,CAAC;uBAA8C,CAAC;;;;;aAA0H,CAAC;mBAAyC,CAAC;;;;;kBAAiL,CAAC;iBAAyC,CAAC;;;EAA/tV"}
1
+ {"version":3,"file":"composeBubbleSettings.d.ts","sourceRoot":"","sources":["../../../../src/GraphMaker/utils/createChartSettingsForRender/composeBubbleSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAM1D,OAAO,EAAe,aAAa,EAAE,MAAM,aAAa,CAAC;AAMzD,wBAAgB,qBAAqB,CACnC,QAAQ,EAAE,cAAc,EACxB,aAAa,EAAE,aAAa;;;;YA4Bi0R,CAAC;gBAAuC,CAAC;;;;;cAAgI,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;;;cAA4G,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;;;cAAyG,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;;;cAAyG,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;aAAuD,CAAC;cAAoC,CAAC;gBAAsC,CAAC;;;kBAAuE,CAAC;iBAAyC,CAAC;iBAAuC,CAAC;uBAA6C,CAAC;sBAA4C,CAAC;;;YAAoE,CAAC;gBAAuC,CAAC;;;YAAqG,CAAC;eAAsC,CAAC;;;kBAA6E,CAAC;iBAAuC,CAAC;uBAA6C,CAAC;;;;YAA4F,CAAC;;;aAA0H,CAAC;aAAmC,CAAC;;;aAAoE,CAAC;gBAAsC,CAAC;iBAAiD,CAAC;eAAsC,CAAC;iBAA+C,CAAC;sBAA6C,CAAC;uBAA8C,CAAC;;;aAAyE,CAAC;gBAAsC,CAAC;iBAAiD,CAAC;eAAsC,CAAC;iBAA+C,CAAC;sBAA6C,CAAC;uBAA8C,CAAC;;;;;cAA2H,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;;;kBAAiL,CAAC;iBAAyC,CAAC;;;EAAnuX"}
@@ -6,17 +6,19 @@ export declare function composeDendroSettings(settings: DendroSettings, dataByCo
6
6
  title: {
7
7
  name: string;
8
8
  show?: boolean | undefined;
9
- position?: "left" | "center" | "right" | undefined;
9
+ position?: "right" | "left" | "center" | undefined;
10
10
  };
11
11
  id: {
12
12
  type: "column";
13
13
  value: string;
14
+ format?: string | undefined;
14
15
  label?: string | undefined;
15
16
  valueLabels?: string | undefined;
16
17
  };
17
18
  parentId: {
18
19
  type: "column";
19
20
  value: string;
21
+ format?: string | undefined;
20
22
  label?: string | undefined;
21
23
  valueLabels?: string | undefined;
22
24
  };
@@ -35,6 +37,7 @@ export declare function composeDendroSettings(settings: DendroSettings, dataByCo
35
37
  columnName: {
36
38
  type: "column";
37
39
  value: string;
40
+ format?: string | undefined;
38
41
  label?: string | undefined;
39
42
  valueLabels?: string | undefined;
40
43
  };
@@ -45,6 +48,7 @@ export declare function composeDendroSettings(settings: DendroSettings, dataByCo
45
48
  columnName: {
46
49
  type: "column";
47
50
  value: string;
51
+ format?: string | undefined;
48
52
  label?: string | undefined;
49
53
  valueLabels?: string | undefined;
50
54
  };
@@ -54,6 +58,7 @@ export declare function composeDendroSettings(settings: DendroSettings, dataByCo
54
58
  columnName: {
55
59
  type: "column";
56
60
  value: string;
61
+ format?: string | undefined;
57
62
  label?: string | undefined;
58
63
  valueLabels?: string | undefined;
59
64
  };
@@ -63,6 +68,7 @@ export declare function composeDendroSettings(settings: DendroSettings, dataByCo
63
68
  columnName: {
64
69
  type: "column";
65
70
  value: string;
71
+ format?: string | undefined;
66
72
  label?: string | undefined;
67
73
  valueLabels?: string | undefined;
68
74
  };
@@ -73,6 +79,7 @@ export declare function composeDendroSettings(settings: DendroSettings, dataByCo
73
79
  columnName: {
74
80
  type: "column";
75
81
  value: string;
82
+ format?: string | undefined;
76
83
  label?: string | undefined;
77
84
  valueLabels?: string | undefined;
78
85
  };
@@ -82,6 +89,7 @@ export declare function composeDendroSettings(settings: DendroSettings, dataByCo
82
89
  columnName: {
83
90
  type: "column";
84
91
  value: string;
92
+ format?: string | undefined;
85
93
  label?: string | undefined;
86
94
  valueLabels?: string | undefined;
87
95
  };
@@ -92,6 +100,7 @@ export declare function composeDendroSettings(settings: DendroSettings, dataByCo
92
100
  columnName: {
93
101
  type: "column";
94
102
  value: string;
103
+ format?: string | undefined;
95
104
  label?: string | undefined;
96
105
  valueLabels?: string | undefined;
97
106
  };
@@ -101,12 +110,13 @@ export declare function composeDendroSettings(settings: DendroSettings, dataByCo
101
110
  height?: {
102
111
  type: "column";
103
112
  value: string;
113
+ format?: string | undefined;
104
114
  label?: string | undefined;
105
115
  valueLabels?: string | undefined;
106
116
  } | undefined;
107
117
  legend?: {
108
118
  show?: boolean | undefined;
109
- position?: "right" | "inside" | "top" | "bottom" | undefined;
119
+ position?: "right" | "top" | "bottom" | "inside" | undefined;
110
120
  } | undefined;
111
121
  facetSettings?: {
112
122
  nRows?: number | undefined;
@@ -115,6 +125,7 @@ export declare function composeDendroSettings(settings: DendroSettings, dataByCo
115
125
  facetBy?: {
116
126
  type: "column";
117
127
  value: string;
128
+ format?: string | undefined;
118
129
  label?: string | undefined;
119
130
  valueLabels?: string | undefined;
120
131
  }[] | undefined;
@@ -125,24 +136,28 @@ export declare function composeDendroSettings(settings: DendroSettings, dataByCo
125
136
  labels?: {
126
137
  type: "column";
127
138
  value: string;
139
+ format?: string | undefined;
128
140
  label?: string | undefined;
129
141
  valueLabels?: string | undefined;
130
142
  } | undefined;
131
143
  heatmapAnnotation?: {
132
144
  type: "column";
133
145
  value: string;
146
+ format?: string | undefined;
134
147
  label?: string | undefined;
135
148
  valueLabels?: string | undefined;
136
149
  } | undefined;
137
150
  heatmapAxis?: {
138
151
  type: "column";
139
152
  value: string;
153
+ format?: string | undefined;
140
154
  label?: string | undefined;
141
155
  valueLabels?: string | undefined;
142
156
  } | undefined;
143
157
  heatmapGroup?: {
144
158
  type: "column";
145
159
  value: string;
160
+ format?: string | undefined;
146
161
  label?: string | undefined;
147
162
  valueLabels?: string | undefined;
148
163
  }[] | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"composeDendroSettings.d.ts","sourceRoot":"","sources":["../../../../src/GraphMaker/utils/createChartSettingsForRender/composeDendroSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAAE,UAAU,EACtB,mBAAmB,EACpB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,uBAAuB,EAAoB,MAAM,aAAa,CAAC;AAIvF,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAI1D,wBAAgB,qBAAqB,CACnC,QAAQ,EAAE,cAAc,EACxB,aAAa,EAAE,mBAAmB,CAAC,MAAM,CAAC,CAAC,WAAW,CAAC,EACvD,aAAa,EAAE,aAAa,EAC5B,UAAU,EAAE,UAAU,CAAC,UAAU,CAAC,EAClC,gBAAgB,EAAE,uBAAuB;;;;YA+HsskB,CAAC;gBAAuC,CAAC;;;;;aAAwH,CAAC;mBAAyC,CAAC;;;;;aAAyG,CAAC;mBAAyC,CAAC;;;aAAuD,CAAC;cAAoC,CAAC;aAAmC,CAAC;oBAA0C,CAAC;qBAA2C,CAAC;oBAA0C,CAAC;qBAA2C,CAAC;;;iBAAsE,CAAC;iBAAmG,CAAC;;;;qBAA2H,CAAC;2BAAiD,CAAC;;;;gBAAgH,CAAC;;;;;qBAA4J,CAAC;2BAAiD,CAAC;;;;iBAA4H,CAAC;;;;qBAAuR,CAAC;2BAAiD,CAAC;;;;iBAAwR,CAAC;;;;qBAA2H,CAAC;2BAAiD,CAAC;;;;gBAAgH,CAAC;;;;;qBAA4J,CAAC;2BAAiD,CAAC;;;;gBAA2H,CAAC;;;;qBAA2H,CAAC;2BAAiD,CAAC;;;;gBAAgH,CAAC;;;;;qBAA4J,CAAC;2BAAiD,CAAC;;;;;;;;aAAyM,CAAC;mBAAyC,CAAC;;;YAAoE,CAAC;gBAAuC,CAAC;;;aAA2G,CAAC;aAAmC,CAAC;;;;;aAAqH,CAAC;mBAAyC,CAAC;;;;;;;;;aAAkU,CAAC;mBAAyC,CAAC;;;;;aAA+H,CAAC;mBAAyC,CAAC;;;;;aAAyH,CAAC;mBAAyC,CAAC;;;;;aAA0H,CAAC;mBAAyC,CAAC;;;WAA8E,CAAC;sBAA0B,CAAC;qBAA6C,CAAC;;iBAA8E,CAAC;;;;;;;EADxiuB"}
1
+ {"version":3,"file":"composeDendroSettings.d.ts","sourceRoot":"","sources":["../../../../src/GraphMaker/utils/createChartSettingsForRender/composeDendroSettings.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,UAAU,EAAE,UAAU,EACtB,mBAAmB,EACpB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,uBAAuB,EAAoB,MAAM,aAAa,CAAC;AAIvF,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAI1D,wBAAgB,qBAAqB,CACnC,QAAQ,EAAE,cAAc,EACxB,aAAa,EAAE,mBAAmB,CAAC,MAAM,CAAC,CAAC,WAAW,CAAC,EACvD,aAAa,EAAE,aAAa,EAC5B,UAAU,EAAE,UAAU,CAAC,UAAU,CAAC,EAClC,gBAAgB,EAAE,uBAAuB;;;;YA+Hu0qB,CAAC;gBAAuC,CAAC;;;;;cAAyH,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;;;cAA0G,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;aAAuD,CAAC;cAAoC,CAAC;aAAmC,CAAC;oBAA0C,CAAC;qBAA2C,CAAC;oBAA0C,CAAC;qBAA2C,CAAC;;;iBAAsE,CAAC;iBAAmG,CAAC;;;;sBAA4H,CAAC;qBAA2C,CAAC;2BAAiD,CAAC;;;;gBAAgH,CAAC;;;;;sBAA6J,CAAC;qBAA2C,CAAC;2BAAiD,CAAC;;;;iBAA4H,CAAC;;;;sBAAwR,CAAC;qBAA2C,CAAC;2BAAiD,CAAC;;;;iBAAwR,CAAC;;;;sBAA4H,CAAC;qBAA2C,CAAC;2BAAiD,CAAC;;;;gBAAgH,CAAC;;;;;sBAA6J,CAAC;qBAA2C,CAAC;2BAAiD,CAAC;;;;gBAA2H,CAAC;;;;sBAA4H,CAAC;qBAA2C,CAAC;2BAAiD,CAAC;;;;gBAAgH,CAAC;;;;;sBAA6J,CAAC;qBAA2C,CAAC;2BAAiD,CAAC;;;;;;;;cAA0M,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;YAAoE,CAAC;gBAAuC,CAAC;;;aAA2G,CAAC;aAAmC,CAAC;;;;;cAAsH,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;;;;;;;cAAmU,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;;;cAAgI,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;;;cAA0H,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;;;cAA2H,CAAC;aAAmC,CAAC;mBAAyC,CAAC;;;WAA8E,CAAC;sBAA0B,CAAC;qBAA6C,CAAC;;iBAA8E,CAAC;;;;;;;EAD5w1B"}
@@ -6,11 +6,12 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
6
6
  title: {
7
7
  name: string;
8
8
  show?: boolean | undefined;
9
- position?: "left" | "center" | "right" | undefined;
9
+ position?: "right" | "left" | "center" | undefined;
10
10
  };
11
11
  y: {
12
12
  type: "column";
13
13
  value: string;
14
+ format?: string | undefined;
14
15
  label?: string | undefined;
15
16
  valueLabels?: string | undefined;
16
17
  };
@@ -170,6 +171,7 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
170
171
  keyColumn?: {
171
172
  type: "column";
172
173
  value: string;
174
+ format?: string | undefined;
173
175
  label?: string | undefined;
174
176
  valueLabels?: string | undefined;
175
177
  } | undefined;
@@ -179,6 +181,7 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
179
181
  linkColumn: {
180
182
  type: "column";
181
183
  value: string;
184
+ format?: string | undefined;
182
185
  label?: string | undefined;
183
186
  valueLabels?: string | undefined;
184
187
  };
@@ -222,10 +225,10 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
222
225
  type: "stat";
223
226
  statType: "overall" | "referenceGroup" | "pairwise";
224
227
  testMethod: "ttest" | "anova" | "wilcoxon" | "kruskalWallis";
228
+ format?: "significance" | "pValue" | undefined;
225
229
  referenceGroup?: string | number | null | undefined;
226
230
  paired?: boolean | undefined;
227
231
  ns?: boolean | undefined;
228
- format?: "significance" | "pValue" | undefined;
229
232
  correctionMethod?: "BenjaminiHochberg" | "BenjaminiYekutieli" | "Bonferroni" | "Hochberg" | "Holm" | "Hommel" | undefined;
230
233
  significanceLevels?: {
231
234
  one: number;
@@ -241,7 +244,7 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
241
244
  } | undefined;
242
245
  legend?: {
243
246
  show?: boolean | undefined;
244
- position?: "right" | "inside" | "top" | "bottom" | undefined;
247
+ position?: "right" | "top" | "bottom" | "inside" | undefined;
245
248
  } | undefined;
246
249
  tooltips?: {
247
250
  box?: {
@@ -284,11 +287,12 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
284
287
  nRows?: number | undefined;
285
288
  nCols?: number | undefined;
286
289
  order?: Record<string, (string | number | null)[]> | undefined;
287
- titlePosition?: "left" | "center" | "right" | undefined;
290
+ titlePosition?: "right" | "left" | "center" | undefined;
288
291
  } | undefined;
289
292
  keyColumn?: {
290
293
  type: "column";
291
294
  value: string;
295
+ format?: string | undefined;
292
296
  label?: string | undefined;
293
297
  valueLabels?: string | undefined;
294
298
  } | undefined;
@@ -296,6 +300,7 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
296
300
  title?: string | {
297
301
  type: "column";
298
302
  value: string;
303
+ format?: string | undefined;
299
304
  label?: string | undefined;
300
305
  valueLabels?: string | undefined;
301
306
  } | undefined;
@@ -315,6 +320,7 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
315
320
  title?: string | {
316
321
  type: "column";
317
322
  value: string;
323
+ format?: string | undefined;
318
324
  label?: string | undefined;
319
325
  valueLabels?: string | undefined;
320
326
  } | undefined;
@@ -333,6 +339,7 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
333
339
  facetBy?: {
334
340
  type: "column";
335
341
  value: string;
342
+ format?: string | undefined;
336
343
  label?: string | undefined;
337
344
  valueLabels?: string | undefined;
338
345
  }[] | undefined;
@@ -340,6 +347,7 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
340
347
  columnName: {
341
348
  type: "column";
342
349
  value: string;
350
+ format?: string | undefined;
343
351
  label?: string | undefined;
344
352
  valueLabels?: string | undefined;
345
353
  };
@@ -359,6 +367,7 @@ export declare function composeDiscreteSettings(settings: DiscreteSettings, reac
359
367
  columnName: {
360
368
  type: "column";
361
369
  value: string;
370
+ format?: string | undefined;
362
371
  label?: string | undefined;
363
372
  valueLabels?: string | undefined;
364
373
  };
@@ -1 +1 @@
1
- {"version":3,"file":"composeDiscreteSettings.d.ts","sourceRoot":"","sources":["../../../../src/GraphMaker/utils/createChartSettingsForRender/composeDiscreteSettings.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"composeDiscreteSettings.d.ts","sourceRoot":"","sources":["../../../../src/GraphMaker/utils/createChartSettingsForRender/composeDiscreteSettings.ts"],"names":[],"mappings":"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"}
@@ -5,23 +5,26 @@ export declare function composeHeatmapSettings(settings: HeatmapSettings, reacti
5
5
  title: {
6
6
  name: string;
7
7
  show?: boolean | undefined;
8
- position?: "left" | "center" | "right" | undefined;
8
+ position?: "right" | "left" | "center" | undefined;
9
9
  };
10
10
  xColumn: {
11
11
  type: "column";
12
12
  value: string;
13
+ format?: string | undefined;
13
14
  label?: string | undefined;
14
15
  valueLabels?: string | undefined;
15
16
  };
16
17
  yColumn: {
17
18
  type: "column";
18
19
  value: string;
20
+ format?: string | undefined;
19
21
  label?: string | undefined;
20
22
  valueLabels?: string | undefined;
21
23
  };
22
24
  valueColumn: {
23
25
  type: "column";
24
26
  value: string;
27
+ format?: string | undefined;
25
28
  label?: string | undefined;
26
29
  valueLabels?: string | undefined;
27
30
  };
@@ -41,13 +44,14 @@ export declare function composeHeatmapSettings(settings: HeatmapSettings, reacti
41
44
  } | undefined;
42
45
  legend?: {
43
46
  show?: boolean | undefined;
44
- position?: "right" | "inside" | "top" | "bottom" | undefined;
47
+ position?: "right" | "top" | "bottom" | "inside" | undefined;
45
48
  } | undefined;
46
49
  tooltips?: {
47
50
  show?: boolean | undefined;
48
51
  content?: {
49
52
  type: "column";
50
53
  value: string;
54
+ format?: string | undefined;
51
55
  label?: string | undefined;
52
56
  valueLabels?: string | undefined;
53
57
  }[] | undefined;
@@ -75,19 +79,20 @@ export declare function composeHeatmapSettings(settings: HeatmapSettings, reacti
75
79
  } | undefined;
76
80
  yAxis?: {
77
81
  title?: string | undefined;
78
- position?: "left" | "right" | undefined;
82
+ position?: "right" | "left" | undefined;
79
83
  showTicks?: boolean | undefined;
80
84
  sorting?: "asc" | "desc" | undefined;
81
85
  showTitle?: boolean | undefined;
82
86
  showAxisLabels?: boolean | undefined;
83
87
  axisLabelsAngle?: 0 | 45 | 90 | undefined;
84
- groupingPosition?: "left" | "right" | undefined;
88
+ groupingPosition?: "right" | "left" | undefined;
85
89
  showGroupLabels?: boolean | undefined;
86
90
  groupLabelsAngle?: 0 | 45 | 90 | undefined;
87
91
  } | undefined;
88
92
  facetBy?: {
89
93
  type: "column";
90
94
  value: string;
95
+ format?: string | undefined;
91
96
  label?: string | undefined;
92
97
  valueLabels?: string | undefined;
93
98
  }[] | undefined;
@@ -101,12 +106,14 @@ export declare function composeHeatmapSettings(settings: HeatmapSettings, reacti
101
106
  xGroupBy?: {
102
107
  type: "column";
103
108
  value: string;
109
+ format?: string | undefined;
104
110
  label?: string | undefined;
105
111
  valueLabels?: string | undefined;
106
112
  }[] | undefined;
107
113
  yGroupBy?: {
108
114
  type: "column";
109
115
  value: string;
116
+ format?: string | undefined;
110
117
  label?: string | undefined;
111
118
  valueLabels?: string | undefined;
112
119
  }[] | undefined;
@@ -115,24 +122,26 @@ export declare function composeHeatmapSettings(settings: HeatmapSettings, reacti
115
122
  valueColumn: {
116
123
  type: "column";
117
124
  value: string;
125
+ format?: string | undefined;
118
126
  label?: string | undefined;
119
127
  valueLabels?: string | undefined;
120
128
  };
121
129
  axis: "x";
122
130
  position?: "top" | "bottom" | undefined;
123
131
  showTitle?: boolean | undefined;
124
- titlePosition?: "left" | "right" | undefined;
132
+ titlePosition?: "right" | "left" | undefined;
125
133
  colors?: string[] | undefined;
126
134
  } | {
127
135
  type: "continuous" | "discrete";
128
136
  valueColumn: {
129
137
  type: "column";
130
138
  value: string;
139
+ format?: string | undefined;
131
140
  label?: string | undefined;
132
141
  valueLabels?: string | undefined;
133
142
  };
134
143
  axis: "y";
135
- position?: "left" | "right" | undefined;
144
+ position?: "right" | "left" | undefined;
136
145
  showTitle?: boolean | undefined;
137
146
  titlePosition?: "top" | "bottom" | undefined;
138
147
  colors?: string[] | undefined;
@@ -143,36 +152,42 @@ export declare function composeHeatmapSettings(settings: HeatmapSettings, reacti
143
152
  dotFill?: string | {
144
153
  type: "column";
145
154
  value: string;
155
+ format?: string | undefined;
146
156
  label?: string | undefined;
147
157
  valueLabels?: string | undefined;
148
158
  } | undefined;
149
159
  dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
150
160
  type: "column";
151
161
  value: string;
162
+ format?: string | undefined;
152
163
  label?: string | undefined;
153
164
  valueLabels?: string | undefined;
154
165
  } | undefined;
155
166
  dotSize?: number | {
156
167
  type: "column";
157
168
  value: string;
169
+ format?: string | undefined;
158
170
  label?: string | undefined;
159
171
  valueLabels?: string | undefined;
160
172
  } | undefined;
161
173
  lineWidth?: number | {
162
174
  type: "column";
163
175
  value: string;
176
+ format?: string | undefined;
164
177
  label?: string | undefined;
165
178
  valueLabels?: string | undefined;
166
179
  } | undefined;
167
180
  lineShape?: {
168
181
  type: "column";
169
182
  value: string;
183
+ format?: string | undefined;
170
184
  label?: string | undefined;
171
185
  valueLabels?: string | undefined;
172
186
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
173
187
  lineColor?: string | {
174
188
  type: "column";
175
189
  value: string;
190
+ format?: string | undefined;
176
191
  label?: string | undefined;
177
192
  valueLabels?: string | undefined;
178
193
  } | undefined;
@@ -191,41 +206,47 @@ export declare function composeHeatmapSettings(settings: HeatmapSettings, reacti
191
206
  dotFill?: string | {
192
207
  type: "column";
193
208
  value: string;
209
+ format?: string | undefined;
194
210
  label?: string | undefined;
195
211
  valueLabels?: string | undefined;
196
212
  } | undefined;
197
213
  dotShape?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "20" | "21" | "22" | "23" | "24" | "25" | {
198
214
  type: "column";
199
215
  value: string;
216
+ format?: string | undefined;
200
217
  label?: string | undefined;
201
218
  valueLabels?: string | undefined;
202
219
  } | undefined;
203
220
  dotSize?: number | {
204
221
  type: "column";
205
222
  value: string;
223
+ format?: string | undefined;
206
224
  label?: string | undefined;
207
225
  valueLabels?: string | undefined;
208
226
  } | undefined;
209
227
  lineWidth?: number | {
210
228
  type: "column";
211
229
  value: string;
230
+ format?: string | undefined;
212
231
  label?: string | undefined;
213
232
  valueLabels?: string | undefined;
214
233
  } | undefined;
215
234
  lineShape?: {
216
235
  type: "column";
217
236
  value: string;
237
+ format?: string | undefined;
218
238
  label?: string | undefined;
219
239
  valueLabels?: string | undefined;
220
240
  } | "solid" | "dashed" | "dotted" | "dotdash" | "longdash" | "twodash" | undefined;
221
241
  lineColor?: string | {
222
242
  type: "column";
223
243
  value: string;
244
+ format?: string | undefined;
224
245
  label?: string | undefined;
225
246
  valueLabels?: string | undefined;
226
247
  } | undefined;
227
248
  } | undefined;
228
- position?: "left" | "right" | undefined;
249
+ position?: "right" | "left" | undefined;
229
250
  distance?: "euclidean" | "squaredEuclidean" | undefined;
230
251
  linkage?: "average" | "complete" | "single" | undefined;
231
252
  showNodes?: boolean | undefined;