@pie-lib/graphing-solution-set 4.0.4-next.30 → 4.0.4-next.34

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 (310) hide show
  1. package/CHANGELOG.json +1 -0
  2. package/CHANGELOG.md +449 -0
  3. package/LICENSE.md +5 -0
  4. package/lib/axis/arrow.js +79 -0
  5. package/lib/axis/arrow.js.map +1 -0
  6. package/lib/axis/axes.js +327 -0
  7. package/lib/axis/axes.js.map +1 -0
  8. package/lib/axis/index.js +21 -0
  9. package/lib/axis/index.js.map +1 -0
  10. package/lib/bg.js +114 -0
  11. package/lib/bg.js.map +1 -0
  12. package/lib/container/actions.js +18 -0
  13. package/lib/container/actions.js.map +1 -0
  14. package/lib/container/index.js +129 -0
  15. package/lib/container/index.js.map +1 -0
  16. package/lib/container/marks.js +22 -0
  17. package/lib/container/marks.js.map +1 -0
  18. package/lib/container/middleware.js +19 -0
  19. package/lib/container/middleware.js.map +1 -0
  20. package/lib/container/reducer.js +18 -0
  21. package/lib/container/reducer.js.map +1 -0
  22. package/lib/coordinates-label.js +77 -0
  23. package/lib/coordinates-label.js.map +1 -0
  24. package/lib/graph-with-controls.js +297 -0
  25. package/lib/graph-with-controls.js.map +1 -0
  26. package/lib/graph.js +353 -0
  27. package/lib/graph.js.map +1 -0
  28. package/lib/grid-setup.js +414 -0
  29. package/lib/grid-setup.js.map +1 -0
  30. package/lib/grid.js +131 -0
  31. package/lib/grid.js.map +1 -0
  32. package/lib/index.js +40 -0
  33. package/lib/index.js.map +1 -0
  34. package/lib/labels.js +199 -0
  35. package/lib/labels.js.map +1 -0
  36. package/lib/mark-label.js +159 -0
  37. package/lib/mark-label.js.map +1 -0
  38. package/lib/toggle-bar.js +248 -0
  39. package/lib/toggle-bar.js.map +1 -0
  40. package/lib/tool-menu.js +218 -0
  41. package/lib/tool-menu.js.map +1 -0
  42. package/lib/tools/index.js +24 -0
  43. package/lib/tools/index.js.map +1 -0
  44. package/lib/tools/line/component.js +92 -0
  45. package/lib/tools/line/component.js.map +1 -0
  46. package/lib/tools/line/index.js +11 -0
  47. package/lib/tools/line/index.js.map +1 -0
  48. package/lib/tools/polygon/component.js +358 -0
  49. package/lib/tools/polygon/component.js.map +1 -0
  50. package/lib/tools/polygon/index.js +89 -0
  51. package/lib/tools/polygon/index.js.map +1 -0
  52. package/lib/tools/polygon/line.js +114 -0
  53. package/lib/tools/polygon/line.js.map +1 -0
  54. package/lib/tools/polygon/polygon.js +128 -0
  55. package/lib/tools/polygon/polygon.js.map +1 -0
  56. package/lib/tools/shared/arrow-head.js +62 -0
  57. package/lib/tools/shared/arrow-head.js.map +1 -0
  58. package/lib/tools/shared/line/index.js +539 -0
  59. package/lib/tools/shared/line/index.js.map +1 -0
  60. package/lib/tools/shared/line/line-path.js +121 -0
  61. package/lib/tools/shared/line/line-path.js.map +1 -0
  62. package/lib/tools/shared/line/with-root-edge.js +121 -0
  63. package/lib/tools/shared/line/with-root-edge.js.map +1 -0
  64. package/lib/tools/shared/point/arrow-point.js +86 -0
  65. package/lib/tools/shared/point/arrow-point.js.map +1 -0
  66. package/lib/tools/shared/point/arrow.js +70 -0
  67. package/lib/tools/shared/point/arrow.js.map +1 -0
  68. package/lib/tools/shared/point/base-point.js +137 -0
  69. package/lib/tools/shared/point/base-point.js.map +1 -0
  70. package/lib/tools/shared/point/index.js +80 -0
  71. package/lib/tools/shared/point/index.js.map +1 -0
  72. package/lib/tools/shared/styles.js +26 -0
  73. package/lib/tools/shared/styles.js.map +1 -0
  74. package/lib/tools/shared/types.js +15 -0
  75. package/lib/tools/shared/types.js.map +1 -0
  76. package/lib/undo-redo.js +67 -0
  77. package/lib/undo-redo.js.map +1 -0
  78. package/lib/use-debounce.js +25 -0
  79. package/lib/use-debounce.js.map +1 -0
  80. package/lib/utils.js +235 -0
  81. package/lib/utils.js.map +1 -0
  82. package/package.json +34 -46
  83. package/src/__tests__/bg.test.jsx +250 -0
  84. package/src/__tests__/coordinates-label.test.jsx +243 -0
  85. package/src/__tests__/graph-with-controls.test.jsx +184 -0
  86. package/src/__tests__/graph.test.jsx +93 -0
  87. package/src/__tests__/grid-setup.test.jsx +645 -0
  88. package/src/__tests__/grid.test.jsx +23 -0
  89. package/src/__tests__/labels.test.jsx +41 -0
  90. package/src/__tests__/mark-label.test.jsx +66 -0
  91. package/src/__tests__/toggle-bar.test.jsx +106 -0
  92. package/src/__tests__/tool-menu.test.jsx +453 -0
  93. package/src/__tests__/undo-redo.test.jsx +26 -0
  94. package/src/__tests__/use-debounce.test.js +21 -0
  95. package/src/__tests__/utils.js +41 -0
  96. package/src/__tests__/utils.test.js +105 -0
  97. package/src/axis/__tests__/arrow.test.jsx +43 -0
  98. package/src/axis/__tests__/axes.test.jsx +182 -0
  99. package/src/axis/arrow.jsx +57 -0
  100. package/src/axis/axes.jsx +284 -0
  101. package/src/axis/index.js +3 -0
  102. package/src/bg.jsx +96 -0
  103. package/src/container/__tests__/actions.test.js +105 -0
  104. package/src/container/__tests__/index.test.jsx +227 -0
  105. package/src/container/__tests__/marks.test.js +172 -0
  106. package/src/container/__tests__/middleware.test.js +235 -0
  107. package/src/container/__tests__/reducer.test.js +324 -0
  108. package/src/container/actions.js +8 -0
  109. package/src/container/index.jsx +93 -0
  110. package/src/container/marks.js +14 -0
  111. package/src/container/middleware.js +7 -0
  112. package/src/container/reducer.js +5 -0
  113. package/src/coordinates-label.jsx +62 -0
  114. package/src/graph-with-controls.jsx +242 -0
  115. package/src/graph.jsx +333 -0
  116. package/src/grid-setup.jsx +432 -0
  117. package/src/grid.jsx +133 -0
  118. package/src/index.js +7 -0
  119. package/src/labels.jsx +173 -0
  120. package/src/mark-label.jsx +125 -0
  121. package/src/toggle-bar.jsx +221 -0
  122. package/src/tool-menu.jsx +235 -0
  123. package/src/tools/index.js +8 -0
  124. package/src/tools/line/__tests__/component.test.jsx +37 -0
  125. package/src/tools/line/component.jsx +77 -0
  126. package/src/tools/line/index.js +4 -0
  127. package/src/tools/polygon/__tests__/component.test.jsx +487 -0
  128. package/src/tools/polygon/__tests__/index.test.js +65 -0
  129. package/src/tools/polygon/__tests__/line.test.jsx +23 -0
  130. package/src/tools/polygon/__tests__/polygon.test.jsx +44 -0
  131. package/src/tools/polygon/component.jsx +324 -0
  132. package/src/tools/polygon/index.js +52 -0
  133. package/src/tools/polygon/line.jsx +80 -0
  134. package/src/tools/polygon/polygon.jsx +93 -0
  135. package/src/tools/shared/__tests__/arrow-head.test.jsx +33 -0
  136. package/src/tools/shared/arrow-head.jsx +46 -0
  137. package/src/tools/shared/line/__tests__/index.test.jsx +553 -0
  138. package/src/tools/shared/line/__tests__/line-path.test.jsx +56 -0
  139. package/src/tools/shared/line/__tests__/with-root-edge.test.jsx +488 -0
  140. package/src/tools/shared/line/index.jsx +471 -0
  141. package/src/tools/shared/line/line-path.jsx +85 -0
  142. package/src/tools/shared/line/with-root-edge.jsx +97 -0
  143. package/src/tools/shared/point/__tests__/arrow-point.test.jsx +91 -0
  144. package/src/tools/shared/point/__tests__/arrow.test.jsx +469 -0
  145. package/src/tools/shared/point/__tests__/base-point.test.jsx +87 -0
  146. package/src/tools/shared/point/arrow-point.jsx +60 -0
  147. package/src/tools/shared/point/arrow.jsx +40 -0
  148. package/src/tools/shared/point/base-point.jsx +113 -0
  149. package/src/tools/shared/point/index.jsx +58 -0
  150. package/src/tools/shared/styles.js +20 -0
  151. package/src/tools/shared/types.js +8 -0
  152. package/src/undo-redo.jsx +37 -0
  153. package/src/use-debounce.js +13 -0
  154. package/src/utils.js +230 -0
  155. package/dist/_virtual/_rolldown/runtime.js +0 -23
  156. package/dist/autosize-input.d.ts +0 -10
  157. package/dist/autosize-input.js +0 -66
  158. package/dist/axis/arrow.d.ts +0 -13
  159. package/dist/axis/arrow.js +0 -34
  160. package/dist/axis/axes.d.ts +0 -132
  161. package/dist/axis/axes.js +0 -214
  162. package/dist/axis/index.d.ts +0 -10
  163. package/dist/bg.d.ts +0 -51
  164. package/dist/bg.js +0 -44
  165. package/dist/container/actions.d.ts +0 -15
  166. package/dist/container/actions.js +0 -7
  167. package/dist/container/index.d.ts +0 -58
  168. package/dist/container/index.js +0 -48
  169. package/dist/container/marks.d.ts +0 -10
  170. package/dist/container/marks.js +0 -11
  171. package/dist/container/middleware.d.ts +0 -10
  172. package/dist/container/middleware.js +0 -4
  173. package/dist/container/reducer.d.ts +0 -14
  174. package/dist/container/reducer.js +0 -7
  175. package/dist/coordinates-label.d.ts +0 -50
  176. package/dist/coordinates-label.js +0 -46
  177. package/dist/graph-with-controls.d.ts +0 -85
  178. package/dist/graph-with-controls.js +0 -155
  179. package/dist/graph.d.ts +0 -119
  180. package/dist/graph.js +0 -221
  181. package/dist/grid-setup.d.ts +0 -27
  182. package/dist/grid-setup.js +0 -307
  183. package/dist/grid.d.ts +0 -43
  184. package/dist/grid.js +0 -59
  185. package/dist/index.d.ts +0 -14
  186. package/dist/index.js +0 -6
  187. package/dist/labels.d.ts +0 -73
  188. package/dist/labels.js +0 -134
  189. package/dist/mark-label.d.ts +0 -50
  190. package/dist/mark-label.js +0 -84
  191. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/Axis.js +0 -101
  192. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/AxisRenderer.js +0 -63
  193. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/Ticks.js +0 -44
  194. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/constants/orientation.js +0 -9
  195. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/createPoint.js +0 -14
  196. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getAxisRangePaddingConfig.js +0 -21
  197. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getLabelTransform.js +0 -16
  198. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getTickFormatter.js +0 -8
  199. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getTickPosition.js +0 -15
  200. package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/Grid.js +0 -79
  201. package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/GridColumns.js +0 -79
  202. package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/GridRows.js +0 -79
  203. package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/utils/getScaleBandwidth.js +0 -6
  204. package/dist/node_modules/.bun/@visx_group@3.12.0_f4eacebf2041cd4f/node_modules/@visx/group/esm/Group.js +0 -50
  205. package/dist/node_modules/.bun/@visx_point@3.12.0/node_modules/@visx/point/esm/Point.js +0 -18
  206. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/coerceNumber.js +0 -10
  207. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/getTicks.js +0 -9
  208. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/toString.js +0 -6
  209. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/Line.js +0 -47
  210. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/lib/shapes/Line.js +0 -53
  211. package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/Text.js +0 -57
  212. package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/hooks/useText.js +0 -91
  213. package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/util/getStringWidth.js +0 -21
  214. package/dist/node_modules/.bun/balanced-match@0.4.2/node_modules/balanced-match/index.js +0 -32
  215. package/dist/node_modules/.bun/balanced-match@1.0.2/node_modules/balanced-match/index.js +0 -33
  216. package/dist/node_modules/.bun/classnames@2.5.1/node_modules/classnames/index.js +0 -32
  217. package/dist/node_modules/.bun/clsx@2.1.1/node_modules/clsx/dist/clsx.js +0 -16
  218. package/dist/node_modules/.bun/invariant@2.2.4/node_modules/invariant/browser.js +0 -28
  219. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Hash.js +0 -21
  220. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_ListCache.js +0 -21
  221. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Map.js +0 -10
  222. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_MapCache.js +0 -21
  223. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Symbol.js +0 -9
  224. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_assocIndexOf.js +0 -14
  225. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_baseGetTag.js +0 -15
  226. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_baseIsNative.js +0 -16
  227. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_coreJsData.js +0 -9
  228. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_freeGlobal.js +0 -8
  229. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getMapData.js +0 -14
  230. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getNative.js +0 -15
  231. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getRawTag.js +0 -19
  232. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getValue.js +0 -11
  233. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashClear.js +0 -13
  234. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashDelete.js +0 -12
  235. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashGet.js +0 -18
  236. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashHas.js +0 -14
  237. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashSet.js +0 -14
  238. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_isKeyable.js +0 -12
  239. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_isMasked.js +0 -16
  240. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheClear.js +0 -11
  241. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheDelete.js +0 -14
  242. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheGet.js +0 -14
  243. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheHas.js +0 -13
  244. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheSet.js +0 -14
  245. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheClear.js +0 -19
  246. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheDelete.js +0 -14
  247. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheGet.js +0 -13
  248. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheHas.js +0 -13
  249. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheSet.js +0 -14
  250. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_nativeCreate.js +0 -9
  251. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_objectToString.js +0 -12
  252. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_root.js +0 -10
  253. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_toSource.js +0 -20
  254. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/eq.js +0 -11
  255. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/isFunction.js +0 -16
  256. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/isObject.js +0 -12
  257. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/memoize.js +0 -20
  258. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/formula_evaluator.js +0 -37
  259. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/lexer.js +0 -509
  260. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/math_function.js +0 -108
  261. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/postfix.js +0 -31
  262. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/postfix_evaluator.js +0 -45
  263. package/dist/node_modules/.bun/react-redux@9.3.0_9e2203c65d1d5fa1/node_modules/react-redux/dist/react-redux.js +0 -471
  264. package/dist/node_modules/.bun/reduce-css-calc@1.3.0/node_modules/reduce-css-calc/index.js +0 -49
  265. package/dist/node_modules/.bun/reduce-function-call@1.0.3/node_modules/reduce-function-call/index.js +0 -34
  266. package/dist/node_modules/.bun/redux-undo@1.1.0/node_modules/redux-undo/dist/redux-undo.js +0 -185
  267. package/dist/node_modules/.bun/redux@5.0.1/node_modules/redux/dist/redux.js +0 -198
  268. package/dist/node_modules/.bun/use-sync-external-store@1.6.0_f4eacebf2041cd4f/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.development.js +0 -53
  269. package/dist/node_modules/.bun/use-sync-external-store@1.6.0_f4eacebf2041cd4f/node_modules/use-sync-external-store/cjs/use-sync-external-store-with-selector.production.js +0 -51
  270. package/dist/node_modules/.bun/use-sync-external-store@1.6.0_f4eacebf2041cd4f/node_modules/use-sync-external-store/with-selector.js +0 -10
  271. package/dist/toggle-bar.d.ts +0 -40
  272. package/dist/tool-menu.d.ts +0 -21
  273. package/dist/tool-menu.js +0 -188
  274. package/dist/tools/index.d.ts +0 -17
  275. package/dist/tools/index.js +0 -12
  276. package/dist/tools/line/component.d.ts +0 -113
  277. package/dist/tools/line/component.js +0 -58
  278. package/dist/tools/line/index.d.ts +0 -13
  279. package/dist/tools/line/index.js +0 -6
  280. package/dist/tools/polygon/component.d.ts +0 -117
  281. package/dist/tools/polygon/component.js +0 -194
  282. package/dist/tools/polygon/index.d.ts +0 -19
  283. package/dist/tools/polygon/index.js +0 -55
  284. package/dist/tools/polygon/line.d.ts +0 -125
  285. package/dist/tools/polygon/polygon.d.ts +0 -122
  286. package/dist/tools/polygon/polygon.js +0 -62
  287. package/dist/tools/shared/arrow-head.d.ts +0 -43
  288. package/dist/tools/shared/arrow-head.js +0 -37
  289. package/dist/tools/shared/line/index.d.ts +0 -240
  290. package/dist/tools/shared/line/index.js +0 -320
  291. package/dist/tools/shared/line/line-path.d.ts +0 -57
  292. package/dist/tools/shared/line/with-root-edge.d.ts +0 -143
  293. package/dist/tools/shared/point/arrow-point.d.ts +0 -57
  294. package/dist/tools/shared/point/arrow-point.js +0 -47
  295. package/dist/tools/shared/point/arrow.d.ts +0 -46
  296. package/dist/tools/shared/point/arrow.js +0 -36
  297. package/dist/tools/shared/point/base-point.d.ts +0 -50
  298. package/dist/tools/shared/point/base-point.js +0 -88
  299. package/dist/tools/shared/point/index.d.ts +0 -217
  300. package/dist/tools/shared/point/index.js +0 -51
  301. package/dist/tools/shared/styles.d.ts +0 -24
  302. package/dist/tools/shared/styles.js +0 -17
  303. package/dist/tools/shared/types.d.ts +0 -15
  304. package/dist/tools/shared/types.js +0 -10
  305. package/dist/undo-redo.d.ts +0 -20
  306. package/dist/undo-redo.js +0 -33
  307. package/dist/use-debounce.d.ts +0 -9
  308. package/dist/use-debounce.js +0 -13
  309. package/dist/utils.d.ts +0 -58
  310. package/dist/utils.js +0 -72
