@pie-lib/graphing 4.0.4-next.9 → 4.0.5-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (475) hide show
  1. package/dist/_virtual/_rolldown/runtime.js +23 -0
  2. package/dist/axis/arrow.d.ts +13 -0
  3. package/dist/axis/arrow.js +34 -0
  4. package/dist/axis/axes.d.ts +132 -0
  5. package/dist/axis/axes.js +214 -0
  6. package/dist/axis/index.d.ts +10 -0
  7. package/dist/bg.d.ts +51 -0
  8. package/dist/bg.js +44 -0
  9. package/dist/container/actions.d.ts +15 -0
  10. package/dist/container/actions.js +7 -0
  11. package/dist/container/index.d.ts +26 -0
  12. package/dist/container/index.js +50 -0
  13. package/dist/container/marks.d.ts +10 -0
  14. package/dist/container/marks.js +11 -0
  15. package/dist/container/middleware.d.ts +10 -0
  16. package/dist/container/middleware.js +4 -0
  17. package/dist/container/reducer.d.ts +12 -0
  18. package/dist/container/reducer.js +7 -0
  19. package/dist/coordinates-label.d.ts +50 -0
  20. package/dist/coordinates-label.js +46 -0
  21. package/dist/graph-with-controls.d.ts +88 -0
  22. package/dist/graph-with-controls.js +154 -0
  23. package/dist/graph.d.ts +126 -0
  24. package/dist/graph.js +209 -0
  25. package/dist/grid-setup.d.ts +27 -0
  26. package/dist/grid-setup.js +307 -0
  27. package/dist/grid.d.ts +43 -0
  28. package/dist/grid.js +59 -0
  29. package/dist/index.d.ts +15 -0
  30. package/dist/index.js +7 -0
  31. package/dist/key-legend.d.ts +21 -0
  32. package/dist/key-legend.js +231 -0
  33. package/dist/label-svg-icon.d.ts +18 -0
  34. package/dist/label-svg-icon.js +42 -0
  35. package/dist/labels.d.ts +37 -0
  36. package/dist/labels.js +152 -0
  37. package/dist/mark-label.d.ts +58 -0
  38. package/dist/mark-label.js +172 -0
  39. package/dist/node_modules/.bun/@babel_runtime@7.29.7/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +7 -0
  40. package/dist/node_modules/.bun/@babel_runtime@7.29.7/node_modules/@babel/runtime/helpers/esm/defineProperty.js +12 -0
  41. package/dist/node_modules/.bun/@babel_runtime@7.29.7/node_modules/@babel/runtime/helpers/esm/extends.js +12 -0
  42. package/dist/node_modules/.bun/@babel_runtime@7.29.7/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +7 -0
  43. package/dist/node_modules/.bun/@babel_runtime@7.29.7/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +25 -0
  44. package/dist/node_modules/.bun/@babel_runtime@7.29.7/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +12 -0
  45. package/dist/node_modules/.bun/@babel_runtime@7.29.7/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +8 -0
  46. package/dist/node_modules/.bun/@babel_runtime@7.29.7/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +14 -0
  47. package/dist/node_modules/.bun/@babel_runtime@7.29.7/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +9 -0
  48. package/dist/node_modules/.bun/@babel_runtime@7.29.7/node_modules/@babel/runtime/helpers/esm/typeof.js +11 -0
  49. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/Axis.js +100 -0
  50. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/AxisRenderer.js +61 -0
  51. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/axis/Ticks.js +42 -0
  52. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/constants/orientation.js +9 -0
  53. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/createPoint.js +14 -0
  54. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getAxisRangePaddingConfig.js +21 -0
  55. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getLabelTransform.js +16 -0
  56. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getTickFormatter.js +8 -0
  57. package/dist/node_modules/.bun/@visx_axis@3.12.0_f4eacebf2041cd4f/node_modules/@visx/axis/esm/utils/getTickPosition.js +15 -0
  58. package/dist/node_modules/.bun/@visx_curve@3.12.0/node_modules/@visx/curve/esm/index.js +2 -0
  59. package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/Grid.js +78 -0
  60. package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/GridColumns.js +79 -0
  61. package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/grids/GridRows.js +79 -0
  62. package/dist/node_modules/.bun/@visx_grid@3.12.0_f4eacebf2041cd4f/node_modules/@visx/grid/esm/utils/getScaleBandwidth.js +6 -0
  63. package/dist/node_modules/.bun/@visx_group@3.12.0_f4eacebf2041cd4f/node_modules/@visx/group/esm/Group.js +49 -0
  64. package/dist/node_modules/.bun/@visx_point@3.12.0/node_modules/@visx/point/esm/Point.js +18 -0
  65. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/coerceNumber.js +10 -0
  66. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/getTicks.js +9 -0
  67. package/dist/node_modules/.bun/@visx_scale@3.12.0/node_modules/@visx/scale/esm/utils/toString.js +6 -0
  68. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/Line.js +46 -0
  69. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/shapes/LinePath.js +49 -0
  70. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/util/D3ShapeFactories.js +9 -0
  71. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/esm/util/setNumberOrNumberAccessor.js +6 -0
  72. package/dist/node_modules/.bun/@visx_shape@3.12.0_f4eacebf2041cd4f/node_modules/@visx/shape/lib/shapes/Line.js +52 -0
  73. package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/Text.js +57 -0
  74. package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/hooks/useText.js +91 -0
  75. package/dist/node_modules/.bun/@visx_text@3.12.0_f4eacebf2041cd4f/node_modules/@visx/text/esm/util/getStringWidth.js +21 -0
  76. package/dist/node_modules/.bun/balanced-match@0.4.2/node_modules/balanced-match/index.js +32 -0
  77. package/dist/node_modules/.bun/balanced-match@1.0.2/node_modules/balanced-match/index.js +33 -0
  78. package/dist/node_modules/.bun/hoist-non-react-statics@3.3.2/node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js +68 -0
  79. package/dist/node_modules/.bun/invariant@2.2.4/node_modules/invariant/browser.js +28 -0
  80. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Hash.js +21 -0
  81. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_ListCache.js +21 -0
  82. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Map.js +10 -0
  83. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_MapCache.js +21 -0
  84. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_Symbol.js +9 -0
  85. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_assocIndexOf.js +14 -0
  86. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_baseGetTag.js +15 -0
  87. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_baseIsNative.js +16 -0
  88. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_coreJsData.js +9 -0
  89. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_freeGlobal.js +8 -0
  90. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getMapData.js +14 -0
  91. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getNative.js +15 -0
  92. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getRawTag.js +19 -0
  93. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_getValue.js +11 -0
  94. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashClear.js +13 -0
  95. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashDelete.js +12 -0
  96. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashGet.js +18 -0
  97. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashHas.js +14 -0
  98. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_hashSet.js +14 -0
  99. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_isKeyable.js +12 -0
  100. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_isMasked.js +16 -0
  101. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheClear.js +11 -0
  102. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheDelete.js +14 -0
  103. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheGet.js +14 -0
  104. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheHas.js +13 -0
  105. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_listCacheSet.js +14 -0
  106. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheClear.js +19 -0
  107. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheDelete.js +14 -0
  108. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheGet.js +13 -0
  109. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheHas.js +13 -0
  110. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_mapCacheSet.js +14 -0
  111. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_nativeCreate.js +9 -0
  112. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_objectToString.js +12 -0
  113. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_root.js +10 -0
  114. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/_toSource.js +20 -0
  115. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/eq.js +11 -0
  116. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/isFunction.js +16 -0
  117. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/isObject.js +12 -0
  118. package/dist/node_modules/.bun/lodash@4.18.1/node_modules/lodash/memoize.js +20 -0
  119. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/formula_evaluator.js +37 -0
  120. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/lexer.js +509 -0
  121. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/math_function.js +108 -0
  122. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/postfix.js +31 -0
  123. package/dist/node_modules/.bun/math-expression-evaluator@1.4.0/node_modules/math-expression-evaluator/src/postfix_evaluator.js +45 -0
  124. package/dist/node_modules/.bun/react-input-autosize@2.2.2_f4eacebf2041cd4f/node_modules/react-input-autosize/lib/AutosizeInput.js +216 -0
  125. package/dist/node_modules/.bun/react-is@16.13.1/node_modules/react-is/cjs/react-is.development.js +82 -0
  126. package/dist/node_modules/.bun/react-is@16.13.1/node_modules/react-is/cjs/react-is.production.min.js +62 -0
  127. package/dist/node_modules/.bun/react-is@16.13.1/node_modules/react-is/index.js +10 -0
  128. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/components/Context.js +5 -0
  129. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/components/Provider.js +47 -0
  130. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/components/connectAdvanced.js +95 -0
  131. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/connect/connect.js +52 -0
  132. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/connect/mapDispatchToProps.js +23 -0
  133. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/connect/mapStateToProps.js +13 -0
  134. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/connect/mergeProps.js +26 -0
  135. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/connect/selectorFactory.js +41 -0
  136. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/connect/verifySubselectors.js +11 -0
  137. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/connect/wrapMapToProps.js +28 -0
  138. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/index.js +4 -0
  139. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/utils/isPlainObject.js +10 -0
  140. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/utils/shallowEqual.js +15 -0
  141. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/utils/verifyPlainObject.js +8 -0
  142. package/dist/node_modules/.bun/react-redux@6.0.1_926323a638b43722/node_modules/react-redux/es/utils/warning.js +9 -0
  143. package/dist/node_modules/.bun/reduce-css-calc@1.3.0/node_modules/reduce-css-calc/index.js +49 -0
  144. package/dist/node_modules/.bun/reduce-function-call@1.0.3/node_modules/reduce-function-call/index.js +34 -0
  145. package/dist/node_modules/.bun/redux-undo@1.1.0/node_modules/redux-undo/dist/redux-undo.js +185 -0
  146. package/dist/node_modules/.bun/redux@4.2.1/node_modules/redux/es/redux.js +225 -0
  147. package/dist/toggle-bar.d.ts +40 -0
  148. package/dist/toggle-bar.js +155 -0
  149. package/dist/tool-menu.d.ts +29 -0
  150. package/dist/tool-menu.js +41 -0
  151. package/dist/tools/absolute/component.d.ts +16 -0
  152. package/dist/tools/absolute/component.js +15 -0
  153. package/dist/tools/absolute/index.d.ts +20 -0
  154. package/dist/tools/absolute/index.js +32 -0
  155. package/dist/tools/circle/bg-circle.d.ts +116 -0
  156. package/dist/tools/circle/bg-circle.js +72 -0
  157. package/dist/tools/circle/component.d.ts +83 -0
  158. package/dist/tools/circle/component.js +195 -0
  159. package/dist/tools/circle/index.d.ts +20 -0
  160. package/dist/tools/circle/index.js +22 -0
  161. package/dist/tools/exponential/component.d.ts +16 -0
  162. package/dist/tools/exponential/component.js +14 -0
  163. package/dist/tools/exponential/index.d.ts +20 -0
  164. package/dist/tools/exponential/index.js +32 -0
  165. package/dist/tools/index.d.ts +27 -0
  166. package/dist/tools/index.js +55 -0
  167. package/dist/tools/line/component.d.ts +124 -0
  168. package/dist/tools/line/component.js +72 -0
  169. package/dist/tools/line/index.d.ts +13 -0
  170. package/dist/tools/line/index.js +6 -0
  171. package/dist/tools/parabola/component.d.ts +16 -0
  172. package/dist/tools/parabola/component.js +14 -0
  173. package/dist/tools/parabola/index.d.ts +20 -0
  174. package/dist/tools/parabola/index.js +32 -0
  175. package/dist/tools/point/component.d.ts +50 -0
  176. package/dist/tools/point/component.js +85 -0
  177. package/dist/tools/point/index.d.ts +15 -0
  178. package/dist/tools/point/index.js +13 -0
  179. package/dist/tools/polygon/component.d.ts +117 -0
  180. package/dist/tools/polygon/component.js +262 -0
  181. package/dist/tools/polygon/index.d.ts +19 -0
  182. package/dist/tools/polygon/index.js +55 -0
  183. package/dist/tools/polygon/line.d.ts +125 -0
  184. package/dist/tools/polygon/line.js +63 -0
  185. package/dist/tools/polygon/polygon.d.ts +122 -0
  186. package/dist/tools/polygon/polygon.js +74 -0
  187. package/dist/tools/ray/component.d.ts +101 -0
  188. package/dist/tools/ray/component.js +71 -0
  189. package/dist/tools/ray/index.d.ts +13 -0
  190. package/dist/tools/ray/index.js +6 -0
  191. package/dist/tools/segment/component.d.ts +100 -0
  192. package/dist/tools/segment/component.js +52 -0
  193. package/dist/tools/segment/index.d.ts +13 -0
  194. package/dist/tools/segment/index.js +6 -0
  195. package/dist/tools/shared/arrow-head.d.ts +51 -0
  196. package/dist/tools/shared/arrow-head.js +63 -0
  197. package/dist/tools/shared/icons/CorrectSVG.d.ts +26 -0
  198. package/dist/tools/shared/icons/CorrectSVG.js +29 -0
  199. package/dist/tools/shared/icons/IncorrectSVG.d.ts +26 -0
  200. package/dist/tools/shared/icons/IncorrectSVG.js +27 -0
  201. package/dist/tools/shared/icons/MissingSVG.d.ts +26 -0
  202. package/dist/tools/shared/icons/MissingSVG.js +28 -0
  203. package/dist/tools/shared/line/index.d.ts +245 -0
  204. package/dist/tools/shared/line/index.js +319 -0
  205. package/dist/tools/shared/line/line-path.d.ts +57 -0
  206. package/dist/tools/shared/line/line-path.js +71 -0
  207. package/dist/tools/shared/line/with-root-edge.d.ts +142 -0
  208. package/dist/tools/shared/line/with-root-edge.js +73 -0
  209. package/dist/tools/shared/point/arrow-point.d.ts +56 -0
  210. package/dist/tools/shared/point/arrow-point.js +41 -0
  211. package/dist/tools/shared/point/arrow.d.ts +45 -0
  212. package/dist/tools/shared/point/arrow.js +35 -0
  213. package/dist/tools/shared/point/base-point.d.ts +52 -0
  214. package/dist/tools/shared/point/base-point.js +103 -0
  215. package/dist/tools/shared/point/index.d.ts +216 -0
  216. package/dist/tools/shared/point/index.js +45 -0
  217. package/dist/tools/shared/styles.d.ts +29 -0
  218. package/dist/tools/shared/styles.js +20 -0
  219. package/dist/tools/shared/types.d.ts +21 -0
  220. package/dist/tools/shared/types.js +11 -0
  221. package/dist/tools/sine/component.d.ts +16 -0
  222. package/dist/tools/sine/component.js +22 -0
  223. package/dist/tools/sine/index.d.ts +20 -0
  224. package/dist/tools/sine/index.js +32 -0
  225. package/dist/tools/vector/component.d.ts +100 -0
  226. package/dist/tools/vector/component.js +44 -0
  227. package/dist/tools/vector/index.d.ts +13 -0
  228. package/dist/tools/vector/index.js +6 -0
  229. package/dist/undo-redo.d.ts +22 -0
  230. package/dist/undo-redo.js +47 -0
  231. package/dist/use-debounce.d.ts +9 -0
  232. package/dist/use-debounce.js +13 -0
  233. package/dist/utils.d.ts +61 -0
  234. package/dist/utils.js +75 -0
  235. package/package.json +35 -25
  236. package/CHANGELOG.json +0 -1
  237. package/CHANGELOG.md +0 -1461
  238. package/LICENSE.md +0 -5
  239. package/lib/axis/arrow.js +0 -79
  240. package/lib/axis/arrow.js.map +0 -1
  241. package/lib/axis/axes.js +0 -329
  242. package/lib/axis/axes.js.map +0 -1
  243. package/lib/axis/index.js +0 -21
  244. package/lib/axis/index.js.map +0 -1
  245. package/lib/bg.js +0 -114
  246. package/lib/bg.js.map +0 -1
  247. package/lib/container/actions.js +0 -18
  248. package/lib/container/actions.js.map +0 -1
  249. package/lib/container/index.js +0 -118
  250. package/lib/container/index.js.map +0 -1
  251. package/lib/container/marks.js +0 -22
  252. package/lib/container/marks.js.map +0 -1
  253. package/lib/container/middleware.js +0 -19
  254. package/lib/container/middleware.js.map +0 -1
  255. package/lib/container/reducer.js +0 -18
  256. package/lib/container/reducer.js.map +0 -1
  257. package/lib/coordinates-label.js +0 -79
  258. package/lib/coordinates-label.js.map +0 -1
  259. package/lib/graph-with-controls.js +0 -294
  260. package/lib/graph-with-controls.js.map +0 -1
  261. package/lib/graph.js +0 -327
  262. package/lib/graph.js.map +0 -1
  263. package/lib/grid-setup.js +0 -414
  264. package/lib/grid-setup.js.map +0 -1
  265. package/lib/grid.js +0 -131
  266. package/lib/grid.js.map +0 -1
  267. package/lib/index.js +0 -47
  268. package/lib/index.js.map +0 -1
  269. package/lib/key-legend.js +0 -201
  270. package/lib/key-legend.js.map +0 -1
  271. package/lib/label-svg-icon.js +0 -50
  272. package/lib/label-svg-icon.js.map +0 -1
  273. package/lib/labels.js +0 -243
  274. package/lib/labels.js.map +0 -1
  275. package/lib/mark-label.js +0 -285
  276. package/lib/mark-label.js.map +0 -1
  277. package/lib/toggle-bar.js +0 -252
  278. package/lib/toggle-bar.js.map +0 -1
  279. package/lib/tool-menu.js +0 -78
  280. package/lib/tool-menu.js.map +0 -1
  281. package/lib/tools/absolute/component.js +0 -29
  282. package/lib/tools/absolute/component.js.map +0 -1
  283. package/lib/tools/absolute/index.js +0 -50
  284. package/lib/tools/absolute/index.js.map +0 -1
  285. package/lib/tools/circle/bg-circle.js +0 -123
  286. package/lib/tools/circle/bg-circle.js.map +0 -1
  287. package/lib/tools/circle/component.js +0 -321
  288. package/lib/tools/circle/component.js.map +0 -1
  289. package/lib/tools/circle/index.js +0 -41
  290. package/lib/tools/circle/index.js.map +0 -1
  291. package/lib/tools/exponential/component.js +0 -28
  292. package/lib/tools/exponential/component.js.map +0 -1
  293. package/lib/tools/exponential/index.js +0 -56
  294. package/lib/tools/exponential/index.js.map +0 -1
  295. package/lib/tools/index.js +0 -86
  296. package/lib/tools/index.js.map +0 -1
  297. package/lib/tools/line/component.js +0 -97
  298. package/lib/tools/line/component.js.map +0 -1
  299. package/lib/tools/line/index.js +0 -11
  300. package/lib/tools/line/index.js.map +0 -1
  301. package/lib/tools/parabola/component.js +0 -28
  302. package/lib/tools/parabola/component.js.map +0 -1
  303. package/lib/tools/parabola/index.js +0 -50
  304. package/lib/tools/parabola/index.js.map +0 -1
  305. package/lib/tools/point/component.js +0 -148
  306. package/lib/tools/point/component.js.map +0 -1
  307. package/lib/tools/point/index.js +0 -24
  308. package/lib/tools/point/index.js.map +0 -1
  309. package/lib/tools/polygon/component.js +0 -437
  310. package/lib/tools/polygon/component.js.map +0 -1
  311. package/lib/tools/polygon/index.js +0 -89
  312. package/lib/tools/polygon/index.js.map +0 -1
  313. package/lib/tools/polygon/line.js +0 -115
  314. package/lib/tools/polygon/line.js.map +0 -1
  315. package/lib/tools/polygon/polygon.js +0 -130
  316. package/lib/tools/polygon/polygon.js.map +0 -1
  317. package/lib/tools/ray/component.js +0 -95
  318. package/lib/tools/ray/component.js.map +0 -1
  319. package/lib/tools/ray/index.js +0 -11
  320. package/lib/tools/ray/index.js.map +0 -1
  321. package/lib/tools/segment/component.js +0 -70
  322. package/lib/tools/segment/component.js.map +0 -1
  323. package/lib/tools/segment/index.js +0 -11
  324. package/lib/tools/segment/index.js.map +0 -1
  325. package/lib/tools/shared/arrow-head.js +0 -111
  326. package/lib/tools/shared/arrow-head.js.map +0 -1
  327. package/lib/tools/shared/icons/CorrectSVG.js +0 -40
  328. package/lib/tools/shared/icons/CorrectSVG.js.map +0 -1
  329. package/lib/tools/shared/icons/IncorrectSVG.js +0 -40
  330. package/lib/tools/shared/icons/IncorrectSVG.js.map +0 -1
  331. package/lib/tools/shared/icons/MissingSVG.js +0 -39
  332. package/lib/tools/shared/icons/MissingSVG.js.map +0 -1
  333. package/lib/tools/shared/line/index.js +0 -550
  334. package/lib/tools/shared/line/index.js.map +0 -1
  335. package/lib/tools/shared/line/line-path.js +0 -121
  336. package/lib/tools/shared/line/line-path.js.map +0 -1
  337. package/lib/tools/shared/line/with-root-edge.js +0 -121
  338. package/lib/tools/shared/line/with-root-edge.js.map +0 -1
  339. package/lib/tools/shared/point/arrow-point.js +0 -72
  340. package/lib/tools/shared/point/arrow-point.js.map +0 -1
  341. package/lib/tools/shared/point/arrow.js +0 -67
  342. package/lib/tools/shared/point/arrow.js.map +0 -1
  343. package/lib/tools/shared/point/base-point.js +0 -157
  344. package/lib/tools/shared/point/base-point.js.map +0 -1
  345. package/lib/tools/shared/point/index.js +0 -68
  346. package/lib/tools/shared/point/index.js.map +0 -1
  347. package/lib/tools/shared/styles.js +0 -33
  348. package/lib/tools/shared/styles.js.map +0 -1
  349. package/lib/tools/shared/types.js +0 -16
  350. package/lib/tools/shared/types.js.map +0 -1
  351. package/lib/tools/sine/component.js +0 -40
  352. package/lib/tools/sine/component.js.map +0 -1
  353. package/lib/tools/sine/index.js +0 -50
  354. package/lib/tools/sine/index.js.map +0 -1
  355. package/lib/tools/vector/component.js +0 -68
  356. package/lib/tools/vector/component.js.map +0 -1
  357. package/lib/tools/vector/index.js +0 -11
  358. package/lib/tools/vector/index.js.map +0 -1
  359. package/lib/undo-redo.js +0 -86
  360. package/lib/undo-redo.js.map +0 -1
  361. package/lib/use-debounce.js +0 -25
  362. package/lib/use-debounce.js.map +0 -1
  363. package/lib/utils.js +0 -229
  364. package/lib/utils.js.map +0 -1
  365. package/src/__tests__/bg.test.jsx +0 -250
  366. package/src/__tests__/coordinates-label.test.jsx +0 -243
  367. package/src/__tests__/graph-with-controls.test.jsx +0 -198
  368. package/src/__tests__/graph.test.jsx +0 -721
  369. package/src/__tests__/grid-setup.test.jsx +0 -645
  370. package/src/__tests__/grid.test.jsx +0 -22
  371. package/src/__tests__/key-legend.test.jsx +0 -260
  372. package/src/__tests__/label-svg-icon.test.jsx +0 -278
  373. package/src/__tests__/labels.test.jsx +0 -55
  374. package/src/__tests__/mark-label.test.jsx +0 -63
  375. package/src/__tests__/toggle-bar.test.jsx +0 -146
  376. package/src/__tests__/tool-menu.test.jsx +0 -115
  377. package/src/__tests__/undo-redo.test.jsx +0 -24
  378. package/src/__tests__/use-debounce.test.js +0 -21
  379. package/src/__tests__/utils.js +0 -41
  380. package/src/__tests__/utils.test.js +0 -105
  381. package/src/axis/__tests__/arrow.test.jsx +0 -38
  382. package/src/axis/__tests__/axes.test.jsx +0 -216
  383. package/src/axis/arrow.jsx +0 -57
  384. package/src/axis/axes.jsx +0 -285
  385. package/src/axis/index.js +0 -3
  386. package/src/bg.jsx +0 -96
  387. package/src/container/__tests__/actions.test.js +0 -105
  388. package/src/container/__tests__/index.test.jsx +0 -319
  389. package/src/container/__tests__/marks.test.js +0 -172
  390. package/src/container/__tests__/middleware.test.js +0 -235
  391. package/src/container/__tests__/reducer.test.js +0 -324
  392. package/src/container/actions.js +0 -8
  393. package/src/container/index.jsx +0 -83
  394. package/src/container/marks.js +0 -14
  395. package/src/container/middleware.js +0 -7
  396. package/src/container/reducer.js +0 -5
  397. package/src/coordinates-label.jsx +0 -63
  398. package/src/graph-with-controls.jsx +0 -239
  399. package/src/graph.jsx +0 -303
  400. package/src/grid-setup.jsx +0 -432
  401. package/src/grid.jsx +0 -133
  402. package/src/index.js +0 -7
  403. package/src/key-legend.jsx +0 -142
  404. package/src/label-svg-icon.jsx +0 -39
  405. package/src/labels.jsx +0 -207
  406. package/src/mark-label.jsx +0 -244
  407. package/src/toggle-bar.jsx +0 -224
  408. package/src/tool-menu.jsx +0 -49
  409. package/src/tools/absolute/__tests__/component.test.jsx +0 -53
  410. package/src/tools/absolute/component.jsx +0 -23
  411. package/src/tools/absolute/index.js +0 -31
  412. package/src/tools/circle/__tests__/bg-circle.test.jsx +0 -26
  413. package/src/tools/circle/__tests__/component.test.jsx +0 -494
  414. package/src/tools/circle/__tests__/index.test.js +0 -480
  415. package/src/tools/circle/bg-circle.jsx +0 -81
  416. package/src/tools/circle/component.jsx +0 -264
  417. package/src/tools/circle/index.js +0 -25
  418. package/src/tools/exponential/__tests__/component.test.jsx +0 -53
  419. package/src/tools/exponential/__tests__/index.test.js +0 -729
  420. package/src/tools/exponential/component.jsx +0 -23
  421. package/src/tools/exponential/index.js +0 -39
  422. package/src/tools/index.js +0 -48
  423. package/src/tools/line/__tests__/component.test.jsx +0 -37
  424. package/src/tools/line/component.jsx +0 -93
  425. package/src/tools/line/index.js +0 -4
  426. package/src/tools/parabola/__tests__/component.test.jsx +0 -48
  427. package/src/tools/parabola/__tests__/index.test.js +0 -470
  428. package/src/tools/parabola/component.jsx +0 -23
  429. package/src/tools/parabola/index.js +0 -31
  430. package/src/tools/point/__tests__/component.test.jsx +0 -349
  431. package/src/tools/point/__tests__/index.test.js +0 -241
  432. package/src/tools/point/component.jsx +0 -126
  433. package/src/tools/point/index.js +0 -11
  434. package/src/tools/polygon/__tests__/component.test.jsx +0 -471
  435. package/src/tools/polygon/__tests__/index.test.js +0 -294
  436. package/src/tools/polygon/__tests__/line.test.jsx +0 -35
  437. package/src/tools/polygon/__tests__/polygon.test.jsx +0 -61
  438. package/src/tools/polygon/component.jsx +0 -409
  439. package/src/tools/polygon/index.js +0 -52
  440. package/src/tools/polygon/line.jsx +0 -84
  441. package/src/tools/polygon/polygon.jsx +0 -110
  442. package/src/tools/ray/__tests__/component.test.jsx +0 -29
  443. package/src/tools/ray/component.jsx +0 -92
  444. package/src/tools/ray/index.js +0 -4
  445. package/src/tools/segment/__tests__/component.test.jsx +0 -28
  446. package/src/tools/segment/component.jsx +0 -53
  447. package/src/tools/segment/index.js +0 -4
  448. package/src/tools/shared/__tests__/arrow-head.test.jsx +0 -31
  449. package/src/tools/shared/arrow-head.jsx +0 -102
  450. package/src/tools/shared/icons/CorrectSVG.jsx +0 -32
  451. package/src/tools/shared/icons/IncorrectSVG.jsx +0 -30
  452. package/src/tools/shared/icons/MissingSVG.jsx +0 -31
  453. package/src/tools/shared/line/__tests__/index.test.jsx +0 -109
  454. package/src/tools/shared/line/__tests__/line-path.test.jsx +0 -53
  455. package/src/tools/shared/line/__tests__/with-root-edge.test.jsx +0 -73
  456. package/src/tools/shared/line/index.jsx +0 -487
  457. package/src/tools/shared/line/line-path.jsx +0 -90
  458. package/src/tools/shared/line/with-root-edge.jsx +0 -97
  459. package/src/tools/shared/point/__tests__/arrow-point.test.jsx +0 -91
  460. package/src/tools/shared/point/__tests__/base-point.test.jsx +0 -87
  461. package/src/tools/shared/point/arrow-point.jsx +0 -46
  462. package/src/tools/shared/point/arrow.jsx +0 -37
  463. package/src/tools/shared/point/base-point.jsx +0 -121
  464. package/src/tools/shared/point/index.jsx +0 -54
  465. package/src/tools/shared/styles.js +0 -27
  466. package/src/tools/shared/types.js +0 -10
  467. package/src/tools/sine/__tests__/component.test.jsx +0 -51
  468. package/src/tools/sine/component.jsx +0 -32
  469. package/src/tools/sine/index.js +0 -33
  470. package/src/tools/vector/__tests__/component.test.jsx +0 -25
  471. package/src/tools/vector/component.jsx +0 -56
  472. package/src/tools/vector/index.js +0 -4
  473. package/src/undo-redo.jsx +0 -45
  474. package/src/use-debounce.js +0 -13
  475. package/src/utils.js +0 -224
