semiotic 2.0.2 → 3.0.0-beta.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 (359) hide show
  1. package/CLAUDE.md +530 -0
  2. package/README.md +190 -37
  3. package/ai/cli.js +48 -0
  4. package/ai/dist/ai/componentRegistry.js +45 -0
  5. package/ai/dist/ai/mcp-server.js +99 -0
  6. package/ai/dist/ai/renderHOCToSVG.js +77 -0
  7. package/ai/dist/src/components/Annotation.js +358 -0
  8. package/ai/dist/src/components/AnnotationLayer/AnnotationLayer.js +369 -0
  9. package/ai/dist/src/components/Axis/Axis.js +373 -0
  10. package/ai/dist/src/components/Axis/axisTitle.js +14 -0
  11. package/ai/dist/src/components/Axis/index.js +7 -0
  12. package/ai/dist/src/components/Axis/summaryGraphic.js +37 -0
  13. package/ai/dist/src/components/Brush.js +84 -0
  14. package/ai/dist/src/components/DividedLine.js +65 -0
  15. package/ai/dist/src/components/FacetController.js +259 -0
  16. package/ai/dist/src/components/Frame.js +139 -0
  17. package/ai/dist/src/components/InteractionLayer.js +328 -0
  18. package/ai/dist/src/components/Legend.js +140 -0
  19. package/ai/dist/src/components/MiniMap.js +75 -0
  20. package/ai/dist/src/components/MinimapXYFrame.js +99 -0
  21. package/ai/dist/src/components/NetworkFrame.js +335 -0
  22. package/ai/dist/src/components/OrdinalFrame.js +437 -0
  23. package/ai/dist/src/components/ResponsiveFrame.js +68 -0
  24. package/ai/dist/src/components/ResponsiveMinimapXYFrame.js +11 -0
  25. package/ai/dist/src/components/ResponsiveNetworkFrame.js +11 -0
  26. package/ai/dist/src/components/ResponsiveOrdinalFrame.js +11 -0
  27. package/ai/dist/src/components/ResponsiveXYFrame.js +10 -0
  28. package/ai/dist/src/components/SparkFrame.js +113 -0
  29. package/ai/dist/src/components/SparkNetworkFrame.js +11 -0
  30. package/ai/dist/src/components/SparkOrdinalFrame.js +11 -0
  31. package/ai/dist/src/components/SparkXYFrame.js +11 -0
  32. package/ai/dist/src/components/Tooltip/Tooltip.js +304 -0
  33. package/ai/dist/src/components/TooltipPositioner/index.js +132 -0
  34. package/ai/dist/src/components/VisualizationLayer.js +395 -0
  35. package/ai/dist/src/components/XYFrame.js +524 -0
  36. package/ai/dist/src/components/annotationLayerBehavior/annotationHandling.js +73 -0
  37. package/ai/dist/src/components/annotationLayerBehavior/d3labeler.js +254 -0
  38. package/ai/dist/src/components/annotationRules/baseRules.js +150 -0
  39. package/ai/dist/src/components/annotationRules/networkframeRules.js +198 -0
  40. package/ai/dist/src/components/annotationRules/orframeRules.js +695 -0
  41. package/ai/dist/src/components/annotationRules/xyframeRules.js +299 -0
  42. package/ai/dist/src/components/batchWork.js +35 -0
  43. package/ai/dist/src/components/charts/index.js +96 -0
  44. package/ai/dist/src/components/charts/network/ChordDiagram.js +245 -0
  45. package/ai/dist/src/components/charts/network/CirclePack.js +177 -0
  46. package/ai/dist/src/components/charts/network/ForceDirectedGraph.js +248 -0
  47. package/ai/dist/src/components/charts/network/SankeyDiagram.js +305 -0
  48. package/ai/dist/src/components/charts/network/TreeDiagram.js +268 -0
  49. package/ai/dist/src/components/charts/network/Treemap.js +177 -0
  50. package/ai/dist/src/components/charts/ordinal/BarChart.js +191 -0
  51. package/ai/dist/src/components/charts/ordinal/BoxPlot.js +235 -0
  52. package/ai/dist/src/components/charts/ordinal/DonutChart.js +178 -0
  53. package/ai/dist/src/components/charts/ordinal/DotPlot.js +194 -0
  54. package/ai/dist/src/components/charts/ordinal/GroupedBarChart.js +194 -0
  55. package/ai/dist/src/components/charts/ordinal/PieChart.js +155 -0
  56. package/ai/dist/src/components/charts/ordinal/StackedBarChart.js +213 -0
  57. package/ai/dist/src/components/charts/ordinal/SwarmPlot.js +219 -0
  58. package/ai/dist/src/components/charts/realtime/RealtimeBarChart.js +91 -0
  59. package/ai/dist/src/components/charts/realtime/RealtimeLineChart.js +73 -0
  60. package/ai/dist/src/components/charts/realtime/RealtimeSwarmChart.js +85 -0
  61. package/ai/dist/src/components/charts/realtime/RealtimeWaterfallChart.js +86 -0
  62. package/ai/dist/src/components/charts/shared/ChartError.js +72 -0
  63. package/ai/dist/src/components/charts/shared/colorUtils.js +138 -0
  64. package/ai/dist/src/components/charts/shared/formatUtils.js +176 -0
  65. package/ai/dist/src/components/charts/shared/hooks.js +49 -0
  66. package/ai/dist/src/components/charts/shared/legendUtils.js +57 -0
  67. package/ai/dist/src/components/charts/shared/types.js +2 -0
  68. package/ai/dist/src/components/charts/shared/validateChartData.js +82 -0
  69. package/ai/dist/src/components/charts/shared/validateProps.js +640 -0
  70. package/ai/dist/src/components/charts/xy/AreaChart.js +220 -0
  71. package/ai/dist/src/components/charts/xy/BubbleChart.js +222 -0
  72. package/ai/dist/src/components/charts/xy/Heatmap.js +230 -0
  73. package/ai/dist/src/components/charts/xy/LineChart.js +302 -0
  74. package/ai/dist/src/components/charts/xy/Scatterplot.js +136 -0
  75. package/ai/dist/src/components/charts/xy/StackedAreaChart.js +220 -0
  76. package/ai/dist/src/components/constants/coordinateNames.js +11 -0
  77. package/ai/dist/src/components/constants/frame_props.js +251 -0
  78. package/ai/dist/src/components/constants/jsx.js +71 -0
  79. package/ai/dist/src/components/data/dataFunctions.js +473 -0
  80. package/ai/dist/src/components/data/multiAccessorUtils.js +14 -0
  81. package/ai/dist/src/components/data/networkPipelineCache.js +43 -0
  82. package/ai/dist/src/components/data/ordinalPipelineCache.js +53 -0
  83. package/ai/dist/src/components/data/unflowedFunctions.js +5 -0
  84. package/ai/dist/src/components/data/xyPipelineCache.js +49 -0
  85. package/ai/dist/src/components/generic_utilities/functions.js +5 -0
  86. package/ai/dist/src/components/index.js +145 -0
  87. package/ai/dist/src/components/interactionLayerBehavior/InteractionCanvas.js +128 -0
  88. package/ai/dist/src/components/processing/InteractionItems.js +223 -0
  89. package/ai/dist/src/components/processing/hierarchyUtils.js +104 -0
  90. package/ai/dist/src/components/processing/layouts/chordLayout.js +58 -0
  91. package/ai/dist/src/components/processing/layouts/forceLayout.js +142 -0
  92. package/ai/dist/src/components/processing/layouts/hierarchyLayout.js +31 -0
  93. package/ai/dist/src/components/processing/layouts/index.js +32 -0
  94. package/ai/dist/src/components/processing/layouts/sankeyLayout.js +96 -0
  95. package/ai/dist/src/components/processing/layouts/simpleLayouts.js +34 -0
  96. package/ai/dist/src/components/processing/layouts/types.js +2 -0
  97. package/ai/dist/src/components/processing/network.js +771 -0
  98. package/ai/dist/src/components/processing/networkDefaults.js +39 -0
  99. package/ai/dist/src/components/processing/networkLayoutHelpers.js +98 -0
  100. package/ai/dist/src/components/processing/ordinal.js +889 -0
  101. package/ai/dist/src/components/processing/ordinalConstants.js +23 -0
  102. package/ai/dist/src/components/processing/ordinalOverlays.js +88 -0
  103. package/ai/dist/src/components/processing/ordinalRenderPipeline.js +196 -0
  104. package/ai/dist/src/components/processing/xyDrawing.js +484 -0
  105. package/ai/dist/src/components/realtime/BinAccumulator.js +36 -0
  106. package/ai/dist/src/components/realtime/IncrementalExtent.js +55 -0
  107. package/ai/dist/src/components/realtime/RealtimeFrame.js +710 -0
  108. package/ai/dist/src/components/realtime/RingBuffer.js +104 -0
  109. package/ai/dist/src/components/realtime/renderers/barRenderer.js +133 -0
  110. package/ai/dist/src/components/realtime/renderers/candlestickRenderer.js +7 -0
  111. package/ai/dist/src/components/realtime/renderers/lineRenderer.js +164 -0
  112. package/ai/dist/src/components/realtime/renderers/swarmRenderer.js +91 -0
  113. package/ai/dist/src/components/realtime/renderers/types.js +2 -0
  114. package/ai/dist/src/components/realtime/renderers/waterfallRenderer.js +163 -0
  115. package/ai/dist/src/components/realtime/types.js +2 -0
  116. package/ai/dist/src/components/semiotic-ai.js +66 -0
  117. package/ai/dist/src/components/semiotic-network.js +30 -0
  118. package/ai/dist/src/components/semiotic-ordinal.js +28 -0
  119. package/ai/dist/src/components/semiotic-realtime.js +37 -0
  120. package/ai/dist/src/components/semiotic-server.js +8 -0
  121. package/ai/dist/src/components/semiotic-xy.js +41 -0
  122. package/ai/dist/src/components/semiotic.js +101 -0
  123. package/ai/dist/src/components/server/renderToStaticSVG.js +392 -0
  124. package/ai/dist/src/components/store/TooltipStore.js +13 -0
  125. package/ai/dist/src/components/store/createStore.js +77 -0
  126. package/ai/dist/src/components/svg/SvgHelper.js +308 -0
  127. package/ai/dist/src/components/svg/areaDrawing.js +312 -0
  128. package/ai/dist/src/components/svg/boxplotRenderer.js +441 -0
  129. package/ai/dist/src/components/svg/bucketizedRenderer.js +677 -0
  130. package/ai/dist/src/components/svg/ckbinsRenderer.js +92 -0
  131. package/ai/dist/src/components/svg/ckmeans.js +238 -0
  132. package/ai/dist/src/components/svg/contourLayout.js +73 -0
  133. package/ai/dist/src/components/svg/contourRenderer.js +53 -0
  134. package/ai/dist/src/components/svg/edgeGenerators.js +181 -0
  135. package/ai/dist/src/components/svg/frameFunctions.js +579 -0
  136. package/ai/dist/src/components/svg/graphAlgorithms.js +138 -0
  137. package/ai/dist/src/components/svg/hexbinLayout.js +163 -0
  138. package/ai/dist/src/components/svg/lineDrawing.js +427 -0
  139. package/ai/dist/src/components/svg/networkDrawing.js +207 -0
  140. package/ai/dist/src/components/svg/nodeGenerators.js +131 -0
  141. package/ai/dist/src/components/svg/pieceDrawing.js +110 -0
  142. package/ai/dist/src/components/svg/pieceLayouts.js +588 -0
  143. package/ai/dist/src/components/svg/sankeyLinks.js +143 -0
  144. package/ai/dist/src/components/svg/summaryAxis.js +48 -0
  145. package/ai/dist/src/components/svg/summaryLayouts.js +202 -0
  146. package/ai/dist/src/components/svg/swarmLayout.js +128 -0
  147. package/ai/dist/src/components/types/annotationTypes.js +2 -0
  148. package/ai/dist/src/components/types/canvasTypes.js +2 -0
  149. package/ai/dist/src/components/types/generalTypes.js +2 -0
  150. package/ai/dist/src/components/types/interactionTypes.js +2 -0
  151. package/ai/dist/src/components/types/legendTypes.js +2 -0
  152. package/ai/dist/src/components/types/networkTypes.js +2 -0
  153. package/ai/dist/src/components/types/ordinalTypes.js +2 -0
  154. package/ai/dist/src/components/types/xyTypes.js +2 -0
  155. package/ai/dist/src/components/useBoundingRect.js +24 -0
  156. package/ai/dist/src/components/useDerivedStateFromProps.js +25 -0
  157. package/ai/dist/src/components/useLegacyUnmountCallback.js +21 -0
  158. package/ai/dist/src/components/visualizationLayerBehavior/axis.js +249 -0
  159. package/ai/dist/src/components/visualizationLayerBehavior/general.js +435 -0
  160. package/ai/dist/src/setupTests.js +4 -0
  161. package/ai/examples.md +394 -0
  162. package/ai/schema.json +1178 -0
  163. package/ai/system-prompt.md +38 -0
  164. package/dist/Annotation.d.ts +3 -0
  165. package/dist/AnnotationLayer/AnnotationLayer.d.ts +25 -0
  166. package/dist/Axis/Axis.d.ts +7 -0
  167. package/dist/Axis/axisTitle.d.ts +10 -0
  168. package/dist/Axis/index.d.ts +2 -0
  169. package/dist/Axis/summaryGraphic.d.ts +17 -0
  170. package/dist/Brush.d.ts +12 -0
  171. package/dist/DividedLine.d.ts +16 -0
  172. package/dist/FacetController.d.ts +12 -0
  173. package/dist/Frame.d.ts +2 -0
  174. package/dist/InteractionLayer.d.ts +3 -0
  175. package/dist/Legend.d.ts +3 -0
  176. package/dist/MiniMap.d.ts +14 -0
  177. package/dist/MinimapXYFrame.d.ts +10 -0
  178. package/dist/NetworkFrame.d.ts +8 -0
  179. package/dist/OrdinalFrame.d.ts +8 -0
  180. package/dist/ResponsiveFrame.d.ts +22 -0
  181. package/dist/ResponsiveMinimapXYFrame.d.ts +3 -0
  182. package/dist/ResponsiveNetworkFrame.d.ts +3 -0
  183. package/dist/ResponsiveOrdinalFrame.d.ts +3 -0
  184. package/dist/ResponsiveXYFrame.d.ts +3 -0
  185. package/dist/SparkFrame.d.ts +14 -0
  186. package/dist/SparkNetworkFrame.d.ts +5 -0
  187. package/dist/SparkOrdinalFrame.d.ts +5 -0
  188. package/dist/SparkXYFrame.d.ts +5 -0
  189. package/dist/Tooltip/Tooltip.d.ts +141 -0
  190. package/dist/TooltipPositioner/index.d.ts +7 -0
  191. package/dist/VisualizationLayer.d.ts +33 -0
  192. package/dist/XYFrame.d.ts +8 -0
  193. package/dist/annotationLayerBehavior/annotationHandling.d.ts +19 -0
  194. package/dist/annotationLayerBehavior/d3labeler.d.ts +9 -0
  195. package/dist/annotationRules/baseRules.d.ts +25 -0
  196. package/dist/annotationRules/networkframeRules.d.ts +48 -0
  197. package/dist/annotationRules/orframeRules.d.ts +103 -0
  198. package/dist/annotationRules/xyframeRules.d.ts +117 -0
  199. package/dist/batchWork.d.ts +6 -0
  200. package/dist/charts/index.d.ts +62 -0
  201. package/dist/charts/network/ChordDiagram.d.ts +181 -0
  202. package/dist/charts/network/CirclePack.d.ts +103 -0
  203. package/dist/charts/network/ForceDirectedGraph.d.ts +192 -0
  204. package/dist/charts/network/SankeyDiagram.d.ts +195 -0
  205. package/dist/charts/network/TreeDiagram.d.ts +200 -0
  206. package/dist/charts/network/Treemap.d.ts +98 -0
  207. package/dist/charts/ordinal/BarChart.d.ts +119 -0
  208. package/dist/charts/ordinal/BoxPlot.d.ts +125 -0
  209. package/dist/charts/ordinal/DonutChart.d.ts +95 -0
  210. package/dist/charts/ordinal/DotPlot.d.ts +128 -0
  211. package/dist/charts/ordinal/GroupedBarChart.d.ts +113 -0
  212. package/dist/charts/ordinal/PieChart.d.ts +83 -0
  213. package/dist/charts/ordinal/StackedBarChart.d.ts +119 -0
  214. package/dist/charts/ordinal/SwarmPlot.d.ts +137 -0
  215. package/dist/charts/realtime/RealtimeBarChart.d.ts +102 -0
  216. package/dist/charts/realtime/RealtimeLineChart.d.ts +78 -0
  217. package/dist/charts/realtime/RealtimeSwarmChart.d.ts +88 -0
  218. package/dist/charts/realtime/RealtimeWaterfallChart.d.ts +85 -0
  219. package/dist/charts/shared/ChartError.d.ts +19 -0
  220. package/dist/charts/shared/colorUtils.d.ts +62 -0
  221. package/dist/charts/shared/formatUtils.d.ts +82 -0
  222. package/dist/charts/shared/hooks.d.ts +20 -0
  223. package/dist/charts/shared/legendUtils.d.ts +32 -0
  224. package/dist/charts/shared/types.d.ts +58 -0
  225. package/dist/charts/shared/validateChartData.d.ts +41 -0
  226. package/dist/charts/shared/validateProps.d.ts +18 -0
  227. package/dist/charts/xy/AreaChart.d.ts +127 -0
  228. package/dist/charts/xy/BubbleChart.d.ts +157 -0
  229. package/dist/charts/xy/Heatmap.d.ts +153 -0
  230. package/dist/charts/xy/LineChart.d.ts +193 -0
  231. package/dist/charts/xy/Scatterplot.d.ts +50 -0
  232. package/dist/charts/xy/StackedAreaChart.d.ts +131 -0
  233. package/dist/constants/coordinateNames.d.ts +8 -0
  234. package/dist/constants/frame_props.d.ts +13 -0
  235. package/dist/constants/jsx.d.ts +19 -0
  236. package/dist/data/dataFunctions.d.ts +45 -0
  237. package/dist/data/multiAccessorUtils.d.ts +1 -0
  238. package/dist/data/networkPipelineCache.d.ts +27 -0
  239. package/dist/data/ordinalPipelineCache.d.ts +33 -0
  240. package/dist/data/unflowedFunctions.d.ts +1 -0
  241. package/dist/data/xyPipelineCache.d.ts +35 -0
  242. package/dist/generic_utilities/functions.d.ts +1 -0
  243. package/dist/index.d.ts +133 -0
  244. package/dist/interactionLayerBehavior/InteractionCanvas.d.ts +20 -0
  245. package/dist/network.js +8520 -0
  246. package/dist/network.js.map +1 -0
  247. package/dist/network.min.js +1 -0
  248. package/dist/network.module.js +8484 -0
  249. package/dist/network.module.js.map +1 -0
  250. package/dist/network.module.min.js +1 -0
  251. package/dist/ordinal.js +9276 -0
  252. package/dist/ordinal.js.map +1 -0
  253. package/dist/ordinal.min.js +1 -0
  254. package/dist/ordinal.module.js +9242 -0
  255. package/dist/ordinal.module.js.map +1 -0
  256. package/dist/ordinal.module.min.js +1 -0
  257. package/dist/processing/InteractionItems.d.ts +13 -0
  258. package/dist/processing/hierarchyUtils.d.ts +16 -0
  259. package/dist/processing/layouts/chordLayout.d.ts +2 -0
  260. package/dist/processing/layouts/forceLayout.d.ts +3 -0
  261. package/dist/processing/layouts/hierarchyLayout.d.ts +10 -0
  262. package/dist/processing/layouts/index.d.ts +8 -0
  263. package/dist/processing/layouts/sankeyLayout.d.ts +8 -0
  264. package/dist/processing/layouts/simpleLayouts.d.ts +7 -0
  265. package/dist/processing/layouts/types.d.ts +17 -0
  266. package/dist/processing/network.d.ts +111 -0
  267. package/dist/processing/networkDefaults.d.ts +36 -0
  268. package/dist/processing/networkLayoutHelpers.d.ts +54 -0
  269. package/dist/processing/ordinal.d.ts +102 -0
  270. package/dist/processing/ordinalConstants.d.ts +33 -0
  271. package/dist/processing/ordinalOverlays.d.ts +33 -0
  272. package/dist/processing/ordinalRenderPipeline.d.ts +148 -0
  273. package/dist/processing/xyDrawing.d.ts +140 -0
  274. package/dist/realtime/BinAccumulator.d.ts +8 -0
  275. package/dist/realtime/IncrementalExtent.d.ts +13 -0
  276. package/dist/realtime/RealtimeFrame.d.ts +4 -0
  277. package/dist/realtime/RingBuffer.d.ts +19 -0
  278. package/dist/realtime/renderers/barRenderer.d.ts +2 -0
  279. package/dist/realtime/renderers/candlestickRenderer.d.ts +2 -0
  280. package/dist/realtime/renderers/lineRenderer.d.ts +2 -0
  281. package/dist/realtime/renderers/swarmRenderer.d.ts +2 -0
  282. package/dist/realtime/renderers/types.d.ts +9 -0
  283. package/dist/realtime/renderers/waterfallRenderer.d.ts +3 -0
  284. package/dist/realtime/types.d.ts +113 -0
  285. package/dist/realtime.js +1598 -0
  286. package/dist/realtime.js.map +1 -0
  287. package/dist/realtime.min.js +1 -0
  288. package/dist/realtime.module.js +1566 -0
  289. package/dist/realtime.module.js.map +1 -0
  290. package/dist/realtime.module.min.js +1 -0
  291. package/dist/semiotic-ai.d.ts +28 -0
  292. package/dist/semiotic-ai.js +18722 -0
  293. package/dist/semiotic-ai.js.map +1 -0
  294. package/dist/semiotic-ai.min.js +1 -0
  295. package/dist/semiotic-ai.module.js +18668 -0
  296. package/dist/semiotic-ai.module.js.map +1 -0
  297. package/dist/semiotic-ai.module.min.js +1 -0
  298. package/dist/semiotic-network.d.ts +19 -0
  299. package/dist/semiotic-ordinal.d.ts +18 -0
  300. package/dist/semiotic-realtime.d.ts +23 -0
  301. package/dist/semiotic-server.d.ts +1 -0
  302. package/dist/semiotic-xy.d.ts +24 -0
  303. package/dist/semiotic.d.ts +51 -0
  304. package/dist/semiotic.js +18723 -12996
  305. package/dist/semiotic.js.map +1 -0
  306. package/dist/semiotic.min.js +1 -0
  307. package/dist/semiotic.module.js +18666 -12965
  308. package/dist/semiotic.module.js.map +1 -0
  309. package/dist/semiotic.module.min.js +1 -0
  310. package/dist/server/renderToStaticSVG.d.ts +9 -0
  311. package/dist/server.js +8360 -0
  312. package/dist/server.js.map +1 -0
  313. package/dist/server.min.js +1 -0
  314. package/dist/server.module.js +8331 -0
  315. package/dist/server.module.js.map +1 -0
  316. package/dist/server.module.min.js +1 -0
  317. package/dist/store/TooltipStore.d.ts +2 -0
  318. package/dist/store/createStore.d.ts +1 -0
  319. package/dist/svg/SvgHelper.d.ts +33 -0
  320. package/dist/svg/areaDrawing.d.ts +21 -0
  321. package/dist/svg/boxplotRenderer.d.ts +15 -0
  322. package/dist/svg/bucketizedRenderer.d.ts +16 -0
  323. package/dist/svg/ckbinsRenderer.d.ts +20 -0
  324. package/dist/svg/ckmeans.d.ts +69 -0
  325. package/dist/svg/contourLayout.d.ts +6 -0
  326. package/dist/svg/contourRenderer.d.ts +12 -0
  327. package/dist/svg/edgeGenerators.d.ts +51 -0
  328. package/dist/svg/frameFunctions.d.ts +108 -0
  329. package/dist/svg/graphAlgorithms.d.ts +14 -0
  330. package/dist/svg/hexbinLayout.d.ts +7 -0
  331. package/dist/svg/lineDrawing.d.ts +99 -0
  332. package/dist/svg/networkDrawing.d.ts +16 -0
  333. package/dist/svg/nodeGenerators.d.ts +58 -0
  334. package/dist/svg/pieceDrawing.d.ts +12 -0
  335. package/dist/svg/pieceLayouts.d.ts +53 -0
  336. package/dist/svg/sankeyLinks.d.ts +3 -0
  337. package/dist/svg/summaryAxis.d.ts +6 -0
  338. package/dist/svg/summaryLayouts.d.ts +53 -0
  339. package/dist/svg/swarmLayout.d.ts +13 -0
  340. package/dist/types/annotationTypes.d.ts +135 -0
  341. package/dist/types/canvasTypes.d.ts +9 -0
  342. package/dist/types/generalTypes.d.ts +238 -0
  343. package/dist/types/interactionTypes.d.ts +72 -0
  344. package/dist/types/legendTypes.d.ts +20 -0
  345. package/dist/types/networkTypes.d.ts +175 -0
  346. package/dist/types/ordinalTypes.d.ts +112 -0
  347. package/dist/types/xyTypes.d.ts +115 -0
  348. package/dist/useBoundingRect.d.ts +2 -0
  349. package/dist/useDerivedStateFromProps.d.ts +1 -0
  350. package/dist/useLegacyUnmountCallback.d.ts +2 -0
  351. package/dist/visualizationLayerBehavior/axis.d.ts +36 -0
  352. package/dist/visualizationLayerBehavior/general.d.ts +80 -0
  353. package/dist/xy.js +7944 -0
  354. package/dist/xy.js.map +1 -0
  355. package/dist/xy.min.js +1 -0
  356. package/dist/xy.module.js +7903 -0
  357. package/dist/xy.module.js.map +1 -0
  358. package/dist/xy.module.min.js +1 -0
  359. package/package.json +116 -65