package/CHANGELOG.json ADDED
@@ -0,0 +1 @@
1
+ []
package/CHANGELOG.md ADDED
@@ -0,0 +1,449 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [4.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@4.0.2...@pie-lib/graphing-solution-set@4.0.3) (2026-05-15)
7
+
8
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
9
+
10
+ ## [4.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@4.0.2-next.3...@pie-lib/graphing-solution-set@4.0.2) (2026-05-07)
11
+
12
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
13
+
14
+ ## [4.0.2-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@4.0.2-next.2...@pie-lib/graphing-solution-set@4.0.2-next.3) (2026-05-07)
15
+
16
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
17
+
18
+ ## [4.0.2-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@4.0.2-next.1...@pie-lib/graphing-solution-set@4.0.2-next.2) (2026-05-06)
19
+
20
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
21
+
22
+ ## [4.0.2-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@4.0.2-next.0...@pie-lib/graphing-solution-set@4.0.2-next.1) (2026-05-06)
23
+
24
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
25
+
26
+ ## [4.0.2-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.15...@pie-lib/graphing-solution-set@4.0.2-next.0) (2026-05-06)
27
+
28
+ ### Bug Fixes
29
+
30
+ - **graphing-solution-set:** adjust axis label PD-5595 ([201bad9](https://github.com/pie-framework/pie-lib/commit/201bad9ef919f982cf045f15b9d01b2cb0ba66ef))
31
+ - **graphing-solution-set:** get rid of border in solution set mode PD-5566 ([49a6f62](https://github.com/pie-framework/pie-lib/commit/49a6f62d6b0b29e7acd62b8561441a1439077d8e))
32
+
33
+ ## [4.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@4.0.0...@pie-lib/graphing-solution-set@4.0.1) (2026-04-28)
34
+
35
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
36
+
37
+ # [3.2.0-next.38](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.37...@pie-lib/graphing-solution-set@3.2.0-next.38) (2026-04-24)
38
+
39
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
40
+
41
+ # [3.2.0-next.37](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.36...@pie-lib/graphing-solution-set@3.2.0-next.37) (2026-04-24)
42
+
43
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
44
+
45
+ # [3.2.0-next.36](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.35...@pie-lib/graphing-solution-set@3.2.0-next.36) (2026-04-23)
46
+
47
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
48
+
49
+ # [3.2.0-next.35](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.34...@pie-lib/graphing-solution-set@3.2.0-next.35) (2026-04-17)
50
+
51
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
52
+
53
+ # [3.2.0-next.34](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.33...@pie-lib/graphing-solution-set@3.2.0-next.34) (2026-04-16)
54
+
55
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
56
+
57
+ # [3.2.0-next.33](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.32...@pie-lib/graphing-solution-set@3.2.0-next.33) (2026-04-16)
58
+
59
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
60
+
61
+ # [3.2.0-next.32](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.31...@pie-lib/graphing-solution-set@3.2.0-next.32) (2026-04-16)
62
+
63
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
64
+
65
+ # [3.2.0-next.31](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.30...@pie-lib/graphing-solution-set@3.2.0-next.31) (2026-04-15)
66
+
67
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
68
+
69
+ # [3.2.0-next.30](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.29...@pie-lib/graphing-solution-set@3.2.0-next.30) (2026-04-15)
70
+
71
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
72
+
73
+ # [3.2.0-next.29](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.28...@pie-lib/graphing-solution-set@3.2.0-next.29) (2026-04-14)
74
+
75
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
76
+
77
+ # [3.2.0-next.28](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.27...@pie-lib/graphing-solution-set@3.2.0-next.28) (2026-04-13)
78
+
79
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
80
+
81
+ # [3.2.0-next.27](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.26...@pie-lib/graphing-solution-set@3.2.0-next.27) (2026-04-09)
82
+
83
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
84
+
85
+ # [3.2.0-next.26](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.25...@pie-lib/graphing-solution-set@3.2.0-next.26) (2026-04-09)
86
+
87
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
88
+
89
+ # [3.2.0-next.25](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.24...@pie-lib/graphing-solution-set@3.2.0-next.25) (2026-04-08)
90
+
91
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
92
+
93
+ # [3.2.0-next.24](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.23...@pie-lib/graphing-solution-set@3.2.0-next.24) (2026-04-07)
94
+
95
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
96
+
97
+ # [3.2.0-next.23](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.22...@pie-lib/graphing-solution-set@3.2.0-next.23) (2026-04-06)
98
+
99
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
100
+
101
+ # [3.2.0-next.22](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.21...@pie-lib/graphing-solution-set@3.2.0-next.22) (2026-04-03)
102
+
103
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
104
+
105
+ # [3.2.0-next.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.20...@pie-lib/graphing-solution-set@3.2.0-next.21) (2026-03-31)
106
+
107
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
108
+
109
+ # [3.2.0-next.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.19...@pie-lib/graphing-solution-set@3.2.0-next.20) (2026-03-25)
110
+
111
+ ### Bug Fixes
112
+
113
+ - **graphing-solution-set:** adjust axis label PD-5595 ([201bad9](https://github.com/pie-framework/pie-lib/commit/201bad9ef919f982cf045f15b9d01b2cb0ba66ef))
114
+ - **graphing-solution-set:** get rid of border in solution set mode PD-5566 ([49a6f62](https://github.com/pie-framework/pie-lib/commit/49a6f62d6b0b29e7acd62b8561441a1439077d8e))
115
+
116
+ # [3.2.0-next.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.18...@pie-lib/graphing-solution-set@3.2.0-next.19) (2026-03-18)
117
+
118
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
119
+
120
+ # [3.2.0-next.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.17...@pie-lib/graphing-solution-set@3.2.0-next.18) (2026-03-18)
121
+
122
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
123
+
124
+ # [3.2.0-next.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.16...@pie-lib/graphing-solution-set@3.2.0-next.17) (2026-03-18)
125
+
126
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
127
+
128
+ # [3.2.0-next.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.15...@pie-lib/graphing-solution-set@3.2.0-next.16) (2026-03-11)
129
+
130
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
131
+
132
+ # [3.2.0-next.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.14...@pie-lib/graphing-solution-set@3.2.0-next.15) (2026-03-11)
133
+
134
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
135
+
136
+ # [3.2.0-next.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.13...@pie-lib/graphing-solution-set@3.2.0-next.14) (2026-03-09)
137
+
138
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
139
+
140
+ # [3.2.0-next.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.12...@pie-lib/graphing-solution-set@3.2.0-next.13) (2026-03-06)
141
+
142
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
143
+
144
+ # [3.2.0-next.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.11...@pie-lib/graphing-solution-set@3.2.0-next.12) (2026-03-04)
145
+
146
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
147
+
148
+ # [3.2.0-next.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.9...@pie-lib/graphing-solution-set@3.2.0-next.11) (2026-02-26)
149
+
150
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
151
+
152
+ # [3.2.0-next.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.8...@pie-lib/graphing-solution-set@3.2.0-next.9) (2026-02-25)
153
+
154
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
155
+
156
+ # [3.2.0-next.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.7...@pie-lib/graphing-solution-set@3.2.0-next.8) (2026-02-25)
157
+
158
+ ### Bug Fixes
159
+
160
+ - **deps:** update [@pie-lib](https://github.com/pie-lib) dependencies to published versions ([134fbdc](https://github.com/pie-framework/pie-lib/commit/134fbdc90c6a15f89a736340578d70fb80a983b3))
161
+
162
+ # [3.2.0-next.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.6...@pie-lib/graphing-solution-set@3.2.0-next.7) (2026-02-25)
163
+
164
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
165
+
166
+ # [3.2.0-next.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.5...@pie-lib/graphing-solution-set@3.2.0-next.6) (2026-02-25)
167
+
168
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
169
+
170
+ # [3.2.0-next.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.4...@pie-lib/graphing-solution-set@3.2.0-next.5) (2026-02-25)
171
+
172
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
173
+
174
+ # [3.2.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.3...@pie-lib/graphing-solution-set@3.2.0-next.4) (2026-02-24)
175
+
176
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
177
+
178
+ # [3.2.0-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.2.0-next.1...@pie-lib/graphing-solution-set@3.2.0-next.3) (2026-02-24)
179
+
180
+ ### Bug Fixes
181
+
182
+ - made sure placeholder works, math item does not blur editor, table toolbar contains correct extensions [PD-5616] [PD-5584] [PD-5627] ([9bc768f](https://github.com/pie-framework/pie-lib/commit/9bc768f4e4301f91cc768475f0defa545ee7b43d))
183
+
184
+ # [3.1.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.1.0-next.2...@pie-lib/graphing-solution-set@3.1.0-next.4) (2026-01-27)
185
+
186
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
187
+
188
+ # [3.1.0-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@3.1.0-next.1...@pie-lib/graphing-solution-set@3.1.0-next.2) (2026-01-26)
189
+
190
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
191
+
192
+ # [3.1.0-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.34.2...@pie-lib/graphing-solution-set@3.1.0-next.1) (2026-01-26)
193
+
194
+ ### Bug Fixes
195
+
196
+ - remove carets from [@pie-lib](https://github.com/pie-lib) dependencies and configure lerna to use exact versions ([c9cd800](https://github.com/pie-framework/pie-lib/commit/c9cd800844abca09e7acf1fd35b2ddf51a6d86df))
197
+ - remove carret, point to specific libs version ([09939a5](https://github.com/pie-framework/pie-lib/commit/09939a5aca19d7dda03d62c93d4d524f98dd69da))
198
+ - remove exports and publish ([#2068](https://github.com/pie-framework/pie-lib/issues/2068)) ([60a96cd](https://github.com/pie-framework/pie-lib/commit/60a96cde0ec65f6b1cac0ae329aa33a0abc50d05))
199
+ - updated tip-tap with mui instead of material-ui [PD-5141] ([880d3ab](https://github.com/pie-framework/pie-lib/commit/880d3ab1d63aa12c7e975c882f50624200565737))
200
+ - use fixed lib deps ([de7c64d](https://github.com/pie-framework/pie-lib/commit/de7c64d14f13259fe44d47405e4421baef21e24e))
201
+
202
+ ### Features
203
+
204
+ - bump react and react-dom ([01dc19e](https://github.com/pie-framework/pie-lib/commit/01dc19e88bbc8d372c561d1511df1a82937d45af))
205
+ - drag library update in graphing packages ([6638af8](https://github.com/pie-framework/pie-lib/commit/6638af83235a13b983b95587ba042bbdff61c4df))
206
+ - migrate from [@vx](https://github.com/vx) library to [@visx](https://github.com/visx) ([135bf60](https://github.com/pie-framework/pie-lib/commit/135bf605161bfbd0070ac181892df20931691ce3))
207
+ - packages/graphing mui update PD-5268 ([503e9fd](https://github.com/pie-framework/pie-lib/commit/503e9fd47f230503ca8133eb8a61cacc727bb0fe))
208
+ - packages/graphing-solution-set mui update PD-5268 ([e73ac80](https://github.com/pie-framework/pie-lib/commit/e73ac80be3059028f7e05fd0f5ece467b2250018))
209
+ - sync latest changes from dev ([c936e9c](https://github.com/pie-framework/pie-lib/commit/c936e9c7f9e095e7d9b9805ac2bf72bd271e05f1))
210
+
211
+ # [3.0.0-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.34.3-next.0...@pie-lib/graphing-solution-set@3.0.0-next.0) (2026-01-19)
212
+
213
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
214
+
215
+ ## [2.34.3-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.48.0-mui-update.0...@pie-lib/graphing-solution-set@2.34.3-next.0) (2026-01-19)
216
+
217
+ ### Bug Fixes
218
+
219
+ - bump config-ui PD-5265 ([77d0c78](https://github.com/pie-framework/pie-lib/commit/77d0c78cacfa57e93ed17e7a7f1257f4a9cf6ab3))
220
+
221
+ ## [2.34.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.34.1...@pie-lib/graphing-solution-set@2.34.2) (2025-11-27)
222
+
223
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
224
+
225
+ ## [2.34.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.30.2...@pie-lib/graphing-solution-set@2.34.1) (2025-10-22)
226
+
227
+ ### Bug Fixes
228
+
229
+ - bump config-ui PD-5265 ([77d0c78](https://github.com/pie-framework/pie-lib/commit/77d0c78cacfa57e93ed17e7a7f1257f4a9cf6ab3))
230
+
231
+ # [2.34.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.33.0...@pie-lib/graphing-solution-set@2.34.0) (2025-10-16)
232
+
233
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
234
+
235
+ # [2.33.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.30.0...@pie-lib/graphing-solution-set@2.33.0) (2025-10-16)
236
+
237
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
238
+
239
+ # [2.32.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.30.0...@pie-lib/graphing-solution-set@2.32.0) (2025-10-16)
240
+
241
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
242
+
243
+ # [2.31.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.30.0...@pie-lib/graphing-solution-set@2.31.0) (2025-10-16)
244
+
245
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
246
+
247
+ ## [2.30.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.30.1...@pie-lib/graphing-solution-set@2.30.2) (2025-10-14)
248
+
249
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
250
+
251
+ ## [2.30.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.30.0...@pie-lib/graphing-solution-set@2.30.1) (2025-10-09)
252
+
253
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
254
+
255
+ # 2.30.0 (2025-09-25)
256
+
257
+ ### Bug Fixes
258
+
259
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
260
+
261
+ ### Features
262
+
263
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
264
+
265
+ # [2.29.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.28.0...@pie-lib/graphing-solution-set@2.29.0) (2025-09-18)
266
+
267
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
268
+
269
+ # [2.28.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.27.0...@pie-lib/graphing-solution-set@2.28.0) (2025-09-18)
270
+
271
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
272
+
273
+ # 2.27.0 (2025-09-18)
274
+
275
+ ### Bug Fixes
276
+
277
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
278
+
279
+ ### Features
280
+
281
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
282
+
283
+ # [2.26.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.25.0...@pie-lib/graphing-solution-set@2.26.0) (2025-09-17)
284
+
285
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
286
+
287
+ # [2.25.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.24.0...@pie-lib/graphing-solution-set@2.25.0) (2025-09-17)
288
+
289
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
290
+
291
+ # [2.24.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing-solution-set@2.23.1...@pie-lib/graphing-solution-set@2.24.0) (2025-09-17)
292
+
293
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
294
+
295
+ ## 2.23.1 (2025-08-11)
296
+
297
+ ### Bug Fixes
298
+
299
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
300
+
301
+ ### Features
302
+
303
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
304
+
305
+ # 2.23.0 (2025-08-07)
306
+
307
+ ### Features
308
+
309
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
310
+
311
+ # 2.22.0 (2025-07-31)
312
+
313
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
314
+
315
+ # 2.21.0 (2025-07-31)
316
+
317
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
318
+
319
+ # 2.20.0 (2025-07-31)
320
+
321
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
322
+
323
+ # 2.19.0 (2025-07-31)
324
+
325
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
326
+
327
+ # 2.18.0 (2025-07-31)
328
+
329
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
330
+
331
+ # 2.17.0 (2025-07-31)
332
+
333
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
334
+
335
+ # 2.19.0 (2025-07-31)
336
+
337
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
338
+
339
+ # 2.18.0 (2025-07-31)
340
+
341
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
342
+
343
+ # 2.17.0 (2025-07-31)
344
+
345
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
346
+
347
+ # 2.18.0 (2025-07-31)
348
+
349
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
350
+
351
+ # 2.17.0 (2025-07-31)
352
+
353
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
354
+
355
+ # 2.16.0 (2025-07-31)
356
+
357
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
358
+
359
+ # 2.16.0 (2025-07-31)
360
+
361
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
362
+
363
+ # 2.17.0 (2025-07-31)
364
+
365
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
366
+
367
+ # 2.16.0 (2025-07-31)
368
+
369
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
370
+
371
+ # 2.15.0-beta.8 (2025-07-25)
372
+
373
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
374
+
375
+ # 2.15.0-beta.7 (2025-07-25)
376
+
377
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
378
+
379
+ # 2.15.0-beta.7 (2025-07-25)
380
+
381
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
382
+
383
+ # 2.15.0-beta.6 (2025-07-25)
384
+
385
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
386
+
387
+ # 2.15.0-beta.6 (2025-07-25)
388
+
389
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
390
+
391
+ # 2.15.0-beta.5 (2025-07-25)
392
+
393
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
394
+
395
+ # 2.15.0-beta.5 (2025-07-25)
396
+
397
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
398
+
399
+ # 2.15.0-beta.4 (2025-07-25)
400
+
401
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
402
+
403
+ # 2.15.0-beta.3 (2025-07-25)
404
+
405
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
406
+
407
+ # 2.15.0-beta.4 (2025-07-23)
408
+
409
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
410
+
411
+ # 2.15.0-beta.3 (2025-07-23)
412
+
413
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
414
+
415
+ # 2.15.0-beta.3 (2025-07-20)
416
+
417
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
418
+
419
+ # 2.15.0-beta.2 (2025-07-20)
420
+
421
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
422
+
423
+ # 2.15.0-beta.1 (2025-07-20)
424
+
425
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
426
+
427
+ # 2.15.0-beta.2 (2025-07-20)
428
+
429
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
430
+
431
+ # 2.15.0-beta.1 (2025-07-20)
432
+
433
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
434
+
435
+ # 2.15.0-beta.1 (2025-07-20)
436
+
437
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
438
+
439
+ # 2.15.0-beta.0 (2025-07-20)
440
+
441
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
442
+
443
+ # 2.16.0-beta.0 (2025-07-15)
444
+
445
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
446
+
447
+ # 2.15.0-beta.0 (2025-07-15)
448
+
449
+ **Note:** Version bump only for package @pie-lib/graphing-solution-set
package/LICENSE.md ADDED
@@ -0,0 +1,5 @@
1
+ Copyright 2019 CoreSpring Inc
2
+
3
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
4
+
5
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
@@ -0,0 +1,79 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = exports.Arrow = void 0;
8
+ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
9
+ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
10
+ var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
11
+ var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
12
+ var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
13
+ var _react = _interopRequireDefault(require("react"));
14
+ var _propTypes = _interopRequireDefault(require("prop-types"));
15
+ var _styles = require("@mui/material/styles");
16
+ var _plot = require("@pie-lib/plot");
17
+ function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2["default"])(o), (0, _possibleConstructorReturn2["default"])(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2["default"])(t).constructor) : o.apply(t, e)); }
18
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
19
+ var StyledPath = (0, _styles.styled)('path')(function (_ref) {
20
+ var theme = _ref.theme;
21
+ return {
22
+ fill: "var(--arrow-color, ".concat(theme.palette.common.black, ")")
23
+ };
24
+ });
25
+ var Arrow = exports.Arrow = /*#__PURE__*/function (_React$Component) {
26
+ function Arrow() {
27
+ (0, _classCallCheck2["default"])(this, Arrow);
28
+ return _callSuper(this, Arrow, arguments);
29
+ }
30
+ (0, _inherits2["default"])(Arrow, _React$Component);
31
+ return (0, _createClass2["default"])(Arrow, [{
32
+ key: "render",
33
+ value: function render() {
34
+ var _this$props = this.props,
35
+ x = _this$props.x,
36
+ y = _this$props.y,
37
+ className = _this$props.className,
38
+ scale = _this$props.scale;
39
+ var direction = this.props.direction || 'left';
40
+ var xv = scale.x(x);
41
+ var yv = scale.y(y);
42
+ var transform = '';
43
+ var getTransform = function getTransform(x, y, rotate) {
44
+ return "translate(".concat(x, ", ").concat(y, ") rotate(").concat(rotate, ")");
45
+ };
46
+ if (direction === 'left') {
47
+ transform = getTransform(xv - 15, yv, 0);
48
+ }
49
+ if (direction === 'right') {
50
+ transform = getTransform(xv + 15, yv, 180);
51
+ }
52
+ if (direction === 'up') {
53
+ transform = getTransform(xv, yv - 15, 90);
54
+ }
55
+ if (direction === 'down') {
56
+ transform = getTransform(xv, yv + 15, 270);
57
+ }
58
+ return /*#__PURE__*/_react["default"].createElement(StyledPath, {
59
+ d: "m 0,0 8,-5 0,10 -8,-5",
60
+ transform: transform,
61
+ className: className
62
+ });
63
+ }
64
+ }]);
65
+ }(_react["default"].Component);
66
+ Arrow.propTypes = {
67
+ y: _propTypes["default"].number,
68
+ x: _propTypes["default"].number,
69
+ direction: _propTypes["default"].oneOf(['left', 'right', 'up', 'down']),
70
+ className: _propTypes["default"].string,
71
+ scale: _plot.types.ScaleType.isRequired
72
+ };
73
+ Arrow.defaultProps = {
74
+ y: 0,
75
+ x: 0,
76
+ direction: 'left'
77
+ };
78
+ var _default = exports["default"] = Arrow;
79
+ //# sourceMappingURL=arrow.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"arrow.js","names":["_react","_interopRequireDefault","require","_propTypes","_styles","_plot","_callSuper","t","o","e","_getPrototypeOf2","_possibleConstructorReturn2","_isNativeReflectConstruct","Reflect","construct","constructor","apply","Boolean","prototype","valueOf","call","StyledPath","styled","_ref","theme","fill","concat","palette","common","black","Arrow","exports","_React$Component","_classCallCheck2","arguments","_inherits2","_createClass2","key","value","render","_this$props","props","x","y","className","scale","direction","xv","yv","transform","getTransform","rotate","createElement","d","React","Component","propTypes","PropTypes","number","oneOf","string","types","ScaleType","isRequired","defaultProps","_default"],"sources":["../../src/axis/arrow.jsx"],"sourcesContent":["import React from 'react';\nimport PropTypes from 'prop-types';\n\nimport { styled } from '@mui/material/styles';\nimport { types } from '@pie-lib/plot';\n\nconst StyledPath = styled('path')(({ theme }) => ({\n fill: `var(--arrow-color, ${theme.palette.common.black})`,\n}));\n\nexport class Arrow extends React.Component {\n render() {\n const { x, y, className, scale } = this.props;\n let direction = this.props.direction || 'left';\n\n const xv = scale.x(x);\n const yv = scale.y(y);\n\n let transform = '';\n\n const getTransform = (x, y, rotate) => `translate(${x}, ${y}) rotate(${rotate})`;\n\n if (direction === 'left') {\n transform = getTransform(xv - 15, yv, 0);\n }\n\n if (direction === 'right') {\n transform = getTransform(xv + 15, yv, 180);\n }\n\n if (direction === 'up') {\n transform = getTransform(xv, yv - 15, 90);\n }\n\n if (direction === 'down') {\n transform = getTransform(xv, yv + 15, 270);\n }\n\n return <StyledPath d=\"m 0,0 8,-5 0,10 -8,-5\" transform={transform} className={className} />;\n }\n}\n\nArrow.propTypes = {\n y: PropTypes.number,\n x: PropTypes.number,\n direction: PropTypes.oneOf(['left', 'right', 'up', 'down']),\n className: PropTypes.string,\n scale: types.ScaleType.isRequired,\n};\n\nArrow.defaultProps = {\n y: 0,\n x: 0,\n direction: 'left',\n};\n\nexport default Arrow;\n"],"mappings":"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","ignoreList":[]}