package/CHANGELOG.md DELETED
@@ -1,1461 +0,0 @@
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@4.0.3-next.3...@pie-lib/graphing@4.0.3) (2026-05-07)
7
-
8
- **Note:** Version bump only for package @pie-lib/graphing
9
-
10
- ## [4.0.3-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@4.0.3-next.2...@pie-lib/graphing@4.0.3-next.3) (2026-05-07)
11
-
12
- **Note:** Version bump only for package @pie-lib/graphing
13
-
14
- ## [4.0.3-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@4.0.3-next.1...@pie-lib/graphing@4.0.3-next.2) (2026-05-06)
15
-
16
- ### Bug Fixes
17
-
18
- - **graphing:** add return statement to prevent further execution in lineBase function PIE-519 ([3b95e6e](https://github.com/pie-framework/pie-lib/commit/3b95e6ed7ab83417f422ffe985a956b9a6a46db4))
19
-
20
- ## [4.0.3-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@4.0.3-next.0...@pie-lib/graphing@4.0.3-next.1) (2026-05-06)
21
-
22
- **Note:** Version bump only for package @pie-lib/graphing
23
-
24
- ## [4.0.3-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.15...@pie-lib/graphing@4.0.3-next.0) (2026-05-06)
25
-
26
- ### Bug Fixes
27
-
28
- - enhance drag handling and prevent click interference in draggable components. fix auto input label PIE-428 ([cc06766](https://github.com/pie-framework/pie-lib/commit/cc06766fab6960356f3e7f8975da1f12f3358a9e))
29
- - ensure onClick is called for existing mark points/lines and does not interfere with drag PIE-426 PIE-427 ([1cb4f00](https://github.com/pie-framework/pie-lib/commit/1cb4f00118ff24ddffe4c1ee2a091daccafa4d15))
30
- - **graphing/plot:** improve drag handling to prevent misidentifying clicks as drags PD-5598 ([40a65a3](https://github.com/pie-framework/pie-lib/commit/40a65a312ec06227309fceac848bb8c7a266b1bb))
31
- - **graphing:** adjust axis label PD-5595 ([f462a1f](https://github.com/pie-framework/pie-lib/commit/f462a1f5563a6bb18443091c16d75064f2b31bad))
32
- - **graphing:** color changes for graph buttons PD-5590 ([1053f44](https://github.com/pie-framework/pie-lib/commit/1053f44cd10521bf5e3431ac071fb3f18e97f467))
33
- - **graphing:** defer focus call to ensure re-render completion PIE-520 ([3e3ae16](https://github.com/pie-framework/pie-lib/commit/3e3ae16f11d2193ae77db11d8bd19ec711f8b679))
34
- - **graphing:** increase stroke width and improve pointer event handling for lines ([58e1b47](https://github.com/pie-framework/pie-lib/commit/58e1b476cccb43c2db7e685119a3268fce21808c))
35
- - **graphing:** prevent new marks creation on existing points/lines during click events PIE-27 ([6c73a8e](https://github.com/pie-framework/pie-lib/commit/6c73a8e8317f3302c6d54dd9890c1d5a9fb02305))
36
- - **graphing:** restore disabled/correctness styling on Line tool PIE-425 ([de26993](https://github.com/pie-framework/pie-lib/commit/de26993e35aa46437af9f6f9db5126218890dcf7))
37
- - **graphing:** revert to previous disabled colors PD-5510 ([e50a991](https://github.com/pie-framework/pie-lib/commit/e50a991aaa20f134d338a3f27d6d46d68db02a57))
38
- - unapplied padding PD-5450 ([5d92076](https://github.com/pie-framework/pie-lib/commit/5d92076e57b1106a9bcb746da97bf105427e77f5))
39
-
40
- ## [4.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@4.0.1...@pie-lib/graphing@4.0.2) (2026-05-04)
41
-
42
- ### Bug Fixes
43
-
44
- - **graphing:** defer focus call to ensure re-render completion PIE-520 ([3e3ae16](https://github.com/pie-framework/pie-lib/commit/3e3ae16f11d2193ae77db11d8bd19ec711f8b679))
45
-
46
- ## [4.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@4.0.0...@pie-lib/graphing@4.0.1) (2026-04-28)
47
-
48
- **Note:** Version bump only for package @pie-lib/graphing
49
-
50
- # [3.2.0-next.38](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.37...@pie-lib/graphing@3.2.0-next.38) (2026-04-24)
51
-
52
- ### Bug Fixes
53
-
54
- - enhance drag handling and prevent click interference in draggable components. fix auto input label PIE-428 ([cc06766](https://github.com/pie-framework/pie-lib/commit/cc06766fab6960356f3e7f8975da1f12f3358a9e))
55
-
56
- # [3.2.0-next.37](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.36...@pie-lib/graphing@3.2.0-next.37) (2026-04-24)
57
-
58
- ### Bug Fixes
59
-
60
- - ensure onClick is called for existing mark points/lines and does not interfere with drag PIE-426 PIE-427 ([1cb4f00](https://github.com/pie-framework/pie-lib/commit/1cb4f00118ff24ddffe4c1ee2a091daccafa4d15))
61
-
62
- # [3.2.0-next.36](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.35...@pie-lib/graphing@3.2.0-next.36) (2026-04-23)
63
-
64
- ### Bug Fixes
65
-
66
- - **graphing:** restore disabled/correctness styling on Line tool PIE-425 ([de26993](https://github.com/pie-framework/pie-lib/commit/de26993e35aa46437af9f6f9db5126218890dcf7))
67
-
68
- # [3.2.0-next.35](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.34...@pie-lib/graphing@3.2.0-next.35) (2026-04-17)
69
-
70
- **Note:** Version bump only for package @pie-lib/graphing
71
-
72
- # [3.2.0-next.34](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.33...@pie-lib/graphing@3.2.0-next.34) (2026-04-16)
73
-
74
- **Note:** Version bump only for package @pie-lib/graphing
75
-
76
- # [3.2.0-next.33](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.32...@pie-lib/graphing@3.2.0-next.33) (2026-04-16)
77
-
78
- **Note:** Version bump only for package @pie-lib/graphing
79
-
80
- # [3.2.0-next.32](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.31...@pie-lib/graphing@3.2.0-next.32) (2026-04-16)
81
-
82
- **Note:** Version bump only for package @pie-lib/graphing
83
-
84
- # [3.2.0-next.31](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.30...@pie-lib/graphing@3.2.0-next.31) (2026-04-15)
85
-
86
- **Note:** Version bump only for package @pie-lib/graphing
87
-
88
- # [3.2.0-next.30](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.29...@pie-lib/graphing@3.2.0-next.30) (2026-04-15)
89
-
90
- **Note:** Version bump only for package @pie-lib/graphing
91
-
92
- # [3.2.0-next.29](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.28...@pie-lib/graphing@3.2.0-next.29) (2026-04-14)
93
-
94
- **Note:** Version bump only for package @pie-lib/graphing
95
-
96
- # [3.2.0-next.28](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.27...@pie-lib/graphing@3.2.0-next.28) (2026-04-13)
97
-
98
- **Note:** Version bump only for package @pie-lib/graphing
99
-
100
- # [3.2.0-next.27](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.26...@pie-lib/graphing@3.2.0-next.27) (2026-04-09)
101
-
102
- **Note:** Version bump only for package @pie-lib/graphing
103
-
104
- # [3.2.0-next.26](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.25...@pie-lib/graphing@3.2.0-next.26) (2026-04-09)
105
-
106
- **Note:** Version bump only for package @pie-lib/graphing
107
-
108
- # [3.2.0-next.25](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.24...@pie-lib/graphing@3.2.0-next.25) (2026-04-08)
109
-
110
- **Note:** Version bump only for package @pie-lib/graphing
111
-
112
- # [3.2.0-next.24](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.23...@pie-lib/graphing@3.2.0-next.24) (2026-04-07)
113
-
114
- **Note:** Version bump only for package @pie-lib/graphing
115
-
116
- # [3.2.0-next.23](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.22...@pie-lib/graphing@3.2.0-next.23) (2026-04-06)
117
-
118
- ### Bug Fixes
119
-
120
- - **graphing:** prevent new marks creation on existing points/lines during click events PIE-27 ([6c73a8e](https://github.com/pie-framework/pie-lib/commit/6c73a8e8317f3302c6d54dd9890c1d5a9fb02305))
121
-
122
- # [3.2.0-next.22](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.21...@pie-lib/graphing@3.2.0-next.22) (2026-04-03)
123
-
124
- ### Bug Fixes
125
-
126
- - **graphing/plot:** improve drag handling to prevent misidentifying clicks as drags PD-5598 ([40a65a3](https://github.com/pie-framework/pie-lib/commit/40a65a312ec06227309fceac848bb8c7a266b1bb))
127
- - **graphing:** increase stroke width and improve pointer event handling for lines ([58e1b47](https://github.com/pie-framework/pie-lib/commit/58e1b476cccb43c2db7e685119a3268fce21808c))
128
- - unapplied padding PD-5450 ([5d92076](https://github.com/pie-framework/pie-lib/commit/5d92076e57b1106a9bcb746da97bf105427e77f5))
129
-
130
- # [3.2.0-next.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.20...@pie-lib/graphing@3.2.0-next.21) (2026-03-31)
131
-
132
- **Note:** Version bump only for package @pie-lib/graphing
133
-
134
- # [3.2.0-next.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.19...@pie-lib/graphing@3.2.0-next.20) (2026-03-25)
135
-
136
- ### Bug Fixes
137
-
138
- - **graphing:** adjust axis label PD-5595 ([f462a1f](https://github.com/pie-framework/pie-lib/commit/f462a1f5563a6bb18443091c16d75064f2b31bad))
139
-
140
- # [3.2.0-next.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.18...@pie-lib/graphing@3.2.0-next.19) (2026-03-18)
141
-
142
- **Note:** Version bump only for package @pie-lib/graphing
143
-
144
- # [3.2.0-next.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.17...@pie-lib/graphing@3.2.0-next.18) (2026-03-18)
145
-
146
- **Note:** Version bump only for package @pie-lib/graphing
147
-
148
- # [3.2.0-next.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.16...@pie-lib/graphing@3.2.0-next.17) (2026-03-18)
149
-
150
- ### Bug Fixes
151
-
152
- - **graphing:** color changes for graph buttons PD-5590 ([1053f44](https://github.com/pie-framework/pie-lib/commit/1053f44cd10521bf5e3431ac071fb3f18e97f467))
153
- - **graphing:** revert to previous disabled colors PD-5510 ([e50a991](https://github.com/pie-framework/pie-lib/commit/e50a991aaa20f134d338a3f27d6d46d68db02a57))
154
-
155
- # [3.2.0-next.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.15...@pie-lib/graphing@3.2.0-next.16) (2026-03-11)
156
-
157
- **Note:** Version bump only for package @pie-lib/graphing
158
-
159
- # [3.2.0-next.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.14...@pie-lib/graphing@3.2.0-next.15) (2026-03-11)
160
-
161
- **Note:** Version bump only for package @pie-lib/graphing
162
-
163
- # [3.2.0-next.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.13...@pie-lib/graphing@3.2.0-next.14) (2026-03-09)
164
-
165
- **Note:** Version bump only for package @pie-lib/graphing
166
-
167
- # [3.2.0-next.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.12...@pie-lib/graphing@3.2.0-next.13) (2026-03-06)
168
-
169
- **Note:** Version bump only for package @pie-lib/graphing
170
-
171
- # [3.2.0-next.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.11...@pie-lib/graphing@3.2.0-next.12) (2026-03-04)
172
-
173
- **Note:** Version bump only for package @pie-lib/graphing
174
-
175
- # [3.2.0-next.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.9...@pie-lib/graphing@3.2.0-next.11) (2026-02-26)
176
-
177
- **Note:** Version bump only for package @pie-lib/graphing
178
-
179
- # [3.2.0-next.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.8...@pie-lib/graphing@3.2.0-next.9) (2026-02-25)
180
-
181
- **Note:** Version bump only for package @pie-lib/graphing
182
-
183
- # [3.2.0-next.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.7...@pie-lib/graphing@3.2.0-next.8) (2026-02-25)
184
-
185
- ### Bug Fixes
186
-
187
- - **deps:** update [@pie-lib](https://github.com/pie-lib) dependencies to published versions ([134fbdc](https://github.com/pie-framework/pie-lib/commit/134fbdc90c6a15f89a736340578d70fb80a983b3))
188
-
189
- # [3.2.0-next.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.6...@pie-lib/graphing@3.2.0-next.7) (2026-02-25)
190
-
191
- **Note:** Version bump only for package @pie-lib/graphing
192
-
193
- # [3.2.0-next.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.5...@pie-lib/graphing@3.2.0-next.6) (2026-02-25)
194
-
195
- **Note:** Version bump only for package @pie-lib/graphing
196
-
197
- # [3.2.0-next.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.4...@pie-lib/graphing@3.2.0-next.5) (2026-02-25)
198
-
199
- **Note:** Version bump only for package @pie-lib/graphing
200
-
201
- # [3.2.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.3...@pie-lib/graphing@3.2.0-next.4) (2026-02-24)
202
-
203
- **Note:** Version bump only for package @pie-lib/graphing
204
-
205
- # [3.2.0-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.2.0-next.1...@pie-lib/graphing@3.2.0-next.3) (2026-02-24)
206
-
207
- ### Bug Fixes
208
-
209
- - 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))
210
-
211
- # [3.1.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.1.0-next.2...@pie-lib/graphing@3.1.0-next.4) (2026-01-27)
212
-
213
- **Note:** Version bump only for package @pie-lib/graphing
214
-
215
- # [3.1.0-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@3.1.0-next.1...@pie-lib/graphing@3.1.0-next.2) (2026-01-26)
216
-
217
- **Note:** Version bump only for package @pie-lib/graphing
218
-
219
- # [3.1.0-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.34.2...@pie-lib/graphing@3.1.0-next.1) (2026-01-26)
220
-
221
- ### Bug Fixes
222
-
223
- - 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))
224
- - remove carret, point to specific libs version ([09939a5](https://github.com/pie-framework/pie-lib/commit/09939a5aca19d7dda03d62c93d4d524f98dd69da))
225
- - remove exports and publish ([#2068](https://github.com/pie-framework/pie-lib/issues/2068)) ([60a96cd](https://github.com/pie-framework/pie-lib/commit/60a96cde0ec65f6b1cac0ae329aa33a0abc50d05))
226
- - update graphing components - styling and correctness handling PD-5258 ([7f1d3ba](https://github.com/pie-framework/pie-lib/commit/7f1d3bade7271c8f95bb9a67352fc9a52888ffda))
227
- - updated tip-tap with mui instead of material-ui [PD-5141] ([880d3ab](https://github.com/pie-framework/pie-lib/commit/880d3ab1d63aa12c7e975c882f50624200565737))
228
- - use fixed lib deps ([de7c64d](https://github.com/pie-framework/pie-lib/commit/de7c64d14f13259fe44d47405e4421baef21e24e))
229
-
230
- ### Features
231
-
232
- - bump react and react-dom ([01dc19e](https://github.com/pie-framework/pie-lib/commit/01dc19e88bbc8d372c561d1511df1a82937d45af))
233
- - drag library update in graphing packages ([6638af8](https://github.com/pie-framework/pie-lib/commit/6638af83235a13b983b95587ba042bbdff61c4df))
234
- - migrate from [@vx](https://github.com/vx) library to [@visx](https://github.com/visx) ([135bf60](https://github.com/pie-framework/pie-lib/commit/135bf605161bfbd0070ac181892df20931691ce3))
235
- - packages/graphing mui update PD-5268 ([503e9fd](https://github.com/pie-framework/pie-lib/commit/503e9fd47f230503ca8133eb8a61cacc727bb0fe))
236
- - sync latest changes from dev ([c936e9c](https://github.com/pie-framework/pie-lib/commit/c936e9c7f9e095e7d9b9805ac2bf72bd271e05f1))
237
-
238
- # [3.0.0-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.34.3-next.0...@pie-lib/graphing@3.0.0-next.0) (2026-01-19)
239
-
240
- **Note:** Version bump only for package @pie-lib/graphing
241
-
242
- ## [2.34.3-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.48.0-mui-update.0...@pie-lib/graphing@2.34.3-next.0) (2026-01-19)
243
-
244
- **Note:** Version bump only for package @pie-lib/graphing
245
-
246
- ## [2.34.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.34.1...@pie-lib/graphing@2.34.2) (2025-11-27)
247
-
248
- **Note:** Version bump only for package @pie-lib/graphing
249
-
250
- ## [2.34.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.30.2...@pie-lib/graphing@2.34.1) (2025-10-22)
251
-
252
- **Note:** Version bump only for package @pie-lib/graphing
253
-
254
- # [2.34.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.33.0...@pie-lib/graphing@2.34.0) (2025-10-16)
255
-
256
- **Note:** Version bump only for package @pie-lib/graphing
257
-
258
- # [2.33.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.30.0...@pie-lib/graphing@2.33.0) (2025-10-16)
259
-
260
- **Note:** Version bump only for package @pie-lib/graphing
261
-
262
- # [2.32.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.30.0...@pie-lib/graphing@2.32.0) (2025-10-16)
263
-
264
- **Note:** Version bump only for package @pie-lib/graphing
265
-
266
- # [2.31.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.30.0...@pie-lib/graphing@2.31.0) (2025-10-16)
267
-
268
- **Note:** Version bump only for package @pie-lib/graphing
269
-
270
- ## [2.30.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.30.1...@pie-lib/graphing@2.30.2) (2025-10-14)
271
-
272
- **Note:** Version bump only for package @pie-lib/graphing
273
-
274
- ## [2.30.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.30.0...@pie-lib/graphing@2.30.1) (2025-10-09)
275
-
276
- **Note:** Version bump only for package @pie-lib/graphing
277
-
278
- # [2.30.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.30.0) (2025-09-25)
279
-
280
- ### Bug Fixes
281
-
282
- - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
283
-
284
- ### Features
285
-
286
- - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
287
-
288
- # [2.29.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.28.0...@pie-lib/graphing@2.29.0) (2025-09-18)
289
-
290
- **Note:** Version bump only for package @pie-lib/graphing
291
-
292
- # [2.28.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.27.0...@pie-lib/graphing@2.28.0) (2025-09-18)
293
-
294
- **Note:** Version bump only for package @pie-lib/graphing
295
-
296
- # [2.27.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.27.0) (2025-09-18)
297
-
298
- ### Bug Fixes
299
-
300
- - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
301
-
302
- ### Features
303
-
304
- - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
305
-
306
- # [2.26.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.25.0...@pie-lib/graphing@2.26.0) (2025-09-17)
307
-
308
- **Note:** Version bump only for package @pie-lib/graphing
309
-
310
- # [2.25.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.24.0...@pie-lib/graphing@2.25.0) (2025-09-17)
311
-
312
- **Note:** Version bump only for package @pie-lib/graphing
313
-
314
- # [2.24.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.23.1...@pie-lib/graphing@2.24.0) (2025-09-17)
315
-
316
- **Note:** Version bump only for package @pie-lib/graphing
317
-
318
- ## [2.23.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.23.1) (2025-08-11)
319
-
320
- ### Bug Fixes
321
-
322
- - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
323
-
324
- ### Features
325
-
326
- - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
327
-
328
- # [2.23.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.23.0) (2025-08-07)
329
-
330
- ### Features
331
-
332
- - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
333
-
334
- # [2.22.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.22.0) (2025-07-31)
335
-
336
- **Note:** Version bump only for package @pie-lib/graphing
337
-
338
- # [2.21.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.21.0) (2025-07-31)
339
-
340
- **Note:** Version bump only for package @pie-lib/graphing
341
-
342
- # [2.20.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.20.0) (2025-07-31)
343
-
344
- **Note:** Version bump only for package @pie-lib/graphing
345
-
346
- # [2.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.19.0) (2025-07-31)
347
-
348
- **Note:** Version bump only for package @pie-lib/graphing
349
-
350
- # [2.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.18.0) (2025-07-31)
351
-
352
- **Note:** Version bump only for package @pie-lib/graphing
353
-
354
- # [2.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.17.0) (2025-07-31)
355
-
356
- **Note:** Version bump only for package @pie-lib/graphing
357
-
358
- # [2.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.19.0) (2025-07-31)
359
-
360
- **Note:** Version bump only for package @pie-lib/graphing
361
-
362
- # [2.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.18.0) (2025-07-31)
363
-
364
- **Note:** Version bump only for package @pie-lib/graphing
365
-
366
- # [2.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.17.0) (2025-07-31)
367
-
368
- **Note:** Version bump only for package @pie-lib/graphing
369
-
370
- # [2.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.18.0) (2025-07-31)
371
-
372
- **Note:** Version bump only for package @pie-lib/graphing
373
-
374
- # [2.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.17.0) (2025-07-31)
375
-
376
- **Note:** Version bump only for package @pie-lib/graphing
377
-
378
- # [2.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.16.0) (2025-07-31)
379
-
380
- **Note:** Version bump only for package @pie-lib/graphing
381
-
382
- # [2.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.16.0) (2025-07-31)
383
-
384
- **Note:** Version bump only for package @pie-lib/graphing
385
-
386
- # [2.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.17.0) (2025-07-31)
387
-
388
- **Note:** Version bump only for package @pie-lib/graphing
389
-
390
- # [2.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.16.0) (2025-07-31)
391
-
392
- **Note:** Version bump only for package @pie-lib/graphing
393
-
394
- # [2.15.0-beta.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.8) (2025-07-25)
395
-
396
- **Note:** Version bump only for package @pie-lib/graphing
397
-
398
- # [2.15.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.7) (2025-07-25)
399
-
400
- **Note:** Version bump only for package @pie-lib/graphing
401
-
402
- # [2.15.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.7) (2025-07-25)
403
-
404
- **Note:** Version bump only for package @pie-lib/graphing
405
-
406
- # [2.15.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.6) (2025-07-25)
407
-
408
- **Note:** Version bump only for package @pie-lib/graphing
409
-
410
- # [2.15.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.6) (2025-07-25)
411
-
412
- **Note:** Version bump only for package @pie-lib/graphing
413
-
414
- # [2.15.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.5) (2025-07-25)
415
-
416
- **Note:** Version bump only for package @pie-lib/graphing
417
-
418
- # [2.15.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.5) (2025-07-25)
419
-
420
- **Note:** Version bump only for package @pie-lib/graphing
421
-
422
- # [2.15.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.4) (2025-07-25)
423
-
424
- **Note:** Version bump only for package @pie-lib/graphing
425
-
426
- # [2.15.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.3) (2025-07-25)
427
-
428
- **Note:** Version bump only for package @pie-lib/graphing
429
-
430
- # [2.15.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.4) (2025-07-23)
431
-
432
- **Note:** Version bump only for package @pie-lib/graphing
433
-
434
- # [2.15.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.3) (2025-07-23)
435
-
436
- **Note:** Version bump only for package @pie-lib/graphing
437
-
438
- # [2.15.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.3) (2025-07-20)
439
-
440
- **Note:** Version bump only for package @pie-lib/graphing
441
-
442
- # [2.15.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.2) (2025-07-20)
443
-
444
- **Note:** Version bump only for package @pie-lib/graphing
445
-
446
- # [2.15.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.1) (2025-07-20)
447
-
448
- **Note:** Version bump only for package @pie-lib/graphing
449
-
450
- # [2.15.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.2) (2025-07-20)
451
-
452
- **Note:** Version bump only for package @pie-lib/graphing
453
-
454
- # [2.15.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.1) (2025-07-20)
455
-
456
- **Note:** Version bump only for package @pie-lib/graphing
457
-
458
- # [2.15.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.1) (2025-07-20)
459
-
460
- **Note:** Version bump only for package @pie-lib/graphing
461
-
462
- # [2.15.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.0) (2025-07-20)
463
-
464
- **Note:** Version bump only for package @pie-lib/graphing
465
-
466
- # [2.16.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.16.0-beta.0) (2025-07-15)
467
-
468
- **Note:** Version bump only for package @pie-lib/graphing
469
-
470
- # [2.15.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.21...@pie-lib/graphing@2.15.0-beta.0) (2025-07-15)
471
-
472
- **Note:** Version bump only for package @pie-lib/graphing
473
-
474
- ## [2.14.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.20...@pie-lib/graphing@2.14.21) (2023-10-16)
475
-
476
- **Note:** Version bump only for package @pie-lib/graphing
477
-
478
- ## [2.14.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.19...@pie-lib/graphing@2.14.20) (2023-10-03)
479
-
480
- **Note:** Version bump only for package @pie-lib/graphing
481
-
482
- ## [2.14.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.18...@pie-lib/graphing@2.14.19) (2023-10-01)
483
-
484
- **Note:** Version bump only for package @pie-lib/graphing
485
-
486
- ## [2.14.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.17...@pie-lib/graphing@2.14.18) (2023-09-28)
487
-
488
- ### Bug Fixes
489
-
490
- - **graphing:** use red color to indicate a missing graph object PD-3209 ([250b350](https://github.com/pie-framework/pie-lib/commit/250b3509e7f10889fbbf39fd5d0dae4d0a5cf507))
491
-
492
- ## [2.14.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.16...@pie-lib/graphing@2.14.17) (2023-09-27)
493
-
494
- **Note:** Version bump only for package @pie-lib/graphing
495
-
496
- ## [2.14.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.15...@pie-lib/graphing@2.14.16) (2023-09-27)
497
-
498
- **Note:** Version bump only for package @pie-lib/graphing
499
-
500
- ## [2.14.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.14...@pie-lib/graphing@2.14.15) (2023-09-27)
501
-
502
- **Note:** Version bump only for package @pie-lib/graphing
503
-
504
- ## [2.14.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.13...@pie-lib/graphing@2.14.14) (2023-09-25)
505
-
506
- **Note:** Version bump only for package @pie-lib/graphing
507
-
508
- ## [2.14.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.12...@pie-lib/graphing@2.14.13) (2023-09-20)
509
-
510
- **Note:** Version bump only for package @pie-lib/graphing
511
-
512
- ## [2.14.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.11...@pie-lib/graphing@2.14.12) (2023-09-20)
513
-
514
- **Note:** Version bump only for package @pie-lib/graphing
515
-
516
- ## [2.14.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.10...@pie-lib/graphing@2.14.11) (2023-09-18)
517
-
518
- **Note:** Version bump only for package @pie-lib/graphing
519
-
520
- ## [2.14.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.9...@pie-lib/graphing@2.14.10) (2023-09-14)
521
-
522
- **Note:** Version bump only for package @pie-lib/graphing
523
-
524
- ## [2.14.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.8...@pie-lib/graphing@2.14.9) (2023-08-29)
525
-
526
- ### Bug Fixes
527
-
528
- - **graphing:** adjust ploting position to match with the gridlines PD-3005 ([23c5727](https://github.com/pie-framework/pie-lib/commit/23c5727124309b6723517bbacbecd1c938858e6a))
529
-
530
- ## [2.14.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.7...@pie-lib/graphing@2.14.8) (2023-08-21)
531
-
532
- **Note:** Version bump only for package @pie-lib/graphing
533
-
534
- ## [2.14.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.6...@pie-lib/graphing@2.14.7) (2023-08-15)
535
-
536
- **Note:** Version bump only for package @pie-lib/graphing
537
-
538
- ## [2.14.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.5...@pie-lib/graphing@2.14.6) (2023-08-07)
539
-
540
- **Note:** Version bump only for package @pie-lib/graphing
541
-
542
- ## [2.14.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.4...@pie-lib/graphing@2.14.5) (2023-07-31)
543
-
544
- ### Bug Fixes
545
-
546
- - **graphing:** remove custom hover styling for action buttons PD-2059 ([4aa1e86](https://github.com/pie-framework/pie-lib/commit/4aa1e8607a8156228a11c0d30158cd50dacee294))
547
-
548
- ## [2.14.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.3...@pie-lib/graphing@2.14.4) (2023-07-24)
549
-
550
- **Note:** Version bump only for package @pie-lib/graphing
551
-
552
- ## [2.14.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.2...@pie-lib/graphing@2.14.3) (2023-06-24)
553
-
554
- **Note:** Version bump only for package @pie-lib/graphing
555
-
556
- ## [2.14.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.1...@pie-lib/graphing@2.14.2) (2023-06-13)
557
-
558
- **Note:** Version bump only for package @pie-lib/graphing
559
-
560
- ## [2.14.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.14.0...@pie-lib/graphing@2.14.1) (2023-06-12)
561
-
562
- **Note:** Version bump only for package @pie-lib/graphing
563
-
564
- # [2.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.13.4...@pie-lib/graphing@2.14.0) (2023-06-12)
565
-
566
- ### Features
567
-
568
- - started adding new mathMLOptions property PD-2150 ([175b45e](https://github.com/pie-framework/pie-lib/commit/175b45ecd98e9cc703bd7056b930f299a4345c75))
569
-
570
- ## [2.13.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.13.3...@pie-lib/graphing@2.13.4) (2023-06-12)
571
-
572
- **Note:** Version bump only for package @pie-lib/graphing
573
-
574
- ## [2.13.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.13.2...@pie-lib/graphing@2.13.3) (2023-06-07)
575
-
576
- ### Bug Fixes
577
-
578
- - prettier ([7ab7f22](https://github.com/pie-framework/pie-lib/commit/7ab7f22ac1cd0e5511036421d832ea2fbe5dd4f6))
579
- - switching tool not working because it was using the button's text content, which doesn't work with translations ([0006efb](https://github.com/pie-framework/pie-lib/commit/0006efb12632b016d01ee327cc36a45b91cfff4b))
580
-
581
- ## [2.13.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.13.1...@pie-lib/graphing@2.13.2) (2023-06-06)
582
-
583
- ### Bug Fixes
584
-
585
- - update graphing's usage of translator after breaking changes in the translator package ([d3081d2](https://github.com/pie-framework/pie-lib/commit/d3081d2fc6e27f3579d52e2fe5a7361aaf4b7b39))
586
-
587
- ## [2.13.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.13.0...@pie-lib/graphing@2.13.1) (2023-06-06)
588
-
589
- **Note:** Version bump only for package @pie-lib/graphing
590
-
591
- # [2.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.30...@pie-lib/graphing@2.13.0) (2023-06-06)
592
-
593
- ### Features
594
-
595
- - added translator package for graphing PD-1208 ([99d1ad7](https://github.com/pie-framework/pie-lib/commit/99d1ad796707d2d613c4776df7d06e94c33fe07c))
596
-
597
- ## [2.12.30](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.29...@pie-lib/graphing@2.12.30) (2023-06-05)
598
-
599
- **Note:** Version bump only for package @pie-lib/graphing
600
-
601
- ## [2.12.29](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.28...@pie-lib/graphing@2.12.29) (2023-05-18)
602
-
603
- ### Bug Fixes
604
-
605
- - **graphing:** undo-redo issues ([38d5d2b](https://github.com/pie-framework/pie-lib/commit/38d5d2b4d2098d80b2d288874e0a8050be65caf4))
606
-
607
- ## [2.12.28](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.27...@pie-lib/graphing@2.12.28) (2023-05-12)
608
-
609
- ### Bug Fixes
610
-
611
- - **graphing:** add new style for missing objects - PD-1026 ([4dba6c2](https://github.com/pie-framework/pie-lib/commit/4dba6c2dcafbf9f250f1379672cba63e5c805b10))
612
- - **graphing:** update snapshot ([b237367](https://github.com/pie-framework/pie-lib/commit/b237367cac6cef2af22217b9f5b07dfa0f3291a0))
613
-
614
- ## [2.12.27](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.26...@pie-lib/graphing@2.12.27) (2023-05-01)
615
-
616
- ### Bug Fixes
617
-
618
- - **graphing:** remove shouldComponentUpdate from polygon PD-2753 ([f90524f](https://github.com/pie-framework/pie-lib/commit/f90524f96c868393ce445b8daaa833f85ae17c50))
619
-
620
- ## [2.12.26](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.25...@pie-lib/graphing@2.12.26) (2023-04-25)
621
-
622
- ### Bug Fixes
623
-
624
- - **graphing:** revert lint fix ([06de9cb](https://github.com/pie-framework/pie-lib/commit/06de9cb8e461cec90996de64cc9e79e2ab80882c))
625
-
626
- ## [2.12.25](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.24...@pie-lib/graphing@2.12.25) (2023-04-25)
627
-
628
- **Note:** Version bump only for package @pie-lib/graphing
629
-
630
- ## [2.12.24](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.23...@pie-lib/graphing@2.12.24) (2023-04-19)
631
-
632
- ### Bug Fixes
633
-
634
- - **eslint:** fix eslint problems-PD-2732 ([9eb9976](https://github.com/pie-framework/pie-lib/commit/9eb9976749753da86e1057a07bd2cfc65bf64ae4))
635
-
636
- ## [2.12.23](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.22...@pie-lib/graphing@2.12.23) (2023-04-14)
637
-
638
- **Note:** Version bump only for package @pie-lib/graphing
639
-
640
- ## [2.12.22](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.21...@pie-lib/graphing@2.12.22) (2023-04-14)
641
-
642
- **Note:** Version bump only for package @pie-lib/graphing
643
-
644
- ## [2.12.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.20...@pie-lib/graphing@2.12.21) (2023-04-07)
645
-
646
- **Note:** Version bump only for package @pie-lib/graphing
647
-
648
- ## [2.12.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.19...@pie-lib/graphing@2.12.20) (2023-04-03)
649
-
650
- **Note:** Version bump only for package @pie-lib/graphing
651
-
652
- ## [2.12.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.18...@pie-lib/graphing@2.12.19) (2023-03-27)
653
-
654
- ### Bug Fixes
655
-
656
- - **graphing:** create method to generate randomId and updated tests-PD-2670 ([3e0790a](https://github.com/pie-framework/pie-lib/commit/3e0790ad3f233248fac0cfff5ba10f298cd339cb))
657
-
658
- ## [2.12.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.17...@pie-lib/graphing@2.12.18) (2023-03-20)
659
-
660
- ### Bug Fixes
661
-
662
- - **graphing:** avoid components to have same id - PD-2670 ([94fdaaa](https://github.com/pie-framework/pie-lib/commit/94fdaaaec65530e3217de0e4e3e98a9ef9bcd47f))
663
-
664
- ## [2.12.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.16...@pie-lib/graphing@2.12.17) (2023-03-13)
665
-
666
- ### Bug Fixes
667
-
668
- - **graphing:** fix arrow heads PD-2653 ([4d4e625](https://github.com/pie-framework/pie-lib/commit/4d4e6255e3e874d90813e0bb787180fd3e8e6091))
669
- - **graphing:** set diff between min and max to 0.05: PD-2673 ([e8862b6](https://github.com/pie-framework/pie-lib/commit/e8862b6f2f41fbfe431630b386ba999a3095cb0a))
670
-
671
- ## [2.12.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.15...@pie-lib/graphing@2.12.16) (2023-03-06)
672
-
673
- ### Bug Fixes
674
-
675
- - **graphing:** fix undo and redo not working in gather PD-2677 ([5e4eea3](https://github.com/pie-framework/pie-lib/commit/5e4eea3173244ce0fc99cf8aa468fe34d5950090))
676
- - **graphing:** replaced horizontal and vertical lines values between them PD-2674 ([ee37a40](https://github.com/pie-framework/pie-lib/commit/ee37a405d52cfc7db1368c84ca7ccd611c67aca5))
677
- - **graphing:** replaced horizontal and vertical lines values between them PD-2674 ([7768cb2](https://github.com/pie-framework/pie-lib/commit/7768cb2cd76d14334ab3f5f7705408e94aa6145e))
678
-
679
- ## [2.12.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.13...@pie-lib/graphing@2.12.15) (2023-02-28)
680
-
681
- ### Bug Fixes
682
-
683
- - version bump ([d9280a9](https://github.com/pie-framework/pie-lib/commit/d9280a9aeddab459b6d84ecdbeb62814e1eee965))
684
-
685
- ## [2.12.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.12...@pie-lib/graphing@2.12.13) (2023-02-28)
686
-
687
- **Note:** Version bump only for package @pie-lib/graphing
688
-
689
- ## [2.12.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.10...@pie-lib/graphing@2.12.12) (2023-01-31)
690
-
691
- **Note:** Version bump only for package @pie-lib/graphing
692
-
693
- ## [2.12.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.9...@pie-lib/graphing@2.12.10) (2023-01-31)
694
-
695
- **Note:** Version bump only for package @pie-lib/graphing
696
-
697
- ## [2.12.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.8...@pie-lib/graphing@2.12.9) (2023-01-31)
698
-
699
- **Note:** Version bump only for package @pie-lib/graphing
700
-
701
- ## [2.12.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.7...@pie-lib/graphing@2.12.8) (2023-01-31)
702
-
703
- **Note:** Version bump only for package @pie-lib/graphing
704
-
705
- ## [2.12.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.5...@pie-lib/graphing@2.12.7) (2023-01-31)
706
-
707
- **Note:** Version bump only for package @pie-lib/graphing
708
-
709
- ## [2.12.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.3...@pie-lib/graphing@2.12.5) (2023-01-31)
710
-
711
- **Note:** Version bump only for package @pie-lib/graphing
712
-
713
- ## [2.12.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.1...@pie-lib/graphing@2.12.3) (2023-01-31)
714
-
715
- **Note:** Version bump only for package @pie-lib/graphing
716
-
717
- ## [2.12.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.12.0...@pie-lib/graphing@2.12.1) (2023-01-31)
718
-
719
- **Note:** Version bump only for package @pie-lib/graphing
720
-
721
- # [2.12.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.11.9...@pie-lib/graphing@2.12.0) (2023-01-16)
722
-
723
- ### Bug Fixes
724
-
725
- - **graphing:** add background for objects labels PD-2061 ([f27ba7a](https://github.com/pie-framework/pie-lib/commit/f27ba7a1f8f476f9b9806505d1b3271057793921))
726
- - **graphing:** fix calculation for mark-label coordinates, fix and update tests ([84bedd2](https://github.com/pie-framework/pie-lib/commit/84bedd2139cd2b5578b951ccb32f4f29917ff6e1))
727
- - **graphing:** fix calculation for mark-label coordinates, fix and update tests ([a83213d](https://github.com/pie-framework/pie-lib/commit/a83213d26d28ca41c2e9575f619adb8006b4e5ee))
728
- - **graphing:** fix calculation for mark-label coordinates, fix and update tests ([09c1445](https://github.com/pie-framework/pie-lib/commit/09c1445e7b60a2ad10120a78e3f54acdfc162cbe))
729
- - **graphing:** fix mark labels position for touch devices ([12a2362](https://github.com/pie-framework/pie-lib/commit/12a2362f013b677ef912a75f212e68af1399af5e))
730
- - **graphing:** fix style for points, refactor ([5d5893b](https://github.com/pie-framework/pie-lib/commit/5d5893bbb993081b79ad712ed362d350574853ed))
731
- - **graphing:** make the base point tappable on touch devices ([d633d64](https://github.com/pie-framework/pie-lib/commit/d633d64ec1b5dde39513d49b6697f3bc12d0d994))
732
- - **graphing:** make the label tool responsive wip ([0694f9c](https://github.com/pie-framework/pie-lib/commit/0694f9c2816c58f16c52c4deeba04da2d55d3a54))
733
- - **graphing:** try to make the point tappable on touch devices ([7cfb116](https://github.com/pie-framework/pie-lib/commit/7cfb1165496b60b392c90585038f2d3f30c5e261))
734
-
735
- ### Features
736
-
737
- - added theme naming support + cleanup ([72d562d](https://github.com/pie-framework/pie-lib/commit/72d562d509e5d31d883690eb455a9afea6bf54fc))
738
-
739
- ## [2.11.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.11.8...@pie-lib/graphing@2.11.9) (2023-01-04)
740
-
741
- **Note:** Version bump only for package @pie-lib/graphing
742
-
743
- ## [2.11.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.11.7...@pie-lib/graphing@2.11.8) (2023-01-03)
744
-
745
- **Note:** Version bump only for package @pie-lib/graphing
746
-
747
- ## [2.11.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.11.6...@pie-lib/graphing@2.11.7) (2022-12-19)
748
-
749
- ### Bug Fixes
750
-
751
- - **garphing:** update model when polygon labels have changed PD-993 ([cb8e0a7](https://github.com/pie-framework/pie-lib/commit/cb8e0a75533a3944d81984d0775b3b79134265f2))
752
- - **graphing:** adjust clickable area for plotable shapes PD-1958 ([6396096](https://github.com/pie-framework/pie-lib/commit/63960962aea5db5fa6584e464e5478972db7feb8))
753
- - **graphing:** update graph store if marks are changed ([90d7176](https://github.com/pie-framework/pie-lib/commit/90d717675abc32788086edd02fcd96706b5a50f6))
754
-
755
- ## [2.11.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.11.5...@pie-lib/graphing@2.11.6) (2022-12-06)
756
-
757
- **Note:** Version bump only for package @pie-lib/graphing
758
-
759
- ## [2.11.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.11.4...@pie-lib/graphing@2.11.5) (2022-11-29)
760
-
761
- **Note:** Version bump only for package @pie-lib/graphing
762
-
763
- ## [2.11.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.11.3...@pie-lib/graphing@2.11.4) (2022-11-23)
764
-
765
- **Note:** Version bump only for package @pie-lib/graphing
766
-
767
- ## [2.11.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.11.2...@pie-lib/graphing@2.11.3) (2022-11-23)
768
-
769
- **Note:** Version bump only for package @pie-lib/graphing
770
-
771
- ## [2.11.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.11.1...@pie-lib/graphing@2.11.2) (2022-10-17)
772
-
773
- ### Bug Fixes
774
-
775
- - **graphing:** increase draggable zone for graphing base point for better interaction with touchscreen devices ([50fc498](https://github.com/pie-framework/pie-lib/commit/50fc49825c14bf2248e773b4cbaecb309a4fb814))
776
-
777
- ## [2.11.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.11.0...@pie-lib/graphing@2.11.1) (2022-09-29)
778
-
779
- **Note:** Version bump only for package @pie-lib/graphing
780
-
781
- # [2.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.10.3...@pie-lib/graphing@2.11.0) (2022-09-28)
782
-
783
- ### Bug Fixes
784
-
785
- - **editable-html, graphing:** Add support to remove scrollbar from editable-html and removed scrollbar from graphing labels PD-1968 ([d04a0d3](https://github.com/pie-framework/pie-lib/commit/d04a0d3bc66d4b861f60b24198301459c15bd151))
786
-
787
- ### Features
788
-
789
- - **graphing, plot:** moved graphing labels to plot package + fixed math input + added support for labels rotation PD-1962 ([a85ec39](https://github.com/pie-framework/pie-lib/commit/a85ec3911dd1f6bc89e4eb20a19ef8f957deebf1))
790
-
791
- ## [2.10.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.10.2...@pie-lib/graphing@2.10.3) (2022-09-14)
792
-
793
- **Note:** Version bump only for package @pie-lib/graphing
794
-
795
- ## [2.10.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.10.1...@pie-lib/graphing@2.10.2) (2022-08-30)
796
-
797
- **Note:** Version bump only for package @pie-lib/graphing
798
-
799
- ## [2.10.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.10.0...@pie-lib/graphing@2.10.1) (2022-08-29)
800
-
801
- ### Bug Fixes
802
-
803
- - **graphing:** fix errors that appear in IBX in console ([b07b7c7](https://github.com/pie-framework/pie-lib/commit/b07b7c718bef596b3963a1f9b626f12ff575a86a))
804
-
805
- # [2.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.9.1...@pie-lib/graphing@2.10.0) (2022-08-15)
806
-
807
- ### Features
808
-
809
- - **graphing, plot:** added pixel guide lines + ui improvements ([02ddff1](https://github.com/pie-framework/pie-lib/commit/02ddff1aed6a279b8a4ae1fcf100c766596c29c4))
810
-
811
- ## [2.9.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.9.0...@pie-lib/graphing@2.9.1) (2022-08-08)
812
-
813
- **Note:** Version bump only for package @pie-lib/graphing
814
-
815
- # [2.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.8.1...@pie-lib/graphing@2.9.0) (2022-08-01)
816
-
817
- ### Features
818
-
819
- - **graphing, editable-html, plot:** Added the ability to edit/center title and lables PD-1605 PD-1690 ([dd18f92](https://github.com/pie-framework/pie-lib/commit/dd18f92e19d8be98917cd4f19eb7211122d2b7fb))
820
-
821
- ## [2.8.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.8.0...@pie-lib/graphing@2.8.1) (2022-07-18)
822
-
823
- **Note:** Version bump only for package @pie-lib/graphing
824
-
825
- # [2.8.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.7.0...@pie-lib/graphing@2.8.0) (2022-07-18)
826
-
827
- ### Features
828
-
829
- - **graphing:** added drag and drop sorting for toolbar tools PD-1607 ([2463c86](https://github.com/pie-framework/pie-lib/commit/2463c86bf6ff42222e98e4344fc6c9fd040d9774))
830
-
831
- # [2.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.6.3...@pie-lib/graphing@2.7.0) (2022-06-27)
832
-
833
- ### Features
834
-
835
- - **graphing:** added collapsible panel for graph toolbar PD-1693 ([4268bb0](https://github.com/pie-framework/pie-lib/commit/4268bb06093d1fabf82d9f5c2d8fd81f9788a4fe))
836
- - **graphing:** Added default value for current drawing tool PD-1689 ([bc9b1b0](https://github.com/pie-framework/pie-lib/commit/bc9b1b00d64d50d138f3ab0991957d9fecaed17b))
837
- - **graphing:** Added the ability to control the fields displayed into Grid Setup PD-1688 ([1f0f3eb](https://github.com/pie-framework/pie-lib/commit/1f0f3eb58c5dcd923e2452a0071bf1de40535bb2))
838
- - added support for graph configuration constraints PD-1683 PD-1684 PD-1686 ([8da7426](https://github.com/pie-framework/pie-lib/commit/8da74260b28332b976fa1c50796e74679fd46a13))
839
- - created setup panel and added basic functionalities PD-1679 ([183eda1](https://github.com/pie-framework/pie-lib/commit/183eda10b2f4128cd831c5b27f14ebccb6b3e7b2))
840
-
841
- ## [2.6.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.6.2...@pie-lib/graphing@2.6.3) (2022-06-13)
842
-
843
- **Note:** Version bump only for package @pie-lib/graphing
844
-
845
- ## [2.6.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.6.1...@pie-lib/graphing@2.6.2) (2022-05-30)
846
-
847
- ### Bug Fixes
848
-
849
- - unable to load items locally ([17ab686](https://github.com/pie-framework/pie-lib/commit/17ab6864557288aef6ec1d9a130cb508e2591562))
850
-
851
- ## [2.6.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.6.0...@pie-lib/graphing@2.6.1) (2022-05-24)
852
-
853
- **Note:** Version bump only for package @pie-lib/graphing
854
-
855
- # [2.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.5.1...@pie-lib/graphing@2.6.0) (2022-05-10)
856
-
857
- ### Features
858
-
859
- - **graphing:** new design treatment for gridlines PD-1691 ([ee06081](https://github.com/pie-framework/pie-lib/commit/ee06081141cf343ed6767ef203a7629e6c873c5c))
860
- - **graphing, plot:** Added padding between labels and graph without changing the size of graph PD-1604 ([aa93191](https://github.com/pie-framework/pie-lib/commit/aa931910c56efddaf54d4586dc0730a9688e25e3))
861
-
862
- ## [2.5.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.5.0...@pie-lib/graphing@2.5.1) (2022-05-04)
863
-
864
- ### Bug Fixes
865
-
866
- - **graphing:** removed problematic componentDidUpdate ([9347554](https://github.com/pie-framework/pie-lib/commit/93475543422bbb7a62d82121751c2e10969904ec))
867
-
868
- # [2.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.17...@pie-lib/graphing@2.5.0) (2022-05-03)
869
-
870
- ### Features
871
-
872
- - **graphing:** updated store on model change PD-1608 ([a3744dd](https://github.com/pie-framework/pie-lib/commit/a3744dd74d90cca280b90657cbd558ce7ab9c288))
873
-
874
- ## [2.4.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.16...@pie-lib/graphing@2.4.17) (2022-04-28)
875
-
876
- **Note:** Version bump only for package @pie-lib/graphing
877
-
878
- ## [2.4.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.15...@pie-lib/graphing@2.4.16) (2022-03-22)
879
-
880
- ### Bug Fixes
881
-
882
- - Do not change object at address. Instead, create a clone. ([2b683d7](https://github.com/pie-framework/pie-lib/commit/2b683d76853bf057388e6a223671eef3a040dbbf))
883
-
884
- ## [2.4.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.14...@pie-lib/graphing@2.4.15) (2022-03-22)
885
-
886
- ### Bug Fixes
887
-
888
- - Force disable for background marks ([755cfbc](https://github.com/pie-framework/pie-lib/commit/755cfbcb0c878c8857be28aaeeff6e4a8d6b4e71))
889
-
890
- ## [2.4.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.13...@pie-lib/graphing@2.4.14) (2022-03-22)
891
-
892
- ### Bug Fixes
893
-
894
- - Apply different disable styles for background mark and when mark label is not in edit mode. ([a1657ec](https://github.com/pie-framework/pie-lib/commit/a1657ec7562c96bf760bbf936686816700a7d739))
895
-
896
- ## [2.4.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.12...@pie-lib/graphing@2.4.13) (2022-03-22)
897
-
898
- ### Bug Fixes
899
-
900
- - add UI indicator for disabled labels ([d274b3e](https://github.com/pie-framework/pie-lib/commit/d274b3eb024ab909a06d345bf17bc9f23e5d2db0))
901
- - disable labels for the background marks ([c43a269](https://github.com/pie-framework/pie-lib/commit/c43a26941016490b2687f98b2e02c934a96c02ac))
902
-
903
- ## [2.4.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.11...@pie-lib/graphing@2.4.12) (2022-03-21)
904
-
905
- ### Bug Fixes
906
-
907
- - **graphing:** Adjusted vector arrow orientation angle and fixed rendering issue PD-1602 ([0ebf305](https://github.com/pie-framework/pie-lib/commit/0ebf3059707c868145ef85a14c417cbe01f82491))
908
-
909
- ## [2.4.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.10...@pie-lib/graphing@2.4.11) (2022-03-21)
910
-
911
- **Note:** Version bump only for package @pie-lib/graphing
912
-
913
- ## [2.4.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.9...@pie-lib/graphing@2.4.10) (2022-03-07)
914
-
915
- ### Bug Fixes
916
-
917
- - **graphing:** Adjusted the thickness of the shapes when the distance between lines is too small PD-180 ([8ea20a6](https://github.com/pie-framework/pie-lib/commit/8ea20a61ea02d3e1084f3e10e645a76d580c39b5))
918
- - **graphing:** Extended the range and domain axes and also the line and ray endings PD-1509 ([97e43c6](https://github.com/pie-framework/pie-lib/commit/97e43c6ab0ab85dd314cff97fb84a85113ab39a0))
919
- - **graphing:** Increased the calculation accuracy and adjusted range labels PD-1596 ([7cc7570](https://github.com/pie-framework/pie-lib/commit/7cc75701fd759f7e7888e5cccc261978f6e036b0))
920
- - **graphing:** Should not be possible to plot duplicate/identical objects and should be able to choose a point from an existing object when defining a new object PD-1599 PD-1586 ([ac8502d](https://github.com/pie-framework/pie-lib/commit/ac8502dbe3c7e1a4a663bbe56f7f5ff8bab04430))
921
-
922
- ## [2.4.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.8...@pie-lib/graphing@2.4.9) (2022-02-04)
923
-
924
- **Note:** Version bump only for package @pie-lib/graphing
925
-
926
- ## [2.4.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.7...@pie-lib/graphing@2.4.8) (2022-02-03)
927
-
928
- **Note:** Version bump only for package @pie-lib/graphing
929
-
930
- ## [2.4.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.6...@pie-lib/graphing@2.4.7) (2022-01-10)
931
-
932
- **Note:** Version bump only for package @pie-lib/graphing
933
-
934
- ## [2.4.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.5...@pie-lib/graphing@2.4.6) (2021-12-13)
935
-
936
- **Note:** Version bump only for package @pie-lib/graphing
937
-
938
- ## [2.4.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.4...@pie-lib/graphing@2.4.5) (2021-11-29)
939
-
940
- **Note:** Version bump only for package @pie-lib/graphing
941
-
942
- ## [2.4.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.3...@pie-lib/graphing@2.4.4) (2021-09-08)
943
-
944
- **Note:** Version bump only for package @pie-lib/graphing
945
-
946
- ## [2.4.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.2...@pie-lib/graphing@2.4.3) (2021-09-08)
947
-
948
- **Note:** Version bump only for package @pie-lib/graphing
949
-
950
- ## [2.4.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.1...@pie-lib/graphing@2.4.2) (2021-08-30)
951
-
952
- **Note:** Version bump only for package @pie-lib/graphing
953
-
954
- ## [2.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.4.0...@pie-lib/graphing@2.4.1) (2021-08-04)
955
-
956
- **Note:** Version bump only for package @pie-lib/graphing
957
-
958
- # [2.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.3.2...@pie-lib/graphing@2.4.0) (2021-07-23)
959
-
960
- ### Features
961
-
962
- - **graphing:** control over whether arrows are displayed PD-483 ([dc9c8f8](https://github.com/pie-framework/pie-lib/commit/dc9c8f8))
963
- - **graphing:** Display point coordinates on hover PD-188 ([ed38fef](https://github.com/pie-framework/pie-lib/commit/ed38fef))
964
-
965
- ## [2.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.3.0...@pie-lib/graphing@2.3.2) (2021-06-25)
966
-
967
- **Note:** Version bump only for package @pie-lib/graphing
968
-
969
- # [2.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.21...@pie-lib/graphing@2.3.0) (2021-06-25)
970
-
971
- ### Bug Fixes
972
-
973
- - **graphing:** correctly calculate tick values for when step has 3 decimals. Add sanity check for graph label PD-991 ([5b1d85b](https://github.com/pie-framework/pie-lib/commit/5b1d85b))
974
- - **graphing:** Removed non-functional buttons PD-545 ([1884b9d](https://github.com/pie-framework/pie-lib/commit/1884b9d))
975
-
976
- ### Features
977
-
978
- - **graphing:** Added the ability to label shapes other than point - PD-486 ([ad1ea5a](https://github.com/pie-framework/pie-lib/commit/ad1ea5a))
979
- - **graphing:** Disallowed invalid point movements and placements PD-484 ([88ad2c4](https://github.com/pie-framework/pie-lib/commit/88ad2c4))
980
-
981
- ## [2.2.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.20...@pie-lib/graphing@2.2.21) (2021-04-06)
982
-
983
- **Note:** Version bump only for package @pie-lib/graphing
984
-
985
- ## [2.2.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.19...@pie-lib/graphing@2.2.20) (2021-04-02)
986
-
987
- ### Bug Fixes
988
-
989
- - **graphing:** denote labels as non-readable ([a59a9ba](https://github.com/pie-framework/pie-lib/commit/a59a9ba))
990
- - **graphing:** Modified labels size and bug fixes ([e6dd79a](https://github.com/pie-framework/pie-lib/commit/e6dd79a))
991
-
992
- ## [2.2.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.18...@pie-lib/graphing@2.2.19) (2021-03-22)
993
-
994
- ### Bug Fixes
995
-
996
- - **graphing:** fix arrow positioning for any angle PD-495 ([33cc936](https://github.com/pie-framework/pie-lib/commit/33cc936))
997
-
998
- ## [2.2.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.17...@pie-lib/graphing@2.2.18) (2021-03-17)
999
-
1000
- ### Bug Fixes
1001
-
1002
- - **graphing:** ROLLBACK - fix arrow positioning PD-495 ([8af59e7](https://github.com/pie-framework/pie-lib/commit/8af59e7))
1003
-
1004
- ## [2.2.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.16...@pie-lib/graphing@2.2.17) (2021-03-16)
1005
-
1006
- ### Bug Fixes
1007
-
1008
- - **graphing:** fix arrow positioning PD-495 ([36a87cf](https://github.com/pie-framework/pie-lib/commit/36a87cf))
1009
-
1010
- ## [2.2.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.15...@pie-lib/graphing@2.2.16) (2021-03-15)
1011
-
1012
- ### Bug Fixes
1013
-
1014
- - **graphing:** increase width and height for labels, depending on labels length PD-988 ([5f64c47](https://github.com/pie-framework/pie-lib/commit/5f64c47))
1015
- - **graphing:** increase width for range axisLabel PD-988 ([e4e5b8f](https://github.com/pie-framework/pie-lib/commit/e4e5b8f))
1016
- - **graphing:** set height depending on number of words of axisLabel PD-988 ([210b3af](https://github.com/pie-framework/pie-lib/commit/210b3af))
1017
-
1018
- ## [2.2.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.14...@pie-lib/graphing@2.2.15) (2021-03-01)
1019
-
1020
- ### Bug Fixes
1021
-
1022
- - **graphing:** positioning of the numeric labels on the x- and y- axes for 0 and -1 PD-529 ([c33c82b](https://github.com/pie-framework/pie-lib/commit/c33c82b))
1023
- - **graphing:** where '-n' [x] and '-n' [y] would overlap if positioned normally, only one '-n' label should be displayed and centered PD-529 ([946657f](https://github.com/pie-framework/pie-lib/commit/946657f))
1024
-
1025
- ## [2.2.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.13...@pie-lib/graphing@2.2.14) (2021-03-01)
1026
-
1027
- ### Bug Fixes
1028
-
1029
- - **graphing:** in OT buttons and tool labels are too small, override fontSize of 0.8125rem and fontSize of 0.8125rem PD-24 ([4f58952](https://github.com/pie-framework/pie-lib/commit/4f58952))
1030
-
1031
- ## [2.2.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.12...@pie-lib/graphing@2.2.13) (2021-02-15)
1032
-
1033
- ### Bug Fixes
1034
-
1035
- - **graphing:** reset markups on pushing reset ([3a10924](https://github.com/pie-framework/pie-lib/commit/3a10924))
1036
-
1037
- ## [2.2.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.10...@pie-lib/graphing@2.2.12) (2021-02-15)
1038
-
1039
- **Note:** Version bump only for package @pie-lib/graphing
1040
-
1041
- ## [2.2.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.9...@pie-lib/graphing@2.2.10) (2021-02-15)
1042
-
1043
- **Note:** Version bump only for package @pie-lib/graphing
1044
-
1045
- ## [2.2.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.8...@pie-lib/graphing@2.2.9) (2021-02-01)
1046
-
1047
- **Note:** Version bump only for package @pie-lib/graphing
1048
-
1049
- ## [2.2.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.7...@pie-lib/graphing@2.2.8) (2021-01-28)
1050
-
1051
- **Note:** Version bump only for package @pie-lib/graphing
1052
-
1053
- ## [2.2.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.6...@pie-lib/graphing@2.2.7) (2021-01-28)
1054
-
1055
- **Note:** Version bump only for package @pie-lib/graphing
1056
-
1057
- ## [2.2.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.5...@pie-lib/graphing@2.2.6) (2021-01-25)
1058
-
1059
- **Note:** Version bump only for package @pie-lib/graphing
1060
-
1061
- ## [2.2.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.4...@pie-lib/graphing@2.2.5) (2021-01-11)
1062
-
1063
- **Note:** Version bump only for package @pie-lib/graphing
1064
-
1065
- ## [2.2.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.3...@pie-lib/graphing@2.2.4) (2020-10-29)
1066
-
1067
- **Note:** Version bump only for package @pie-lib/graphing
1068
-
1069
- ## [2.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.2...@pie-lib/graphing@2.2.3) (2020-10-26)
1070
-
1071
- **Note:** Version bump only for package @pie-lib/graphing
1072
-
1073
- ## [2.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.1...@pie-lib/graphing@2.2.2) (2020-10-26)
1074
-
1075
- **Note:** Version bump only for package @pie-lib/graphing
1076
-
1077
- ## [2.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.2.0...@pie-lib/graphing@2.2.1) (2020-10-19)
1078
-
1079
- **Note:** Version bump only for package @pie-lib/graphing
1080
-
1081
- # [2.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.1.0...@pie-lib/graphing@2.2.0) (2020-10-15)
1082
-
1083
- ### Features
1084
-
1085
- - **graphing:** finalize color theme support ([a9144e7](https://github.com/pie-framework/pie-lib/commit/a9144e7))
1086
-
1087
- # [2.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@2.0.0...@pie-lib/graphing@2.1.0) (2020-10-07)
1088
-
1089
- ### Features
1090
-
1091
- - **graphing:** color theme support added ([489711a](https://github.com/pie-framework/pie-lib/commit/489711a))
1092
-
1093
- # [2.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.23...@pie-lib/graphing@2.0.0) (2020-05-15)
1094
-
1095
- ### Bug Fixes
1096
-
1097
- - Graphing issues and inconsistencies PD-123 ([291b053](https://github.com/pie-framework/pie-lib/commit/291b053))
1098
-
1099
- ### BREAKING CHANGES
1100
-
1101
- - tools, currentTool, defaultTool and hideLabel should not be used as params anymore, instead, send only toolbarTools, which is an array of strings, where each string should be a valid tool type. eg. ['point', 'line', 'label']
1102
-
1103
- ## [1.2.23](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.22...@pie-lib/graphing@1.2.23) (2020-04-14)
1104
-
1105
- **Note:** Version bump only for package @pie-lib/graphing
1106
-
1107
- ## [1.2.22](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.21...@pie-lib/graphing@1.2.22) (2020-04-08)
1108
-
1109
- **Note:** Version bump only for package @pie-lib/graphing
1110
-
1111
- ## [1.2.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.20...@pie-lib/graphing@1.2.21) (2020-03-31)
1112
-
1113
- **Note:** Version bump only for package @pie-lib/graphing
1114
-
1115
- ## [1.2.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.19...@pie-lib/graphing@1.2.20) (2020-03-31)
1116
-
1117
- **Note:** Version bump only for package @pie-lib/graphing
1118
-
1119
- ## [1.2.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.18...@pie-lib/graphing@1.2.19) (2020-03-31)
1120
-
1121
- **Note:** Version bump only for package @pie-lib/graphing
1122
-
1123
- ## [1.2.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.17...@pie-lib/graphing@1.2.18) (2020-03-30)
1124
-
1125
- **Note:** Version bump only for package @pie-lib/graphing
1126
-
1127
- ## [1.2.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.16...@pie-lib/graphing@1.2.17) (2020-03-30)
1128
-
1129
- ### Bug Fixes
1130
-
1131
- - bad exports ([b74730b](https://github.com/pie-framework/pie-lib/commit/b74730b))
1132
-
1133
- ## [1.2.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.15...@pie-lib/graphing@1.2.16) (2020-03-30)
1134
-
1135
- **Note:** Version bump only for package @pie-lib/graphing
1136
-
1137
- ## [1.2.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.14...@pie-lib/graphing@1.2.15) (2020-03-30)
1138
-
1139
- **Note:** Version bump only for package @pie-lib/graphing
1140
-
1141
- ## [1.2.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.13...@pie-lib/graphing@1.2.14) (2020-03-30)
1142
-
1143
- ### Bug Fixes
1144
-
1145
- - correct export syntax ([db7fcc0](https://github.com/pie-framework/pie-lib/commit/db7fcc0))
1146
-
1147
- ## [1.2.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.12...@pie-lib/graphing@1.2.13) (2020-03-30)
1148
-
1149
- ### Bug Fixes
1150
-
1151
- - correct export syntax ([32d1fc2](https://github.com/pie-framework/pie-lib/commit/32d1fc2))
1152
-
1153
- ## [1.2.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.11...@pie-lib/graphing@1.2.12) (2020-03-30)
1154
-
1155
- ### Bug Fixes
1156
-
1157
- - add module prop to package.json ([40fb305](https://github.com/pie-framework/pie-lib/commit/40fb305))
1158
- - bad imports accessing lib ([518decc](https://github.com/pie-framework/pie-lib/commit/518decc))
1159
- - correct bad import from a 'lib' dir ([e0adbbe](https://github.com/pie-framework/pie-lib/commit/e0adbbe))
1160
-
1161
- ## [1.2.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.10...@pie-lib/graphing@1.2.11) (2020-03-18)
1162
-
1163
- ### Bug Fixes
1164
-
1165
- - 4136: Parabola graphing is amiss ([f915685](https://github.com/pie-framework/pie-lib/commit/f915685))
1166
- - 4156: On Graphing items that provide the Label tool, it cannot be used to label points that are used to define other plot objects. ([dc19bdb](https://github.com/pie-framework/pie-lib/commit/dc19bdb))
1167
-
1168
- ## [1.2.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.9...@pie-lib/graphing@1.2.10) (2020-03-06)
1169
-
1170
- **Note:** Version bump only for package @pie-lib/graphing
1171
-
1172
- ## [1.2.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.8...@pie-lib/graphing@1.2.9) (2020-02-25)
1173
-
1174
- ### Bug Fixes
1175
-
1176
- - ch5349, ch5736 & ch4155: ([f0da1b7](https://github.com/pie-framework/pie-lib/commit/f0da1b7))
1177
-
1178
- ## [1.2.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.7...@pie-lib/graphing@1.2.8) (2020-02-18)
1179
-
1180
- ### Bug Fixes
1181
-
1182
- - 4044: A non-ASCII character in a Graphing domain label is represented by HTML-style markup. ([0493922](https://github.com/pie-framework/pie-lib/commit/0493922))
1183
- - 5325: Graphing: Axis labels overlapping numeric labels ([678c61a](https://github.com/pie-framework/pie-lib/commit/678c61a))
1184
-
1185
- ## [1.2.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.6...@pie-lib/graphing@1.2.7) (2020-02-11)
1186
-
1187
- **Note:** Version bump only for package @pie-lib/graphing
1188
-
1189
- ## [1.2.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.5...@pie-lib/graphing@1.2.6) (2019-11-19)
1190
-
1191
- ### Bug Fixes
1192
-
1193
- - ch3738 - support html in axis label ([82bfca1](https://github.com/pie-framework/pie-lib/commit/82bfca1))
1194
-
1195
- ## [1.2.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.4...@pie-lib/graphing@1.2.5) (2019-10-08)
1196
-
1197
- ### Bug Fixes
1198
-
1199
- - **graphing:** Graphing: Origin should be labeled. ([9045d34](https://github.com/pie-framework/pie-lib/commit/9045d34))
1200
-
1201
- ## [1.2.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.3...@pie-lib/graphing@1.2.4) (2019-08-21)
1202
-
1203
- **Note:** Version bump only for package @pie-lib/graphing
1204
-
1205
- ## [1.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.2...@pie-lib/graphing@1.2.3) (2019-08-05)
1206
-
1207
- **Note:** Version bump only for package @pie-lib/graphing
1208
-
1209
- ## [1.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.1...@pie-lib/graphing@1.2.2) (2019-07-19)
1210
-
1211
- **Note:** Version bump only for package @pie-lib/graphing
1212
-
1213
- ## [1.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.2.0...@pie-lib/graphing@1.2.1) (2019-07-16)
1214
-
1215
- **Note:** Version bump only for package @pie-lib/graphing
1216
-
1217
- # [1.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.1.1...@pie-lib/graphing@1.2.0) (2019-07-09)
1218
-
1219
- ### Features
1220
-
1221
- - Axis labels should render markup, so HTML tags should be shown. Make the toolbar to fit inside the graph box. ([c187aa4](https://github.com/pie-framework/pie-lib/commit/c187aa4))
1222
-
1223
- ## [1.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.1.0...@pie-lib/graphing@1.1.1) (2019-07-08)
1224
-
1225
- **Note:** Version bump only for package @pie-lib/graphing
1226
-
1227
- # [1.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.0.4...@pie-lib/graphing@1.1.0) (2019-07-05)
1228
-
1229
- ### Features
1230
-
1231
- - Added hideLabel property in order to toggle the Label button from the toolbar. ([448c6d8](https://github.com/pie-framework/pie-lib/commit/448c6d8))
1232
-
1233
- ## [1.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.0.3...@pie-lib/graphing@1.0.4) (2019-07-02)
1234
-
1235
- **Note:** Version bump only for package @pie-lib/graphing
1236
-
1237
- ## [1.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.0.2...@pie-lib/graphing@1.0.3) (2019-07-02)
1238
-
1239
- ### Bug Fixes
1240
-
1241
- - avoid app crash when tools not defined. ([54915cc](https://github.com/pie-framework/pie-lib/commit/54915cc))
1242
-
1243
- ## [1.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.0.1...@pie-lib/graphing@1.0.2) (2019-07-01)
1244
-
1245
- ### Bug Fixes
1246
-
1247
- - rm selected from MiniButton ([3079d35](https://github.com/pie-framework/pie-lib/commit/3079d35))
1248
-
1249
- ## [1.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@1.0.0...@pie-lib/graphing@1.0.1) (2019-06-28)
1250
-
1251
- **Note:** Version bump only for package @pie-lib/graphing
1252
-
1253
- # [1.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.3.0...@pie-lib/graphing@1.0.0) (2019-06-28)
1254
-
1255
- ### Bug Fixes
1256
-
1257
- - fixed polygon color when is correct ([d02d8b1](https://github.com/pie-framework/pie-lib/commit/d02d8b1))
1258
- - removed correctnessMarks and displayedTools ([6043e88](https://github.com/pie-framework/pie-lib/commit/6043e88))
1259
-
1260
- ### Features
1261
-
1262
- - add `toolbar` flag to each tool ([c32ec2c](https://github.com/pie-framework/pie-lib/commit/c32ec2c))
1263
- - Added possibility to change currentTool. ([a705a29](https://github.com/pie-framework/pie-lib/commit/a705a29))
1264
- - Disabled drawing in evaluate mode. ([00dd6d7](https://github.com/pie-framework/pie-lib/commit/00dd6d7))
1265
- - If 'evaluate' mode, don't show control buttons. ([8345539](https://github.com/pie-framework/pie-lib/commit/8345539))
1266
- - update currentTool when tools in toolbar change ([2e5e1c9](https://github.com/pie-framework/pie-lib/commit/2e5e1c9))
1267
- - Use props.currentTool only if props.displayedTools doesn't contain this.state.currentTool no more ([a4fd2df](https://github.com/pie-framework/pie-lib/commit/a4fd2df))
1268
- - When in 'evaluate' mode, hide controls. ([a57da65](https://github.com/pie-framework/pie-lib/commit/a57da65))
1269
-
1270
- ### BREAKING CHANGES
1271
-
1272
- - Graph 'tools' expected property has to be an array of objects having this form: { display: bool, Component: tool }
1273
-
1274
- # [0.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.2.0...@pie-lib/graphing@0.3.0) (2019-06-17)
1275
-
1276
- ### Bug Fixes
1277
-
1278
- - app was crashing when trying to edit graph labels ([9482ff9](https://github.com/pie-framework/pie-lib/commit/9482ff9))
1279
- - backgroundMarks were not displaying anymore proper colors for disabled, correct and incorrect. Circle was crashing. ([0551120](https://github.com/pie-framework/pie-lib/commit/0551120))
1280
- - labels not vertically align as expected for numbers greater than 99 ([fef214f](https://github.com/pie-framework/pie-lib/commit/fef214f))
1281
-
1282
- ### Features
1283
-
1284
- - added displayedTools property which determines which tools should appear in tool-menu. If it's not set, all tools from tools array will appear. ([3eec9fb](https://github.com/pie-framework/pie-lib/commit/3eec9fb))
1285
- - Added possibility to plot shapes that include defining points colocated with the defining points of other shapes ([f616f34](https://github.com/pie-framework/pie-lib/commit/f616f34))
1286
- - Added possibility to plot shapes that include defining points colocated with the defining points of other shapes for point as well. ([32a1501](https://github.com/pie-framework/pie-lib/commit/32a1501))
1287
-
1288
- # [0.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.12...@pie-lib/graphing@0.2.0) (2019-06-12)
1289
-
1290
- ### Bug Fixes
1291
-
1292
- - fix bounded drag calculation ([08097bd](https://github.com/pie-framework/pie-lib/commit/08097bd))
1293
-
1294
- ### Features
1295
-
1296
- - graphing updates ([f347e4c](https://github.com/pie-framework/pie-lib/commit/f347e4c))
1297
-
1298
- ## [0.1.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.11...@pie-lib/graphing@0.1.12) (2019-03-15)
1299
-
1300
- ### Bug Fixes
1301
-
1302
- - rm child prepack in favour of root prepack ([381d8d6](https://github.com/pie-framework/pie-lib/commit/381d8d6))
1303
-
1304
- ## [0.1.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.10...@pie-lib/graphing@0.1.11) (2019-03-14)
1305
-
1306
- **Note:** Version bump only for package @pie-lib/graphing
1307
-
1308
- ## [0.1.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.9...@pie-lib/graphing@0.1.10) (2019-03-14)
1309
-
1310
- **Note:** Version bump only for package @pie-lib/graphing
1311
-
1312
- ## [0.1.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.8...@pie-lib/graphing@0.1.9) (2019-03-14)
1313
-
1314
- **Note:** Version bump only for package @pie-lib/graphing
1315
-
1316
- ## [0.1.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.7...@pie-lib/graphing@0.1.8) (2019-03-14)
1317
-
1318
- **Note:** Version bump only for package @pie-lib/graphing
1319
-
1320
- ## [0.1.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.6...@pie-lib/graphing@0.1.7) (2019-03-13)
1321
-
1322
- **Note:** Version bump only for package @pie-lib/graphing
1323
-
1324
- ## [0.1.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.5...@pie-lib/graphing@0.1.6) (2019-03-13)
1325
-
1326
- **Note:** Version bump only for package @pie-lib/graphing
1327
-
1328
- ## [0.1.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.4...@pie-lib/graphing@0.1.5) (2019-03-13)
1329
-
1330
- **Note:** Version bump only for package @pie-lib/graphing
1331
-
1332
- ## [0.1.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.2...@pie-lib/graphing@0.1.4) (2019-02-17)
1333
-
1334
- ### Bug Fixes
1335
-
1336
- - force version bump ([dd057a5](https://github.com/pie-framework/pie-lib/commit/dd057a5))
1337
-
1338
- ## [0.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.1...@pie-lib/graphing@0.1.2) (2019-02-17)
1339
-
1340
- ### Bug Fixes
1341
-
1342
- - fix tests ([1363aa4](https://github.com/pie-framework/pie-lib/commit/1363aa4))
1343
-
1344
- ## [0.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/graphing@0.1.0...@pie-lib/graphing@0.1.1) (2019-01-30)
1345
-
1346
- **Note:** Version bump only for package @pie-lib/graphing
1347
-
1348
- # 0.1.0 (2019-01-30)
1349
-
1350
- ### Features
1351
-
1352
- - new graphing package ([8782bf8](https://github.com/pie-framework/pie-lib/commit/8782bf8))
1353
-
1354
- <a name="2.3.5"></a>
1355
-
1356
- ## [2.3.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.3.4...@pie-lib/charting@2.3.5) (2018-09-12)
1357
-
1358
- ### Bug Fixes
1359
-
1360
- - githead ([3e485e0](https://github.com/pie-framework/pie-lib/commit/3e485e0))
1361
- - rm githead ([a1523aa](https://github.com/pie-framework/pie-lib/commit/a1523aa))
1362
-
1363
- <a name="2.3.4"></a>
1364
-
1365
- ## [2.3.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.3.2...@pie-lib/charting@2.3.4) (2018-09-12)
1366
-
1367
- **Note:** Version bump only for package @pie-lib/charting
1368
-
1369
- <a name="2.3.3"></a>
1370
-
1371
- ## [2.3.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.3.2...@pie-lib/charting@2.3.3) (2018-09-12)
1372
-
1373
- **Note:** Version bump only for package @pie-lib/charting
1374
-
1375
- <a name="2.3.2"></a>
1376
-
1377
- ## [2.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.3.1...@pie-lib/charting@2.3.2) (2018-07-18)
1378
-
1379
- **Note:** Version bump only for package @pie-lib/charting
1380
-
1381
- <a name="2.3.1"></a>
1382
-
1383
- ## [2.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.3.0...@pie-lib/charting@2.3.1) (2018-06-07)
1384
-
1385
- ### Bug Fixes
1386
-
1387
- - **lineUtils:** pointsFromExpression calculate using when x and y are 0 ([d641fcd](https://github.com/pie-framework/pie-lib/commit/d641fcd))
1388
-
1389
- <a name="2.3.0"></a>
1390
-
1391
- # [2.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.2.3...@pie-lib/charting@2.3.0) (2018-05-28)
1392
-
1393
- ### Bug Fixes
1394
-
1395
- - **expression:** handle vertical lines which have no slope ([2cd6bb0](https://github.com/pie-framework/pie-lib/commit/2cd6bb0))
1396
-
1397
- ### Features
1398
-
1399
- - add Expression.equals method ([5ae0c1e](https://github.com/pie-framework/pie-lib/commit/5ae0c1e))
1400
-
1401
- <a name="2.2.3"></a>
1402
-
1403
- ## [2.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.2.2...@pie-lib/charting@2.2.3) (2018-05-16)
1404
-
1405
- **Note:** Version bump only for package @pie-lib/charting
1406
-
1407
- <a name="2.2.2"></a>
1408
-
1409
- ## [2.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.2.1...@pie-lib/charting@2.2.2) (2018-05-15)
1410
-
1411
- **Note:** Version bump only for package @pie-lib/charting
1412
-
1413
- <a name="2.2.1"></a>
1414
-
1415
- ## [2.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.2.0...@pie-lib/charting@2.2.1) (2018-05-09)
1416
-
1417
- ### Bug Fixes
1418
-
1419
- - **lint:** lint fixes ([f059583](https://github.com/pie-framework/pie-lib/commit/f059583))
1420
-
1421
- <a name="2.2.0"></a>
1422
-
1423
- # [2.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.1.0...@pie-lib/charting@2.2.0) (2018-04-24)
1424
-
1425
- ### Features
1426
-
1427
- - **dependencies:** version bump ([31bd3b3](https://github.com/pie-framework/pie-lib/commit/31bd3b3))
1428
-
1429
- <a name="2.1.0"></a>
1430
-
1431
- # [2.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.0.1...@pie-lib/charting@2.1.0) (2018-04-23)
1432
-
1433
- ### Features
1434
-
1435
- - **point-intercept:** add title label to top of chart ([71ba936](https://github.com/pie-framework/pie-lib/commit/71ba936))
1436
-
1437
- <a name="2.0.1"></a>
1438
-
1439
- ## [2.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@2.0.0...@pie-lib/charting@2.0.1) (2018-04-20)
1440
-
1441
- **Note:** Version bump only for package @pie-lib/charting
1442
-
1443
- <a name="1.0.0"></a>
1444
-
1445
- # [1.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/charting@0.1.0...@pie-lib/charting@1.0.0) (2018-04-13)
1446
-
1447
- ### Bug Fixes
1448
-
1449
- - **dependencies:** use react 16 and latest material-ui ([2ac4f97](https://github.com/pie-framework/pie-lib/commit/2ac4f97))
1450
-
1451
- ### BREAKING CHANGES
1452
-
1453
- - **dependencies:** react@^16.3.1 is required as a dependency.
1454
-
1455
- <a name="0.1.0"></a>
1456
-
1457
- # 0.1.0 (2018-04-02)
1458
-
1459
- ### Features
1460
-
1461
- - **charting:** new charting package ([97c2f60](https://github.com/pie-framework/pie-lib/commit/97c2f60))