@@ -0,0 +1,108 @@
1
+ import * as React from "react";
2
+ import { AxisProps } from "../types/annotationTypes";
3
+ import { MarginType, ProjectionTypes } from "../types/generalTypes";
4
+ import { ScaleLinear } from "d3-scale";
5
+ export type TitleType = string | Element | {
6
+ title?: string | Element;
7
+ orient?: string;
8
+ };
9
+ type PieceType = {
10
+ type: string;
11
+ innerRadius?: number;
12
+ };
13
+ type CalculateMarginTypes = {
14
+ margin?: number | object;
15
+ axes?: Array<AxisProps>;
16
+ title: TitleType;
17
+ oLabel?: boolean | Function | {
18
+ label?: boolean | Function;
19
+ orient?: string;
20
+ padding?: number;
21
+ };
22
+ projection?: ProjectionTypes;
23
+ size?: number[];
24
+ };
25
+ type AdjustedPositionSizeTypes = {
26
+ size: Array<number>;
27
+ position?: Array<number>;
28
+ margin: MarginType;
29
+ projection?: ProjectionTypes;
30
+ };
31
+ type ORFrameConnectionRendererTypes = {
32
+ type: {
33
+ type: Function;
34
+ };
35
+ data: {
36
+ keyedData: Record<string, any>;
37
+ oExtent: string[];
38
+ };
39
+ renderMode: Function;
40
+ eventListenersGenerator: Function;
41
+ styleFn: Function;
42
+ classFn: Function;
43
+ projection: ProjectionTypes;
44
+ canvasRender: Function;
45
+ canvasDrawing: Array<object>;
46
+ pieceType: PieceType;
47
+ };
48
+ type ORFrameAxisGeneratorTypes = {
49
+ projection: ProjectionTypes;
50
+ axis?: Array<AxisProps>;
51
+ adjustedSize: Array<number>;
52
+ size: Array<number>;
53
+ rScale: ScaleLinear<number, number>;
54
+ rScaleType: ScaleLinear<number, number>;
55
+ pieceType: PieceType;
56
+ rExtent: Array<number>;
57
+ data: Array<object>;
58
+ maxColumnValues?: number;
59
+ xyData: Array<{
60
+ value: number;
61
+ data: object;
62
+ }>;
63
+ margin: MarginType;
64
+ thresholds?: number[];
65
+ };
66
+ export declare const circlePath: (cx: number, cy: number, r: number) => string;
67
+ export declare const drawMarginPath: ({ margin, size, inset }: {
68
+ margin: MarginType;
69
+ size: Array<number>;
70
+ inset: number;
71
+ }) => string;
72
+ export declare const calculateMargin: ({ margin, axes, title: rawTitle, oLabel, projection, size }: CalculateMarginTypes) => MarginType;
73
+ type ObjectifyType = {
74
+ type?: string | Function;
75
+ };
76
+ export declare function objectifyType(type?: string | Function | ObjectifyType): ObjectifyType;
77
+ export declare function generateOrdinalFrameEventListeners(customHoverBehavior: Function, customClickBehavior: Function): (d?: object, i?: number) => {
78
+ onMouseEnter?: (e: any) => void;
79
+ onMouseLeave?: (e: any) => void;
80
+ onClick?: (e: any) => void;
81
+ };
82
+ export declare function keyAndObjectifyBarData({ data, renderKey, oAccessor, rAccessor: baseRAccessor, originalRAccessor, originalOAccessor, multiAxis }: {
83
+ data: Array<object | number>;
84
+ renderKey: Function;
85
+ oAccessor: Array<Function>;
86
+ rAccessor: Array<(d: number | object, i?: number) => number>;
87
+ multiAxis?: boolean;
88
+ originalOAccessor: Array<string | Function>;
89
+ originalRAccessor: Array<string | Function>;
90
+ }): {
91
+ allData: Array<object>;
92
+ multiExtents?: Array<Array<number>>;
93
+ };
94
+ export declare function adjustedPositionSize({ size, position, margin, projection }: AdjustedPositionSizeTypes): {
95
+ adjustedPosition: number[];
96
+ adjustedSize: number[];
97
+ };
98
+ export declare function generateFrameTitle({ title: rawTitle, size }: {
99
+ title: TitleType;
100
+ size: Array<number>;
101
+ }): any;
102
+ export declare function orFrameConnectionRenderer({ type, data, renderMode, eventListenersGenerator, styleFn, classFn, projection, canvasRender, canvasDrawing, pieceType }: ORFrameConnectionRendererTypes): any[];
103
+ export declare const orFrameAxisGenerator: ({ projection, axis, adjustedSize, size, rScale, rScaleType, pieceType, rExtent, data, maxColumnValues, xyData, margin, thresholds }: ORFrameAxisGeneratorTypes) => {
104
+ axis: JSX.Element[];
105
+ axesTickLines: Object[];
106
+ };
107
+ export declare const canvasEvent: (canvasContext: any, overlayRegions: any, canvasMap: any, e: any) => React.ReactElement<any, string | React.JSXElementConstructor<any>>;
108
+ export {};
@@ -0,0 +1,14 @@
1
+ export declare function topologicalSort(nodesArray: any, edgesArray: any): false | any[];
2
+ export declare const softStack: (edges: any, nodes: any, sourceAccessor: any, targetAccessor: any, nodeIDAccessor: any) => {
3
+ hierarchy: {
4
+ id: string;
5
+ children: any[];
6
+ childMap: Map<any, any>;
7
+ };
8
+ isHierarchical: boolean;
9
+ hasLogicalRoot: boolean;
10
+ } | {
11
+ hierarchy: {};
12
+ isHierarchical: boolean;
13
+ hasLogicalRoot: boolean;
14
+ };
@@ -0,0 +1,7 @@
1
+ import { SummaryLayoutType } from "../types/xyTypes";
2
+ export declare function hexbinning({ preprocess, processedData, summaryType: baseSummaryType, data: baseData, finalXExtent: baseXExtent, finalYExtent: baseYExtent, size, xScaleType, yScaleType, margin, styleFn, classFn, renderFn, chartSize }: SummaryLayoutType): any[] | {
3
+ type: string;
4
+ processedData: boolean;
5
+ coordinates: any[];
6
+ binMax: any;
7
+ };
@@ -0,0 +1,99 @@
1
+ import { ProjectedLine, ProjectedPoint, RawLine, RawSummary } from "../types/generalTypes";
2
+ import { AnnotationType } from "../types/annotationTypes";
3
+ type SummaryProjectionTypes = {
4
+ data: Array<RawSummary>;
5
+ summaryDataAccessor: Array<Function>;
6
+ xAccessor: Array<Function>;
7
+ yAccessor: Array<Function>;
8
+ };
9
+ type LineProjectionTypes = {
10
+ data: Array<RawLine>;
11
+ lineDataAccessor: Array<Function>;
12
+ xProp: string;
13
+ xPropTop?: string;
14
+ xPropBottom?: string;
15
+ yProp: string;
16
+ yPropTop?: string;
17
+ yPropBottom?: string;
18
+ xAccessor: Array<Function>;
19
+ yAccessor: Array<Function>;
20
+ };
21
+ type DifferenceLineProps = {
22
+ data: Array<ProjectedLine>;
23
+ yProp: string;
24
+ yPropTop: string;
25
+ yPropBottom: string;
26
+ };
27
+ type StackedAreaTypes = {
28
+ type: string;
29
+ data: Array<ProjectedLine>;
30
+ xProp: string;
31
+ yProp: string;
32
+ yPropMiddle: string;
33
+ sort?: (a: ProjectedLine, b: ProjectedLine) => number;
34
+ yPropTop: string;
35
+ yPropBottom: string;
36
+ };
37
+ type CumulativeLineTypes = {
38
+ type: string;
39
+ data: Array<ProjectedLine>;
40
+ yPropMiddle: string;
41
+ yPropTop: string;
42
+ yPropBottom: string;
43
+ y1?: Function;
44
+ };
45
+ type LineChartTypes = {
46
+ data: Array<ProjectedLine>;
47
+ y1?: Function;
48
+ x1?: Function;
49
+ yPropTop: string;
50
+ yPropMiddle: string;
51
+ yPropBottom: string;
52
+ xPropTop: string;
53
+ xPropMiddle: string;
54
+ xPropBottom: string;
55
+ };
56
+ type RelativeYTypes = {
57
+ point?: ProjectedPoint | AnnotationType;
58
+ projectedYMiddle: string;
59
+ projectedY: string;
60
+ yAccessor: Array<Function>;
61
+ yScale: Function;
62
+ showLinePoints?: boolean | string;
63
+ };
64
+ type RelativeXTypes = {
65
+ point?: ProjectedPoint | AnnotationType;
66
+ projectedXMiddle: string;
67
+ projectedX: string;
68
+ xAccessor: Array<Function>;
69
+ xScale: Function;
70
+ };
71
+ export declare const projectSummaryData: ({ data, summaryDataAccessor, xAccessor, yAccessor }: SummaryProjectionTypes) => any[];
72
+ export declare const projectLineData: ({ data, lineDataAccessor, xProp, xPropTop, xPropBottom, yProp, yPropTop, yPropBottom, xAccessor, yAccessor }: LineProjectionTypes) => ProjectedLine[];
73
+ export declare const differenceLine: ({ data, yProp, yPropTop, yPropBottom }: DifferenceLineProps) => ProjectedLine[];
74
+ export declare const stackedArea: ({ type, data, xProp, yProp, yPropMiddle, sort, yPropTop, yPropBottom }: StackedAreaTypes) => ProjectedLine[];
75
+ export declare const lineChart: ({ data, y1, x1, yPropTop, yPropMiddle, yPropBottom, xPropTop, xPropMiddle, xPropBottom }: LineChartTypes) => ProjectedLine[];
76
+ export declare const cumulativeLine: ({ data, y1, yPropTop, yPropMiddle, yPropBottom, type }: CumulativeLineTypes) => ProjectedLine[];
77
+ export declare const bumpChart: ({ type, data, xProp, yProp, yPropMiddle, yPropTop, yPropBottom }: StackedAreaTypes) => ProjectedLine[];
78
+ export declare const dividedLine: (parameters: Function, points: Array<Object>, searchIterations?: number) => {
79
+ key: any;
80
+ points: any[];
81
+ }[];
82
+ export declare function funnelize({ data, steps, key }: {
83
+ data: Array<Object>;
84
+ steps: Array<string>;
85
+ key: string;
86
+ }): any[];
87
+ export declare function relativeY({ point, projectedY, yAccessor, yScale, showLinePoints }: RelativeYTypes): any;
88
+ export declare function relativeX({ point, projectedXMiddle, projectedX, xAccessor, xScale }: RelativeXTypes): any;
89
+ export declare function findPointByID({ point, idAccessor, lines, xScale, projectedX, xAccessor }: {
90
+ point: ProjectedPoint;
91
+ idAccessor: Function;
92
+ lines: {
93
+ data: ProjectedLine[];
94
+ };
95
+ xScale: Function;
96
+ projectedX: string;
97
+ xAccessor: Array<Function>;
98
+ }): ProjectedPoint;
99
+ export {};
@@ -0,0 +1,16 @@
1
+ export { circleNodeGenerator, sankeyNodeGenerator, chordNodeGenerator, matrixNodeGenerator, radialRectNodeGenerator, radialLabelGenerator, hierarchicalRectNodeGenerator } from "./nodeGenerators";
2
+ export { matrixEdgeGenerator, arcEdgeGenerator, sankeyArrowGenerator, chordEdgeGenerator, dagreEdgeGenerator } from "./edgeGenerators";
3
+ export { ribbonLink, areaLink, circularAreaLink } from "./sankeyLinks";
4
+ export { topologicalSort, softStack } from "./graphAlgorithms";
5
+ export declare const drawNodes: ({ data, renderKeyFn, customMark, styleFn, classFn, renderMode, canvasDrawing, canvasRenderFn, networkSettings }: {
6
+ data: any;
7
+ renderKeyFn: any;
8
+ customMark: any;
9
+ styleFn: any;
10
+ classFn: any;
11
+ renderMode: any;
12
+ canvasDrawing: any;
13
+ canvasRenderFn: any;
14
+ networkSettings: any;
15
+ }) => any[];
16
+ export declare const drawEdges: (settings: any) => any[];
@@ -0,0 +1,58 @@
1
+ import * as React from "react";
2
+ export declare const circleNodeGenerator: ({ d, i, styleFn, renderMode, key, className, transform }: {
3
+ d: any;
4
+ i: any;
5
+ styleFn: any;
6
+ renderMode: any;
7
+ key: any;
8
+ className: any;
9
+ transform: any;
10
+ }) => React.JSX.Element;
11
+ export declare const gridProps: (gridSize: any) => {
12
+ x: number;
13
+ y: number;
14
+ width: any;
15
+ height: any;
16
+ };
17
+ export declare const sankeyNodeGenerator: ({ d, i, styleFn, renderMode, key, className, transform }: {
18
+ d: any;
19
+ i: any;
20
+ styleFn: any;
21
+ renderMode: any;
22
+ key: any;
23
+ className: any;
24
+ transform: any;
25
+ }) => React.JSX.Element;
26
+ export declare const chordNodeGenerator: (size: any) => ({ d, i, styleFn, renderMode, key, className }: {
27
+ d: any;
28
+ i: any;
29
+ styleFn: any;
30
+ renderMode: any;
31
+ key: any;
32
+ className: any;
33
+ }) => React.JSX.Element;
34
+ export declare const matrixNodeGenerator: (size: any, nodes: any) => ({ d, i, styleFn, renderMode, key, className }: {
35
+ d: any;
36
+ i: any;
37
+ styleFn: any;
38
+ renderMode: any;
39
+ key: any;
40
+ className: any;
41
+ }) => React.JSX.Element;
42
+ export declare const radialRectNodeGenerator: (size: any, center: any, type: any) => ({ d, i, styleFn, renderMode, key, className }: {
43
+ d: any;
44
+ i: any;
45
+ styleFn: any;
46
+ renderMode: any;
47
+ key: any;
48
+ className: any;
49
+ }) => React.JSX.Element;
50
+ export declare const radialLabelGenerator: (node: any, nodei: any, nodeIDAccessor: any, size: any) => React.JSX.Element;
51
+ export declare const hierarchicalRectNodeGenerator: ({ d, i, styleFn, renderMode, key, className }: {
52
+ d: any;
53
+ i: any;
54
+ styleFn: any;
55
+ renderMode: any;
56
+ key: any;
57
+ className: any;
58
+ }) => React.JSX.Element;
@@ -0,0 +1,12 @@
1
+ export declare function pointOnArcAtAngle(center: any, angle: any, distance: any): any[];
2
+ export declare const renderLaidOutPieces: ({ data, shouldRender, canvasRender, canvasDrawing, styleFn, classFn, renderKeyFn, ariaLabel, axis }: {
3
+ data: any;
4
+ shouldRender: any;
5
+ canvasRender: any;
6
+ canvasDrawing: any;
7
+ styleFn: any;
8
+ classFn: any;
9
+ renderKeyFn: any;
10
+ ariaLabel: any;
11
+ axis: any;
12
+ }) => any[];
@@ -0,0 +1,53 @@
1
+ export declare function clusterBarLayout({ type, data, renderMode, eventListenersGenerator, styleFn, projection, classFn, adjustedSize, chartSize, margin, rScale }: {
2
+ type: any;
3
+ data: any;
4
+ renderMode: any;
5
+ eventListenersGenerator: any;
6
+ styleFn: any;
7
+ projection: any;
8
+ classFn: any;
9
+ adjustedSize: any;
10
+ chartSize: any;
11
+ margin: any;
12
+ rScale: any;
13
+ }): any[];
14
+ export declare function barLayout({ type, data, renderMode, eventListenersGenerator, styleFn, projection, classFn, adjustedSize, chartSize, margin, rScale }: {
15
+ type: any;
16
+ data: any;
17
+ renderMode: any;
18
+ eventListenersGenerator: any;
19
+ styleFn: any;
20
+ projection: any;
21
+ classFn: any;
22
+ adjustedSize: any;
23
+ chartSize: any;
24
+ margin: any;
25
+ rScale: any;
26
+ }): any[];
27
+ export declare function timelineLayout({ type, data, renderMode, eventListenersGenerator, styleFn, projection, classFn, adjustedSize, chartSize, margin, rScale }: {
28
+ type: any;
29
+ data: any;
30
+ renderMode: any;
31
+ eventListenersGenerator: any;
32
+ styleFn: any;
33
+ projection: any;
34
+ classFn: any;
35
+ adjustedSize: any;
36
+ chartSize: any;
37
+ margin: any;
38
+ rScale: any;
39
+ }): any[];
40
+ export declare function pointLayout({ type, data, renderMode, eventListenersGenerator, styleFn, projection, classFn, adjustedSize, chartSize, margin, rScale }: {
41
+ type: any;
42
+ data: any;
43
+ renderMode: any;
44
+ eventListenersGenerator: any;
45
+ styleFn: any;
46
+ projection: any;
47
+ classFn: any;
48
+ adjustedSize: any;
49
+ chartSize: any;
50
+ margin: any;
51
+ rScale: any;
52
+ }): any[];
53
+ export { swarmLayout } from "./swarmLayout";
@@ -0,0 +1,3 @@
1
+ export declare const ribbonLink: (d: any) => any;
2
+ export declare const areaLink: (d: any) => string;
3
+ export declare function circularAreaLink(link: any): any;
@@ -0,0 +1,6 @@
1
+ import * as React from "react";
2
+ /**
3
+ * Generates an Axis component for summary visualizations
4
+ * This function creates the actual Axis component with the provided props
5
+ */
6
+ export declare function axisGenerator(axisProps: any, i: any, axisScale: any): React.JSX.Element;
@@ -0,0 +1,53 @@
1
+ import { ProjectionTypes } from "../types/generalTypes";
2
+ export { boxplotRenderFn } from "./boxplotRenderer";
3
+ export { ckBinsRenderFn } from "./ckbinsRenderer";
4
+ export { contourRenderFn } from "./contourRenderer";
5
+ export { bucketizedRenderingFn } from "./bucketizedRenderer";
6
+ type SummaryType = {
7
+ type: string;
8
+ };
9
+ type ORFrameSummaryRendererTypes = {
10
+ data: Array<object>;
11
+ type: SummaryType;
12
+ renderMode: Function;
13
+ eventListenersGenerator: Function;
14
+ styleFn: Function;
15
+ classFn: Function;
16
+ projection: ProjectionTypes;
17
+ adjustedSize: Array<number>;
18
+ chartSize: number;
19
+ margin: object;
20
+ axisCreator?: Function;
21
+ };
22
+ export declare function orFrameSummaryRenderer({ data, type, renderMode, eventListenersGenerator, styleFn, classFn, projection, adjustedSize, chartSize, margin, axisCreator }: ORFrameSummaryRendererTypes): any;
23
+ /**
24
+ * Main drawing function for summary visualizations
25
+ */
26
+ export declare const drawSummaries: ({ data, type, renderMode, eventListenersGenerator, styleFn, classFn, projection, adjustedSize, margin, axisCreator }: {
27
+ data: object;
28
+ type: {
29
+ type?: string | Function;
30
+ };
31
+ renderMode: Function;
32
+ eventListenersGenerator: Function;
33
+ styleFn: Function;
34
+ classFn: Function;
35
+ projection: ProjectionTypes;
36
+ adjustedSize: number[];
37
+ margin: object;
38
+ axisCreator?: Function;
39
+ }) => any;
40
+ interface summaryInstruction {
41
+ Mark?: JSX.Element;
42
+ containerProps?: object;
43
+ elements: object[];
44
+ }
45
+ /**
46
+ * Converts summary instructions to rendered SVG elements
47
+ */
48
+ export declare function summaryInstructionsToMarks(data: summaryInstruction[]): JSX.Element[];
49
+ export declare const renderLaidOutSummaries: ({ data, canvasRender, canvasDrawing }: {
50
+ data: any;
51
+ canvasRender: any;
52
+ canvasDrawing: any;
53
+ }) => JSX.Element[];
@@ -0,0 +1,13 @@
1
+ export declare function swarmLayout({ type, data, renderMode, eventListenersGenerator, styleFn, projection, classFn, adjustedSize, chartSize, margin, rScale }: {
2
+ type: any;
3
+ data: any;
4
+ renderMode: any;
5
+ eventListenersGenerator: any;
6
+ styleFn: any;
7
+ projection: any;
8
+ classFn: any;
9
+ adjustedSize: any;
10
+ chartSize: any;
11
+ margin: any;
12
+ rScale: any;
13
+ }): any[];
@@ -0,0 +1,135 @@
1
+ import { RawPoint, MarginType, AxisSummaryTypeSettings, OrdinalSummaryTypes } from "./generalTypes";
2
+ import { NodeType, EdgeType } from "./networkTypes";
3
+ import { ScaleLinear } from "d3-scale";
4
+ export type AnnotationType = {
5
+ type?: string;
6
+ column?: {
7
+ name: string;
8
+ };
9
+ facetColumn?: string;
10
+ bounds?: RawPoint[];
11
+ x?: number;
12
+ y?: number;
13
+ yTop?: number;
14
+ yBottom?: number;
15
+ yMiddle?: number;
16
+ coordinates?: object[];
17
+ key?: string;
18
+ percent?: number;
19
+ style?: Record<string, any> | ((arg?: Record<string, any>, index?: number) => Record<string, any>);
20
+ ids?: string[];
21
+ edge?: EdgeType;
22
+ source?: NodeType;
23
+ target?: NodeType;
24
+ id?: string;
25
+ element?: Element;
26
+ label?: string | Element;
27
+ neighbors?: object[];
28
+ isColumnAnnotation?: boolean;
29
+ };
30
+ export type CustomHoverType = boolean | Array<AnnotationType | Function> | object | Function | "all" | "edge" | "node" | "area";
31
+ export type AnnotationTypes = "marginalia" | "bump" | false;
32
+ interface AnnotationLayout {
33
+ type: AnnotationTypes;
34
+ orient?: "nearest" | "left" | "right" | "top" | "bottom" | Array<string>;
35
+ characterWidth?: number;
36
+ noteHeight?: Function | number;
37
+ noteWidth?: Function | number;
38
+ lineWidth?: number;
39
+ lineHeight?: number;
40
+ padding?: number;
41
+ iterations?: number;
42
+ pointSizeFunction?: Function;
43
+ labelSizeFunction?: Function;
44
+ marginOffset?: number;
45
+ axisMarginOverride?: {
46
+ top?: number;
47
+ right?: number;
48
+ bottom?: number;
49
+ left?: number;
50
+ };
51
+ }
52
+ export interface AnnotationHandling {
53
+ dataVersion?: string;
54
+ layout: AnnotationLayout;
55
+ }
56
+ export interface AnnotationProps {
57
+ noteData: {
58
+ eventListeners?: object;
59
+ events?: object;
60
+ type: string;
61
+ screenCoordinates?: Array<Array<number>>;
62
+ coordinates?: boolean;
63
+ noteHeight?: Function | number;
64
+ noteWidth?: Function | number;
65
+ x: number | number[];
66
+ y: number | number[];
67
+ nx?: number;
68
+ ny?: number;
69
+ dx?: number;
70
+ dy?: number;
71
+ note: {
72
+ label?: string;
73
+ title?: string;
74
+ };
75
+ i?: number;
76
+ fixedPosition?: boolean;
77
+ label?: string;
78
+ };
79
+ }
80
+ type GlyphProps = {
81
+ lineHeight: number;
82
+ lineWidth: number;
83
+ value: number;
84
+ };
85
+ type AxisPart = {
86
+ value: number;
87
+ };
88
+ export interface AxisProps {
89
+ orient: "left" | "right" | "top" | "bottom";
90
+ label?: {
91
+ position?: {
92
+ anchor?: string;
93
+ location?: string;
94
+ rotation?: string;
95
+ };
96
+ name: string;
97
+ locationDistance: number;
98
+ };
99
+ dynamicLabelPosition?: boolean;
100
+ position?: number[];
101
+ rotate?: number;
102
+ tickFormat?: Function;
103
+ size?: number[];
104
+ width?: number;
105
+ height?: number;
106
+ className?: string;
107
+ padding?: number;
108
+ tickValues?: number[] | Function;
109
+ scale?: ScaleLinear<number, number>;
110
+ ticks?: number;
111
+ footer?: boolean;
112
+ tickSize?: number;
113
+ tickLineGenerator?: ({ xy, orient, i, className }: {
114
+ xy?: object;
115
+ orient?: string;
116
+ i?: number;
117
+ className?: string;
118
+ }) => SVGElement;
119
+ baseline?: boolean | "under";
120
+ jaggedBase?: boolean;
121
+ margin?: MarginType;
122
+ center?: boolean;
123
+ axisParts?: AxisPart[];
124
+ annotationFunction?: (args: any) => void;
125
+ glyphFunction?: (args: GlyphProps) => SVGElement;
126
+ axis?: object;
127
+ extentOverride?: number[];
128
+ key?: string | number;
129
+ axisAnnotationFunction?: (args: object) => void;
130
+ xyPoints?: object[];
131
+ marginalSummaryType?: AxisSummaryTypeSettings | OrdinalSummaryTypes;
132
+ showOutboundTickLines?: boolean;
133
+ }
134
+ export type AxisGeneratingFunction = (args: object) => AxisProps;
135
+ export {};
@@ -0,0 +1,9 @@
1
+ export type ContextType = {
2
+ getContext: Function;
3
+ width: number;
4
+ height: number;
5
+ style: {
6
+ width: number;
7
+ height: number;
8
+ };
9
+ } | null;