@pie-lib/editable-html-tip-tap 2.1.2-next.3 → 2.1.2-next.31

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 (273) hide show
  1. package/dist/components/CharacterPicker.d.ts +31 -0
  2. package/dist/components/CharacterPicker.js +131 -0
  3. package/dist/components/EditableHtml.d.ts +11 -0
  4. package/dist/components/EditableHtml.js +291 -0
  5. package/dist/components/MenuBar.d.ts +11 -0
  6. package/dist/components/MenuBar.js +462 -0
  7. package/dist/components/TiptapContainer.d.ts +11 -0
  8. package/dist/components/TiptapContainer.js +154 -0
  9. package/dist/components/characters/characterUtils.d.ts +35 -0
  10. package/dist/components/characters/characterUtils.js +465 -0
  11. package/dist/components/characters/custom-popper.d.ts +14 -0
  12. package/dist/components/characters/custom-popper.js +32 -0
  13. package/dist/components/common/done-button.d.ts +30 -0
  14. package/dist/components/common/done-button.js +26 -0
  15. package/dist/components/common/toolbar-buttons.d.ts +38 -0
  16. package/dist/components/common/toolbar-buttons.js +91 -0
  17. package/dist/components/icons/CssIcon.d.ts +11 -0
  18. package/dist/components/icons/CssIcon.js +14 -0
  19. package/dist/components/icons/RespArea.d.ts +26 -0
  20. package/dist/components/icons/RespArea.js +42 -0
  21. package/dist/components/icons/TableIcons.d.ts +14 -0
  22. package/dist/components/icons/TableIcons.js +32 -0
  23. package/dist/components/icons/TextAlign.d.ts +18 -0
  24. package/dist/components/icons/TextAlign.js +134 -0
  25. package/dist/components/image/AltDialog.d.ts +22 -0
  26. package/dist/components/image/AltDialog.js +61 -0
  27. package/dist/components/image/ImageToolbar.d.ts +24 -0
  28. package/dist/components/image/ImageToolbar.js +80 -0
  29. package/dist/components/image/InsertImageHandler.d.ts +32 -0
  30. package/dist/components/image/InsertImageHandler.js +53 -0
  31. package/dist/components/media/MediaDialog.d.ts +43 -0
  32. package/dist/components/media/MediaDialog.js +389 -0
  33. package/dist/components/media/MediaToolbar.d.ts +19 -0
  34. package/dist/components/media/MediaToolbar.js +41 -0
  35. package/dist/components/media/MediaWrapper.d.ts +19 -0
  36. package/dist/components/respArea/DragInTheBlank/DragInTheBlank.d.ts +23 -0
  37. package/dist/components/respArea/DragInTheBlank/DragInTheBlank.js +58 -0
  38. package/dist/components/respArea/DragInTheBlank/choice.d.ts +56 -0
  39. package/dist/components/respArea/DragInTheBlank/choice.js +156 -0
  40. package/dist/components/respArea/ExplicitConstructedResponse.d.ts +20 -0
  41. package/dist/components/respArea/ExplicitConstructedResponse.js +83 -0
  42. package/dist/components/respArea/InlineDropdown.d.ts +18 -0
  43. package/dist/components/respArea/InlineDropdown.js +119 -0
  44. package/dist/components/respArea/MathTemplated.d.ts +19 -0
  45. package/dist/components/respArea/MathTemplated.js +97 -0
  46. package/dist/components/respArea/ToolbarIcon.d.ts +14 -0
  47. package/dist/components/respArea/ToolbarIcon.js +17 -0
  48. package/dist/components/respArea/inlineDropdownUtils.d.ts +15 -0
  49. package/dist/components/respArea/inlineDropdownUtils.js +15 -0
  50. package/dist/constants.d.ts +13 -0
  51. package/dist/constants.js +4 -0
  52. package/dist/extensions/css.d.ts +11 -0
  53. package/dist/extensions/css.js +115 -0
  54. package/dist/extensions/custom-toolbar-wrapper.d.ts +11 -0
  55. package/dist/extensions/custom-toolbar-wrapper.js +61 -0
  56. package/dist/extensions/div-node.d.ts +10 -0
  57. package/dist/extensions/div-node.js +42 -0
  58. package/dist/extensions/ensure-empty-root-div.d.ts +14 -0
  59. package/dist/extensions/ensure-empty-root-div.js +24 -0
  60. package/dist/extensions/ensure-list-item-content-is-div.d.ts +15 -0
  61. package/dist/extensions/ensure-list-item-content-is-div.js +31 -0
  62. package/dist/extensions/extended-list-item.d.ts +13 -0
  63. package/dist/extensions/extended-list-item.js +5 -0
  64. package/dist/extensions/extended-table-cell.d.ts +10 -0
  65. package/dist/extensions/extended-table-cell.js +6 -0
  66. package/dist/extensions/extended-table.d.ts +17 -0
  67. package/dist/extensions/extended-table.js +34 -0
  68. package/dist/extensions/heading-paragraph.d.ts +17 -0
  69. package/dist/extensions/heading-paragraph.js +30 -0
  70. package/dist/extensions/image-component.d.ts +22 -0
  71. package/dist/extensions/image-component.js +220 -0
  72. package/dist/extensions/image.d.ts +10 -0
  73. package/dist/extensions/image.js +68 -0
  74. package/dist/extensions/index.d.ts +16 -0
  75. package/dist/extensions/index.js +64 -0
  76. package/dist/extensions/math.d.ts +15 -0
  77. package/dist/extensions/math.js +158 -0
  78. package/dist/extensions/media.d.ts +19 -0
  79. package/dist/extensions/media.js +149 -0
  80. package/dist/extensions/responseArea.d.ts +27 -0
  81. package/dist/extensions/responseArea.js +259 -0
  82. package/dist/index.d.ts +13 -0
  83. package/dist/index.js +7 -0
  84. package/dist/node_modules/.bun/clsx@2.1.1/node_modules/clsx/dist/clsx.js +16 -0
  85. package/dist/styles/editorContainerStyles.d.ts +134 -0
  86. package/dist/theme.d.ts +9 -0
  87. package/dist/utils/helper.d.ts +9 -0
  88. package/dist/utils/helper.js +27 -0
  89. package/dist/utils/size.d.ts +9 -0
  90. package/dist/utils/size.js +14 -0
  91. package/package.json +56 -40
  92. package/CHANGELOG.json +0 -32
  93. package/CHANGELOG.md +0 -2532
  94. package/LICENSE.md +0 -5
  95. package/lib/components/CharacterPicker.js +0 -195
  96. package/lib/components/CharacterPicker.js.map +0 -1
  97. package/lib/components/EditableHtml.js +0 -375
  98. package/lib/components/EditableHtml.js.map +0 -1
  99. package/lib/components/MenuBar.js +0 -693
  100. package/lib/components/MenuBar.js.map +0 -1
  101. package/lib/components/TiptapContainer.js +0 -234
  102. package/lib/components/TiptapContainer.js.map +0 -1
  103. package/lib/components/characters/characterUtils.js +0 -378
  104. package/lib/components/characters/characterUtils.js.map +0 -1
  105. package/lib/components/characters/custom-popper.js +0 -44
  106. package/lib/components/characters/custom-popper.js.map +0 -1
  107. package/lib/components/common/done-button.js +0 -34
  108. package/lib/components/common/done-button.js.map +0 -1
  109. package/lib/components/common/toolbar-buttons.js +0 -144
  110. package/lib/components/common/toolbar-buttons.js.map +0 -1
  111. package/lib/components/icons/CssIcon.js +0 -25
  112. package/lib/components/icons/CssIcon.js.map +0 -1
  113. package/lib/components/icons/RespArea.js +0 -72
  114. package/lib/components/icons/RespArea.js.map +0 -1
  115. package/lib/components/icons/TableIcons.js +0 -53
  116. package/lib/components/icons/TableIcons.js.map +0 -1
  117. package/lib/components/icons/TextAlign.js +0 -157
  118. package/lib/components/icons/TextAlign.js.map +0 -1
  119. package/lib/components/image/AltDialog.js +0 -98
  120. package/lib/components/image/AltDialog.js.map +0 -1
  121. package/lib/components/image/ImageToolbar.js +0 -137
  122. package/lib/components/image/ImageToolbar.js.map +0 -1
  123. package/lib/components/image/InsertImageHandler.js +0 -135
  124. package/lib/components/image/InsertImageHandler.js.map +0 -1
  125. package/lib/components/media/MediaDialog.js +0 -594
  126. package/lib/components/media/MediaDialog.js.map +0 -1
  127. package/lib/components/media/MediaToolbar.js +0 -74
  128. package/lib/components/media/MediaToolbar.js.map +0 -1
  129. package/lib/components/media/MediaWrapper.js +0 -67
  130. package/lib/components/media/MediaWrapper.js.map +0 -1
  131. package/lib/components/respArea/DragInTheBlank/DragInTheBlank.js +0 -84
  132. package/lib/components/respArea/DragInTheBlank/DragInTheBlank.js.map +0 -1
  133. package/lib/components/respArea/DragInTheBlank/choice.js +0 -250
  134. package/lib/components/respArea/DragInTheBlank/choice.js.map +0 -1
  135. package/lib/components/respArea/ExplicitConstructedResponse.js +0 -136
  136. package/lib/components/respArea/ExplicitConstructedResponse.js.map +0 -1
  137. package/lib/components/respArea/InlineDropdown.js +0 -165
  138. package/lib/components/respArea/InlineDropdown.js.map +0 -1
  139. package/lib/components/respArea/MathTemplated.js +0 -130
  140. package/lib/components/respArea/MathTemplated.js.map +0 -1
  141. package/lib/components/respArea/ToolbarIcon.js +0 -81
  142. package/lib/components/respArea/ToolbarIcon.js.map +0 -1
  143. package/lib/constants.js +0 -11
  144. package/lib/constants.js.map +0 -1
  145. package/lib/extensions/css.js +0 -217
  146. package/lib/extensions/css.js.map +0 -1
  147. package/lib/extensions/custom-toolbar-wrapper.js +0 -92
  148. package/lib/extensions/custom-toolbar-wrapper.js.map +0 -1
  149. package/lib/extensions/div-node.js +0 -83
  150. package/lib/extensions/div-node.js.map +0 -1
  151. package/lib/extensions/ensure-empty-root-div.js +0 -48
  152. package/lib/extensions/ensure-empty-root-div.js.map +0 -1
  153. package/lib/extensions/ensure-list-item-content-is-div.js +0 -64
  154. package/lib/extensions/ensure-list-item-content-is-div.js.map +0 -1
  155. package/lib/extensions/extended-list-item.js +0 -15
  156. package/lib/extensions/extended-list-item.js.map +0 -1
  157. package/lib/extensions/extended-table-cell.js +0 -22
  158. package/lib/extensions/extended-table-cell.js.map +0 -1
  159. package/lib/extensions/extended-table.js +0 -75
  160. package/lib/extensions/extended-table.js.map +0 -1
  161. package/lib/extensions/heading-paragraph.js +0 -61
  162. package/lib/extensions/heading-paragraph.js.map +0 -1
  163. package/lib/extensions/image-component.js +0 -348
  164. package/lib/extensions/image-component.js.map +0 -1
  165. package/lib/extensions/image.js +0 -134
  166. package/lib/extensions/image.js.map +0 -1
  167. package/lib/extensions/index.js +0 -46
  168. package/lib/extensions/index.js.map +0 -1
  169. package/lib/extensions/math.js +0 -343
  170. package/lib/extensions/math.js.map +0 -1
  171. package/lib/extensions/media.js +0 -243
  172. package/lib/extensions/media.js.map +0 -1
  173. package/lib/extensions/responseArea.js +0 -446
  174. package/lib/extensions/responseArea.js.map +0 -1
  175. package/lib/index.js +0 -30
  176. package/lib/index.js.map +0 -1
  177. package/lib/styles/editorContainerStyles.js +0 -137
  178. package/lib/styles/editorContainerStyles.js.map +0 -1
  179. package/lib/theme.js +0 -8
  180. package/lib/theme.js.map +0 -1
  181. package/lib/utils/helper.js +0 -73
  182. package/lib/utils/helper.js.map +0 -1
  183. package/lib/utils/size.js +0 -26
  184. package/lib/utils/size.js.map +0 -1
  185. package/src/__tests__/EditableHtml.test.jsx +0 -474
  186. package/src/__tests__/constants.test.js +0 -19
  187. package/src/__tests__/div-to-paragraph-conversion.test.jsx +0 -125
  188. package/src/__tests__/extensions.test.js +0 -208
  189. package/src/__tests__/index.test.jsx +0 -154
  190. package/src/__tests__/size-utils.test.js +0 -64
  191. package/src/__tests__/theme.test.js +0 -17
  192. package/src/components/CharacterPicker.jsx +0 -200
  193. package/src/components/EditableHtml.jsx +0 -438
  194. package/src/components/MenuBar.jsx +0 -549
  195. package/src/components/TiptapContainer.jsx +0 -219
  196. package/src/components/__tests__/AltDialog.test.jsx +0 -147
  197. package/src/components/__tests__/CharacterPicker.test.jsx +0 -219
  198. package/src/components/__tests__/CssIcon.test.jsx +0 -46
  199. package/src/components/__tests__/DragInTheBlank.test.jsx +0 -255
  200. package/src/components/__tests__/ExplicitConstructedResponse.test.jsx +0 -204
  201. package/src/components/__tests__/ImageToolbar.test.jsx +0 -128
  202. package/src/components/__tests__/InlineDropdown.test.jsx +0 -380
  203. package/src/components/__tests__/InsertImageHandler.test.js +0 -161
  204. package/src/components/__tests__/MediaDialog.test.jsx +0 -293
  205. package/src/components/__tests__/MediaToolbar.test.jsx +0 -74
  206. package/src/components/__tests__/MediaWrapper.test.jsx +0 -81
  207. package/src/components/__tests__/MenuBar.test.jsx +0 -249
  208. package/src/components/__tests__/RespArea.test.jsx +0 -122
  209. package/src/components/__tests__/TableIcons.test.jsx +0 -149
  210. package/src/components/__tests__/TextAlign.test.jsx +0 -167
  211. package/src/components/__tests__/TiptapContainer.test.jsx +0 -138
  212. package/src/components/__tests__/characterUtils.test.js +0 -166
  213. package/src/components/__tests__/choice.test.jsx +0 -171
  214. package/src/components/__tests__/custom-popper.test.jsx +0 -82
  215. package/src/components/__tests__/done-button.test.jsx +0 -54
  216. package/src/components/__tests__/toolbar-buttons.test.jsx +0 -234
  217. package/src/components/characters/characterUtils.js +0 -447
  218. package/src/components/characters/custom-popper.js +0 -38
  219. package/src/components/common/done-button.jsx +0 -27
  220. package/src/components/common/toolbar-buttons.jsx +0 -122
  221. package/src/components/icons/CssIcon.jsx +0 -15
  222. package/src/components/icons/RespArea.jsx +0 -71
  223. package/src/components/icons/TableIcons.jsx +0 -52
  224. package/src/components/icons/TextAlign.jsx +0 -114
  225. package/src/components/image/AltDialog.jsx +0 -82
  226. package/src/components/image/ImageToolbar.jsx +0 -99
  227. package/src/components/image/InsertImageHandler.js +0 -107
  228. package/src/components/media/MediaDialog.jsx +0 -596
  229. package/src/components/media/MediaToolbar.jsx +0 -49
  230. package/src/components/media/MediaWrapper.jsx +0 -39
  231. package/src/components/respArea/DragInTheBlank/DragInTheBlank.jsx +0 -76
  232. package/src/components/respArea/DragInTheBlank/choice.jsx +0 -256
  233. package/src/components/respArea/ExplicitConstructedResponse.jsx +0 -135
  234. package/src/components/respArea/InlineDropdown.jsx +0 -167
  235. package/src/components/respArea/MathTemplated.jsx +0 -124
  236. package/src/components/respArea/ToolbarIcon.jsx +0 -66
  237. package/src/components/respArea/__tests__/MathTemplated.test.jsx +0 -210
  238. package/src/constants.js +0 -5
  239. package/src/extensions/__tests__/css.test.js +0 -196
  240. package/src/extensions/__tests__/custom-toolbar-wrapper.test.jsx +0 -180
  241. package/src/extensions/__tests__/divNode.test.js +0 -87
  242. package/src/extensions/__tests__/ensure-empty-root-div.test.js +0 -57
  243. package/src/extensions/__tests__/ensure-list-item-content-is-div.test.js +0 -44
  244. package/src/extensions/__tests__/extended-list-item.test.js +0 -13
  245. package/src/extensions/__tests__/extended-table-cell.test.js +0 -22
  246. package/src/extensions/__tests__/extended-table.test.js +0 -183
  247. package/src/extensions/__tests__/image-component.test.jsx +0 -345
  248. package/src/extensions/__tests__/image.test.js +0 -237
  249. package/src/extensions/__tests__/math.test.js +0 -459
  250. package/src/extensions/__tests__/media-node-view.test.jsx +0 -298
  251. package/src/extensions/__tests__/media.test.js +0 -271
  252. package/src/extensions/__tests__/responseArea.test.js +0 -601
  253. package/src/extensions/css.js +0 -220
  254. package/src/extensions/custom-toolbar-wrapper.jsx +0 -78
  255. package/src/extensions/div-node.js +0 -86
  256. package/src/extensions/ensure-empty-root-div.js +0 -47
  257. package/src/extensions/ensure-list-item-content-is-div.js +0 -62
  258. package/src/extensions/extended-list-item.js +0 -10
  259. package/src/extensions/extended-table-cell.js +0 -19
  260. package/src/extensions/extended-table.js +0 -60
  261. package/src/extensions/heading-paragraph.js +0 -53
  262. package/src/extensions/image-component.jsx +0 -338
  263. package/src/extensions/image.js +0 -109
  264. package/src/extensions/index.js +0 -81
  265. package/src/extensions/math.js +0 -327
  266. package/src/extensions/media.js +0 -188
  267. package/src/extensions/responseArea.js +0 -401
  268. package/src/index.jsx +0 -5
  269. package/src/styles/editorContainerStyles.js +0 -145
  270. package/src/theme.js +0 -1
  271. package/src/utils/__tests__/helper.test.js +0 -126
  272. package/src/utils/helper.js +0 -69
  273. package/src/utils/size.js +0 -32
package/CHANGELOG.md DELETED
@@ -1,2532 +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
- ## [2.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@2.1.0...@pie-lib/editable-html-tip-tap@2.1.1) (2026-05-15)
7
-
8
- ### Bug Fixes
9
-
10
- - made sure math toolbar uses position absolute and its placed below the math input [PIE-510] ([6a51b42](https://github.com/pie-framework/pie-lib/commit/6a51b42e65e81282d65eeee799039bc09b0b91e7))
11
-
12
- # [2.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@2.1.0-next.3...@pie-lib/editable-html-tip-tap@2.1.0) (2026-05-07)
13
-
14
- **Note:** Version bump only for package @pie-lib/editable-html-tip-tap
15
-
16
- # [2.1.0-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@2.1.0-next.2...@pie-lib/editable-html-tip-tap@2.1.0-next.3) (2026-05-07)
17
-
18
- **Note:** Version bump only for package @pie-lib/editable-html-tip-tap
19
-
20
- # [2.1.0-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@2.1.0-next.1...@pie-lib/editable-html-tip-tap@2.1.0-next.2) (2026-05-06)
21
-
22
- ### Bug Fixes
23
-
24
- - made sure multiple divs are treated as line breaks [PIE-439] ([2b507e0](https://github.com/pie-framework/pie-lib/commit/2b507e0d1176a33afebb90e69bf7693c17bd4caf))
25
-
26
- # [2.1.0-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@2.1.0-next.0...@pie-lib/editable-html-tip-tap@2.1.0-next.1) (2026-05-06)
27
-
28
- ### Features
29
-
30
- - add extension to apply semantic heading markup instead of hardcoded h3 PIE-152 ([02f8b60](https://github.com/pie-framework/pie-lib/commit/02f8b6061bfb30fbf9d3a71e6aec93afc38167b7))
31
-
32
- # [2.1.0-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.15...@pie-lib/editable-html-tip-tap@2.1.0-next.0) (2026-05-06)
33
-
34
- ### Bug Fixes
35
-
36
- - add touchAction style to prevent touch interactions in DragInTheBlank and blank components PD-5811 ([ba4d73b](https://github.com/pie-framework/pie-lib/commit/ba4d73b4785cc59e85f3055902667a1cd4db325c))
37
- - **editable-html-tip-tap:** add blockquote, fix styling and add text alignment options PD-5790 ([99b30f6](https://github.com/pie-framework/pie-lib/commit/99b30f6622fd002abcdb901c4584026519bed8b7))
38
- - **editable-html-tip-tap:** avoid closing math dialog on scrollbar, update test PD-5823 ([ad43e67](https://github.com/pie-framework/pie-lib/commit/ad43e67d9019efae020d2da817568936348bcbc9))
39
- - **editable-html-tip-tap:** backspace behavior in tiptap and add custom toolbar in ExplicitConstructedResponse PIE-19 PIE-30 ([5779a6d](https://github.com/pie-framework/pie-lib/commit/5779a6d6a1c30f398025d4c7bdce578827b51e3a))
40
- - **editable-html-tip-tap:** create test for new div block extension PD-5622 ([911ef92](https://github.com/pie-framework/pie-lib/commit/911ef92c08f8de3f7080c36b48aa336f61b55800))
41
- - **editable-html-tip-tap:** enhance toolbar visibility logic and use portal for rendering ([0b06a9d](https://github.com/pie-framework/pie-lib/commit/0b06a9d2a8b208069d9a774b38797428cff30174))
42
- - **editable-html-tip-tap:** extend text alignment options to include additional elements PD-5851 ([fc43c5c](https://github.com/pie-framework/pie-lib/commit/fc43c5c4c29a4c6bcd42c61d6b18e32d56bf2557))
43
- - **editable-html-tip-tap:** handle list item to avoid default paragraph wrapping PIE-46 ([9c37dac](https://github.com/pie-framework/pie-lib/commit/9c37dac9d10940f59930d21a135cd991f238d622))
44
- - **editable-html-tip-tap:** image-component - fix active style, dragging issues and update image rendering logic PIE-34 ([5588e8b](https://github.com/pie-framework/pie-lib/commit/5588e8b10f61f2936d2356a4b2d403f29d094efa))
45
- - **editable-html-tip-tap:** open math toolbar in current container PIE-18 ([f33a73f](https://github.com/pie-framework/pie-lib/commit/f33a73fd0c7dbd34571d6490b031459ad89923c3))
46
- - **editable-html-tip-tap:** parseHTML as img tag image extension, avoid open upload automatically at mounted PIE-37 ([30bad4e](https://github.com/pie-framework/pie-lib/commit/30bad4ea07c1e4c738534aab115cc16d64195b60))
47
- - **editable-html-tip-tap:** prevent spanish keyboard to be dismissed when clicking on it PIE-36 ([6c02557](https://github.com/pie-framework/pie-lib/commit/6c02557fd61b5b0cc217340f20b94e1934f6beaa))
48
- - **editable-html-tip-tap:** prevent toolbar from closing when clicking on math node preview PIE-114 ([b422584](https://github.com/pie-framework/pie-lib/commit/b4225846952d9eaef76039d7c6b69b93c5029da6))
49
- - **editable-html-tip-tap:** set div as default, transform div to p tag at enter, update tests PD-5622 ([32e4126](https://github.com/pie-framework/pie-lib/commit/32e4126b9369c29c165d7a55315b04dbc759a181))
50
- - **editable-html-tip-tap:** wrap new node with plain text in a div not in a p PD-5669 ([0216b60](https://github.com/pie-framework/pie-lib/commit/0216b60cb54f2af2761042c0be7247b1507b8aeb))
51
- - handle different editors, handle clicks in dropdown PIE-47 ([19c8914](https://github.com/pie-framework/pie-lib/commit/19c89148cee951133680c218fb446107f9b2ce16))
52
- - handle optional chaining and fix test ([c4d4657](https://github.com/pie-framework/pie-lib/commit/c4d4657ed38718142c07ddf2a06225f2a11fd535))
53
- - **image:** remove unwanted change ([04a484f](https://github.com/pie-framework/pie-lib/commit/04a484f395c8a87407a8ad3f0ff99a7c0af0488a))
54
- - **image:** revert - simplify setImageUploadNode command to directly insert content ([0d4467d](https://github.com/pie-framework/pie-lib/commit/0d4467dd9c29e9c90db6cfbf49f6e68704c1d0a9))
55
- - made sure colspan elements match the number of columns on removing [PIE-168] ([0ee3056](https://github.com/pie-framework/pie-lib/commit/0ee3056f2c00d71eb83ee2f56ad0efb75dc3b21b))
56
- - made sure correct reference is sent for insert image handler [PIE-1229][PIE-44] ([8db57c0](https://github.com/pie-framework/pie-lib/commit/8db57c035449b5c630a084211b506d2c85786772))
57
- - made sure custom toolbar is shown for inline dropdown response areas [PIE-130] ([d3cb03d](https://github.com/pie-framework/pie-lib/commit/d3cb03d45eb716d700f1202aa1cc223c169cfde5))
58
- - made sure div is the default field in the editor, if a breakpoint is added it turns into a p [PIE-53] ([8f33af0](https://github.com/pie-framework/pie-lib/commit/8f33af05047cdd8993a8a862ce3e26e67c6810fe))
59
- - made sure image handling works properly without losing focus, fix media size problem [PIE-129][PIE-44] ([ad28c81](https://github.com/pie-framework/pie-lib/commit/ad28c816e12d35a59d51bcb03466194c33e3b5dd))
60
- - made sure insertImageRequested is called only once [PIE-1229] ([336d38c](https://github.com/pie-framework/pie-lib/commit/336d38cf2e7e45b621b5dd831991017a694ec5cd))
61
- - made sure lastIndex in respArea is handled properly, improved spacing around response areas [PIE-35][PIE-40] ([c673701](https://github.com/pie-framework/pie-lib/commit/c673701618bc896208c9760e87ea6dbbd1a91d54))
62
- - **math-input:** bump @pie-framework/mathquill to 1.2.1-beta.1 with jQuery shim fixes PIE-16 PIE-20 ([3eaa8fd](https://github.com/pie-framework/pie-lib/commit/3eaa8fd410d8668c2d085cca4a4995a7e66d774f))
63
- - **plot:** remove unnecessary space, prevent new lines, center placeholder PD-5674 ([9840d80](https://github.com/pie-framework/pie-lib/commit/9840d80a1351f19adbe3396d3abae5fb4e310494))
64
- - provided the pos of the node as well in the response area toolbar callback [PD-5787] ([caa9a90](https://github.com/pie-framework/pie-lib/commit/caa9a90617d15afcd8457c8962460867b3990bbc))
65
- - **render-ui/editable-html-tip-tap:** fix disableImageAlignmentButtons prop and fix alignment in PreviewPrompt PIE-45 ([ef87ea4](https://github.com/pie-framework/pie-lib/commit/ef87ea4e4f9343be4779ea370036a556d67c8cb3))
66
- - streamline beforeEach setup in image component tests ([3d0fc78](https://github.com/pie-framework/pie-lib/commit/3d0fc78b9ceda1664978378ace9f6c3bbd4a2269))
67
- - test ([10d2392](https://github.com/pie-framework/pie-lib/commit/10d23926c2028851bcb26cc41f430aa88e85ff21))
68
- - tests ([4c96c88](https://github.com/pie-framework/pie-lib/commit/4c96c88b791b10d747453914577178b991753961))
69
- - **tip-tap/image-component:** add image deletion handling PIE-38 ([582bd1f](https://github.com/pie-framework/pie-lib/commit/582bd1f8edd33f0a2c5a80eab7d400a2db5113fb))
70
-
71
- ### Features
72
-
73
- - **editable-html-tip-tap:** image -add unique nodeKey attribute for identification PIE-54 ([210c0d5](https://github.com/pie-framework/pie-lib/commit/210c0d5ffda0718b52845b3b4011b98f66b0b547))
74
- - made sure pasting image works in the editor [PIE-173] ([28c46e5](https://github.com/pie-framework/pie-lib/commit/28c46e5d1ec97fdc2d1b4dd454fe19882dea5125))
75
-
76
- ## [2.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@2.0.0...@pie-lib/editable-html-tip-tap@2.0.1) (2026-04-28)
77
-
78
- **Note:** Version bump only for package @pie-lib/editable-html-tip-tap
79
-
80
- # [1.2.0-next.36](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.35...@pie-lib/editable-html-tip-tap@1.2.0-next.36) (2026-04-23)
81
-
82
- ### Bug Fixes
83
-
84
- - made sure colspan elements match the number of columns on removing [PIE-168] ([0ee3056](https://github.com/pie-framework/pie-lib/commit/0ee3056f2c00d71eb83ee2f56ad0efb75dc3b21b))
85
- - made sure custom toolbar is shown for inline dropdown response areas [PIE-130] ([d3cb03d](https://github.com/pie-framework/pie-lib/commit/d3cb03d45eb716d700f1202aa1cc223c169cfde5))
86
-
87
- # [1.2.0-next.35](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.34...@pie-lib/editable-html-tip-tap@1.2.0-next.35) (2026-04-17)
88
-
89
- ### Bug Fixes
90
-
91
- - made sure insertImageRequested is called only once [PIE-1229] ([336d38c](https://github.com/pie-framework/pie-lib/commit/336d38cf2e7e45b621b5dd831991017a694ec5cd))
92
-
93
- # [1.2.0-next.34](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.33...@pie-lib/editable-html-tip-tap@1.2.0-next.34) (2026-04-16)
94
-
95
- ### Bug Fixes
96
-
97
- - **editable-html-tip-tap:** handle list item to avoid default paragraph wrapping PIE-46 ([9c37dac](https://github.com/pie-framework/pie-lib/commit/9c37dac9d10940f59930d21a135cd991f238d622))
98
- - streamline beforeEach setup in image component tests ([3d0fc78](https://github.com/pie-framework/pie-lib/commit/3d0fc78b9ceda1664978378ace9f6c3bbd4a2269))
99
- - tests ([4c96c88](https://github.com/pie-framework/pie-lib/commit/4c96c88b791b10d747453914577178b991753961))
100
-
101
- ### Features
102
-
103
- - **editable-html-tip-tap:** image -add unique nodeKey attribute for identification PIE-54 ([210c0d5](https://github.com/pie-framework/pie-lib/commit/210c0d5ffda0718b52845b3b4011b98f66b0b547))
104
-
105
- # [1.2.0-next.33](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.32...@pie-lib/editable-html-tip-tap@1.2.0-next.33) (2026-04-16)
106
-
107
- ### Bug Fixes
108
-
109
- - made sure correct reference is sent for insert image handler [PIE-1229][PIE-44] ([8db57c0](https://github.com/pie-framework/pie-lib/commit/8db57c035449b5c630a084211b506d2c85786772))
110
-
111
- # [1.2.0-next.32](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.31...@pie-lib/editable-html-tip-tap@1.2.0-next.32) (2026-04-16)
112
-
113
- ### Bug Fixes
114
-
115
- - made sure image handling works properly without losing focus, fix media size problem [PIE-129][PIE-44] ([ad28c81](https://github.com/pie-framework/pie-lib/commit/ad28c816e12d35a59d51bcb03466194c33e3b5dd))
116
-
117
- # [1.2.0-next.31](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.30...@pie-lib/editable-html-tip-tap@1.2.0-next.31) (2026-04-15)
118
-
119
- ### Bug Fixes
120
-
121
- - **render-ui/editable-html-tip-tap:** fix disableImageAlignmentButtons prop and fix alignment in PreviewPrompt PIE-45 ([ef87ea4](https://github.com/pie-framework/pie-lib/commit/ef87ea4e4f9343be4779ea370036a556d67c8cb3))
122
-
123
- # [1.2.0-next.30](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.29...@pie-lib/editable-html-tip-tap@1.2.0-next.30) (2026-04-15)
124
-
125
- ### Features
126
-
127
- - made sure pasting image works in the editor [PIE-173] ([28c46e5](https://github.com/pie-framework/pie-lib/commit/28c46e5d1ec97fdc2d1b4dd454fe19882dea5125))
128
-
129
- # [1.2.0-next.29](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.28...@pie-lib/editable-html-tip-tap@1.2.0-next.29) (2026-04-14)
130
-
131
- ### Bug Fixes
132
-
133
- - **editable-html-tip-tap:** parseHTML as img tag image extension, avoid open upload automatically at mounted PIE-37 ([30bad4e](https://github.com/pie-framework/pie-lib/commit/30bad4ea07c1e4c738534aab115cc16d64195b60))
134
-
135
- # [1.2.0-next.28](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.27...@pie-lib/editable-html-tip-tap@1.2.0-next.28) (2026-04-13)
136
-
137
- ### Bug Fixes
138
-
139
- - **image:** remove unwanted change ([04a484f](https://github.com/pie-framework/pie-lib/commit/04a484f395c8a87407a8ad3f0ff99a7c0af0488a))
140
- - **image:** revert - simplify setImageUploadNode command to directly insert content ([0d4467d](https://github.com/pie-framework/pie-lib/commit/0d4467dd9c29e9c90db6cfbf49f6e68704c1d0a9))
141
-
142
- # [1.2.0-next.27](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.26...@pie-lib/editable-html-tip-tap@1.2.0-next.27) (2026-04-09)
143
-
144
- ### Bug Fixes
145
-
146
- - **editable-html-tip-tap:** image-component - fix active style, dragging issues and update image rendering logic PIE-34 ([5588e8b](https://github.com/pie-framework/pie-lib/commit/5588e8b10f61f2936d2356a4b2d403f29d094efa))
147
- - handle optional chaining and fix test ([c4d4657](https://github.com/pie-framework/pie-lib/commit/c4d4657ed38718142c07ddf2a06225f2a11fd535))
148
-
149
- # [1.2.0-next.26](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.25...@pie-lib/editable-html-tip-tap@1.2.0-next.26) (2026-04-09)
150
-
151
- ### Bug Fixes
152
-
153
- - **editable-html-tip-tap:** open math toolbar in current container PIE-18 ([f33a73f](https://github.com/pie-framework/pie-lib/commit/f33a73fd0c7dbd34571d6490b031459ad89923c3))
154
- - **editable-html-tip-tap:** prevent spanish keyboard to be dismissed when clicking on it PIE-36 ([6c02557](https://github.com/pie-framework/pie-lib/commit/6c02557fd61b5b0cc217340f20b94e1934f6beaa))
155
- - **tip-tap/image-component:** add image deletion handling PIE-38 ([582bd1f](https://github.com/pie-framework/pie-lib/commit/582bd1f8edd33f0a2c5a80eab7d400a2db5113fb))
156
-
157
- # [1.2.0-next.25](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.24...@pie-lib/editable-html-tip-tap@1.2.0-next.25) (2026-04-08)
158
-
159
- ### Bug Fixes
160
-
161
- - **editable-html-tip-tap:** enhance toolbar visibility logic and use portal for rendering ([0b06a9d](https://github.com/pie-framework/pie-lib/commit/0b06a9d2a8b208069d9a774b38797428cff30174))
162
- - made sure div is the default field in the editor, if a breakpoint is added it turns into a p [PIE-53] ([8f33af0](https://github.com/pie-framework/pie-lib/commit/8f33af05047cdd8993a8a862ce3e26e67c6810fe))
163
- - test ([10d2392](https://github.com/pie-framework/pie-lib/commit/10d23926c2028851bcb26cc41f430aa88e85ff21))
164
-
165
- # [1.2.0-next.24](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.23...@pie-lib/editable-html-tip-tap@1.2.0-next.24) (2026-04-07)
166
-
167
- ### Bug Fixes
168
-
169
- - **editable-html-tip-tap:** prevent toolbar from closing when clicking on math node preview PIE-114 ([b422584](https://github.com/pie-framework/pie-lib/commit/b4225846952d9eaef76039d7c6b69b93c5029da6))
170
-
171
- # [1.2.0-next.23](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.22...@pie-lib/editable-html-tip-tap@1.2.0-next.23) (2026-04-06)
172
-
173
- ### Bug Fixes
174
-
175
- - made sure lastIndex in respArea is handled properly, improved spacing around response areas [PIE-35][PIE-40] ([c673701](https://github.com/pie-framework/pie-lib/commit/c673701618bc896208c9760e87ea6dbbd1a91d54))
176
-
177
- # [1.2.0-next.22](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.21...@pie-lib/editable-html-tip-tap@1.2.0-next.22) (2026-04-03)
178
-
179
- ### Bug Fixes
180
-
181
- - **editable-html-tip-tap:** backspace behavior in tiptap and add custom toolbar in ExplicitConstructedResponse PIE-19 PIE-30 ([5779a6d](https://github.com/pie-framework/pie-lib/commit/5779a6d6a1c30f398025d4c7bdce578827b51e3a))
182
- - handle different editors, handle clicks in dropdown PIE-47 ([19c8914](https://github.com/pie-framework/pie-lib/commit/19c89148cee951133680c218fb446107f9b2ce16))
183
- - **math-input:** bump @pie-framework/mathquill to 1.2.1-beta.1 with jQuery shim fixes PIE-16 PIE-20 ([3eaa8fd](https://github.com/pie-framework/pie-lib/commit/3eaa8fd410d8668c2d085cca4a4995a7e66d774f))
184
- - **plot:** remove unnecessary space, prevent new lines, center placeholder PD-5674 ([9840d80](https://github.com/pie-framework/pie-lib/commit/9840d80a1351f19adbe3396d3abae5fb4e310494))
185
-
186
- # [1.2.0-next.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.20...@pie-lib/editable-html-tip-tap@1.2.0-next.21) (2026-03-31)
187
-
188
- ### Bug Fixes
189
-
190
- - **editable-html-tip-tap:** avoid closing math dialog on scrollbar, update test PD-5823 ([ad43e67](https://github.com/pie-framework/pie-lib/commit/ad43e67d9019efae020d2da817568936348bcbc9))
191
-
192
- # [1.2.0-next.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.19...@pie-lib/editable-html-tip-tap@1.2.0-next.20) (2026-03-25)
193
-
194
- ### Bug Fixes
195
-
196
- - **editable-html-tip-tap:** extend text alignment options to include additional elements PD-5851 ([fc43c5c](https://github.com/pie-framework/pie-lib/commit/fc43c5c4c29a4c6bcd42c61d6b18e32d56bf2557))
197
- - provided the pos of the node as well in the response area toolbar callback [PD-5787] ([caa9a90](https://github.com/pie-framework/pie-lib/commit/caa9a90617d15afcd8457c8962460867b3990bbc))
198
-
199
- # [1.2.0-next.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.18...@pie-lib/editable-html-tip-tap@1.2.0-next.19) (2026-03-18)
200
-
201
- ### Bug Fixes
202
-
203
- - **editable-html-tip-tap:** wrap new node with plain text in a div not in a p PD-5669 ([0216b60](https://github.com/pie-framework/pie-lib/commit/0216b60cb54f2af2761042c0be7247b1507b8aeb))
204
-
205
- # [1.2.0-next.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.17...@pie-lib/editable-html-tip-tap@1.2.0-next.18) (2026-03-18)
206
-
207
- ### Bug Fixes
208
-
209
- - **editable-html-tip-tap:** add blockquote, fix styling and add text alignment options PD-5790 ([99b30f6](https://github.com/pie-framework/pie-lib/commit/99b30f6622fd002abcdb901c4584026519bed8b7))
210
-
211
- # [1.2.0-next.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.16...@pie-lib/editable-html-tip-tap@1.2.0-next.17) (2026-03-18)
212
-
213
- ### Bug Fixes
214
-
215
- - add touchAction style to prevent touch interactions in DragInTheBlank and blank components PD-5811 ([ba4d73b](https://github.com/pie-framework/pie-lib/commit/ba4d73b4785cc59e85f3055902667a1cd4db325c))
216
- - **editable-html-tip-tap:** create test for new div block extension PD-5622 ([911ef92](https://github.com/pie-framework/pie-lib/commit/911ef92c08f8de3f7080c36b48aa336f61b55800))
217
- - **editable-html-tip-tap:** set div as default, transform div to p tag at enter, update tests PD-5622 ([32e4126](https://github.com/pie-framework/pie-lib/commit/32e4126b9369c29c165d7a55315b04dbc759a181))
218
-
219
- # [1.2.0-next.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.15...@pie-lib/editable-html-tip-tap@1.2.0-next.16) (2026-03-11)
220
-
221
- **Note:** Version bump only for package @pie-lib/editable-html-tip-tap
222
-
223
- # [1.2.0-next.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.14...@pie-lib/editable-html-tip-tap@1.2.0-next.15) (2026-03-11)
224
-
225
- ### Bug Fixes
226
-
227
- - bump pie-framework/mathquill PD-5791 ([6dd160a](https://github.com/pie-framework/pie-lib/commit/6dd160a980fd53c2acd704b503266863c24bcf23))
228
-
229
- # [1.2.0-next.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.13...@pie-lib/editable-html-tip-tap@1.2.0-next.14) (2026-03-09)
230
-
231
- ### Features
232
-
233
- - remove jQuery dependency via MathQuill 1.2.0-beta.0 Interface v3 shim PD-5791 ([d427f32](https://github.com/pie-framework/pie-lib/commit/d427f32d5547de9610579d83b454c568def7ea74))
234
-
235
- # [1.2.0-next.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.12...@pie-lib/editable-html-tip-tap@1.2.0-next.13) (2026-03-06)
236
-
237
- ### Bug Fixes
238
-
239
- - editable-area responsive, added handling for toolbars inside responseArea, ability to provide editor instance PD-5616-PD-5582-PD-5603-PD-5604-PD-5605 ([02213cd](https://github.com/pie-framework/pie-lib/commit/02213cde4315edb8fa68f1f3b97a14aaba2b156c))
240
-
241
- # [1.2.0-next.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.11...@pie-lib/editable-html-tip-tap@1.2.0-next.12) (2026-03-04)
242
-
243
- ### Bug Fixes
244
-
245
- - **editable-html-tip-tap:** adjust placeholder styling for empty paragraphs to prevent extra height ([a9d8643](https://github.com/pie-framework/pie-lib/commit/a9d86432b7aac9a3ead327c7d32ddbdb94e25fdb))
246
- - **editable-html-tip-tap:** handle focus,selection delete menu PD-5589 ([b975827](https://github.com/pie-framework/pie-lib/commit/b975827da8fed42936f54544c7faba2ea7de009c))
247
-
248
- # [1.2.0-next.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.9...@pie-lib/editable-html-tip-tap@1.2.0-next.11) (2026-02-26)
249
-
250
- **Note:** Version bump only for package @pie-lib/editable-html-tip-tap
251
-
252
- # [1.2.0-next.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.8...@pie-lib/editable-html-tip-tap@1.2.0-next.9) (2026-02-25)
253
-
254
- ### Bug Fixes
255
-
256
- - added math-templated node and element [PD-5558] ([57f1d07](https://github.com/pie-framework/pie-lib/commit/57f1d075582a9b1091167ed5ef1b6d49652401df))
257
-
258
- # [1.2.0-next.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.7...@pie-lib/editable-html-tip-tap@1.2.0-next.8) (2026-02-25)
259
-
260
- ### Bug Fixes
261
-
262
- - **deps:** update [@pie-lib](https://github.com/pie-lib) dependencies to published versions ([134fbdc](https://github.com/pie-framework/pie-lib/commit/134fbdc90c6a15f89a736340578d70fb80a983b3))
263
-
264
- # [1.2.0-next.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.6...@pie-lib/editable-html-tip-tap@1.2.0-next.7) (2026-02-25)
265
-
266
- ### Bug Fixes
267
-
268
- - **editable-html-tip-tap:** add autoWidthToolbar prop to MenuBar and TiptapContainer components PD-5594 ([ccb2727](https://github.com/pie-framework/pie-lib/commit/ccb2727d2aaf64e71564380c5b90179747bc15b5))
269
-
270
- # [1.2.0-next.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.5...@pie-lib/editable-html-tip-tap@1.2.0-next.6) (2026-02-25)
271
-
272
- ### Bug Fixes
273
-
274
- - restore highlightShape prop support in editable-html-tip-tap PD-5583 ([16f9422](https://github.com/pie-framework/pie-lib/commit/16f9422eb48502b97746fdc377184d690aba5bd8))
275
-
276
- # [1.2.0-next.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.4...@pie-lib/editable-html-tip-tap@1.2.0-next.5) (2026-02-25)
277
-
278
- ### Bug Fixes
279
-
280
- - **editable-html-tip-tap:** add support to disable lists PD-5606 ([b74b1d5](https://github.com/pie-framework/pie-lib/commit/b74b1d5215a4e41af3631e728229bac81eb41f3f))
281
- - **editable-html-tip-tap:** prevent media dialog from auto-opening on existing content PD-5624 ([f0111a8](https://github.com/pie-framework/pie-lib/commit/f0111a8fa297361da37a82b4553f66973e13259b))
282
-
283
- # [1.2.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.3...@pie-lib/editable-html-tip-tap@1.2.0-next.4) (2026-02-24)
284
-
285
- **Note:** Version bump only for package @pie-lib/editable-html-tip-tap
286
-
287
- # [1.2.0-next.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.2.0-next.1...@pie-lib/editable-html-tip-tap@1.2.0-next.3) (2026-02-24)
288
-
289
- ### Bug Fixes
290
-
291
- - 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))
292
-
293
- # [1.1.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.1.0-next.2...@pie-lib/editable-html-tip-tap@1.1.0-next.4) (2026-01-27)
294
-
295
- **Note:** Version bump only for package @pie-lib/editable-html-tip-tap
296
-
297
- # [1.1.0-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html-tip-tap@1.1.0-next.1...@pie-lib/editable-html-tip-tap@1.1.0-next.2) (2026-01-26)
298
-
299
- **Note:** Version bump only for package @pie-lib/editable-html-tip-tap
300
-
301
- # 1.1.0-next.1 (2026-01-26)
302
-
303
- ### Bug Fixes
304
-
305
- - bumped versions [PD-5141] ([c2a8c1b](https://github.com/pie-framework/pie-lib/commit/c2a8c1ba27a86f73d32c1e53279b5fcadb52d7d7))
306
- - fix the update attributes code in the image extension [PD-5141] ([6e95af5](https://github.com/pie-framework/pie-lib/commit/6e95af50c9b2446f0b200a52b4f33866e5363380))
307
- - fixed circular dependencies and bumped versions, plus image upload handling [PD-5141] ([7b5fbc9](https://github.com/pie-framework/pie-lib/commit/7b5fbc9126446916d42d6b3597232a231567b2d8))
308
- - fixed import [PD-5141] ([5ca0f0b](https://github.com/pie-framework/pie-lib/commit/5ca0f0bd05cc04e178e672d67f6e0b1127a3a36d))
309
- - fixed some of the issues [PD-5141] ([46326ec](https://github.com/pie-framework/pie-lib/commit/46326ecef920698e942a47c6fc756b9e16878797))
310
- - fixed some responseArea problems and general tip-tap improvements [PD-5141] ([eab7870](https://github.com/pie-framework/pie-lib/commit/eab7870d0e1a24bf5868c058f2a7522d68870a04))
311
- - fixed toolbar not focusing [PD-5141] ([cc01875](https://github.com/pie-framework/pie-lib/commit/cc01875fee48b853f49e9f37ab343d1013cc2372))
312
- - implemented read only mode, fixed highlighting [PD-5141] ([6f14213](https://github.com/pie-framework/pie-lib/commit/6f14213d24381428fe7b44dfe6ec0c76801ed532))
313
- - made sure characterpicker is over the editor ([921c6d3](https://github.com/pie-framework/pie-lib/commit/921c6d31baf2ce14a59d6a3222124753ebd91482))
314
- - made sure displayed plugins are customizable [PD-5141] ([ceac403](https://github.com/pie-framework/pie-lib/commit/ceac40359f611a24cc44261dda0d1318a77ac5e9))
315
- - made sure inline-dropdown works properly, fixed pluginprops use [PD-5141] ([0516164](https://github.com/pie-framework/pie-lib/commit/05161642349eb9cc0a088211b8fc17e4c0c9a94c))
316
- - made sure insert special characters works properly [PD-5409] ([5a61688](https://github.com/pie-framework/pie-lib/commit/5a61688c7327112bb1f5cb557f3c84dfc9f084f9))
317
- - made sure onChange is called when needed [PD-5141] ([f1e737c](https://github.com/pie-framework/pie-lib/commit/f1e737c6aa5aada6645d29b7139116dd13316103))
318
- - new versioning and published mask-markup and math-input [PD-5141] ([9c7e825](https://github.com/pie-framework/pie-lib/commit/9c7e8252a7de293b0f1d836f305511e53b28b8a6))
319
- - refactored tip-tap editor, made sure response area works [PD-5141] ([e97d80a](https://github.com/pie-framework/pie-lib/commit/e97d80a28eb97f86d85ba7525ce5936314e76abc))
320
- - removed faulty import [PD-5141] ([efb7db1](https://github.com/pie-framework/pie-lib/commit/efb7db12c9637f01bb5e9459adadcde0f31aa7d1))
321
- - removed horizontal line, fixed math and characters dialog positioning [PD-5141] ([7df8a11](https://github.com/pie-framework/pie-lib/commit/7df8a1151d420333303b9efb48e864b403a0cbb4))
322
- - updated tip-tap with mui instead of material-ui [PD-5141] ([880d3ab](https://github.com/pie-framework/pie-lib/commit/880d3ab1d63aa12c7e975c882f50624200565737))
323
-
324
- ## [11.21.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.17.2...@pie-lib/editable-html@11.21.1) (2025-10-22)
325
-
326
- **Note:** Version bump only for package @pie-lib/editable-html
327
-
328
- # [11.21.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.20.0...@pie-lib/editable-html@11.21.0) (2025-10-16)
329
-
330
- **Note:** Version bump only for package @pie-lib/editable-html
331
-
332
- # [11.20.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.17.0...@pie-lib/editable-html@11.20.0) (2025-10-16)
333
-
334
- **Note:** Version bump only for package @pie-lib/editable-html
335
-
336
- # [11.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.17.0...@pie-lib/editable-html@11.19.0) (2025-10-16)
337
-
338
- **Note:** Version bump only for package @pie-lib/editable-html
339
-
340
- # [11.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.17.0...@pie-lib/editable-html@11.18.0) (2025-10-16)
341
-
342
- **Note:** Version bump only for package @pie-lib/editable-html
343
-
344
- ## [11.17.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.17.1...@pie-lib/editable-html@11.17.2) (2025-10-14)
345
-
346
- **Note:** Version bump only for package @pie-lib/editable-html
347
-
348
- ## [11.17.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.17.0...@pie-lib/editable-html@11.17.1) (2025-10-09)
349
-
350
- **Note:** Version bump only for package @pie-lib/editable-html
351
-
352
- # [11.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.17.0) (2025-09-25)
353
-
354
- ### Bug Fixes
355
-
356
- - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
357
-
358
- ### Features
359
-
360
- - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
361
-
362
- # [11.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.15.0...@pie-lib/editable-html@11.16.0) (2025-09-18)
363
-
364
- **Note:** Version bump only for package @pie-lib/editable-html
365
-
366
- # [11.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.14.0...@pie-lib/editable-html@11.15.0) (2025-09-18)
367
-
368
- **Note:** Version bump only for package @pie-lib/editable-html
369
-
370
- # [11.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.14.0) (2025-09-18)
371
-
372
- ### Bug Fixes
373
-
374
- - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
375
-
376
- ### Features
377
-
378
- - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
379
-
380
- # [11.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.12.0...@pie-lib/editable-html@11.13.0) (2025-09-17)
381
-
382
- **Note:** Version bump only for package @pie-lib/editable-html
383
-
384
- # [11.12.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.11.0...@pie-lib/editable-html@11.12.0) (2025-09-17)
385
-
386
- **Note:** Version bump only for package @pie-lib/editable-html
387
-
388
- # [11.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.10.1...@pie-lib/editable-html@11.11.0) (2025-09-17)
389
-
390
- **Note:** Version bump only for package @pie-lib/editable-html
391
-
392
- ## [11.10.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.10.1) (2025-08-11)
393
-
394
- ### Bug Fixes
395
-
396
- - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
397
-
398
- ### Features
399
-
400
- - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
401
-
402
- # [11.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.10.0) (2025-08-07)
403
-
404
- ### Features
405
-
406
- - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
407
-
408
- # [11.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.9.0) (2025-07-31)
409
-
410
- **Note:** Version bump only for package @pie-lib/editable-html
411
-
412
- # [11.8.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.8.0) (2025-07-31)
413
-
414
- **Note:** Version bump only for package @pie-lib/editable-html
415
-
416
- # [11.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.7.0) (2025-07-31)
417
-
418
- **Note:** Version bump only for package @pie-lib/editable-html
419
-
420
- # [11.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.6.0) (2025-07-31)
421
-
422
- **Note:** Version bump only for package @pie-lib/editable-html
423
-
424
- # [11.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.5.0) (2025-07-31)
425
-
426
- **Note:** Version bump only for package @pie-lib/editable-html
427
-
428
- # [11.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.4.0) (2025-07-31)
429
-
430
- **Note:** Version bump only for package @pie-lib/editable-html
431
-
432
- # [11.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.6.0) (2025-07-31)
433
-
434
- **Note:** Version bump only for package @pie-lib/editable-html
435
-
436
- # [11.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.5.0) (2025-07-31)
437
-
438
- **Note:** Version bump only for package @pie-lib/editable-html
439
-
440
- # [11.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.4.0) (2025-07-31)
441
-
442
- **Note:** Version bump only for package @pie-lib/editable-html
443
-
444
- # [11.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.5.0) (2025-07-31)
445
-
446
- **Note:** Version bump only for package @pie-lib/editable-html
447
-
448
- # [11.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.4.0) (2025-07-31)
449
-
450
- **Note:** Version bump only for package @pie-lib/editable-html
451
-
452
- # [11.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.3.0) (2025-07-31)
453
-
454
- **Note:** Version bump only for package @pie-lib/editable-html
455
-
456
- # [11.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.3.0) (2025-07-31)
457
-
458
- **Note:** Version bump only for package @pie-lib/editable-html
459
-
460
- # [11.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.4.0) (2025-07-31)
461
-
462
- **Note:** Version bump only for package @pie-lib/editable-html
463
-
464
- # [11.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.3.0) (2025-07-31)
465
-
466
- **Note:** Version bump only for package @pie-lib/editable-html
467
-
468
- # [11.2.0-beta.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.8) (2025-07-25)
469
-
470
- **Note:** Version bump only for package @pie-lib/editable-html
471
-
472
- # [11.2.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.7) (2025-07-25)
473
-
474
- **Note:** Version bump only for package @pie-lib/editable-html
475
-
476
- # [11.2.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.7) (2025-07-25)
477
-
478
- **Note:** Version bump only for package @pie-lib/editable-html
479
-
480
- # [11.2.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.6) (2025-07-25)
481
-
482
- **Note:** Version bump only for package @pie-lib/editable-html
483
-
484
- # [11.2.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.6) (2025-07-25)
485
-
486
- **Note:** Version bump only for package @pie-lib/editable-html
487
-
488
- # [11.2.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.5) (2025-07-25)
489
-
490
- **Note:** Version bump only for package @pie-lib/editable-html
491
-
492
- # [11.2.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.5) (2025-07-25)
493
-
494
- **Note:** Version bump only for package @pie-lib/editable-html
495
-
496
- # [11.2.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.4) (2025-07-25)
497
-
498
- **Note:** Version bump only for package @pie-lib/editable-html
499
-
500
- # [11.2.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.3) (2025-07-25)
501
-
502
- **Note:** Version bump only for package @pie-lib/editable-html
503
-
504
- # [11.2.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.4) (2025-07-23)
505
-
506
- **Note:** Version bump only for package @pie-lib/editable-html
507
-
508
- # [11.2.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.3) (2025-07-23)
509
-
510
- **Note:** Version bump only for package @pie-lib/editable-html
511
-
512
- # [11.2.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.3) (2025-07-20)
513
-
514
- **Note:** Version bump only for package @pie-lib/editable-html
515
-
516
- # [11.2.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.2) (2025-07-20)
517
-
518
- **Note:** Version bump only for package @pie-lib/editable-html
519
-
520
- # [11.2.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.1) (2025-07-20)
521
-
522
- **Note:** Version bump only for package @pie-lib/editable-html
523
-
524
- # [11.2.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.2) (2025-07-20)
525
-
526
- **Note:** Version bump only for package @pie-lib/editable-html
527
-
528
- # [11.2.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.1) (2025-07-20)
529
-
530
- **Note:** Version bump only for package @pie-lib/editable-html
531
-
532
- # [11.2.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.1) (2025-07-20)
533
-
534
- **Note:** Version bump only for package @pie-lib/editable-html
535
-
536
- # [11.2.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.0) (2025-07-20)
537
-
538
- **Note:** Version bump only for package @pie-lib/editable-html
539
-
540
- # [11.3.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.3.0-beta.0) (2025-07-15)
541
-
542
- **Note:** Version bump only for package @pie-lib/editable-html
543
-
544
- # [11.2.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.0) (2025-07-15)
545
-
546
- **Note:** Version bump only for package @pie-lib/editable-html
547
-
548
- # [11.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.9...@pie-lib/editable-html@11.1.0) (2023-10-16)
549
-
550
- ### Bug Fixes
551
-
552
- - made sure editor is waiting for image and sound upload before finishes editing PD-2950 ([41b9407](https://github.com/pie-framework/pie-lib/commit/41b94078da7c50ce8d36fdc67bda83a44e0bff9b))
553
-
554
- ### Features
555
-
556
- - made sure editor is waiting for image and sound upload before finishes editing PD-2950 ([#948](https://github.com/pie-framework/pie-lib/issues/948)) ([bd16707](https://github.com/pie-framework/pie-lib/commit/bd16707f13f824dfe2c2db7f395e58fa25eb2ffb))
557
-
558
- ## [11.0.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.8...@pie-lib/editable-html@11.0.9) (2023-10-16)
559
-
560
- ### Bug Fixes
561
-
562
- - **editable-html:** add clarifying comments for HTML mode edit tracking PD-2765 ([3870a4d](https://github.com/pie-framework/pie-lib/commit/3870a4d9b2e618ae6f32e6d20713978c4d791b14))
563
- - **editable-html:** hide DoneButton on active htmlMode PD-2765 ([636a302](https://github.com/pie-framework/pie-lib/commit/636a302ab81016b2de8a16b1e6d96923d25b0592))
564
- - **editable-html:** Prevent infinite loop in componentDidUpdate by refining isEdited state check PD-2765 ([e858ad0](https://github.com/pie-framework/pie-lib/commit/e858ad030e444b6be1ea57e950e6aa3462b5f60d))
565
- - **editable-html:** Remove body overflow set by Material-UI and disable dialog scroll lock PD-3233 ([8ab4bde](https://github.com/pie-framework/pie-lib/commit/8ab4bde07fa411ef3cb31794309213bde541b6eb))
566
-
567
- ## [11.0.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.7...@pie-lib/editable-html@11.0.8) (2023-10-03)
568
-
569
- ### Bug Fixes
570
-
571
- - revert to pie-lib/math-rendering that what working ([25660ea](https://github.com/pie-framework/pie-lib/commit/25660ea6595e800a71c5494bd3bb9eecd3609a5a))
572
-
573
- ## [11.0.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.6...@pie-lib/editable-html@11.0.7) (2023-10-01)
574
-
575
- **Note:** Version bump only for package @pie-lib/editable-html
576
-
577
- ## [11.0.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.5...@pie-lib/editable-html@11.0.6) (2023-09-27)
578
-
579
- **Note:** Version bump only for package @pie-lib/editable-html
580
-
581
- ## [11.0.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.4...@pie-lib/editable-html@11.0.5) (2023-09-27)
582
-
583
- **Note:** Version bump only for package @pie-lib/editable-html
584
-
585
- ## [11.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.3...@pie-lib/editable-html@11.0.4) (2023-09-27)
586
-
587
- **Note:** Version bump only for package @pie-lib/editable-html
588
-
589
- ## [11.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.2...@pie-lib/editable-html@11.0.3) (2023-09-26)
590
-
591
- ### Bug Fixes
592
-
593
- - **charting:** adjust icon for the drag handle PD-2790 ([fe670d7](https://github.com/pie-framework/pie-lib/commit/fe670d7a04f44da5c93dadbeec41b753ce50f9f6))
594
-
595
- ## [11.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.1...@pie-lib/editable-html@11.0.2) (2023-09-25)
596
-
597
- **Note:** Version bump only for package @pie-lib/editable-html
598
-
599
- ## [11.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.0...@pie-lib/editable-html@11.0.1) (2023-09-20)
600
-
601
- **Note:** Version bump only for package @pie-lib/editable-html
602
-
603
- # [11.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.7...@pie-lib/editable-html@11.0.0) (2023-09-20)
604
-
605
- ### Bug Fixes
606
-
607
- - update mathml-to-latex version ([1d101d2](https://github.com/pie-framework/pie-lib/commit/1d101d22298bd480a5aec638e4c9708d5aa52ce4))
608
-
609
- ### BREAKING CHANGES
610
-
611
- - updated mathml-to-latex version.
612
-
613
- ## [10.0.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.6...@pie-lib/editable-html@10.0.7) (2023-09-18)
614
-
615
- ### Bug Fixes
616
-
617
- - use the mathMl resulted no matter if new latex is not identical; added a function to fix the round branckets issue ([61eeaed](https://github.com/pie-framework/pie-lib/commit/61eeaedc240bc247842a0164c07e58a8d8d792c9))
618
- - **editable-html:** Disable HTML mode in player & retain html mode on alert dialog cancel PD-2765 ([4c56092](https://github.com/pie-framework/pie-lib/commit/4c56092bc66ebde1571b42419c563c580c68b927))
619
-
620
- ## [10.0.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.5...@pie-lib/editable-html@10.0.6) (2023-09-14)
621
-
622
- **Note:** Version bump only for package @pie-lib/editable-html
623
-
624
- ## [10.0.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.4...@pie-lib/editable-html@10.0.5) (2023-09-14)
625
-
626
- ### Bug Fixes
627
-
628
- - sanity check ([88e9afd](https://github.com/pie-framework/pie-lib/commit/88e9afd40b0aada05eb55284e00c7d918f029f08))
629
-
630
- ## [10.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.3...@pie-lib/editable-html@10.0.4) (2023-09-14)
631
-
632
- ### Bug Fixes
633
-
634
- - import reduceMultipleBrs, add more details into console message PD-3167 ([5adcc05](https://github.com/pie-framework/pie-lib/commit/5adcc054e1bd5a71809827484d368d172a1255d3))
635
-
636
- ## [10.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.2...@pie-lib/editable-html@10.0.3) (2023-09-05)
637
-
638
- ### Bug Fixes
639
-
640
- - make HTML disabled by default PD-2765 ([82bd362](https://github.com/pie-framework/pie-lib/commit/82bd36240205b8e0e31043cc8559267de0d5dc30))
641
-
642
- ## [10.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.1...@pie-lib/editable-html@10.0.2) (2023-09-02)
643
-
644
- ### Bug Fixes
645
-
646
- - made sure div blocks are not present at the same level as paragraph ones PD-3051 ([f597969](https://github.com/pie-framework/pie-lib/commit/f59796980ad87323b401543fb3963edcea3775c6))
647
-
648
- ## [10.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.0...@pie-lib/editable-html@10.0.1) (2023-09-02)
649
-
650
- ### Bug Fixes
651
-
652
- - made sure multiple nodes are wrapped in a block, in order for slate to handle it properly PD-3051 ([fd6ed48](https://github.com/pie-framework/pie-lib/commit/fd6ed48070979cd34bc64403228b728394a8afed))
653
-
654
- # [10.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.8...@pie-lib/editable-html@10.0.0) (2023-08-30)
655
-
656
- ### Bug Fixes
657
-
658
- - **editable-html:** Update 'isEdited' state to accurately track changes made in HTML mode PD-2765 ([913543e](https://github.com/pie-framework/pie-lib/commit/913543ec75302da3de0b86efc48c62bb06f92515))
659
-
660
- ### Features
661
-
662
- - **editable-html:** display warning dialog conditional on edits in HTML mode PD-2765 ([58d66d5](https://github.com/pie-framework/pie-lib/commit/58d66d57668a8288f32e3e6ed78cf97a61f58b17))
663
- - **editable-html:** display warning dialog upon exiting html mode PD-2765 ([8fd9fb9](https://github.com/pie-framework/pie-lib/commit/8fd9fb964f681d261e22ec09aa8b8e6def2f7744))
664
- - **editable-html:** implement toggle functionality for for switching between WYSIWYG and plain text HTML editors PD-2765 ([d44a549](https://github.com/pie-framework/pie-lib/commit/d44a549dcd4bb117c71a1f90bd7bc8eeb6a82a5e))
665
- - **editable-html:** implement toggle functionality for switching between WYSIWYG and plain text HTML editors PD-2765 ([6541a85](https://github.com/pie-framework/pie-lib/commit/6541a85dd430d4d7c81fe3960a37e597f29a0ec2))
666
- - **editable-html:** only show relevant toolbar buttons in HTML mode PD-2765 ([ed36dcb](https://github.com/pie-framework/pie-lib/commit/ed36dcb9a95f3d990da967f65e942922b60e42e6))
667
- - **editable-html:** revise state handling for isHtmlMode and isEdited to accurately display choices in response area when toggling between html mode and rich text editor ([c800a22](https://github.com/pie-framework/pie-lib/commit/c800a22e323e863bae691e07b2b80774997ba0ea))
668
- - **editable-html:** revise state handling for isHtmlMode and isEdited to accurately display choices in response area when toggling between html mode and rich text editor ([6daf84e](https://github.com/pie-framework/pie-lib/commit/6daf84e9692df368f7aa6866a33368941312872e))
669
-
670
- ### BREAKING CHANGES
671
-
672
- - **editable-html:** add a button to the editable-html editor that changes the field from using a WYSIWYG editor to using a plaintext editor that displays the raw HTML and allows it to be edited.
673
-
674
- ## [9.7.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.7...@pie-lib/editable-html@9.7.8) (2023-08-21)
675
-
676
- ### Bug Fixes
677
-
678
- - revert revert changes made for PD-3051 because they were causing PD-3119 ([371111c](https://github.com/pie-framework/pie-lib/commit/371111c26e0b0f886724f72ea67df0da3febef74))
679
-
680
- ## [9.7.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.6...@pie-lib/editable-html@9.7.7) (2023-08-21)
681
-
682
- **Note:** Version bump only for package @pie-lib/editable-html
683
-
684
- ## [9.7.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.5...@pie-lib/editable-html@9.7.6) (2023-08-15)
685
-
686
- **Note:** Version bump only for package @pie-lib/editable-html
687
-
688
- ## [9.7.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.4...@pie-lib/editable-html@9.7.5) (2023-08-07)
689
-
690
- ### Bug Fixes
691
-
692
- - made sure content is wrapped in a paragraph in order for slate to handle it properly PD-3051 ([4e3f756](https://github.com/pie-framework/pie-lib/commit/4e3f756bc783cae3b67762cacfacc09d32828918))
693
-
694
- ## [9.7.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.3...@pie-lib/editable-html@9.7.4) (2023-07-31)
695
-
696
- **Note:** Version bump only for package @pie-lib/editable-html
697
-
698
- ## [9.7.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.2...@pie-lib/editable-html@9.7.3) (2023-07-24)
699
-
700
- **Note:** Version bump only for package @pie-lib/editable-html
701
-
702
- ## [9.7.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.1...@pie-lib/editable-html@9.7.2) (2023-07-04)
703
-
704
- **Note:** Version bump only for package @pie-lib/editable-html
705
-
706
- ## [9.7.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.0...@pie-lib/editable-html@9.7.1) (2023-06-24)
707
-
708
- ### Bug Fixes
709
-
710
- - made sure mathMlOptions are editable live [PD-2150](<[31ce3d3](https://github.com/pie-framework/pie-lib/commit/31ce3d3536788021b912895c611f972aa87161b0)>)
711
-
712
- # [9.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.6.6...@pie-lib/editable-html@9.7.0) (2023-06-23)
713
-
714
- ### Features
715
-
716
- - **editable-html:** make error class important to avoid overwriting ([37af2fc](https://github.com/pie-framework/pie-lib/commit/37af2fc862f3e5d0dfd0b1ad42fbd462d98bac89))
717
-
718
- ## [9.6.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.6.5...@pie-lib/editable-html@9.6.6) (2023-06-13)
719
-
720
- **Note:** Version bump only for package @pie-lib/editable-html
721
-
722
- ## [9.6.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.6.4...@pie-lib/editable-html@9.6.5) (2023-06-12)
723
-
724
- **Note:** Version bump only for package @pie-lib/editable-html
725
-
726
- ## [9.6.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.6.3...@pie-lib/editable-html@9.6.4) (2023-06-12)
727
-
728
- ### Bug Fixes
729
-
730
- - rerun serialization if mathml options are provided, added tests as well PD-2150 ([530af87](https://github.com/pie-framework/pie-lib/commit/530af87026010325124b70a47fd18e4a0d06cedb))
731
- - use mmlToLatex if mathMlOptions.mmlEditing is true; check if conversions work properly, otherwise, don't make them PD-2150 ([b78650c](https://github.com/pie-framework/pie-lib/commit/b78650c89693e4b4010950d6abdbaf6a0a0db18c))
732
-
733
- ## [9.6.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.6.2...@pie-lib/editable-html@9.6.3) (2023-06-05)
734
-
735
- **Note:** Version bump only for package @pie-lib/editable-html
736
-
737
- ## [9.6.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.6.1...@pie-lib/editable-html@9.6.2) (2023-05-22)
738
-
739
- ### Bug Fixes
740
-
741
- - made sure insert special and spanish characters take a max width of 500px PD-1914 ([93379c1](https://github.com/pie-framework/pie-lib/commit/93379c1dfe739905f29c93dfb5065734207087d2))
742
-
743
- ## [9.6.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.6.0...@pie-lib/editable-html@9.6.1) (2023-05-12)
744
-
745
- **Note:** Version bump only for package @pie-lib/editable-html
746
-
747
- # [9.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.26...@pie-lib/editable-html@9.6.0) (2023-05-11)
748
-
749
- ### Features
750
-
751
- - save file in Image Handler in order to be used for imageSupport in pie-player-components PD-2707 ([a94cbf9](https://github.com/pie-framework/pie-lib/commit/a94cbf9e575955ea530eaca77e9f8a9f088c49dd))
752
-
753
- ## [9.5.26](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.25...@pie-lib/editable-html@9.5.26) (2023-05-02)
754
-
755
- ### Bug Fixes
756
-
757
- - **math-toolbar:** add white background for spanish and special characters done button PD-2119 ([3c1dd82](https://github.com/pie-framework/pie-lib/commit/3c1dd82f7d3f21651d3e5f87d5d543ad4a0907bf))
758
-
759
- ## [9.5.25](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.24...@pie-lib/editable-html@9.5.25) (2023-05-01)
760
-
761
- **Note:** Version bump only for package @pie-lib/editable-html
762
-
763
- ## [9.5.24](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.23...@pie-lib/editable-html@9.5.24) (2023-04-25)
764
-
765
- **Note:** Version bump only for package @pie-lib/editable-html
766
-
767
- ## [9.5.23](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.22...@pie-lib/editable-html@9.5.23) (2023-04-19)
768
-
769
- ### Bug Fixes
770
-
771
- - **eslint:** fix eslint problems-PD-2732 ([9eb9976](https://github.com/pie-framework/pie-lib/commit/9eb9976749753da86e1057a07bd2cfc65bf64ae4))
772
-
773
- ## [9.5.22](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.21...@pie-lib/editable-html@9.5.22) (2023-04-14)
774
-
775
- **Note:** Version bump only for package @pie-lib/editable-html
776
-
777
- ## [9.5.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.20...@pie-lib/editable-html@9.5.21) (2023-04-14)
778
-
779
- **Note:** Version bump only for package @pie-lib/editable-html
780
-
781
- ## [9.5.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.19...@pie-lib/editable-html@9.5.20) (2023-04-07)
782
-
783
- **Note:** Version bump only for package @pie-lib/editable-html
784
-
785
- ## [9.5.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.18...@pie-lib/editable-html@9.5.19) (2023-04-03)
786
-
787
- ### Bug Fixes
788
-
789
- - **editable-html:** focus on empty choice-PD-1805 ([3497742](https://github.com/pie-framework/pie-lib/commit/34977426bfd4db1a5c6869bc275ffbbe30ad3131))
790
-
791
- ## [9.5.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.17...@pie-lib/editable-html@9.5.18) (2023-03-27)
792
-
793
- **Note:** Version bump only for package @pie-lib/editable-html
794
-
795
- ## [9.5.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.16...@pie-lib/editable-html@9.5.17) (2023-03-20)
796
-
797
- ### Bug Fixes
798
-
799
- - **editable-html:** tweak placement of the character toolbar if parent is scrollable PD-2175 ([11daa2e](https://github.com/pie-framework/pie-lib/commit/11daa2ea984ad5fef849a612ffcd4e53dd6af7b1))
800
-
801
- ## [9.5.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.15...@pie-lib/editable-html@9.5.16) (2023-03-13)
802
-
803
- **Note:** Version bump only for package @pie-lib/editable-html
804
-
805
- ## [9.5.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.13...@pie-lib/editable-html@9.5.15) (2023-02-28)
806
-
807
- ### Bug Fixes
808
-
809
- - version bump ([d9280a9](https://github.com/pie-framework/pie-lib/commit/d9280a9aeddab459b6d84ecdbeb62814e1eee965))
810
-
811
- ## [9.5.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.12...@pie-lib/editable-html@9.5.13) (2023-02-28)
812
-
813
- **Note:** Version bump only for package @pie-lib/editable-html
814
-
815
- ## [9.5.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.10...@pie-lib/editable-html@9.5.12) (2023-01-31)
816
-
817
- **Note:** Version bump only for package @pie-lib/editable-html
818
-
819
- ## [9.5.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.9...@pie-lib/editable-html@9.5.10) (2023-01-31)
820
-
821
- **Note:** Version bump only for package @pie-lib/editable-html
822
-
823
- ## [9.5.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.8...@pie-lib/editable-html@9.5.9) (2023-01-31)
824
-
825
- **Note:** Version bump only for package @pie-lib/editable-html
826
-
827
- ## [9.5.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.7...@pie-lib/editable-html@9.5.8) (2023-01-31)
828
-
829
- **Note:** Version bump only for package @pie-lib/editable-html
830
-
831
- ## [9.5.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.5...@pie-lib/editable-html@9.5.7) (2023-01-31)
832
-
833
- **Note:** Version bump only for package @pie-lib/editable-html
834
-
835
- ## [9.5.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.3...@pie-lib/editable-html@9.5.5) (2023-01-31)
836
-
837
- **Note:** Version bump only for package @pie-lib/editable-html
838
-
839
- ## [9.5.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.1...@pie-lib/editable-html@9.5.3) (2023-01-31)
840
-
841
- **Note:** Version bump only for package @pie-lib/editable-html
842
-
843
- ## [9.5.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.5.0...@pie-lib/editable-html@9.5.1) (2023-01-31)
844
-
845
- **Note:** Version bump only for package @pie-lib/editable-html
846
-
847
- # [9.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.4.1...@pie-lib/editable-html@9.5.0) (2023-01-16)
848
-
849
- ### Features
850
-
851
- - added theme naming support + cleanup ([72d562d](https://github.com/pie-framework/pie-lib/commit/72d562d509e5d31d883690eb455a9afea6bf54fc))
852
-
853
- ## [9.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.4.0...@pie-lib/editable-html@9.4.1) (2023-01-04)
854
-
855
- **Note:** Version bump only for package @pie-lib/editable-html
856
-
857
- # [9.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.3.0...@pie-lib/editable-html@9.4.0) (2023-01-03)
858
-
859
- ### Bug Fixes
860
-
861
- - add param to createToolbarOpts ([b80af8a](https://github.com/pie-framework/pie-lib/commit/b80af8ad0a7381a14ba935b7ee121133ab99f765))
862
- - revert changes to yarn lock that are causing build issues ([390d28c](https://github.com/pie-framework/pie-lib/commit/390d28c479452d58978984c961ed56716f156f91))
863
-
864
- ### Features
865
-
866
- - **editable-html:** add error PD-2417 ([b53fb99](https://github.com/pie-framework/pie-lib/commit/b53fb993c27ee7058b3d4c0722b1c582592bbec4))
867
-
868
- # [9.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.2.9...@pie-lib/editable-html@9.3.0) (2022-12-19)
869
-
870
- ### Bug Fixes
871
-
872
- - **editable-html:** fix spellCheck functionality on mobile devices for extended-text-entry player PD-2144 ([bb70090](https://github.com/pie-framework/pie-lib/commit/bb7009076da301a063754f3fb3b09c800bfae262))
873
-
874
- ### Features
875
-
876
- - **editable-html:** select text at focus-PD-1971 ([f7c7bce](https://github.com/pie-framework/pie-lib/commit/f7c7bce8abc72aa3aa3b3c7adbf281ea34253d35))
877
-
878
- ## [9.2.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.2.8...@pie-lib/editable-html@9.2.9) (2022-12-06)
879
-
880
- ### Bug Fixes
881
-
882
- - **editable-html:** close image toolbar after insertion of alt text to prevent blocked state PD-2083 ([76be3dd](https://github.com/pie-framework/pie-lib/commit/76be3dd3ef9c1c314c131d39bfdb99b2c7f076d4))
883
-
884
- ## [9.2.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.2.7...@pie-lib/editable-html@9.2.8) (2022-11-29)
885
-
886
- **Note:** Version bump only for package @pie-lib/editable-html
887
-
888
- ## [9.2.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.2.6...@pie-lib/editable-html@9.2.7) (2022-11-23)
889
-
890
- **Note:** Version bump only for package @pie-lib/editable-html
891
-
892
- ## [9.2.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.2.5...@pie-lib/editable-html@9.2.6) (2022-11-23)
893
-
894
- **Note:** Version bump only for package @pie-lib/editable-html
895
-
896
- ## [9.2.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.2.4...@pie-lib/editable-html@9.2.5) (2022-11-17)
897
-
898
- **Note:** Version bump only for package @pie-lib/editable-html
899
-
900
- ## [9.2.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.2.3...@pie-lib/editable-html@9.2.4) (2022-11-14)
901
-
902
- **Note:** Version bump only for package @pie-lib/editable-html
903
-
904
- ## [9.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.2.2...@pie-lib/editable-html@9.2.3) (2022-10-31)
905
-
906
- ### Bug Fixes
907
-
908
- - **editable-html:** increase helper text font size in alt dialog PD-2087 ([013cecb](https://github.com/pie-framework/pie-lib/commit/013cecbae73b5b8b6199aa814feb34d9627ed26f))
909
- - **editable-html:** send autoWidth property to toolbar to fix PD-2129 ([f001ddb](https://github.com/pie-framework/pie-lib/commit/f001ddbf51bd8a2b3294603811351b26587bfc0b))
910
-
911
- ## [9.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.2.1...@pie-lib/editable-html@9.2.2) (2022-09-29)
912
-
913
- ### Bug Fixes
914
-
915
- - **editable-html:** handle use case were there no child in audio tag ([dbc5410](https://github.com/pie-framework/pie-lib/commit/dbc54109fbe7201aea5ea6d5a6226f8ce9c797a0))
916
-
917
- ### Reverts
918
-
919
- - Revert "PD-1886 updated slate js version" ([0069bc8](https://github.com/pie-framework/pie-lib/commit/0069bc829175194e663a9601f284a31d7285d7eb))
920
-
921
- ## [9.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.2.0...@pie-lib/editable-html@9.2.1) (2022-09-28)
922
-
923
- ### Bug Fixes
924
-
925
- - fire add image method when copy-paste image is used ([23d525e](https://github.com/pie-framework/pie-lib/commit/23d525efda2d41a8bfd603460b4cc4fda5d2a184))
926
-
927
- # [9.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.1.6...@pie-lib/editable-html@9.2.0) (2022-09-28)
928
-
929
- ### Bug Fixes
930
-
931
- - **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))
932
-
933
- ### Features
934
-
935
- - add upload logic in pie lib (wip) PD-23-updated ([c666f68](https://github.com/pie-framework/pie-lib/commit/c666f68682bf4e9746cea3d7e18c1b1e1948131d))
936
- - add upload logic in pie lib (wip) PD-23-updated ([0ece29e](https://github.com/pie-framework/pie-lib/commit/0ece29e256ee7d7c84202d1be97244e7d4b70411))
937
- - hide edit uploaded sound in editable-html for now ([88882e6](https://github.com/pie-framework/pie-lib/commit/88882e6704f5f5f889328666a9b0fe03554339cd))
938
- - UI improvements and bit of cleanup for PD-23-updated ([37e88e8](https://github.com/pie-framework/pie-lib/commit/37e88e8fb04698eadb805c26b5ee2c57cc0b51a8))
939
- - **editable-html:** allow audio file upload (editable-html & rendering logic) ([f5df32d](https://github.com/pie-framework/pie-lib/commit/f5df32d1e53859435556f866e8727fef077896d4))
940
- - **editable-html:** allow audio file upload (modal logic) ([f57cff1](https://github.com/pie-framework/pie-lib/commit/f57cff12d861d1182ab2fa84c8ce2a89f144b222))
941
- - **editable-html:** finalize audio upload implementation (it works via new prop `pieApi: { token, host }`) PD-23 ([4fa7389](https://github.com/pie-framework/pie-lib/commit/4fa7389e5a6eff8b58c9d893424f82197b574f02))
942
- - **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))
943
-
944
- ## [9.1.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.1.5...@pie-lib/editable-html@9.1.6) (2022-09-14)
945
-
946
- **Note:** Version bump only for package @pie-lib/editable-html
947
-
948
- ## [9.1.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.1.4...@pie-lib/editable-html@9.1.5) (2022-08-30)
949
-
950
- **Note:** Version bump only for package @pie-lib/editable-html
951
-
952
- ## [9.1.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.1.3...@pie-lib/editable-html@9.1.4) (2022-08-29)
953
-
954
- ### Bug Fixes
955
-
956
- - revert defaults to empty ([d7905be](https://github.com/pie-framework/pie-lib/commit/d7905be52adcda0af2ae92ec537b02beb1313439))
957
-
958
- ## [9.1.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.1.2...@pie-lib/editable-html@9.1.3) (2022-08-29)
959
-
960
- ### Bug Fixes
961
-
962
- - **plugins:** can scroll on insert character toolbar, toolbar closes when not focused, not closing automatically on insert ([cc203db](https://github.com/pie-framework/pie-lib/commit/cc203dbb534f4989a0c2d840e4e83ed53fda15e5))
963
-
964
- ## [9.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.1.1...@pie-lib/editable-html@9.1.2) (2022-08-15)
965
-
966
- **Note:** Version bump only for package @pie-lib/editable-html
967
-
968
- ## [9.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.1.0...@pie-lib/editable-html@9.1.1) (2022-08-08)
969
-
970
- **Note:** Version bump only for package @pie-lib/editable-html
971
-
972
- # [9.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.0.5...@pie-lib/editable-html@9.1.0) (2022-08-01)
973
-
974
- ### Features
975
-
976
- - **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))
977
-
978
- ## [9.0.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.0.4...@pie-lib/editable-html@9.0.5) (2022-08-01)
979
-
980
- **Note:** Version bump only for package @pie-lib/editable-html
981
-
982
- ## [9.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.0.3...@pie-lib/editable-html@9.0.4) (2022-07-22)
983
-
984
- **Note:** Version bump only for package @pie-lib/editable-html
985
-
986
- ## [9.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.0.2...@pie-lib/editable-html@9.0.3) (2022-07-19)
987
-
988
- ### Bug Fixes
989
-
990
- - **editable-html:** fix paste text PD-1899 ([a1e8477](https://github.com/pie-framework/pie-lib/commit/a1e847763ceb14912592fcdf20317fb9a309a912))
991
-
992
- ## [9.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.0.1...@pie-lib/editable-html@9.0.2) (2022-07-19)
993
-
994
- ### Bug Fixes
995
-
996
- - bump mathquill to 1.1.3 ([48b84c5](https://github.com/pie-framework/pie-lib/commit/48b84c534cbf519e172a80d18a48b26eda3cf7e6))
997
-
998
- ## [9.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.0.0...@pie-lib/editable-html@9.0.1) (2022-07-18)
999
-
1000
- ### Reverts
1001
-
1002
- - Revert "feat(editable-html): Make editable-html style inline with mathjax: font, radical, exponential, italicize variables PD-1521" ([c07213c](https://github.com/pie-framework/pie-lib/commit/c07213c627609a47089f9cfec1e16366fc5dcfd3))
1003
-
1004
- # [9.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@8.1.2...@pie-lib/editable-html@9.0.0) (2022-07-18)
1005
-
1006
- ### Bug Fixes
1007
-
1008
- - **editable-html:** add another sanity checks ([d872981](https://github.com/pie-framework/pie-lib/commit/d87298124408b55d75d42598c0272294a0881043))
1009
- - **editable-html:** add sanity check for drop / paste file - sentry ([d27d252](https://github.com/pie-framework/pie-lib/commit/d27d2522d0567333e0af1ce49a3793ebc44ef032))
1010
- - **editable-html:** add sanity check in respArea - toolbar ([1e4c9f2](https://github.com/pie-framework/pie-lib/commit/1e4c9f21be612409deee08cca6790f019f5d01d3))
1011
- - **editable-html:** potential fix - sanity check for node key in table - sentry ([f417c72](https://github.com/pie-framework/pie-lib/commit/f417c724c49e50e8c3c514b46b42f5d410da2942))
1012
- - code tweaks ([a390dcb](https://github.com/pie-framework/pie-lib/commit/a390dcbe22e9d37776b91071ec1502bbad59ff2a))
1013
- - duplicate image issue ([924a4df](https://github.com/pie-framework/pie-lib/commit/924a4df45cf9f1601704dd48c2a757dd02e2e7a3))
1014
- - tests ([41caca9](https://github.com/pie-framework/pie-lib/commit/41caca9855aa8099f5cb7286cc6660dd20d5c622))
1015
-
1016
- ### Features
1017
-
1018
- - **characters:** special character accents span 2 rows, added border for visibility [PD-1462](<[c60b0bc](https://github.com/pie-framework/pie-lib/commit/c60b0bc8ff45cc01f53bc752fd5dd64da623f6be)>)
1019
- - **editable-html:** add image alignment buttons ([a076a41](https://github.com/pie-framework/pie-lib/commit/a076a4193c82dc552bd21de7a8f928d8481e73e6))
1020
- - **editable-html:** BREAKING CHANGE add image alignment buttons in image toolbar PD-1802 ([bcb59e5](https://github.com/pie-framework/pie-lib/commit/bcb59e5737fe61560fac8de01276baf187888048))
1021
- - **editable-html:** image resize functionality PD-1801. BREAKING CHANGE removed percent buttons from image toolbar ([1d5c33d](https://github.com/pie-framework/pie-lib/commit/1d5c33d4bcd224fa1b38310d7f0f21fba0888f12))
1022
- - **editable-html:** Make editable-html style inline with mathjax: font, radical, exponential, italicize variables PD-1521 ([20752ad](https://github.com/pie-framework/pie-lib/commit/20752ad453880da881bc0a2880c6ef9a10b9589d))
1023
- - **editable-html, render-ui:** wrap up PD-1802 ([e10babf](https://github.com/pie-framework/pie-lib/commit/e10babf2e80aed67c856e9e021e37072e3df33fb))
1024
- - **editor:** added insert spanish and special characters as default [PD-1883](<[26655ec](https://github.com/pie-framework/pie-lib/commit/26655ec87cb4b8a82357e88b62faad3fdc7c296a)>)
1025
-
1026
- ### BREAKING CHANGES
1027
-
1028
- - **editable-html:** Added new buttons in image toolbar.
1029
- The buttons control image horizontal alignment.
1030
-
1031
- ## [8.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@8.1.1...@pie-lib/editable-html@8.1.2) (2022-06-28)
1032
-
1033
- ### Bug Fixes
1034
-
1035
- - running locally does not work ([ce2d09a](https://github.com/pie-framework/pie-lib/commit/ce2d09a3556937aea4a1c8075a2dbc7c1131fd5f))
1036
-
1037
- ## [8.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@8.1.0...@pie-lib/editable-html@8.1.1) (2022-06-28)
1038
-
1039
- ### Bug Fixes
1040
-
1041
- - running locally does not work ([e2fbb74](https://github.com/pie-framework/pie-lib/commit/e2fbb74c79bbb2ad6e9af447af51687391d89ad3))
1042
- - **editable-html:** fix image remove ([0f446b3](https://github.com/pie-framework/pie-lib/commit/0f446b38d93fec1548b9ff5c73cc48f2f10d9397))
1043
-
1044
- # [8.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@8.0.0...@pie-lib/editable-html@8.1.0) (2022-06-27)
1045
-
1046
- ### Features
1047
-
1048
- - **editable-html:** allow drop & paste images PD-581 ([f7ec0d4](https://github.com/pie-framework/pie-lib/commit/f7ec0d4578ededc095422356471fb5e9f2b29af9))
1049
-
1050
- # [8.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.22.6...@pie-lib/editable-html@8.0.0) (2022-06-27)
1051
-
1052
- ### Features
1053
-
1054
- - **editable-html:** Added characters limit support PD-1681 ([9e7f6ad](https://github.com/pie-framework/pie-lib/commit/9e7f6add3f846d32265990aca98dfb5b4847bb95))
1055
- - **editable-html:** image resize functionality PD-1801 ([6f46903](https://github.com/pie-framework/pie-lib/commit/6f46903acdf791716263be33abe49235572421ad))
1056
- - **plugins:** added special characters adding capabilities [PD-1462](<[b9f41e1](https://github.com/pie-framework/pie-lib/commit/b9f41e11f44df140a66145d0b04558ca2b0ea48e)>)
1057
-
1058
- ### BREAKING CHANGES
1059
-
1060
- - **editable-html:** Removed the percent buttons from editable-html image button. Added resize functionality.
1061
-
1062
- ## [7.22.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.22.5...@pie-lib/editable-html@7.22.6) (2022-06-13)
1063
-
1064
- **Note:** Version bump only for package @pie-lib/editable-html
1065
-
1066
- ## [7.22.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.22.4...@pie-lib/editable-html@7.22.5) (2022-05-30)
1067
-
1068
- **Note:** Version bump only for package @pie-lib/editable-html
1069
-
1070
- ## [7.22.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.22.3...@pie-lib/editable-html@7.22.4) (2022-05-24)
1071
-
1072
- **Note:** Version bump only for package @pie-lib/editable-html
1073
-
1074
- ## [7.22.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.22.2...@pie-lib/editable-html@7.22.3) (2022-05-10)
1075
-
1076
- **Note:** Version bump only for package @pie-lib/editable-html
1077
-
1078
- ## [7.22.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.22.1...@pie-lib/editable-html@7.22.2) (2022-05-09)
1079
-
1080
- **Note:** Version bump only for package @pie-lib/editable-html
1081
-
1082
- ## [7.22.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.22.0...@pie-lib/editable-html@7.22.1) (2022-05-03)
1083
-
1084
- **Note:** Version bump only for package @pie-lib/editable-html
1085
-
1086
- # [7.22.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.21.0...@pie-lib/editable-html@7.22.0) (2022-05-03)
1087
-
1088
- ### Bug Fixes
1089
-
1090
- - use error as a function ([c767c8b](https://github.com/pie-framework/pie-lib/commit/c767c8bdc5ace6006e86862704a26095fa4b16f6))
1091
-
1092
- ### Features
1093
-
1094
- - PD-1707 ([9762d1f](https://github.com/pie-framework/pie-lib/commit/9762d1f4ac1bd615db4f03dfd06809010213052d))
1095
- - PD-1707 show validation errors in ecr ([bb7e95c](https://github.com/pie-framework/pie-lib/commit/bb7e95c824ae802452720856ad1117aa21c5766f))
1096
-
1097
- # [7.21.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.20.0...@pie-lib/editable-html@7.21.0) (2022-04-28)
1098
-
1099
- ### Features
1100
-
1101
- - **editable-html:** disabled add response area button when maxResponseArea value is reached PD-1699 ([9c28e5b](https://github.com/pie-framework/pie-lib/commit/9c28e5b1702995a497e8528038a1b9e71b72c84f))
1102
- - **editable-html:** PD-1707 add validation ui/ux to responses areas in ecr ([7381c58](https://github.com/pie-framework/pie-lib/commit/7381c581e9f1099f48f8cfbe307f23dbd8776773))
1103
-
1104
- # [7.20.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.19.3...@pie-lib/editable-html@7.20.0) (2022-04-12)
1105
-
1106
- ### Bug Fixes
1107
-
1108
- - **editable-html:** Removed overflow property that prevent body content from scrolling after closing dialog PD-1659 ([da2dc24](https://github.com/pie-framework/pie-lib/commit/da2dc2421448fa56d83369a043d864a568b1f886))
1109
- - **list:** fixed list in list issues [PD-1229](<[46dcec0](https://github.com/pie-framework/pie-lib/commit/46dcec0e20fc2d09969c45fd75426f647931ec08)>)
1110
-
1111
- ### Features
1112
-
1113
- - **config-ui, editable-html:** add ui/ux validation for choices and editable html fields ([d40148f](https://github.com/pie-framework/pie-lib/commit/d40148f0f4b1232ce1506867a7424aa56e26c5ec))
1114
-
1115
- ## [7.19.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.19.2...@pie-lib/editable-html@7.19.3) (2022-03-21)
1116
-
1117
- **Note:** Version bump only for package @pie-lib/editable-html
1118
-
1119
- ## [7.19.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.19.1...@pie-lib/editable-html@7.19.2) (2022-03-08)
1120
-
1121
- ### Bug Fixes
1122
-
1123
- - **editable-html:** Added default values for responseAreaProps ([b49a919](https://github.com/pie-framework/pie-lib/commit/b49a919b4d5e336cb2a82e4e7926d72372369d3c))
1124
-
1125
- ## [7.19.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.19.0...@pie-lib/editable-html@7.19.1) (2022-03-07)
1126
-
1127
- ### Bug Fixes
1128
-
1129
- - **editable-html:** Called onHandleAreaChange only for delete ([ad1c8aa](https://github.com/pie-framework/pie-lib/commit/ad1c8aa83eef71bd8201cb55ec21513c008f77a6))
1130
-
1131
- # [7.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.18.0...@pie-lib/editable-html@7.19.0) (2022-03-07)
1132
-
1133
- ### Features
1134
-
1135
- - **editor:** added func callback property, called when the resp area els nr is changed in the markup [PD-1592](<[d35feee](https://github.com/pie-framework/pie-lib/commit/d35feee5c68c13375963aa5cad25b2ef6ffc39f3)>)
1136
-
1137
- # [7.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.19...@pie-lib/editable-html@7.18.0) (2022-02-21)
1138
-
1139
- ### Bug Fixes
1140
-
1141
- - **editable-html:** fix style for table rendering PD-1459 ([7c139b5](https://github.com/pie-framework/pie-lib/commit/7c139b5))
1142
- - **editable-html:** Insert button from video/audio modal can't be pressed if the URL is empty PD-1488 ([6c7c1f6](https://github.com/pie-framework/pie-lib/commit/6c7c1f6))
1143
- - **editor:** made sure space is added after table even when there is a div wrapper [PD-1614](<[5aa8bd1](https://github.com/pie-framework/pie-lib/commit/5aa8bd1)>)
1144
-
1145
- ### Features
1146
-
1147
- - **editable-html:** drag-in-the-blank visually indicate when response area is selected, hide non-applicable tools PD-1383 ([a3b7d08](https://github.com/pie-framework/pie-lib/commit/a3b7d08))
1148
- - **editor:** made sure cursor is visible before and after custom void elements [PD-1474](<[189ee2d](https://github.com/pie-framework/pie-lib/commit/189ee2d)>)
1149
- - **editor:** made sure x<y is not removed from the math latex [PD-1475](<[ea94ad0](https://github.com/pie-framework/pie-lib/commit/ea94ad0)>)
1150
- - **table:** made sure default border is 1 for tables [PD-1459](<[e8bd0d7](https://github.com/pie-framework/pie-lib/commit/e8bd0d7)>)
1151
- - **table:** made sure focus is switched to first cell of the table when adding one [PD-1455](<[907c230](https://github.com/pie-framework/pie-lib/commit/907c230)>)
1152
-
1153
- ## [7.17.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.18...@pie-lib/editable-html@7.17.19) (2022-02-21)
1154
-
1155
- **Note:** Version bump only for package @pie-lib/editable-html
1156
-
1157
- ## [7.17.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.17...@pie-lib/editable-html@7.17.18) (2022-02-04)
1158
-
1159
- **Note:** Version bump only for package @pie-lib/editable-html
1160
-
1161
- ## [7.17.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.16...@pie-lib/editable-html@7.17.17) (2022-02-03)
1162
-
1163
- **Note:** Version bump only for package @pie-lib/editable-html
1164
-
1165
- ## [7.17.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.15...@pie-lib/editable-html@7.17.16) (2022-01-24)
1166
-
1167
- **Note:** Version bump only for package @pie-lib/editable-html
1168
-
1169
- ## [7.17.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.14...@pie-lib/editable-html@7.17.15) (2022-01-10)
1170
-
1171
- **Note:** Version bump only for package @pie-lib/editable-html
1172
-
1173
- ## [7.17.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.13...@pie-lib/editable-html@7.17.14) (2021-12-22)
1174
-
1175
- **Note:** Version bump only for package @pie-lib/editable-html
1176
-
1177
- ## [7.17.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.12...@pie-lib/editable-html@7.17.13) (2021-12-13)
1178
-
1179
- **Note:** Version bump only for package @pie-lib/editable-html
1180
-
1181
- ## [7.17.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.11...@pie-lib/editable-html@7.17.12) (2021-11-29)
1182
-
1183
- **Note:** Version bump only for package @pie-lib/editable-html
1184
-
1185
- ## [7.17.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.10...@pie-lib/editable-html@7.17.11) (2021-10-04)
1186
-
1187
- **Note:** Version bump only for package @pie-lib/editable-html
1188
-
1189
- ## [7.17.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.9...@pie-lib/editable-html@7.17.10) (2021-10-04)
1190
-
1191
- ### Bug Fixes
1192
-
1193
- - **serialization:** made sure that units are not added to numbered values when they are encountered [PD-722](<[8d229cf](https://github.com/pie-framework/pie-lib/commit/8d229cf)>)
1194
-
1195
- ## [7.17.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.8...@pie-lib/editable-html@7.17.9) (2021-09-20)
1196
-
1197
- ### Bug Fixes
1198
-
1199
- - **editor:** used dom refs in order to check if the editor is still in focus [PD-1126](<[99e0f72](https://github.com/pie-framework/pie-lib/commit/99e0f72)>)
1200
-
1201
- ## [7.17.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.7...@pie-lib/editable-html@7.17.8) (2021-09-20)
1202
-
1203
- ### Bug Fixes
1204
-
1205
- - **editor:** made sure that if the editor loses focus, the onBlur function is called only if the focus is still not inside the dom element [PD-1126](<[e74f00a](https://github.com/pie-framework/pie-lib/commit/e74f00a)>)
1206
-
1207
- ## [7.17.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.6...@pie-lib/editable-html@7.17.7) (2021-09-20)
1208
-
1209
- **Note:** Version bump only for package @pie-lib/editable-html
1210
-
1211
- ## [7.17.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.5...@pie-lib/editable-html@7.17.6) (2021-09-16)
1212
-
1213
- **Note:** Version bump only for package @pie-lib/editable-html
1214
-
1215
- ## [7.17.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.4...@pie-lib/editable-html@7.17.5) (2021-09-08)
1216
-
1217
- **Note:** Version bump only for package @pie-lib/editable-html
1218
-
1219
- ## [7.17.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.3...@pie-lib/editable-html@7.17.4) (2021-09-08)
1220
-
1221
- **Note:** Version bump only for package @pie-lib/editable-html
1222
-
1223
- ## [7.17.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.2...@pie-lib/editable-html@7.17.3) (2021-08-30)
1224
-
1225
- ### Bug Fixes
1226
-
1227
- - **editor:** made sure that if the editor loses focus, the onBlur function is called no matter what [PD-1126](<[906046c](https://github.com/pie-framework/pie-lib/commit/906046c)>)
1228
-
1229
- ## [7.17.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.1...@pie-lib/editable-html@7.17.2) (2021-08-04)
1230
-
1231
- ### Bug Fixes
1232
-
1233
- - **paragraph:** made sure that long words are broken into separate lines regardless if they are in a paragraph or not [PD-194](<[df0f97d](https://github.com/pie-framework/pie-lib/commit/df0f97d)>)
1234
- - **paragraph:** made sure the text is broken into separate lines and not expanding [PD-194](<[35c6807](https://github.com/pie-framework/pie-lib/commit/35c6807)>)
1235
-
1236
- ## [7.17.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.17.0...@pie-lib/editable-html@7.17.1) (2021-07-27)
1237
-
1238
- ### Bug Fixes
1239
-
1240
- - **table:** made sure inserting a table at last position works [PD-1240](<[e81ba95](https://github.com/pie-framework/pie-lib/commit/e81ba95)>)
1241
-
1242
- # [7.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.19...@pie-lib/editable-html@7.17.0) (2021-07-23)
1243
-
1244
- ### Bug Fixes
1245
-
1246
- - **editable-html:** add refs for editors, fix propTypes warnings for PD-1230 ([c6e3a2a](https://github.com/pie-framework/pie-lib/commit/c6e3a2a))
1247
- - **editable-html:** Updated serialization PD-859 ([5f30897](https://github.com/pie-framework/pie-lib/commit/5f30897))
1248
-
1249
- ### Features
1250
-
1251
- - **editable-html:** add prop that allows editable-html fields to be validated PD-601 ([2fe2b9b](https://github.com/pie-framework/pie-lib/commit/2fe2b9b))
1252
-
1253
- ## [7.16.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.17...@pie-lib/editable-html@7.16.19) (2021-06-25)
1254
-
1255
- **Note:** Version bump only for package @pie-lib/editable-html
1256
-
1257
- ## [7.16.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.16...@pie-lib/editable-html@7.16.17) (2021-06-25)
1258
-
1259
- ### Bug Fixes
1260
-
1261
- - **editable-html:** Fixed error checking makes it difficult to type a URL - PD-1082 ([42c5ad3](https://github.com/pie-framework/pie-lib/commit/42c5ad3))
1262
- - **editable-html:** insert video should not accept audio and vice versa PD-832 ([4e1e0a3](https://github.com/pie-framework/pie-lib/commit/4e1e0a3))
1263
- - **editable-html:** remove green checkmark next to the delete button on the toolbar PD-1125 ([b2cb463](https://github.com/pie-framework/pie-lib/commit/b2cb463))
1264
- - **editable-html:** Text edits will remain when resize window - PD-356 ([c06caaf](https://github.com/pie-framework/pie-lib/commit/c06caaf))
1265
- - **inline-dropdown:** Called onBlur on editable-html - PD-294 ([437ef1d](https://github.com/pie-framework/pie-lib/commit/437ef1d))
1266
- - **multi-trait-rubric:** Added right and left alignment for the toolbar ([f3def8b](https://github.com/pie-framework/pie-lib/commit/f3def8b))
1267
- - **table:** made sure table block is not the latest node in the document [PD-341](<[90bb47a](https://github.com/pie-framework/pie-lib/commit/90bb47a)>)
1268
-
1269
- ## [7.16.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.15...@pie-lib/editable-html@7.16.16) (2021-04-06)
1270
-
1271
- **Note:** Version bump only for package @pie-lib/editable-html
1272
-
1273
- ## [7.16.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.14...@pie-lib/editable-html@7.16.15) (2021-04-02)
1274
-
1275
- **Note:** Version bump only for package @pie-lib/editable-html
1276
-
1277
- ## [7.16.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.13...@pie-lib/editable-html@7.16.14) (2021-03-22)
1278
-
1279
- ### Bug Fixes
1280
-
1281
- - **editable-html:** custom key fix for math keypad - PD-388 ([adba7f0](https://github.com/pie-framework/pie-lib/commit/adba7f0))
1282
-
1283
- ## [7.16.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.12...@pie-lib/editable-html@7.16.13) (2021-03-15)
1284
-
1285
- **Note:** Version bump only for package @pie-lib/editable-html
1286
-
1287
- ## [7.16.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.11...@pie-lib/editable-html@7.16.12) (2021-03-03)
1288
-
1289
- **Note:** Version bump only for package @pie-lib/editable-html
1290
-
1291
- ## [7.16.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.10...@pie-lib/editable-html@7.16.11) (2021-03-02)
1292
-
1293
- **Note:** Version bump only for package @pie-lib/editable-html
1294
-
1295
- ## [7.16.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.9...@pie-lib/editable-html@7.16.10) (2021-03-01)
1296
-
1297
- **Note:** Version bump only for package @pie-lib/editable-html
1298
-
1299
- ## [7.16.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.8...@pie-lib/editable-html@7.16.9) (2021-03-01)
1300
-
1301
- ### Bug Fixes
1302
-
1303
- - **editable-html:** add delete button for response area PD-778 ([234ba06](https://github.com/pie-framework/pie-lib/commit/234ba06))
1304
- - **editable-html:** add min and max height to fix PD-694 ([955db39](https://github.com/pie-framework/pie-lib/commit/955db39))
1305
-
1306
- ## [7.16.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.7...@pie-lib/editable-html@7.16.8) (2021-02-15)
1307
-
1308
- ### Bug Fixes
1309
-
1310
- - demo ([affa119](https://github.com/pie-framework/pie-lib/commit/affa119))
1311
-
1312
- ## [7.16.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.5...@pie-lib/editable-html@7.16.7) (2021-02-15)
1313
-
1314
- **Note:** Version bump only for package @pie-lib/editable-html
1315
-
1316
- ## [7.16.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.4...@pie-lib/editable-html@7.16.5) (2021-02-15)
1317
-
1318
- **Note:** Version bump only for package @pie-lib/editable-html
1319
-
1320
- ## [7.16.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.3...@pie-lib/editable-html@7.16.4) (2021-02-04)
1321
-
1322
- **Note:** Version bump only for package @pie-lib/editable-html
1323
-
1324
- ## [7.16.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.2...@pie-lib/editable-html@7.16.3) (2021-02-01)
1325
-
1326
- **Note:** Version bump only for package @pie-lib/editable-html
1327
-
1328
- ## [7.16.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.1...@pie-lib/editable-html@7.16.2) (2021-01-28)
1329
-
1330
- **Note:** Version bump only for package @pie-lib/editable-html
1331
-
1332
- ## [7.16.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.16.0...@pie-lib/editable-html@7.16.1) (2021-01-28)
1333
-
1334
- **Note:** Version bump only for package @pie-lib/editable-html
1335
-
1336
- # [7.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.15.0...@pie-lib/editable-html@7.16.0) (2021-01-25)
1337
-
1338
- ### Features
1339
-
1340
- - **editable-html:** remove Code plugin - PD-463 ([d830231](https://github.com/pie-framework/pie-lib/commit/d830231))
1341
-
1342
- # [7.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.14.1...@pie-lib/editable-html@7.15.0) (2021-01-11)
1343
-
1344
- ### Bug Fixes
1345
-
1346
- - Added fix for text wrapping into next line and also font style is overrided by parent styling ([60ff10f](https://github.com/pie-framework/pie-lib/commit/60ff10f))
1347
- - Due to resize of window, editor text gets reverted to previous state value. PD-356 ([c710829](https://github.com/pie-framework/pie-lib/commit/c710829))
1348
- - Due to resize of window, editor text gets reverted to previous state value. PD-356 ([9f6b988](https://github.com/pie-framework/pie-lib/commit/9f6b988))
1349
-
1350
- ### Features
1351
-
1352
- - **editable-html:** add better math keypad support - PD-355 ([bc4e586](https://github.com/pie-framework/pie-lib/commit/bc4e586))
1353
-
1354
- ## [7.14.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.14.0...@pie-lib/editable-html@7.14.1) (2020-11-09)
1355
-
1356
- **Note:** Version bump only for package @pie-lib/editable-html
1357
-
1358
- # [7.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.13.5...@pie-lib/editable-html@7.14.0) (2020-11-07)
1359
-
1360
- ### Features
1361
-
1362
- - **media:** fixed design and some warnings ([df7d84d](https://github.com/pie-framework/pie-lib/commit/df7d84d))
1363
- - **media:** implemented editing functionality plus some error some more handlng ([66732a3](https://github.com/pie-framework/pie-lib/commit/66732a3))
1364
- - **media:** implemented some error handling and fixed a couple of bugs with inserting the media embed [pd501](<[1616ba2](https://github.com/pie-framework/pie-lib/commit/1616ba2)>)
1365
- - **media:** made sure width and height are used, and toolbar is relative positioned ([9061067](https://github.com/pie-framework/pie-lib/commit/9061067))
1366
-
1367
- ## [7.13.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.13.4...@pie-lib/editable-html@7.13.5) (2020-10-30)
1368
-
1369
- ### Bug Fixes
1370
-
1371
- - missing dependency ([86b18d2](https://github.com/pie-framework/pie-lib/commit/86b18d2))
1372
-
1373
- ## [7.13.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.13.3...@pie-lib/editable-html@7.13.4) (2020-10-28)
1374
-
1375
- **Note:** Version bump only for package @pie-lib/editable-html
1376
-
1377
- ## [7.13.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.13.2...@pie-lib/editable-html@7.13.3) (2020-10-26)
1378
-
1379
- **Note:** Version bump only for package @pie-lib/editable-html
1380
-
1381
- ## [7.13.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.13.1...@pie-lib/editable-html@7.13.2) (2020-10-26)
1382
-
1383
- **Note:** Version bump only for package @pie-lib/editable-html
1384
-
1385
- ## [7.13.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.13.0...@pie-lib/editable-html@7.13.1) (2020-10-19)
1386
-
1387
- **Note:** Version bump only for package @pie-lib/editable-html
1388
-
1389
- # [7.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.12...@pie-lib/editable-html@7.13.0) (2020-10-07)
1390
-
1391
- ### Features
1392
-
1393
- - **editable-html:** color theme support added ([d7e32fd](https://github.com/pie-framework/pie-lib/commit/d7e32fd))
1394
- - **editable-html:** initial commit for color treatment ([970c4d1](https://github.com/pie-framework/pie-lib/commit/970c4d1))
1395
-
1396
- ## [7.12.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.11...@pie-lib/editable-html@7.12.12) (2020-09-18)
1397
-
1398
- **Note:** Version bump only for package @pie-lib/editable-html
1399
-
1400
- ## [7.12.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.10...@pie-lib/editable-html@7.12.11) (2020-08-11)
1401
-
1402
- **Note:** Version bump only for package @pie-lib/editable-html
1403
-
1404
- ## [7.12.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.9...@pie-lib/editable-html@7.12.10) (2020-06-05)
1405
-
1406
- **Note:** Version bump only for package @pie-lib/editable-html
1407
-
1408
- ## [7.12.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.8...@pie-lib/editable-html@7.12.9) (2020-05-15)
1409
-
1410
- ### Bug Fixes
1411
-
1412
- - table borders not visible. ([31500c4](https://github.com/pie-framework/pie-lib/commit/31500c4))
1413
-
1414
- ## [7.12.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.7...@pie-lib/editable-html@7.12.8) (2020-05-06)
1415
-
1416
- **Note:** Version bump only for package @pie-lib/editable-html
1417
-
1418
- ## [7.12.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.6...@pie-lib/editable-html@7.12.7) (2020-05-05)
1419
-
1420
- **Note:** Version bump only for package @pie-lib/editable-html
1421
-
1422
- ## [7.12.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.5...@pie-lib/editable-html@7.12.6) (2020-04-28)
1423
-
1424
- ### Bug Fixes
1425
-
1426
- - PD-69: A legacy multi-part item consisting of two equation response interactions appears with no response areas ([fff4ec7](https://github.com/pie-framework/pie-lib/commit/fff4ec7))
1427
-
1428
- ## [7.12.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.4...@pie-lib/editable-html@7.12.5) (2020-04-28)
1429
-
1430
- **Note:** Version bump only for package @pie-lib/editable-html
1431
-
1432
- ## [7.12.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.3...@pie-lib/editable-html@7.12.4) (2020-04-27)
1433
-
1434
- **Note:** Version bump only for package @pie-lib/editable-html
1435
-
1436
- ## [7.12.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.2...@pie-lib/editable-html@7.12.3) (2020-04-21)
1437
-
1438
- **Note:** Version bump only for package @pie-lib/editable-html
1439
-
1440
- ## [7.12.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.1...@pie-lib/editable-html@7.12.2) (2020-04-14)
1441
-
1442
- **Note:** Version bump only for package @pie-lib/editable-html
1443
-
1444
- ## [7.12.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.12.0...@pie-lib/editable-html@7.12.1) (2020-04-10)
1445
-
1446
- **Note:** Version bump only for package @pie-lib/editable-html
1447
-
1448
- # [7.12.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.12...@pie-lib/editable-html@7.12.0) (2020-04-08)
1449
-
1450
- ### Features
1451
-
1452
- - **math:** made sure that math is clickable inside table [ch3518](<[23185dd](https://github.com/pie-framework/pie-lib/commit/23185dd)>)
1453
-
1454
- ## [7.11.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.11...@pie-lib/editable-html@7.11.12) (2020-03-31)
1455
-
1456
- **Note:** Version bump only for package @pie-lib/editable-html
1457
-
1458
- ## [7.11.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.10...@pie-lib/editable-html@7.11.11) (2020-03-31)
1459
-
1460
- **Note:** Version bump only for package @pie-lib/editable-html
1461
-
1462
- ## [7.11.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.9...@pie-lib/editable-html@7.11.10) (2020-03-31)
1463
-
1464
- ### Bug Fixes
1465
-
1466
- - correct module path ([15ac0a3](https://github.com/pie-framework/pie-lib/commit/15ac0a3))
1467
-
1468
- ## [7.11.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.8...@pie-lib/editable-html@7.11.9) (2020-03-31)
1469
-
1470
- **Note:** Version bump only for package @pie-lib/editable-html
1471
-
1472
- ## [7.11.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.7...@pie-lib/editable-html@7.11.8) (2020-03-30)
1473
-
1474
- **Note:** Version bump only for package @pie-lib/editable-html
1475
-
1476
- ## [7.11.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.6...@pie-lib/editable-html@7.11.7) (2020-03-30)
1477
-
1478
- **Note:** Version bump only for package @pie-lib/editable-html
1479
-
1480
- ## [7.11.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.5...@pie-lib/editable-html@7.11.6) (2020-03-30)
1481
-
1482
- **Note:** Version bump only for package @pie-lib/editable-html
1483
-
1484
- ## [7.11.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.4...@pie-lib/editable-html@7.11.5) (2020-03-30)
1485
-
1486
- **Note:** Version bump only for package @pie-lib/editable-html
1487
-
1488
- ## [7.11.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.3...@pie-lib/editable-html@7.11.4) (2020-03-30)
1489
-
1490
- **Note:** Version bump only for package @pie-lib/editable-html
1491
-
1492
- ## [7.11.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.2...@pie-lib/editable-html@7.11.3) (2020-03-30)
1493
-
1494
- **Note:** Version bump only for package @pie-lib/editable-html
1495
-
1496
- ## [7.11.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.1...@pie-lib/editable-html@7.11.2) (2020-03-30)
1497
-
1498
- ### Bug Fixes
1499
-
1500
- - add module prop to package.json ([d20c9ca](https://github.com/pie-framework/pie-lib/commit/d20c9ca))
1501
-
1502
- ## [7.11.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.11.0...@pie-lib/editable-html@7.11.1) (2020-03-18)
1503
-
1504
- **Note:** Version bump only for package @pie-lib/editable-html
1505
-
1506
- # [7.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.44...@pie-lib/editable-html@7.11.0) (2020-03-06)
1507
-
1508
- ### Features
1509
-
1510
- - bump @pie-framework/mathquill@^1.0.0 ([d43c5c5](https://github.com/pie-framework/pie-lib/commit/d43c5c5))
1511
- - bump @pie-framework/mathquill@^1.1.0 ([31dbed8](https://github.com/pie-framework/pie-lib/commit/31dbed8))
1512
-
1513
- ## [7.10.44](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.43...@pie-lib/editable-html@7.10.44) (2020-02-25)
1514
-
1515
- **Note:** Version bump only for package @pie-lib/editable-html
1516
-
1517
- ## [7.10.43](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.42...@pie-lib/editable-html@7.10.43) (2020-02-18)
1518
-
1519
- ### Bug Fixes
1520
-
1521
- - 6656: Vertical alignment issue with Image Delete button. ([c99e6c5](https://github.com/pie-framework/pie-lib/commit/c99e6c5))
1522
-
1523
- ## [7.10.42](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.41...@pie-lib/editable-html@7.10.42) (2020-02-15)
1524
-
1525
- **Note:** Version bump only for package @pie-lib/editable-html
1526
-
1527
- ## [7.10.41](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.40...@pie-lib/editable-html@7.10.41) (2020-02-14)
1528
-
1529
- **Note:** Version bump only for package @pie-lib/editable-html
1530
-
1531
- ## [7.10.40](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.39...@pie-lib/editable-html@7.10.40) (2020-02-11)
1532
-
1533
- **Note:** Version bump only for package @pie-lib/editable-html
1534
-
1535
- ## [7.10.39](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.38...@pie-lib/editable-html@7.10.39) (2020-02-05)
1536
-
1537
- ### Bug Fixes
1538
-
1539
- - 5590: Force the image to keep its shape (IBX rendering of images in MC answer choices stretches them vertically (or squeezes them horizontally), causing distortion that invalidates some items) ([63f54fd](https://github.com/pie-framework/pie-lib/commit/63f54fd))
1540
-
1541
- ## [7.10.38](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.37...@pie-lib/editable-html@7.10.38) (2020-01-27)
1542
-
1543
- **Note:** Version bump only for package @pie-lib/editable-html
1544
-
1545
- ## [7.10.37](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.36...@pie-lib/editable-html@7.10.37) (2019-12-19)
1546
-
1547
- **Note:** Version bump only for package @pie-lib/editable-html
1548
-
1549
- ## [7.10.36](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.35...@pie-lib/editable-html@7.10.36) (2019-12-18)
1550
-
1551
- **Note:** Version bump only for package @pie-lib/editable-html
1552
-
1553
- ## [7.10.35](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.34...@pie-lib/editable-html@7.10.35) (2019-12-18)
1554
-
1555
- **Note:** Version bump only for package @pie-lib/editable-html
1556
-
1557
- ## [7.10.34](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.33...@pie-lib/editable-html@7.10.34) (2019-12-13)
1558
-
1559
- **Note:** Version bump only for package @pie-lib/editable-html
1560
-
1561
- ## [7.10.33](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.32...@pie-lib/editable-html@7.10.33) (2019-12-13)
1562
-
1563
- **Note:** Version bump only for package @pie-lib/editable-html
1564
-
1565
- ## [7.10.32](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.30...@pie-lib/editable-html@7.10.32) (2019-12-12)
1566
-
1567
- **Note:** Version bump only for package @pie-lib/editable-html
1568
-
1569
- ## [7.10.31](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.30...@pie-lib/editable-html@7.10.31) (2019-12-12)
1570
-
1571
- **Note:** Version bump only for package @pie-lib/editable-html
1572
-
1573
- ## [7.10.30](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.29...@pie-lib/editable-html@7.10.30) (2019-12-10)
1574
-
1575
- **Note:** Version bump only for package @pie-lib/editable-html
1576
-
1577
- ## [7.10.29](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.28...@pie-lib/editable-html@7.10.29) (2019-12-10)
1578
-
1579
- **Note:** Version bump only for package @pie-lib/editable-html
1580
-
1581
- ## [7.10.28](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.27...@pie-lib/editable-html@7.10.28) (2019-12-09)
1582
-
1583
- **Note:** Version bump only for package @pie-lib/editable-html
1584
-
1585
- ## [7.10.27](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.26...@pie-lib/editable-html@7.10.27) (2019-11-05)
1586
-
1587
- **Note:** Version bump only for package @pie-lib/editable-html
1588
-
1589
- ## [7.10.26](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.25...@pie-lib/editable-html@7.10.26) (2019-11-05)
1590
-
1591
- ### Bug Fixes
1592
-
1593
- - Prevent crashing if prevText is null [PIE-150](<[873e1f8](https://github.com/pie-framework/pie-lib/commit/873e1f8)>)
1594
-
1595
- ## [7.10.25](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.24...@pie-lib/editable-html@7.10.25) (2019-10-08)
1596
-
1597
- **Note:** Version bump only for package @pie-lib/editable-html
1598
-
1599
- ## [7.10.24](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.23...@pie-lib/editable-html@7.10.24) (2019-09-27)
1600
-
1601
- ### Bug Fixes
1602
-
1603
- - **editable-html:** fix outdated plugin validation schema ([ca4b848](https://github.com/pie-framework/pie-lib/commit/ca4b848))
1604
- - **toolbar:** fixed delete image button not working [ch4162](<[9518a4e](https://github.com/pie-framework/pie-lib/commit/9518a4e)>)
1605
-
1606
- ## [7.10.23](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.22...@pie-lib/editable-html@7.10.23) (2019-08-21)
1607
-
1608
- **Note:** Version bump only for package @pie-lib/editable-html
1609
-
1610
- ## [7.10.22](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.21...@pie-lib/editable-html@7.10.22) (2019-08-21)
1611
-
1612
- **Note:** Version bump only for package @pie-lib/editable-html
1613
-
1614
- ## [7.10.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.20...@pie-lib/editable-html@7.10.21) (2019-08-19)
1615
-
1616
- ### Bug Fixes
1617
-
1618
- - **serialization:** fixed the issue with having more than a few new lines on after another [ch1530](<[323bc32](https://github.com/pie-framework/pie-lib/commit/323bc32)>)
1619
-
1620
- ## [7.10.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.19...@pie-lib/editable-html@7.10.20) (2019-08-16)
1621
-
1622
- **Note:** Version bump only for package @pie-lib/editable-html
1623
-
1624
- ## [7.10.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.18...@pie-lib/editable-html@7.10.19) (2019-08-16)
1625
-
1626
- **Note:** Version bump only for package @pie-lib/editable-html
1627
-
1628
- ## [7.10.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.17...@pie-lib/editable-html@7.10.18) (2019-08-16)
1629
-
1630
- ### Bug Fixes
1631
-
1632
- - don't format to html / emit in constructor ([ac5c6f8](https://github.com/pie-framework/pie-lib/commit/ac5c6f8))
1633
-
1634
- ## [7.10.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.16...@pie-lib/editable-html@7.10.17) (2019-08-08)
1635
-
1636
- ### Bug Fixes
1637
-
1638
- - **resparea:** moved the button for the response area functionality [ch1738](<[b3ffe68](https://github.com/pie-framework/pie-lib/commit/b3ffe68)>)
1639
-
1640
- ## [7.10.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.13...@pie-lib/editable-html@7.10.16) (2019-07-25)
1641
-
1642
- **Note:** Version bump only for package @pie-lib/editable-html
1643
-
1644
- ## [7.10.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.12...@pie-lib/editable-html@7.10.13) (2019-07-25)
1645
-
1646
- **Note:** Version bump only for package @pie-lib/editable-html
1647
-
1648
- ## [7.10.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.11...@pie-lib/editable-html@7.10.12) (2019-07-19)
1649
-
1650
- **Note:** Version bump only for package @pie-lib/editable-html
1651
-
1652
- ## [7.10.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.10...@pie-lib/editable-html@7.10.11) (2019-07-17)
1653
-
1654
- ### Bug Fixes
1655
-
1656
- - keypadMode not updating ([5d72bee](https://github.com/pie-framework/pie-lib/commit/5d72bee))
1657
-
1658
- ## [7.10.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.9...@pie-lib/editable-html@7.10.10) (2019-07-16)
1659
-
1660
- ### Bug Fixes
1661
-
1662
- - add scroll feature when content exceeds 500px in height ([d7ddc01](https://github.com/pie-framework/pie-lib/commit/d7ddc01))
1663
- - render degrees as expected ([87402e1](https://github.com/pie-framework/pie-lib/commit/87402e1))
1664
-
1665
- ## [7.10.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.8...@pie-lib/editable-html@7.10.9) (2019-07-13)
1666
-
1667
- ### Bug Fixes
1668
-
1669
- - **editor:** added a way of saving the editable content when the user blures the component [ch2363], [ch1912], [ch2565], [ch2557], fixed some math rendering issue ([d4cdc6a](https://github.com/pie-framework/pie-lib/commit/d4cdc6a))
1670
-
1671
- ## [7.10.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.7...@pie-lib/editable-html@7.10.8) (2019-07-12)
1672
-
1673
- ### Bug Fixes
1674
-
1675
- - **editor:** changed the style for the drag-in-the-blank choice and removed unnecessary statement [ch1915](<[649de6d](https://github.com/pie-framework/pie-lib/commit/649de6d)>)
1676
-
1677
- ## [7.10.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.6...@pie-lib/editable-html@7.10.7) (2019-07-12)
1678
-
1679
- ### Bug Fixes
1680
-
1681
- - **editor:** added serialization for other elements in order to grab the styles for them [ch1915], [ch1935](<[2e09533](https://github.com/pie-framework/pie-lib/commit/2e09533)>)
1682
-
1683
- ## [7.10.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.5...@pie-lib/editable-html@7.10.6) (2019-07-12)
1684
-
1685
- ### Bug Fixes
1686
-
1687
- - **editor:** removed the timeout in the onBlur function, instead i checked if the user clicked on the check mark button and prevented the action if it did ([489b926](https://github.com/pie-framework/pie-lib/commit/489b926))
1688
-
1689
- ## [7.10.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.4...@pie-lib/editable-html@7.10.5) (2019-07-11)
1690
-
1691
- ### Bug Fixes
1692
-
1693
- - **editor:** added possibility to hide the done button and added a onKeyDown prop [ch2489](<[45bda8c](https://github.com/pie-framework/pie-lib/commit/45bda8c)>)
1694
-
1695
- ## [7.10.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.3...@pie-lib/editable-html@7.10.4) (2019-07-08)
1696
-
1697
- ### Bug Fixes
1698
-
1699
- - save math changes when editor is re-focused ([7674a86](https://github.com/pie-framework/pie-lib/commit/7674a86))
1700
-
1701
- ## [7.10.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.1...@pie-lib/editable-html@7.10.3) (2019-07-08)
1702
-
1703
- **Note:** Version bump only for package @pie-lib/editable-html
1704
-
1705
- ## [7.10.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.10.0...@pie-lib/editable-html@7.10.1) (2019-07-08)
1706
-
1707
- **Note:** Version bump only for package @pie-lib/editable-html
1708
-
1709
- # [7.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.9.0...@pie-lib/editable-html@7.10.0) (2019-07-07)
1710
-
1711
- ### Features
1712
-
1713
- - **serialization:** removed the space after the response area, rendered some items from the legacy content [ch2464], [ch1915], [ch1935](<[8836f3a](https://github.com/pie-framework/pie-lib/commit/8836f3a)>)
1714
-
1715
- # [7.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.8.0...@pie-lib/editable-html@7.9.0) (2019-07-06)
1716
-
1717
- ### Features
1718
-
1719
- - Ability to change keypadMode using props.pluginProps.math.getMode ([179df1c](https://github.com/pie-framework/pie-lib/commit/179df1c))
1720
- - Ability to change keypadMode using props.pluginProps.math.keypadMode ([cbf3e17](https://github.com/pie-framework/pie-lib/commit/cbf3e17))
1721
-
1722
- # [7.8.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.7.9...@pie-lib/editable-html@7.8.0) (2019-07-06)
1723
-
1724
- ### Features
1725
-
1726
- - **editor:** exposed mathProps prop to provide a way of changing the keypadmode for the math toolbar [ch2178](<[8b339dd](https://github.com/pie-framework/pie-lib/commit/8b339dd)>)
1727
-
1728
- ## [7.7.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.7.8...@pie-lib/editable-html@7.7.9) (2019-07-05)
1729
-
1730
- **Note:** Version bump only for package @pie-lib/editable-html
1731
-
1732
- ## [7.7.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.7.7...@pie-lib/editable-html@7.7.8) (2019-07-04)
1733
-
1734
- ### Bug Fixes
1735
-
1736
- - **editable-html:** made it possible to add response area when there's no focus and the markup is empty, removed response area from the table when it is not active in the main editor ([adeb618](https://github.com/pie-framework/pie-lib/commit/adeb618))
1737
-
1738
- ## [7.7.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.7.6...@pie-lib/editable-html@7.7.7) (2019-07-03)
1739
-
1740
- ### Bug Fixes
1741
-
1742
- - **editable-html:** removed autoFocus prop that was added to the slate editor, causing issues with rendering when the editor is used on a element thats not yet added in the dom ([e67d56e](https://github.com/pie-framework/pie-lib/commit/e67d56e))
1743
-
1744
- ## [7.7.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.7.5...@pie-lib/editable-html@7.7.6) (2019-07-02)
1745
-
1746
- ### Bug Fixes
1747
-
1748
- - **editor:** added sanity check for editor reference in editor ([274d8fd](https://github.com/pie-framework/pie-lib/commit/274d8fd))
1749
-
1750
- ## [7.7.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.7.4...@pie-lib/editable-html@7.7.5) (2019-07-02)
1751
-
1752
- ### Bug Fixes
1753
-
1754
- - **editor:** changed setTimeout to a promise resolve statement ([c66d50f](https://github.com/pie-framework/pie-lib/commit/c66d50f))
1755
- - **tests:** added back the commented tests ([7d2cf81](https://github.com/pie-framework/pie-lib/commit/7d2cf81))
1756
-
1757
- ## [7.7.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.7.3...@pie-lib/editable-html@7.7.4) (2019-07-02)
1758
-
1759
- **Note:** Version bump only for package @pie-lib/editable-html
1760
-
1761
- ## [7.7.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.7.2...@pie-lib/editable-html@7.7.3) (2019-06-28)
1762
-
1763
- **Note:** Version bump only for package @pie-lib/editable-html
1764
-
1765
- ## [7.7.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.7.1...@pie-lib/editable-html@7.7.2) (2019-06-28)
1766
-
1767
- **Note:** Version bump only for package @pie-lib/editable-html
1768
-
1769
- ## [7.7.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.7.0...@pie-lib/editable-html@7.7.1) (2019-06-17)
1770
-
1771
- **Note:** Version bump only for package @pie-lib/editable-html
1772
-
1773
- # [7.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.6.1...@pie-lib/editable-html@7.7.0) (2019-06-12)
1774
-
1775
- ### Bug Fixes
1776
-
1777
- - **drag-in-the-blank:** made it possible to drop choices in newly created response areas ([ba5d2e9](https://github.com/pie-framework/pie-lib/commit/ba5d2e9))
1778
-
1779
- ### Features
1780
-
1781
- - version bumps ([23eb54f](https://github.com/pie-framework/pie-lib/commit/23eb54f))
1782
-
1783
- ## [7.6.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.6.0...@pie-lib/editable-html@7.6.1) (2019-06-06)
1784
-
1785
- ### Bug Fixes
1786
-
1787
- - **drag-in-the-blank:** made it possible to drop choices in newly created response areas ([0a8568f](https://github.com/pie-framework/pie-lib/commit/0a8568f))
1788
-
1789
- # [7.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.5.6...@pie-lib/editable-html@7.6.0) (2019-06-05)
1790
-
1791
- ### Bug Fixes
1792
-
1793
- - **response-area:** fixed a bug that made it impossible to add a response-area ([9c7a54b](https://github.com/pie-framework/pie-lib/commit/9c7a54b))
1794
-
1795
- ### Features
1796
-
1797
- - **response-area:** added response area to the editable-html packages ([bc7af2b](https://github.com/pie-framework/pie-lib/commit/bc7af2b))
1798
- - **response-area:** changes to make the response-areas work ([1c15fcd](https://github.com/pie-framework/pie-lib/commit/1c15fcd))
1799
- - **response-area:** commiting some changes in order for the packages to be published ([395358d](https://github.com/pie-framework/pie-lib/commit/395358d))
1800
- - **response-area:** made some changes in order to be able to handle all 3 of the new elements ([480073e](https://github.com/pie-framework/pie-lib/commit/480073e))
1801
-
1802
- ## [7.5.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.5.5...@pie-lib/editable-html@7.5.6) (2019-05-22)
1803
-
1804
- **Note:** Version bump only for package @pie-lib/editable-html
1805
-
1806
- ## [7.5.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.5.4...@pie-lib/editable-html@7.5.5) (2019-05-22)
1807
-
1808
- **Note:** Version bump only for package @pie-lib/editable-html
1809
-
1810
- ## [7.5.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.5.3...@pie-lib/editable-html@7.5.4) (2019-05-15)
1811
-
1812
- **Note:** Version bump only for package @pie-lib/editable-html
1813
-
1814
- ## [7.5.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.5.2...@pie-lib/editable-html@7.5.3) (2019-05-14)
1815
-
1816
- **Note:** Version bump only for package @pie-lib/editable-html
1817
-
1818
- ## [7.5.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.5.1...@pie-lib/editable-html@7.5.2) (2019-05-09)
1819
-
1820
- **Note:** Version bump only for package @pie-lib/editable-html
1821
-
1822
- ## [7.5.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.5.0...@pie-lib/editable-html@7.5.1) (2019-05-08)
1823
-
1824
- **Note:** Version bump only for package @pie-lib/editable-html
1825
-
1826
- # [7.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.4.1...@pie-lib/editable-html@7.5.0) (2019-05-03)
1827
-
1828
- ### Features
1829
-
1830
- - **editable-html:** add onFocus prop support ([e7c471b](https://github.com/pie-framework/pie-lib/commit/e7c471b))
1831
-
1832
- ## [7.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.4.0...@pie-lib/editable-html@7.4.1) (2019-05-03)
1833
-
1834
- ### Bug Fixes
1835
-
1836
- - **toolbar:** fixed the issue that was caused by importing a button from a different file ([ec08f12](https://github.com/pie-framework/pie-lib/commit/ec08f12))
1837
-
1838
- # [7.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.3.8...@pie-lib/editable-html@7.4.0) (2019-05-02)
1839
-
1840
- ### Features
1841
-
1842
- - **mask-markup:** merging with the develop branch ([0153c1a](https://github.com/pie-framework/pie-lib/commit/0153c1a))
1843
-
1844
- ## [7.3.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.3.7...@pie-lib/editable-html@7.3.8) (2019-05-01)
1845
-
1846
- **Note:** Version bump only for package @pie-lib/editable-html
1847
-
1848
- ## [7.3.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.3.6...@pie-lib/editable-html@7.3.7) (2019-04-24)
1849
-
1850
- **Note:** Version bump only for package @pie-lib/editable-html
1851
-
1852
- ## [7.3.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.3.5...@pie-lib/editable-html@7.3.6) (2019-04-23)
1853
-
1854
- **Note:** Version bump only for package @pie-lib/editable-html
1855
-
1856
- ## [7.3.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.3.4...@pie-lib/editable-html@7.3.5) (2019-04-17)
1857
-
1858
- **Note:** Version bump only for package @pie-lib/editable-html
1859
-
1860
- ## [7.3.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.3.3...@pie-lib/editable-html@7.3.4) (2019-04-12)
1861
-
1862
- **Note:** Version bump only for package @pie-lib/editable-html
1863
-
1864
- ## [7.3.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.3.2...@pie-lib/editable-html@7.3.3) (2019-04-12)
1865
-
1866
- ### Bug Fixes
1867
-
1868
- - add author ([10ef4db](https://github.com/pie-framework/pie-lib/commit/10ef4db))
1869
-
1870
- ## [7.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.3.1...@pie-lib/editable-html@7.3.2) (2019-04-11)
1871
-
1872
- **Note:** Version bump only for package @pie-lib/editable-html
1873
-
1874
- ## [7.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.3.0...@pie-lib/editable-html@7.3.1) (2019-04-10)
1875
-
1876
- **Note:** Version bump only for package @pie-lib/editable-html
1877
-
1878
- # [7.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.2.1...@pie-lib/editable-html@7.3.0) (2019-04-05)
1879
-
1880
- ### Features
1881
-
1882
- - add new prop 'pluginProps' ([f73a2a2](https://github.com/pie-framework/pie-lib/commit/f73a2a2))
1883
-
1884
- ## [7.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.2.0...@pie-lib/editable-html@7.2.1) (2019-04-04)
1885
-
1886
- **Note:** Version bump only for package @pie-lib/editable-html
1887
-
1888
- # [7.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.18...@pie-lib/editable-html@7.2.0) (2019-04-04)
1889
-
1890
- ### Bug Fixes
1891
-
1892
- - move mathquill to devDependency ([9466018](https://github.com/pie-framework/pie-lib/commit/9466018))
1893
- - **extended-text-entry:** Fixed dimensions issue (width & height) were not changing properly. ([6521760](https://github.com/pie-framework/pie-lib/commit/6521760))
1894
-
1895
- ### Features
1896
-
1897
- - use [@pie-framework](https://github.com/pie-framework)/mathquill - our fork with extras ([7fc47a7](https://github.com/pie-framework/pie-lib/commit/7fc47a7))
1898
-
1899
- ## [7.1.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.17...@pie-lib/editable-html@7.1.18) (2019-03-26)
1900
-
1901
- ### Bug Fixes
1902
-
1903
- - **extended-text-entry:** Fixed dimensions issue (width & height) were not changing properly. ([8183203](https://github.com/pie-framework/pie-lib/commit/8183203))
1904
-
1905
- ## [7.1.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.16...@pie-lib/editable-html@7.1.17) (2019-03-15)
1906
-
1907
- ### Bug Fixes
1908
-
1909
- - rm child prepack in favour of root prepack ([381d8d6](https://github.com/pie-framework/pie-lib/commit/381d8d6))
1910
-
1911
- ## [7.1.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.15...@pie-lib/editable-html@7.1.16) (2019-03-14)
1912
-
1913
- **Note:** Version bump only for package @pie-lib/editable-html
1914
-
1915
- ## [7.1.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.14...@pie-lib/editable-html@7.1.15) (2019-03-14)
1916
-
1917
- **Note:** Version bump only for package @pie-lib/editable-html
1918
-
1919
- ## [7.1.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.13...@pie-lib/editable-html@7.1.14) (2019-03-14)
1920
-
1921
- **Note:** Version bump only for package @pie-lib/editable-html
1922
-
1923
- ## [7.1.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.12...@pie-lib/editable-html@7.1.13) (2019-03-14)
1924
-
1925
- **Note:** Version bump only for package @pie-lib/editable-html
1926
-
1927
- ## [7.1.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.11...@pie-lib/editable-html@7.1.12) (2019-03-13)
1928
-
1929
- **Note:** Version bump only for package @pie-lib/editable-html
1930
-
1931
- ## [7.1.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.10...@pie-lib/editable-html@7.1.11) (2019-03-13)
1932
-
1933
- ### Bug Fixes
1934
-
1935
- - ignore node_modules ([900ab7c](https://github.com/pie-framework/pie-lib/commit/900ab7c))
1936
-
1937
- ## [7.1.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.9...@pie-lib/editable-html@7.1.10) (2019-03-13)
1938
-
1939
- **Note:** Version bump only for package @pie-lib/editable-html
1940
-
1941
- ## [7.1.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.7...@pie-lib/editable-html@7.1.9) (2019-03-12)
1942
-
1943
- **Note:** Version bump only for package @pie-lib/editable-html
1944
-
1945
- ## [7.1.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.6...@pie-lib/editable-html@7.1.7) (2019-03-12)
1946
-
1947
- **Note:** Version bump only for package @pie-lib/editable-html
1948
-
1949
- ## [7.1.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.5...@pie-lib/editable-html@7.1.6) (2019-03-11)
1950
-
1951
- **Note:** Version bump only for package @pie-lib/editable-html
1952
-
1953
- ## [7.1.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.4...@pie-lib/editable-html@7.1.5) (2019-03-11)
1954
-
1955
- **Note:** Version bump only for package @pie-lib/editable-html
1956
-
1957
- ## [7.1.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.3...@pie-lib/editable-html@7.1.4) (2019-02-20)
1958
-
1959
- **Note:** Version bump only for package @pie-lib/editable-html
1960
-
1961
- ## [7.1.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.1...@pie-lib/editable-html@7.1.3) (2019-02-17)
1962
-
1963
- ### Bug Fixes
1964
-
1965
- - force version bump ([dd057a5](https://github.com/pie-framework/pie-lib/commit/dd057a5))
1966
-
1967
- ## [7.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.1.0...@pie-lib/editable-html@7.1.1) (2019-02-17)
1968
-
1969
- **Note:** Version bump only for package @pie-lib/editable-html
1970
-
1971
- # [7.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.0.3...@pie-lib/editable-html@7.1.0) (2019-02-15)
1972
-
1973
- ### Features
1974
-
1975
- - **editable-html:** changed the editable-html design for the new elements ([1aad62f](https://github.com/pie-framework/pie-lib/commit/1aad62f))
1976
-
1977
- ## [7.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.0.2...@pie-lib/editable-html@7.0.3) (2019-02-13)
1978
-
1979
- **Note:** Version bump only for package @pie-lib/editable-html
1980
-
1981
- ## [7.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.0.1...@pie-lib/editable-html@7.0.2) (2019-02-11)
1982
-
1983
- **Note:** Version bump only for package @pie-lib/editable-html
1984
-
1985
- ## [7.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@7.0.0...@pie-lib/editable-html@7.0.1) (2019-02-11)
1986
-
1987
- **Note:** Version bump only for package @pie-lib/editable-html
1988
-
1989
- # [7.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.16.3...@pie-lib/editable-html@7.0.0) (2019-02-11)
1990
-
1991
- ### Features
1992
-
1993
- - new ui + layout ([2f6fdba](https://github.com/pie-framework/pie-lib/commit/2f6fdba))
1994
-
1995
- ### BREAKING CHANGES
1996
-
1997
- - - The ui is quite different now
1998
- - Some of the old components are gone (except for HorizontalKeypad which
1999
- is retained for backward compatibility).
2000
-
2001
- ## [6.16.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.16.2...@pie-lib/editable-html@6.16.3) (2019-02-05)
2002
-
2003
- ### Bug Fixes
2004
-
2005
- - version bump ([caaf960](https://github.com/pie-framework/pie-lib/commit/caaf960))
2006
-
2007
- ## [6.16.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.16.1...@pie-lib/editable-html@6.16.2) (2019-02-05)
2008
-
2009
- **Note:** Version bump only for package @pie-lib/editable-html
2010
-
2011
- ## [6.16.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.16.0...@pie-lib/editable-html@6.16.1) (2019-01-30)
2012
-
2013
- **Note:** Version bump only for package @pie-lib/editable-html
2014
-
2015
- # [6.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.15.0...@pie-lib/editable-html@6.16.0) (2019-01-30)
2016
-
2017
- ### Features
2018
-
2019
- - libs version bump ([d905a83](https://github.com/pie-framework/pie-lib/commit/d905a83))
2020
-
2021
- <a name="6.15.0"></a>
2022
-
2023
- # [6.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.13.5...@pie-lib/editable-html@6.15.0) (2019-01-10)
2024
-
2025
- ### Bug Fixes
2026
-
2027
- - **editable-html:** bumping editable-html version ([79e6b40](https://github.com/pie-framework/pie-lib/commit/79e6b40))
2028
-
2029
- <a name="6.13.8"></a>
2030
-
2031
- ## 6.13.8 (2019-01-08)
2032
-
2033
- <a name="6.13.7"></a>
2034
-
2035
- ## 6.13.7 (2019-01-08)
2036
-
2037
- <a name="6.13.6"></a>
2038
-
2039
- ## 6.13.6 (2019-01-08)
2040
-
2041
- ### Bug Fixes
2042
-
2043
- - **editable-html:** finally fixed the test ([1cc454e](https://github.com/pie-framework/pie-lib/commit/1cc454e))
2044
- - **editable-html:** fixed some tests ([2916509](https://github.com/pie-framework/pie-lib/commit/2916509))
2045
- - **editable-html:** fixed some tests ([b9bfcd7](https://github.com/pie-framework/pie-lib/commit/b9bfcd7))
2046
- - **editable-html:** fixed test ([db0e05c](https://github.com/pie-framework/pie-lib/commit/db0e05c))
2047
- - **editable-html:** fixed the syntax error ([0d82f87](https://github.com/pie-framework/pie-lib/commit/0d82f87))
2048
- - **editable-html:** made it possible for the editable-html component to recognize lists inside a table cell ([59a02b7](https://github.com/pie-framework/pie-lib/commit/59a02b7))
2049
- - **editable-html:** removed the wrap and unwrap functions and used those from the math-rendering package ([bce1077](https://github.com/pie-framework/pie-lib/commit/bce1077))
2050
- - **editable-html:** updated the math rendering package ([cdd08f7](https://github.com/pie-framework/pie-lib/commit/cdd08f7))
2051
- - **editable-html:** updated the math-rendering package ([1c38c0b](https://github.com/pie-framework/pie-lib/commit/1c38c0b))
2052
-
2053
- ### Features
2054
-
2055
- - **config-ui:** added a layout component in order to be used by all elements to be rendered ([5bf1bbc](https://github.com/pie-framework/pie-lib/commit/5bf1bbc))
2056
-
2057
- <a name="6.13.2"></a>
2058
-
2059
- ## [6.13.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.13.1...@pie-lib/editable-html@6.13.2) (2018-12-04)
2060
-
2061
- ### Bug Fixes
2062
-
2063
- - **editable-html:** increased the initial width of the table cell ([0f4bf9f](https://github.com/pie-framework/pie-lib/commit/0f4bf9f))
2064
-
2065
- <a name="6.13.1"></a>
2066
-
2067
- ## [6.13.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.13.0...@pie-lib/editable-html@6.13.1) (2018-11-27)
2068
-
2069
- **Note:** Version bump only for package @pie-lib/editable-html
2070
-
2071
- <a name="6.13.0"></a>
2072
-
2073
- # [6.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.12.0...@pie-lib/editable-html@6.13.0) (2018-11-27)
2074
-
2075
- ### Features
2076
-
2077
- - **math-toolbar:** changed from ssh to https for the mathquill forked repo ([7364008](https://github.com/pie-framework/pie-lib/commit/7364008))
2078
-
2079
- <a name="6.12.0"></a>
2080
-
2081
- # [6.12.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.11.0...@pie-lib/editable-html@6.12.0) (2018-11-27)
2082
-
2083
- ### Features
2084
-
2085
- - **math-input:** added some new symbols to the math-input ([56062aa](https://github.com/pie-framework/pie-lib/commit/56062aa))
2086
-
2087
- <a name="6.11.0"></a>
2088
-
2089
- # [6.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.10.2...@pie-lib/editable-html@6.11.0) (2018-11-23)
2090
-
2091
- ### Bug Fixes
2092
-
2093
- - sort tests ([f6d78e3](https://github.com/pie-framework/pie-lib/commit/f6d78e3))
2094
-
2095
- ### Features
2096
-
2097
- - **math-toolbar:** broke apart editable-html math toolbar into a separate package ([72c5a79](https://github.com/pie-framework/pie-lib/commit/72c5a79))
2098
- - **math-toolbar:** fix editable-html broken test ([da6022a](https://github.com/pie-framework/pie-lib/commit/da6022a))
2099
-
2100
- <a name="6.10.2"></a>
2101
-
2102
- ## [6.10.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.10.1...@pie-lib/editable-html@6.10.2) (2018-11-13)
2103
-
2104
- ### Bug Fixes
2105
-
2106
- - **editable-html:** fixed the issue of expanding inputs ([ad972d3](https://github.com/pie-framework/pie-lib/commit/ad972d3))
2107
-
2108
- <a name="6.10.1"></a>
2109
-
2110
- ## [6.10.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.10.0...@pie-lib/editable-html@6.10.1) (2018-11-12)
2111
-
2112
- ### Bug Fixes
2113
-
2114
- - **added-dependencies-where-needed:** fixed missing dependencies ([7c28bd3](https://github.com/pie-framework/pie-lib/commit/7c28bd3))
2115
-
2116
- <a name="6.10.0"></a>
2117
-
2118
- # [6.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.9.0...@pie-lib/editable-html@6.10.0) (2018-11-09)
2119
-
2120
- ### Features
2121
-
2122
- - **editable-html:** add raw latex to math plugin created span ([afe2981](https://github.com/pie-framework/pie-lib/commit/afe2981))
2123
-
2124
- <a name="6.9.0"></a>
2125
-
2126
- # [6.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.8.0...@pie-lib/editable-html@6.9.0) (2018-11-05)
2127
-
2128
- ### Bug Fixes
2129
-
2130
- - **focus-before-image:** added a withoutNormalization to fix the issue of adding multiple spaces ([21c8b13](https://github.com/pie-framework/pie-lib/commit/21c8b13))
2131
- - **focus-before-image:** added spaces before and after an image and made sure that when they are clicked the editor focuses where it should be ([f562dcf](https://github.com/pie-framework/pie-lib/commit/f562dcf))
2132
- - **focus-before-image:** optimized the normalize function ([8172de2](https://github.com/pie-framework/pie-lib/commit/8172de2))
2133
- - **focus-before-image:** used the normalizeNode hook to make the changes ([c0eacc3](https://github.com/pie-framework/pie-lib/commit/c0eacc3))
2134
-
2135
- ### Features
2136
-
2137
- - **editable-html:** added a test for the normalizeNode function ([4e81020](https://github.com/pie-framework/pie-lib/commit/4e81020))
2138
-
2139
- <a name="6.8.0"></a>
2140
-
2141
- # [6.8.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.7.6...@pie-lib/editable-html@6.8.0) (2018-11-02)
2142
-
2143
- ### Features
2144
-
2145
- - **image-support-tables:** added image support to the table plugin ([88196d2](https://github.com/pie-framework/pie-lib/commit/88196d2))
2146
- - **math-support-tables:** added math support to the table plugin ([0010443](https://github.com/pie-framework/pie-lib/commit/0010443))
2147
- - **plugins-support-for-tables:** made the requested changes and fixed the tests ([132e35c](https://github.com/pie-framework/pie-lib/commit/132e35c))
2148
-
2149
- <a name="6.7.6"></a>
2150
-
2151
- ## [6.7.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.7.5...@pie-lib/editable-html@6.7.6) (2018-10-30)
2152
-
2153
- ### Bug Fixes
2154
-
2155
- - **focus-inside-text-issue:** changed a temporary variable that decides if it should call the updateSelection function or not in order for the execution to not reach some outdated code that messes things up for firefox ([2c2e571](https://github.com/pie-framework/pie-lib/commit/2c2e571))
2156
- - **focus-inside-text-issue:** fixed a test ([5676c82](https://github.com/pie-framework/pie-lib/commit/5676c82))
2157
-
2158
- <a name="6.7.5"></a>
2159
-
2160
- ## [6.7.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.7.4...@pie-lib/editable-html@6.7.5) (2018-10-19)
2161
-
2162
- ### Bug Fixes
2163
-
2164
- - **ch468:** added disableunderline prop for the editable-html component ([0886417](https://github.com/pie-framework/pie-lib/commit/0886417))
2165
-
2166
- <a name="6.7.4"></a>
2167
-
2168
- ## [6.7.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.7.3...@pie-lib/editable-html@6.7.4) (2018-10-02)
2169
-
2170
- ### Bug Fixes
2171
-
2172
- - **editablehtml:** fixed auto resizing ([0f8cdd3](https://github.com/pie-framework/pie-lib/commit/0f8cdd3))
2173
-
2174
- <a name="6.7.3"></a>
2175
-
2176
- ## [6.7.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.7.0...@pie-lib/editable-html@6.7.3) (2018-09-25)
2177
-
2178
- ### Bug Fixes
2179
-
2180
- - rollback slate version, keep slate-soft-break ([fd37c73](https://github.com/pie-framework/pie-lib/commit/fd37c73))
2181
-
2182
- <a name="6.7.0"></a>
2183
-
2184
- # [6.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.6.7...@pie-lib/editable-html@6.7.0) (2018-09-19)
2185
-
2186
- ### Features
2187
-
2188
- - **editable-html:** added slate plugin for soft linebreaks ([11637bc](https://github.com/pie-framework/pie-lib/commit/11637bc))
2189
-
2190
- <a name="6.6.7"></a>
2191
-
2192
- ## [6.6.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.6.6...@pie-lib/editable-html@6.6.7) (2018-09-13)
2193
-
2194
- ### Bug Fixes
2195
-
2196
- - reduce package size ([e2b0baa](https://github.com/pie-framework/pie-lib/commit/e2b0baa))
2197
-
2198
- <a name="6.6.6"></a>
2199
-
2200
- ## [6.6.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.6.5...@pie-lib/editable-html@6.6.6) (2018-09-12)
2201
-
2202
- ### Bug Fixes
2203
-
2204
- - githead ([3e485e0](https://github.com/pie-framework/pie-lib/commit/3e485e0))
2205
- - rm githead ([a1523aa](https://github.com/pie-framework/pie-lib/commit/a1523aa))
2206
-
2207
- <a name="6.6.5"></a>
2208
-
2209
- ## [6.6.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.6.3...@pie-lib/editable-html@6.6.5) (2018-09-12)
2210
-
2211
- **Note:** Version bump only for package @pie-lib/editable-html
2212
-
2213
- <a name="6.6.4"></a>
2214
-
2215
- ## [6.6.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.6.3...@pie-lib/editable-html@6.6.4) (2018-09-12)
2216
-
2217
- **Note:** Version bump only for package @pie-lib/editable-html
2218
-
2219
- <a name="6.6.3"></a>
2220
-
2221
- ## [6.6.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.6.2...@pie-lib/editable-html@6.6.3) (2018-08-29)
2222
-
2223
- ### Bug Fixes
2224
-
2225
- - serialize - remove empty text nodes after DomParse ([8b6df96](https://github.com/pie-framework/pie-lib/commit/8b6df96))
2226
-
2227
- <a name="6.6.2"></a>
2228
-
2229
- ## [6.6.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.6.1...@pie-lib/editable-html@6.6.2) (2018-08-28)
2230
-
2231
- ### Bug Fixes
2232
-
2233
- - strip \displaystyle from latex ([9de575c](https://github.com/pie-framework/pie-lib/commit/9de575c))
2234
-
2235
- <a name="6.6.1"></a>
2236
-
2237
- ## [6.6.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.6.0...@pie-lib/editable-html@6.6.1) (2018-08-17)
2238
-
2239
- ### Bug Fixes
2240
-
2241
- - rm unused imports ([e8691b8](https://github.com/pie-framework/pie-lib/commit/e8691b8))
2242
-
2243
- <a name="6.6.0"></a>
2244
-
2245
- # [6.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.5.0...@pie-lib/editable-html@6.6.0) (2018-08-17)
2246
-
2247
- ### Bug Fixes
2248
-
2249
- - **table:** add support for more attributes ([0c3aeb4](https://github.com/pie-framework/pie-lib/commit/0c3aeb4))
2250
-
2251
- ### Features
2252
-
2253
- - **table:** add toolbar border toggle button to toolbar ([7b2add3](https://github.com/pie-framework/pie-lib/commit/7b2add3))
2254
-
2255
- <a name="6.5.0"></a>
2256
-
2257
- # [6.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.4.0...@pie-lib/editable-html@6.5.0) (2018-08-09)
2258
-
2259
- ### Features
2260
-
2261
- - **editable-html:** add basic table support ([637a93a](https://github.com/pie-framework/pie-lib/commit/637a93a))
2262
-
2263
- <a name="6.4.0"></a>
2264
-
2265
- # [6.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.3.0...@pie-lib/editable-html@6.4.0) (2018-08-08)
2266
-
2267
- ### Features
2268
-
2269
- - **math:** add support for \$ latex character ([0569f14](https://github.com/pie-framework/pie-lib/commit/0569f14))
2270
-
2271
- <a name="6.3.0"></a>
2272
-
2273
- # [6.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.2.5...@pie-lib/editable-html@6.3.0) (2018-08-06)
2274
-
2275
- ### Features
2276
-
2277
- - **editable-html:** added autoWidthToolbar for editable-html ([a5103f5](https://github.com/pie-framework/pie-lib/commit/a5103f5))
2278
-
2279
- <a name="6.2.5"></a>
2280
-
2281
- ## [6.2.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.2.4...@pie-lib/editable-html@6.2.5) (2018-08-03)
2282
-
2283
- ### Bug Fixes
2284
-
2285
- - make images inline instead of block so they render correctly. ([e02fec0](https://github.com/pie-framework/pie-lib/commit/e02fec0))
2286
-
2287
- <a name="6.2.4"></a>
2288
-
2289
- ## [6.2.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.2.3...@pie-lib/editable-html@6.2.4) (2018-08-02)
2290
-
2291
- ### Bug Fixes
2292
-
2293
- - **math:** prevent mathquill re-render if math is unchanged. Closes [#47](https://github.com/pie-framework/pie-lib/issues/47). ([5e7b0fd](https://github.com/pie-framework/pie-lib/commit/5e7b0fd))
2294
-
2295
- <a name="6.2.3"></a>
2296
-
2297
- ## [6.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.2.2...@pie-lib/editable-html@6.2.3) (2018-08-01)
2298
-
2299
- ### Bug Fixes
2300
-
2301
- - **editable-html:** fix image plugin done button ([40bb2e5](https://github.com/pie-framework/pie-lib/commit/40bb2e5))
2302
-
2303
- <a name="6.2.2"></a>
2304
-
2305
- ## [6.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.2.1...@pie-lib/editable-html@6.2.2) (2018-07-27)
2306
-
2307
- ### Bug Fixes
2308
-
2309
- - debounce 'onInputEdit' to prevent componentLifecycle overflow ([f1081ce](https://github.com/pie-framework/pie-lib/commit/f1081ce))
2310
-
2311
- <a name="6.2.1"></a>
2312
-
2313
- ## [6.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.2.0...@pie-lib/editable-html@6.2.1) (2018-07-27)
2314
-
2315
- ### Bug Fixes
2316
-
2317
- - **math:** emit latex wrapped in brackets ([0ef0a75](https://github.com/pie-framework/pie-lib/commit/0ef0a75))
2318
-
2319
- <a name="6.2.0"></a>
2320
-
2321
- # [6.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.1.1...@pie-lib/editable-html@6.2.0) (2018-07-25)
2322
-
2323
- ### Features
2324
-
2325
- - Update toolbar api to provide better separation between react components and slate and move math editing to toolbar to simplify ui ([b694a29](https://github.com/pie-framework/pie-lib/commit/b694a29))
2326
-
2327
- <a name="6.1.1"></a>
2328
-
2329
- ## [6.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.1.0...@pie-lib/editable-html@6.1.1) (2018-05-28)
2330
-
2331
- **Note:** Version bump only for package @pie-lib/editable-html
2332
-
2333
- <a name="6.0.1"></a>
2334
-
2335
- ## [6.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@6.0.0...@pie-lib/editable-html@6.0.1) (2018-05-16)
2336
-
2337
- **Note:** Version bump only for package @pie-lib/editable-html
2338
-
2339
- <a name="5.1.0"></a>
2340
-
2341
- # [5.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.13...@pie-lib/editable-html@5.1.0) (2018-05-16)
2342
-
2343
- ### Features
2344
-
2345
- - upgrade material-ui -> [@mui](https://github.com/material-ui)/core@^1.0.0-rc.1 ([017ef63](https://github.com/pie-framework/pie-lib/commit/017ef63))
2346
-
2347
- <a name="5.0.13"></a>
2348
-
2349
- ## [5.0.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.12...@pie-lib/editable-html@5.0.13) (2018-05-09)
2350
-
2351
- ### Bug Fixes
2352
-
2353
- - **lint:** automatic lint fixes ([7c9a2a4](https://github.com/pie-framework/pie-lib/commit/7c9a2a4))
2354
- - **lint:** lint fixes ([f059583](https://github.com/pie-framework/pie-lib/commit/f059583))
2355
-
2356
- <a name="5.0.12"></a>
2357
-
2358
- ## [5.0.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.11...@pie-lib/editable-html@5.0.12) (2018-04-30)
2359
-
2360
- ### Bug Fixes
2361
-
2362
- - **dependencies:** set material-ui version to ^1.0.0-beta.44 ([6fd66bc](https://github.com/pie-framework/pie-lib/commit/6fd66bc))
2363
-
2364
- <a name="5.0.11"></a>
2365
-
2366
- ## [5.0.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.10...@pie-lib/editable-html@5.0.11) (2018-04-30)
2367
-
2368
- ### Bug Fixes
2369
-
2370
- - **dependencies:** roll back material-ui ([5167d1f](https://github.com/pie-framework/pie-lib/commit/5167d1f))
2371
-
2372
- <a name="5.0.10"></a>
2373
-
2374
- ## [5.0.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.9...@pie-lib/editable-html@5.0.10) (2018-04-30)
2375
-
2376
- ### Bug Fixes
2377
-
2378
- - **dependencies:** lock material-ui to 1.0.0-beta.44 ([60df8e6](https://github.com/pie-framework/pie-lib/commit/60df8e6))
2379
-
2380
- <a name="5.0.9"></a>
2381
-
2382
- ## [5.0.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.8...@pie-lib/editable-html@5.0.9) (2018-04-30)
2383
-
2384
- ### Bug Fixes
2385
-
2386
- - **dependencies:** lock material-ui to 1.0.0-beta.43 ([2a3e087](https://github.com/pie-framework/pie-lib/commit/2a3e087))
2387
- - **dependencies:** upgrade material-ui ([b94b50e](https://github.com/pie-framework/pie-lib/commit/b94b50e))
2388
-
2389
- <a name="5.0.8"></a>
2390
-
2391
- ## [5.0.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.7...@pie-lib/editable-html@5.0.8) (2018-04-24)
2392
-
2393
- ### Bug Fixes
2394
-
2395
- - **editor:** pass in className ([60b2c65](https://github.com/pie-framework/pie-lib/commit/60b2c65))
2396
-
2397
- <a name="5.0.7"></a>
2398
-
2399
- ## [5.0.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.6...@pie-lib/editable-html@5.0.7) (2018-04-24)
2400
-
2401
- ### Bug Fixes
2402
-
2403
- - **MarkButton:** change mark type to string ([e9b1ef2](https://github.com/pie-framework/pie-lib/commit/e9b1ef2))
2404
-
2405
- <a name="5.0.6"></a>
2406
-
2407
- ## [5.0.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.5...@pie-lib/editable-html@5.0.6) (2018-04-24)
2408
-
2409
- ### Bug Fixes
2410
-
2411
- - **lint:** lint fixes ([e30b47a](https://github.com/pie-framework/pie-lib/commit/e30b47a))
2412
-
2413
- <a name="5.0.5"></a>
2414
-
2415
- ## [5.0.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.4...@pie-lib/editable-html@5.0.5) (2018-04-24)
2416
-
2417
- ### Bug Fixes
2418
-
2419
- - **dependencies:** version bump ([dd82caf](https://github.com/pie-framework/pie-lib/commit/dd82caf))
2420
-
2421
- <a name="5.0.4"></a>
2422
-
2423
- ## [5.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.3...@pie-lib/editable-html@5.0.4) (2018-04-24)
2424
-
2425
- ### Bug Fixes
2426
-
2427
- - **dependencies:** bump slate-edit-list to 0.11.3 ([e82adc7](https://github.com/pie-framework/pie-lib/commit/e82adc7))
2428
- - **image:** fix up image plugin ([c7229eb](https://github.com/pie-framework/pie-lib/commit/c7229eb)), closes [#4](https://github.com/pie-framework/pie-lib/issues/4)
2429
-
2430
- <a name="5.0.3"></a>
2431
-
2432
- ## [5.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.2...@pie-lib/editable-html@5.0.3) (2018-04-20)
2433
-
2434
- **Note:** Version bump only for package @pie-lib/editable-html
2435
-
2436
- <a name="5.0.2"></a>
2437
-
2438
- ## [5.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.1...@pie-lib/editable-html@5.0.2) (2018-04-20)
2439
-
2440
- ### Bug Fixes
2441
-
2442
- - **test:** normalize tests ([b86b3d9](https://github.com/pie-framework/pie-lib/commit/b86b3d9))
2443
-
2444
- <a name="5.0.1"></a>
2445
-
2446
- ## [5.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@5.0.0...@pie-lib/editable-html@5.0.1) (2018-04-19)
2447
-
2448
- **Note:** Version bump only for package @pie-lib/editable-html
2449
-
2450
- <a name="4.0.2"></a>
2451
-
2452
- ## [4.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@4.0.1...@pie-lib/editable-html@4.0.2) (2018-04-16)
2453
-
2454
- ### Bug Fixes
2455
-
2456
- - **dependencies:** update dependencies ([8a5c1b2](https://github.com/pie-framework/pie-lib/commit/8a5c1b2))
2457
- - **serialization:** fix serialization ([9191bb6](https://github.com/pie-framework/pie-lib/commit/9191bb6))
2458
-
2459
- <a name="4.0.1"></a>
2460
-
2461
- ## [4.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@3.1.1...@pie-lib/editable-html@4.0.1) (2018-04-16)
2462
-
2463
- ### Bug Fixes
2464
-
2465
- - **dependencies:** version bump react and material-ui ([05d72cf](https://github.com/pie-framework/pie-lib/commit/05d72cf))
2466
- - **font:** set Roboto as font ([d142ce9](https://github.com/pie-framework/pie-lib/commit/d142ce9))
2467
-
2468
- <a name="3.1.1"></a>
2469
-
2470
- ## [3.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@3.1.0...@pie-lib/editable-html@3.1.1) (2018-04-13)
2471
-
2472
- ### Bug Fixes
2473
-
2474
- - **serializtion:** bump slate dependencies to fix serialization issues ([af11784](https://github.com/pie-framework/pie-lib/commit/af11784))
2475
-
2476
- <a name="3.1.0"></a>
2477
-
2478
- # [3.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@3.0.1...@pie-lib/editable-html@3.1.0) (2018-04-12)
2479
-
2480
- ### Features
2481
-
2482
- - **ui:** polish disabled state, polish sizing logic ([9be2757](https://github.com/pie-framework/pie-lib/commit/9be2757))
2483
-
2484
- <a name="3.0.1"></a>
2485
-
2486
- ## [3.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@3.0.0...@pie-lib/editable-html@3.0.1) (2018-04-05)
2487
-
2488
- **Note:** Version bump only for package @pie-lib/editable-html
2489
-
2490
- <a name="3.0.0"></a>
2491
-
2492
- # [3.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@2.2.5...@pie-lib/editable-html@3.0.0) (2018-04-02)
2493
-
2494
- ### Bug Fixes
2495
-
2496
- - **EditableHtml:** wrap the Editor with a component that checks markup against value ([57b7dda](https://github.com/pie-framework/pie-lib/commit/57b7dda))
2497
- - **Editor:** use `object` instead of `kind` w/ slate@0.33.0 ([3bb0cca](https://github.com/pie-framework/pie-lib/commit/3bb0cca))
2498
- - **list:** use logic from 'slate-edit-list' ([d0be5fe](https://github.com/pie-framework/pie-lib/commit/d0be5fe))
2499
- - **types:** fix type checking ([a088983](https://github.com/pie-framework/pie-lib/commit/a088983))
2500
-
2501
- ### Features
2502
-
2503
- - **bulleted-list:** add new plugin, add activePlugins prop, export DEFAULT_PLUGINS. ([6268832](https://github.com/pie-framework/pie-lib/commit/6268832))
2504
- - **EditableHtml:** export `Editor` ([c3e53fe](https://github.com/pie-framework/pie-lib/commit/c3e53fe))
2505
-
2506
- ### BREAKING CHANGES
2507
-
2508
- - **Editor:** 'math' and 'image' plugins have been disabled pending fixes.
2509
-
2510
- <a name="2.2.5"></a>
2511
-
2512
- ## [2.2.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@2.2.4...@pie-lib/editable-html@2.2.5) (2018-03-28)
2513
-
2514
- **Note:** Version bump only for package @pie-lib/editable-html
2515
-
2516
- <a name="2.2.4"></a>
2517
-
2518
- ## 2.2.4 (2018-03-06)
2519
-
2520
- **Note:** Version bump only for package @pie-lib/editable-html
2521
-
2522
- <a name="2.2.3"></a>
2523
-
2524
- ## 2.2.3 (2018-03-06)
2525
-
2526
- **Note:** Version bump only for package @pie-lib/editable-html
2527
-
2528
- <a name="2.2.2"></a>
2529
-
2530
- ## 2.2.2 (2018-03-06)
2531
-
2532
- **Note:** Version bump only for package @pie-lib/editable-html