@pie-lib/editable-html-tip-tap 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (167) hide show
  1. package/CHANGELOG.json +32 -0
  2. package/CHANGELOG.md +2280 -0
  3. package/lib/__tests__/editor.test.js +470 -0
  4. package/lib/__tests__/serialization.test.js +246 -0
  5. package/lib/__tests__/utils.js +106 -0
  6. package/lib/block-tags.js +25 -0
  7. package/lib/constants.js +16 -0
  8. package/lib/editor.js +1356 -0
  9. package/lib/extensions/MediaView.js +112 -0
  10. package/lib/extensions/characters.js +65 -0
  11. package/lib/extensions/component.js +325 -0
  12. package/lib/extensions/css.js +252 -0
  13. package/lib/extensions/custom-toolbar-wrapper.js +124 -0
  14. package/lib/extensions/image.js +106 -0
  15. package/lib/extensions/math.js +330 -0
  16. package/lib/extensions/media.js +276 -0
  17. package/lib/extensions/responseArea.js +278 -0
  18. package/lib/index.js +1213 -0
  19. package/lib/old-index.js +269 -0
  20. package/lib/parse-html.js +16 -0
  21. package/lib/plugins/characters/custom-popper.js +73 -0
  22. package/lib/plugins/characters/index.js +305 -0
  23. package/lib/plugins/characters/utils.js +381 -0
  24. package/lib/plugins/css/icons/index.js +37 -0
  25. package/lib/plugins/css/index.js +390 -0
  26. package/lib/plugins/customPlugin/index.js +114 -0
  27. package/lib/plugins/html/icons/index.js +38 -0
  28. package/lib/plugins/html/index.js +81 -0
  29. package/lib/plugins/image/__tests__/component.test.js +51 -0
  30. package/lib/plugins/image/__tests__/image-toolbar-logic.test.js +56 -0
  31. package/lib/plugins/image/__tests__/image-toolbar.test.js +26 -0
  32. package/lib/plugins/image/__tests__/index.test.js +98 -0
  33. package/lib/plugins/image/__tests__/insert-image-handler.test.js +125 -0
  34. package/lib/plugins/image/__tests__/mock-change.js +25 -0
  35. package/lib/plugins/image/alt-dialog.js +129 -0
  36. package/lib/plugins/image/component.js +419 -0
  37. package/lib/plugins/image/image-toolbar.js +177 -0
  38. package/lib/plugins/image/index.js +263 -0
  39. package/lib/plugins/image/insert-image-handler.js +117 -0
  40. package/lib/plugins/index.js +413 -0
  41. package/lib/plugins/list/__tests__/index.test.js +79 -0
  42. package/lib/plugins/list/index.js +334 -0
  43. package/lib/plugins/math/__tests__/index.test.js +300 -0
  44. package/lib/plugins/math/index.js +454 -0
  45. package/lib/plugins/media/__tests__/index.test.js +71 -0
  46. package/lib/plugins/media/index.js +387 -0
  47. package/lib/plugins/media/media-dialog.js +709 -0
  48. package/lib/plugins/media/media-toolbar.js +101 -0
  49. package/lib/plugins/media/media-wrapper.js +93 -0
  50. package/lib/plugins/rendering/index.js +46 -0
  51. package/lib/plugins/respArea/drag-in-the-blank/choice.js +289 -0
  52. package/lib/plugins/respArea/drag-in-the-blank/index.js +94 -0
  53. package/lib/plugins/respArea/explicit-constructed-response/index.js +120 -0
  54. package/lib/plugins/respArea/icons/index.js +95 -0
  55. package/lib/plugins/respArea/index.js +341 -0
  56. package/lib/plugins/respArea/inline-dropdown/index.js +126 -0
  57. package/lib/plugins/respArea/math-templated/index.js +130 -0
  58. package/lib/plugins/respArea/utils.js +125 -0
  59. package/lib/plugins/table/CustomTablePlugin.js +133 -0
  60. package/lib/plugins/table/__tests__/index.test.js +442 -0
  61. package/lib/plugins/table/__tests__/table-toolbar.test.js +54 -0
  62. package/lib/plugins/table/icons/index.js +69 -0
  63. package/lib/plugins/table/index.js +483 -0
  64. package/lib/plugins/table/table-toolbar.js +187 -0
  65. package/lib/plugins/textAlign/icons/index.js +194 -0
  66. package/lib/plugins/textAlign/index.js +34 -0
  67. package/lib/plugins/toolbar/__tests__/default-toolbar.test.js +128 -0
  68. package/lib/plugins/toolbar/__tests__/editor-and-toolbar.test.js +51 -0
  69. package/lib/plugins/toolbar/__tests__/toolbar-buttons.test.js +54 -0
  70. package/lib/plugins/toolbar/__tests__/toolbar.test.js +120 -0
  71. package/lib/plugins/toolbar/default-toolbar.js +229 -0
  72. package/lib/plugins/toolbar/done-button.js +53 -0
  73. package/lib/plugins/toolbar/editor-and-toolbar.js +286 -0
  74. package/lib/plugins/toolbar/index.js +34 -0
  75. package/lib/plugins/toolbar/toolbar-buttons.js +194 -0
  76. package/lib/plugins/toolbar/toolbar.js +376 -0
  77. package/lib/plugins/utils.js +62 -0
  78. package/lib/serialization.js +677 -0
  79. package/lib/shared/alert-dialog.js +75 -0
  80. package/lib/theme.js +9 -0
  81. package/package.json +69 -0
  82. package/src/__tests__/editor.test.jsx +363 -0
  83. package/src/__tests__/serialization.test.js +291 -0
  84. package/src/__tests__/utils.js +36 -0
  85. package/src/block-tags.js +17 -0
  86. package/src/constants.js +7 -0
  87. package/src/editor.jsx +1197 -0
  88. package/src/extensions/characters.js +46 -0
  89. package/src/extensions/component.jsx +294 -0
  90. package/src/extensions/css.js +217 -0
  91. package/src/extensions/custom-toolbar-wrapper.jsx +100 -0
  92. package/src/extensions/image.js +55 -0
  93. package/src/extensions/math.js +259 -0
  94. package/src/extensions/media.js +182 -0
  95. package/src/extensions/responseArea.js +205 -0
  96. package/src/index.jsx +1462 -0
  97. package/src/old-index.jsx +162 -0
  98. package/src/parse-html.js +8 -0
  99. package/src/plugins/README.md +27 -0
  100. package/src/plugins/characters/custom-popper.js +48 -0
  101. package/src/plugins/characters/index.jsx +284 -0
  102. package/src/plugins/characters/utils.js +447 -0
  103. package/src/plugins/css/icons/index.jsx +17 -0
  104. package/src/plugins/css/index.jsx +340 -0
  105. package/src/plugins/customPlugin/index.jsx +85 -0
  106. package/src/plugins/html/icons/index.jsx +19 -0
  107. package/src/plugins/html/index.jsx +72 -0
  108. package/src/plugins/image/__tests__/__snapshots__/component.test.jsx.snap +51 -0
  109. package/src/plugins/image/__tests__/__snapshots__/image-toolbar-logic.test.jsx.snap +27 -0
  110. package/src/plugins/image/__tests__/__snapshots__/image-toolbar.test.jsx.snap +44 -0
  111. package/src/plugins/image/__tests__/component.test.jsx +41 -0
  112. package/src/plugins/image/__tests__/image-toolbar-logic.test.jsx +42 -0
  113. package/src/plugins/image/__tests__/image-toolbar.test.jsx +11 -0
  114. package/src/plugins/image/__tests__/index.test.js +95 -0
  115. package/src/plugins/image/__tests__/insert-image-handler.test.js +113 -0
  116. package/src/plugins/image/__tests__/mock-change.js +15 -0
  117. package/src/plugins/image/alt-dialog.jsx +82 -0
  118. package/src/plugins/image/component.jsx +343 -0
  119. package/src/plugins/image/image-toolbar.jsx +100 -0
  120. package/src/plugins/image/index.jsx +227 -0
  121. package/src/plugins/image/insert-image-handler.js +79 -0
  122. package/src/plugins/index.jsx +377 -0
  123. package/src/plugins/list/__tests__/index.test.js +54 -0
  124. package/src/plugins/list/index.jsx +305 -0
  125. package/src/plugins/math/__tests__/__snapshots__/index.test.jsx.snap +48 -0
  126. package/src/plugins/math/__tests__/index.test.jsx +245 -0
  127. package/src/plugins/math/index.jsx +379 -0
  128. package/src/plugins/media/__tests__/index.test.js +75 -0
  129. package/src/plugins/media/index.jsx +325 -0
  130. package/src/plugins/media/media-dialog.js +624 -0
  131. package/src/plugins/media/media-toolbar.jsx +56 -0
  132. package/src/plugins/media/media-wrapper.jsx +43 -0
  133. package/src/plugins/rendering/index.js +31 -0
  134. package/src/plugins/respArea/drag-in-the-blank/choice.jsx +215 -0
  135. package/src/plugins/respArea/drag-in-the-blank/index.jsx +70 -0
  136. package/src/plugins/respArea/explicit-constructed-response/index.jsx +92 -0
  137. package/src/plugins/respArea/icons/index.jsx +71 -0
  138. package/src/plugins/respArea/index.jsx +299 -0
  139. package/src/plugins/respArea/inline-dropdown/index.jsx +108 -0
  140. package/src/plugins/respArea/math-templated/index.jsx +104 -0
  141. package/src/plugins/respArea/utils.jsx +90 -0
  142. package/src/plugins/table/CustomTablePlugin.js +113 -0
  143. package/src/plugins/table/__tests__/__snapshots__/table-toolbar.test.jsx.snap +44 -0
  144. package/src/plugins/table/__tests__/index.test.jsx +401 -0
  145. package/src/plugins/table/__tests__/table-toolbar.test.jsx +42 -0
  146. package/src/plugins/table/icons/index.jsx +53 -0
  147. package/src/plugins/table/index.jsx +427 -0
  148. package/src/plugins/table/table-toolbar.jsx +136 -0
  149. package/src/plugins/textAlign/icons/index.jsx +114 -0
  150. package/src/plugins/textAlign/index.jsx +23 -0
  151. package/src/plugins/toolbar/__tests__/__snapshots__/default-toolbar.test.jsx.snap +923 -0
  152. package/src/plugins/toolbar/__tests__/__snapshots__/editor-and-toolbar.test.jsx.snap +20 -0
  153. package/src/plugins/toolbar/__tests__/__snapshots__/toolbar-buttons.test.jsx.snap +36 -0
  154. package/src/plugins/toolbar/__tests__/__snapshots__/toolbar.test.jsx.snap +46 -0
  155. package/src/plugins/toolbar/__tests__/default-toolbar.test.jsx +94 -0
  156. package/src/plugins/toolbar/__tests__/editor-and-toolbar.test.jsx +37 -0
  157. package/src/plugins/toolbar/__tests__/toolbar-buttons.test.jsx +51 -0
  158. package/src/plugins/toolbar/__tests__/toolbar.test.jsx +106 -0
  159. package/src/plugins/toolbar/default-toolbar.jsx +206 -0
  160. package/src/plugins/toolbar/done-button.jsx +38 -0
  161. package/src/plugins/toolbar/editor-and-toolbar.jsx +257 -0
  162. package/src/plugins/toolbar/index.jsx +23 -0
  163. package/src/plugins/toolbar/toolbar-buttons.jsx +138 -0
  164. package/src/plugins/toolbar/toolbar.jsx +338 -0
  165. package/src/plugins/utils.js +31 -0
  166. package/src/serialization.jsx +621 -0
  167. package/src/theme.js +1 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,2280 @@
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
+ ## [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)
7
+
8
+ **Note:** Version bump only for package @pie-lib/editable-html
9
+
10
+
11
+
12
+
13
+
14
+ # [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)
15
+
16
+ **Note:** Version bump only for package @pie-lib/editable-html
17
+
18
+
19
+
20
+
21
+
22
+ # [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)
23
+
24
+ **Note:** Version bump only for package @pie-lib/editable-html
25
+
26
+
27
+
28
+
29
+
30
+ # [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)
31
+
32
+ **Note:** Version bump only for package @pie-lib/editable-html
33
+
34
+
35
+
36
+
37
+
38
+ # [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)
39
+
40
+ **Note:** Version bump only for package @pie-lib/editable-html
41
+
42
+
43
+
44
+
45
+
46
+ ## [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)
47
+
48
+ **Note:** Version bump only for package @pie-lib/editable-html
49
+
50
+
51
+
52
+
53
+
54
+ ## [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)
55
+
56
+ **Note:** Version bump only for package @pie-lib/editable-html
57
+
58
+
59
+
60
+
61
+
62
+ # [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)
63
+
64
+
65
+ ### Bug Fixes
66
+
67
+ * fixed pie-lib/icons import [PD-5126] ([dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f))
68
+
69
+
70
+ ### Features
71
+
72
+ * split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
73
+
74
+
75
+
76
+
77
+
78
+ # [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)
79
+
80
+ **Note:** Version bump only for package @pie-lib/editable-html
81
+
82
+
83
+
84
+
85
+
86
+ # [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)
87
+
88
+ **Note:** Version bump only for package @pie-lib/editable-html
89
+
90
+
91
+
92
+
93
+
94
+ # [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)
95
+
96
+
97
+ ### Bug Fixes
98
+
99
+ * fixed pie-lib/icons import [PD-5126] ([dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f))
100
+
101
+
102
+ ### Features
103
+
104
+ * split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
105
+
106
+
107
+
108
+
109
+
110
+ # [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)
111
+
112
+ **Note:** Version bump only for package @pie-lib/editable-html
113
+
114
+
115
+
116
+
117
+
118
+ # [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)
119
+
120
+ **Note:** Version bump only for package @pie-lib/editable-html
121
+
122
+
123
+
124
+
125
+
126
+ # [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)
127
+
128
+ **Note:** Version bump only for package @pie-lib/editable-html
129
+
130
+
131
+
132
+
133
+
134
+ ## [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)
135
+
136
+
137
+ ### Bug Fixes
138
+
139
+ * fixed pie-lib/icons import [PD-5126] ([dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f))
140
+
141
+
142
+ ### Features
143
+
144
+ * split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
145
+
146
+
147
+
148
+
149
+
150
+ # [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)
151
+
152
+ ### Features
153
+
154
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
155
+
156
+ # [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)
157
+
158
+ **Note:** Version bump only for package @pie-lib/editable-html
159
+
160
+ # [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)
161
+
162
+ **Note:** Version bump only for package @pie-lib/editable-html
163
+
164
+ # [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)
165
+
166
+ **Note:** Version bump only for package @pie-lib/editable-html
167
+
168
+ # [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)
169
+
170
+ **Note:** Version bump only for package @pie-lib/editable-html
171
+
172
+ # [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)
173
+
174
+ **Note:** Version bump only for package @pie-lib/editable-html
175
+
176
+ # [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)
177
+
178
+ **Note:** Version bump only for package @pie-lib/editable-html
179
+
180
+ # [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)
181
+
182
+ **Note:** Version bump only for package @pie-lib/editable-html
183
+
184
+ # [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)
185
+
186
+ **Note:** Version bump only for package @pie-lib/editable-html
187
+
188
+ # [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)
189
+
190
+ **Note:** Version bump only for package @pie-lib/editable-html
191
+
192
+ # [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)
193
+
194
+ **Note:** Version bump only for package @pie-lib/editable-html
195
+
196
+ # [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)
197
+
198
+ **Note:** Version bump only for package @pie-lib/editable-html
199
+
200
+ # [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)
201
+
202
+ **Note:** Version bump only for package @pie-lib/editable-html
203
+
204
+ # [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)
205
+
206
+ **Note:** Version bump only for package @pie-lib/editable-html
207
+
208
+ # [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)
209
+
210
+ **Note:** Version bump only for package @pie-lib/editable-html
211
+
212
+ # [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)
213
+
214
+ **Note:** Version bump only for package @pie-lib/editable-html
215
+
216
+ # [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)
217
+
218
+ **Note:** Version bump only for package @pie-lib/editable-html
219
+
220
+ # [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)
221
+
222
+ **Note:** Version bump only for package @pie-lib/editable-html
223
+
224
+ # [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)
225
+
226
+ **Note:** Version bump only for package @pie-lib/editable-html
227
+
228
+ # [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)
229
+
230
+ **Note:** Version bump only for package @pie-lib/editable-html
231
+
232
+ # [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)
233
+
234
+ **Note:** Version bump only for package @pie-lib/editable-html
235
+
236
+ # [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)
237
+
238
+ **Note:** Version bump only for package @pie-lib/editable-html
239
+
240
+ # [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)
241
+
242
+ **Note:** Version bump only for package @pie-lib/editable-html
243
+
244
+ # [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)
245
+
246
+ **Note:** Version bump only for package @pie-lib/editable-html
247
+
248
+ # [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)
249
+
250
+ **Note:** Version bump only for package @pie-lib/editable-html
251
+
252
+ # [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)
253
+
254
+ **Note:** Version bump only for package @pie-lib/editable-html
255
+
256
+ # [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)
257
+
258
+ **Note:** Version bump only for package @pie-lib/editable-html
259
+
260
+ # [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)
261
+
262
+ **Note:** Version bump only for package @pie-lib/editable-html
263
+
264
+ # [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)
265
+
266
+ **Note:** Version bump only for package @pie-lib/editable-html
267
+
268
+ # [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)
269
+
270
+ **Note:** Version bump only for package @pie-lib/editable-html
271
+
272
+ # [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)
273
+
274
+ **Note:** Version bump only for package @pie-lib/editable-html
275
+
276
+ # [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)
277
+
278
+ **Note:** Version bump only for package @pie-lib/editable-html
279
+
280
+ # [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)
281
+
282
+ **Note:** Version bump only for package @pie-lib/editable-html
283
+
284
+ # [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)
285
+
286
+ **Note:** Version bump only for package @pie-lib/editable-html
287
+
288
+ # [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)
289
+
290
+ **Note:** Version bump only for package @pie-lib/editable-html
291
+
292
+ # [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)
293
+
294
+ **Note:** Version bump only for package @pie-lib/editable-html
295
+
296
+ # [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)
297
+
298
+ ### Bug Fixes
299
+
300
+ - 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))
301
+
302
+ ### Features
303
+
304
+ - 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))
305
+
306
+ ## [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)
307
+
308
+ ### Bug Fixes
309
+
310
+ - **editable-html:** add clarifying comments for HTML mode edit tracking PD-2765 ([3870a4d](https://github.com/pie-framework/pie-lib/commit/3870a4d9b2e618ae6f32e6d20713978c4d791b14))
311
+ - **editable-html:** hide DoneButton on active htmlMode PD-2765 ([636a302](https://github.com/pie-framework/pie-lib/commit/636a302ab81016b2de8a16b1e6d96923d25b0592))
312
+ - **editable-html:** Prevent infinite loop in componentDidUpdate by refining isEdited state check PD-2765 ([e858ad0](https://github.com/pie-framework/pie-lib/commit/e858ad030e444b6be1ea57e950e6aa3462b5f60d))
313
+ - **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))
314
+
315
+ ## [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)
316
+
317
+ ### Bug Fixes
318
+
319
+ - revert to pie-lib/math-rendering that what working ([25660ea](https://github.com/pie-framework/pie-lib/commit/25660ea6595e800a71c5494bd3bb9eecd3609a5a))
320
+
321
+ ## [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)
322
+
323
+ **Note:** Version bump only for package @pie-lib/editable-html
324
+
325
+ ## [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)
326
+
327
+ **Note:** Version bump only for package @pie-lib/editable-html
328
+
329
+ ## [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)
330
+
331
+ **Note:** Version bump only for package @pie-lib/editable-html
332
+
333
+ ## [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)
334
+
335
+ **Note:** Version bump only for package @pie-lib/editable-html
336
+
337
+ ## [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)
338
+
339
+ ### Bug Fixes
340
+
341
+ - **charting:** adjust icon for the drag handle PD-2790 ([fe670d7](https://github.com/pie-framework/pie-lib/commit/fe670d7a04f44da5c93dadbeec41b753ce50f9f6))
342
+
343
+ ## [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)
344
+
345
+ **Note:** Version bump only for package @pie-lib/editable-html
346
+
347
+ ## [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)
348
+
349
+ **Note:** Version bump only for package @pie-lib/editable-html
350
+
351
+ # [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)
352
+
353
+ ### Bug Fixes
354
+
355
+ - update mathml-to-latex version ([1d101d2](https://github.com/pie-framework/pie-lib/commit/1d101d22298bd480a5aec638e4c9708d5aa52ce4))
356
+
357
+ ### BREAKING CHANGES
358
+
359
+ - updated mathml-to-latex version.
360
+
361
+ ## [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)
362
+
363
+ ### Bug Fixes
364
+
365
+ - 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))
366
+ - **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))
367
+
368
+ ## [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)
369
+
370
+ **Note:** Version bump only for package @pie-lib/editable-html
371
+
372
+ ## [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)
373
+
374
+ ### Bug Fixes
375
+
376
+ - sanity check ([88e9afd](https://github.com/pie-framework/pie-lib/commit/88e9afd40b0aada05eb55284e00c7d918f029f08))
377
+
378
+ ## [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)
379
+
380
+ ### Bug Fixes
381
+
382
+ - import reduceMultipleBrs, add more details into console message PD-3167 ([5adcc05](https://github.com/pie-framework/pie-lib/commit/5adcc054e1bd5a71809827484d368d172a1255d3))
383
+
384
+ ## [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)
385
+
386
+ ### Bug Fixes
387
+
388
+ - make HTML disabled by default PD-2765 ([82bd362](https://github.com/pie-framework/pie-lib/commit/82bd36240205b8e0e31043cc8559267de0d5dc30))
389
+
390
+ ## [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)
391
+
392
+ ### Bug Fixes
393
+
394
+ - 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))
395
+
396
+ ## [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)
397
+
398
+ ### Bug Fixes
399
+
400
+ - 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))
401
+
402
+ # [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)
403
+
404
+ ### Bug Fixes
405
+
406
+ - **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))
407
+
408
+ ### Features
409
+
410
+ - **editable-html:** display warning dialog conditional on edits in HTML mode PD-2765 ([58d66d5](https://github.com/pie-framework/pie-lib/commit/58d66d57668a8288f32e3e6ed78cf97a61f58b17))
411
+ - **editable-html:** display warning dialog upon exiting html mode PD-2765 ([8fd9fb9](https://github.com/pie-framework/pie-lib/commit/8fd9fb964f681d261e22ec09aa8b8e6def2f7744))
412
+ - **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))
413
+ - **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))
414
+ - **editable-html:** only show relevant toolbar buttons in HTML mode PD-2765 ([ed36dcb](https://github.com/pie-framework/pie-lib/commit/ed36dcb9a95f3d990da967f65e942922b60e42e6))
415
+ - **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))
416
+ - **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))
417
+
418
+ ### BREAKING CHANGES
419
+
420
+ - **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.
421
+
422
+ ## [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)
423
+
424
+ ### Bug Fixes
425
+
426
+ - revert revert changes made for PD-3051 because they were causing PD-3119 ([371111c](https://github.com/pie-framework/pie-lib/commit/371111c26e0b0f886724f72ea67df0da3febef74))
427
+
428
+ ## [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)
429
+
430
+ **Note:** Version bump only for package @pie-lib/editable-html
431
+
432
+ ## [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)
433
+
434
+ **Note:** Version bump only for package @pie-lib/editable-html
435
+
436
+ ## [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)
437
+
438
+ ### Bug Fixes
439
+
440
+ - 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))
441
+
442
+ ## [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)
443
+
444
+ **Note:** Version bump only for package @pie-lib/editable-html
445
+
446
+ ## [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)
447
+
448
+ **Note:** Version bump only for package @pie-lib/editable-html
449
+
450
+ ## [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)
451
+
452
+ **Note:** Version bump only for package @pie-lib/editable-html
453
+
454
+ ## [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)
455
+
456
+ ### Bug Fixes
457
+
458
+ - made sure mathMlOptions are editable live [PD-2150](<[31ce3d3](https://github.com/pie-framework/pie-lib/commit/31ce3d3536788021b912895c611f972aa87161b0)>)
459
+
460
+ # [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)
461
+
462
+ ### Features
463
+
464
+ - **editable-html:** make error class important to avoid overwriting ([37af2fc](https://github.com/pie-framework/pie-lib/commit/37af2fc862f3e5d0dfd0b1ad42fbd462d98bac89))
465
+
466
+ ## [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)
467
+
468
+ **Note:** Version bump only for package @pie-lib/editable-html
469
+
470
+ ## [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)
471
+
472
+ **Note:** Version bump only for package @pie-lib/editable-html
473
+
474
+ ## [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)
475
+
476
+ ### Bug Fixes
477
+
478
+ - rerun serialization if mathml options are provided, added tests as well PD-2150 ([530af87](https://github.com/pie-framework/pie-lib/commit/530af87026010325124b70a47fd18e4a0d06cedb))
479
+ - 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))
480
+
481
+ ## [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)
482
+
483
+ **Note:** Version bump only for package @pie-lib/editable-html
484
+
485
+ ## [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)
486
+
487
+ ### Bug Fixes
488
+
489
+ - 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))
490
+
491
+ ## [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)
492
+
493
+ **Note:** Version bump only for package @pie-lib/editable-html
494
+
495
+ # [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)
496
+
497
+ ### Features
498
+
499
+ - 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))
500
+
501
+ ## [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)
502
+
503
+ ### Bug Fixes
504
+
505
+ - **math-toolbar:** add white background for spanish and special characters done button PD-2119 ([3c1dd82](https://github.com/pie-framework/pie-lib/commit/3c1dd82f7d3f21651d3e5f87d5d543ad4a0907bf))
506
+
507
+ ## [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)
508
+
509
+ **Note:** Version bump only for package @pie-lib/editable-html
510
+
511
+ ## [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)
512
+
513
+ **Note:** Version bump only for package @pie-lib/editable-html
514
+
515
+ ## [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)
516
+
517
+ ### Bug Fixes
518
+
519
+ - **eslint:** fix eslint problems-PD-2732 ([9eb9976](https://github.com/pie-framework/pie-lib/commit/9eb9976749753da86e1057a07bd2cfc65bf64ae4))
520
+
521
+ ## [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)
522
+
523
+ **Note:** Version bump only for package @pie-lib/editable-html
524
+
525
+ ## [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)
526
+
527
+ **Note:** Version bump only for package @pie-lib/editable-html
528
+
529
+ ## [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)
530
+
531
+ **Note:** Version bump only for package @pie-lib/editable-html
532
+
533
+ ## [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)
534
+
535
+ ### Bug Fixes
536
+
537
+ - **editable-html:** focus on empty choice-PD-1805 ([3497742](https://github.com/pie-framework/pie-lib/commit/34977426bfd4db1a5c6869bc275ffbbe30ad3131))
538
+
539
+ ## [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)
540
+
541
+ **Note:** Version bump only for package @pie-lib/editable-html
542
+
543
+ ## [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)
544
+
545
+ ### Bug Fixes
546
+
547
+ - **editable-html:** tweak placement of the character toolbar if parent is scrollable PD-2175 ([11daa2e](https://github.com/pie-framework/pie-lib/commit/11daa2ea984ad5fef849a612ffcd4e53dd6af7b1))
548
+
549
+ ## [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)
550
+
551
+ **Note:** Version bump only for package @pie-lib/editable-html
552
+
553
+ ## [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)
554
+
555
+ ### Bug Fixes
556
+
557
+ - version bump ([d9280a9](https://github.com/pie-framework/pie-lib/commit/d9280a9aeddab459b6d84ecdbeb62814e1eee965))
558
+
559
+ ## [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)
560
+
561
+ **Note:** Version bump only for package @pie-lib/editable-html
562
+
563
+ ## [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)
564
+
565
+ **Note:** Version bump only for package @pie-lib/editable-html
566
+
567
+ ## [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)
568
+
569
+ **Note:** Version bump only for package @pie-lib/editable-html
570
+
571
+ ## [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)
572
+
573
+ **Note:** Version bump only for package @pie-lib/editable-html
574
+
575
+ ## [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)
576
+
577
+ **Note:** Version bump only for package @pie-lib/editable-html
578
+
579
+ ## [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)
580
+
581
+ **Note:** Version bump only for package @pie-lib/editable-html
582
+
583
+ ## [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)
584
+
585
+ **Note:** Version bump only for package @pie-lib/editable-html
586
+
587
+ ## [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)
588
+
589
+ **Note:** Version bump only for package @pie-lib/editable-html
590
+
591
+ ## [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)
592
+
593
+ **Note:** Version bump only for package @pie-lib/editable-html
594
+
595
+ # [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)
596
+
597
+ ### Features
598
+
599
+ - added theme naming support + cleanup ([72d562d](https://github.com/pie-framework/pie-lib/commit/72d562d509e5d31d883690eb455a9afea6bf54fc))
600
+
601
+ ## [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)
602
+
603
+ **Note:** Version bump only for package @pie-lib/editable-html
604
+
605
+ # [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)
606
+
607
+ ### Bug Fixes
608
+
609
+ - add param to createToolbarOpts ([b80af8a](https://github.com/pie-framework/pie-lib/commit/b80af8ad0a7381a14ba935b7ee121133ab99f765))
610
+ - revert changes to yarn lock that are causing build issues ([390d28c](https://github.com/pie-framework/pie-lib/commit/390d28c479452d58978984c961ed56716f156f91))
611
+
612
+ ### Features
613
+
614
+ - **editable-html:** add error PD-2417 ([b53fb99](https://github.com/pie-framework/pie-lib/commit/b53fb993c27ee7058b3d4c0722b1c582592bbec4))
615
+
616
+ # [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)
617
+
618
+ ### Bug Fixes
619
+
620
+ - **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))
621
+
622
+ ### Features
623
+
624
+ - **editable-html:** select text at focus-PD-1971 ([f7c7bce](https://github.com/pie-framework/pie-lib/commit/f7c7bce8abc72aa3aa3b3c7adbf281ea34253d35))
625
+
626
+ ## [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)
627
+
628
+ ### Bug Fixes
629
+
630
+ - **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))
631
+
632
+ ## [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)
633
+
634
+ **Note:** Version bump only for package @pie-lib/editable-html
635
+
636
+ ## [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)
637
+
638
+ **Note:** Version bump only for package @pie-lib/editable-html
639
+
640
+ ## [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)
641
+
642
+ **Note:** Version bump only for package @pie-lib/editable-html
643
+
644
+ ## [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)
645
+
646
+ **Note:** Version bump only for package @pie-lib/editable-html
647
+
648
+ ## [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)
649
+
650
+ **Note:** Version bump only for package @pie-lib/editable-html
651
+
652
+ ## [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)
653
+
654
+ ### Bug Fixes
655
+
656
+ - **editable-html:** increase helper text font size in alt dialog PD-2087 ([013cecb](https://github.com/pie-framework/pie-lib/commit/013cecbae73b5b8b6199aa814feb34d9627ed26f))
657
+ - **editable-html:** send autoWidth property to toolbar to fix PD-2129 ([f001ddb](https://github.com/pie-framework/pie-lib/commit/f001ddbf51bd8a2b3294603811351b26587bfc0b))
658
+
659
+ ## [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)
660
+
661
+ ### Bug Fixes
662
+
663
+ - **editable-html:** handle use case were there no child in audio tag ([dbc5410](https://github.com/pie-framework/pie-lib/commit/dbc54109fbe7201aea5ea6d5a6226f8ce9c797a0))
664
+
665
+ ### Reverts
666
+
667
+ - Revert "PD-1886 updated slate js version" ([0069bc8](https://github.com/pie-framework/pie-lib/commit/0069bc829175194e663a9601f284a31d7285d7eb))
668
+
669
+ ## [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)
670
+
671
+ ### Bug Fixes
672
+
673
+ - fire add image method when copy-paste image is used ([23d525e](https://github.com/pie-framework/pie-lib/commit/23d525efda2d41a8bfd603460b4cc4fda5d2a184))
674
+
675
+ # [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)
676
+
677
+ ### Bug Fixes
678
+
679
+ - **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))
680
+
681
+ ### Features
682
+
683
+ - add upload logic in pie lib (wip) PD-23-updated ([c666f68](https://github.com/pie-framework/pie-lib/commit/c666f68682bf4e9746cea3d7e18c1b1e1948131d))
684
+ - add upload logic in pie lib (wip) PD-23-updated ([0ece29e](https://github.com/pie-framework/pie-lib/commit/0ece29e256ee7d7c84202d1be97244e7d4b70411))
685
+ - hide edit uploaded sound in editable-html for now ([88882e6](https://github.com/pie-framework/pie-lib/commit/88882e6704f5f5f889328666a9b0fe03554339cd))
686
+ - UI improvements and bit of cleanup for PD-23-updated ([37e88e8](https://github.com/pie-framework/pie-lib/commit/37e88e8fb04698eadb805c26b5ee2c57cc0b51a8))
687
+ - **editable-html:** allow audio file upload (editable-html & rendering logic) ([f5df32d](https://github.com/pie-framework/pie-lib/commit/f5df32d1e53859435556f866e8727fef077896d4))
688
+ - **editable-html:** allow audio file upload (modal logic) ([f57cff1](https://github.com/pie-framework/pie-lib/commit/f57cff12d861d1182ab2fa84c8ce2a89f144b222))
689
+ - **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))
690
+ - **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))
691
+
692
+ ## [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)
693
+
694
+ **Note:** Version bump only for package @pie-lib/editable-html
695
+
696
+ ## [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)
697
+
698
+ **Note:** Version bump only for package @pie-lib/editable-html
699
+
700
+ ## [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)
701
+
702
+ ### Bug Fixes
703
+
704
+ - revert defaults to empty ([d7905be](https://github.com/pie-framework/pie-lib/commit/d7905be52adcda0af2ae92ec537b02beb1313439))
705
+
706
+ ## [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)
707
+
708
+ ### Bug Fixes
709
+
710
+ - **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))
711
+
712
+ ## [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)
713
+
714
+ **Note:** Version bump only for package @pie-lib/editable-html
715
+
716
+ ## [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)
717
+
718
+ **Note:** Version bump only for package @pie-lib/editable-html
719
+
720
+ # [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)
721
+
722
+ ### Features
723
+
724
+ - **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))
725
+
726
+ ## [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)
727
+
728
+ **Note:** Version bump only for package @pie-lib/editable-html
729
+
730
+ ## [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)
731
+
732
+ **Note:** Version bump only for package @pie-lib/editable-html
733
+
734
+ ## [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)
735
+
736
+ ### Bug Fixes
737
+
738
+ - **editable-html:** fix paste text PD-1899 ([a1e8477](https://github.com/pie-framework/pie-lib/commit/a1e847763ceb14912592fcdf20317fb9a309a912))
739
+
740
+ ## [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)
741
+
742
+ ### Bug Fixes
743
+
744
+ - bump mathquill to 1.1.3 ([48b84c5](https://github.com/pie-framework/pie-lib/commit/48b84c534cbf519e172a80d18a48b26eda3cf7e6))
745
+
746
+ ## [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)
747
+
748
+ ### Reverts
749
+
750
+ - 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))
751
+
752
+ # [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)
753
+
754
+ ### Bug Fixes
755
+
756
+ - **editable-html:** add another sanity checks ([d872981](https://github.com/pie-framework/pie-lib/commit/d87298124408b55d75d42598c0272294a0881043))
757
+ - **editable-html:** add sanity check for drop / paste file - sentry ([d27d252](https://github.com/pie-framework/pie-lib/commit/d27d2522d0567333e0af1ce49a3793ebc44ef032))
758
+ - **editable-html:** add sanity check in respArea - toolbar ([1e4c9f2](https://github.com/pie-framework/pie-lib/commit/1e4c9f21be612409deee08cca6790f019f5d01d3))
759
+ - **editable-html:** potential fix - sanity check for node key in table - sentry ([f417c72](https://github.com/pie-framework/pie-lib/commit/f417c724c49e50e8c3c514b46b42f5d410da2942))
760
+ - code tweaks ([a390dcb](https://github.com/pie-framework/pie-lib/commit/a390dcbe22e9d37776b91071ec1502bbad59ff2a))
761
+ - duplicate image issue ([924a4df](https://github.com/pie-framework/pie-lib/commit/924a4df45cf9f1601704dd48c2a757dd02e2e7a3))
762
+ - tests ([41caca9](https://github.com/pie-framework/pie-lib/commit/41caca9855aa8099f5cb7286cc6660dd20d5c622))
763
+
764
+ ### Features
765
+
766
+ - **characters:** special character accents span 2 rows, added border for visibility [PD-1462](<[c60b0bc](https://github.com/pie-framework/pie-lib/commit/c60b0bc8ff45cc01f53bc752fd5dd64da623f6be)>)
767
+ - **editable-html:** add image alignment buttons ([a076a41](https://github.com/pie-framework/pie-lib/commit/a076a4193c82dc552bd21de7a8f928d8481e73e6))
768
+ - **editable-html:** BREAKING CHANGE add image alignment buttons in image toolbar PD-1802 ([bcb59e5](https://github.com/pie-framework/pie-lib/commit/bcb59e5737fe61560fac8de01276baf187888048))
769
+ - **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))
770
+ - **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))
771
+ - **editable-html, render-ui:** wrap up PD-1802 ([e10babf](https://github.com/pie-framework/pie-lib/commit/e10babf2e80aed67c856e9e021e37072e3df33fb))
772
+ - **editor:** added insert spanish and special characters as default [PD-1883](<[26655ec](https://github.com/pie-framework/pie-lib/commit/26655ec87cb4b8a82357e88b62faad3fdc7c296a)>)
773
+
774
+ ### BREAKING CHANGES
775
+
776
+ - **editable-html:** Added new buttons in image toolbar.
777
+ The buttons control image horizontal alignment.
778
+
779
+ ## [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)
780
+
781
+ ### Bug Fixes
782
+
783
+ - running locally does not work ([ce2d09a](https://github.com/pie-framework/pie-lib/commit/ce2d09a3556937aea4a1c8075a2dbc7c1131fd5f))
784
+
785
+ ## [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)
786
+
787
+ ### Bug Fixes
788
+
789
+ - running locally does not work ([e2fbb74](https://github.com/pie-framework/pie-lib/commit/e2fbb74c79bbb2ad6e9af447af51687391d89ad3))
790
+ - **editable-html:** fix image remove ([0f446b3](https://github.com/pie-framework/pie-lib/commit/0f446b38d93fec1548b9ff5c73cc48f2f10d9397))
791
+
792
+ # [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)
793
+
794
+ ### Features
795
+
796
+ - **editable-html:** allow drop & paste images PD-581 ([f7ec0d4](https://github.com/pie-framework/pie-lib/commit/f7ec0d4578ededc095422356471fb5e9f2b29af9))
797
+
798
+ # [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)
799
+
800
+ ### Features
801
+
802
+ - **editable-html:** Added characters limit support PD-1681 ([9e7f6ad](https://github.com/pie-framework/pie-lib/commit/9e7f6add3f846d32265990aca98dfb5b4847bb95))
803
+ - **editable-html:** image resize functionality PD-1801 ([6f46903](https://github.com/pie-framework/pie-lib/commit/6f46903acdf791716263be33abe49235572421ad))
804
+ - **plugins:** added special characters adding capabilities [PD-1462](<[b9f41e1](https://github.com/pie-framework/pie-lib/commit/b9f41e11f44df140a66145d0b04558ca2b0ea48e)>)
805
+
806
+ ### BREAKING CHANGES
807
+
808
+ - **editable-html:** Removed the percent buttons from editable-html image button. Added resize functionality.
809
+
810
+ ## [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)
811
+
812
+ **Note:** Version bump only for package @pie-lib/editable-html
813
+
814
+ ## [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)
815
+
816
+ **Note:** Version bump only for package @pie-lib/editable-html
817
+
818
+ ## [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)
819
+
820
+ **Note:** Version bump only for package @pie-lib/editable-html
821
+
822
+ ## [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)
823
+
824
+ **Note:** Version bump only for package @pie-lib/editable-html
825
+
826
+ ## [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)
827
+
828
+ **Note:** Version bump only for package @pie-lib/editable-html
829
+
830
+ ## [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)
831
+
832
+ **Note:** Version bump only for package @pie-lib/editable-html
833
+
834
+ # [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)
835
+
836
+ ### Bug Fixes
837
+
838
+ - use error as a function ([c767c8b](https://github.com/pie-framework/pie-lib/commit/c767c8bdc5ace6006e86862704a26095fa4b16f6))
839
+
840
+ ### Features
841
+
842
+ - PD-1707 ([9762d1f](https://github.com/pie-framework/pie-lib/commit/9762d1f4ac1bd615db4f03dfd06809010213052d))
843
+ - PD-1707 show validation errors in ecr ([bb7e95c](https://github.com/pie-framework/pie-lib/commit/bb7e95c824ae802452720856ad1117aa21c5766f))
844
+
845
+ # [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)
846
+
847
+ ### Features
848
+
849
+ - **editable-html:** disabled add response area button when maxResponseArea value is reached PD-1699 ([9c28e5b](https://github.com/pie-framework/pie-lib/commit/9c28e5b1702995a497e8528038a1b9e71b72c84f))
850
+ - **editable-html:** PD-1707 add validation ui/ux to responses areas in ecr ([7381c58](https://github.com/pie-framework/pie-lib/commit/7381c581e9f1099f48f8cfbe307f23dbd8776773))
851
+
852
+ # [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)
853
+
854
+ ### Bug Fixes
855
+
856
+ - **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))
857
+ - **list:** fixed list in list issues [PD-1229](<[46dcec0](https://github.com/pie-framework/pie-lib/commit/46dcec0e20fc2d09969c45fd75426f647931ec08)>)
858
+
859
+ ### Features
860
+
861
+ - **config-ui, editable-html:** add ui/ux validation for choices and editable html fields ([d40148f](https://github.com/pie-framework/pie-lib/commit/d40148f0f4b1232ce1506867a7424aa56e26c5ec))
862
+
863
+ ## [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)
864
+
865
+ **Note:** Version bump only for package @pie-lib/editable-html
866
+
867
+ ## [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)
868
+
869
+ ### Bug Fixes
870
+
871
+ - **editable-html:** Added default values for responseAreaProps ([b49a919](https://github.com/pie-framework/pie-lib/commit/b49a919b4d5e336cb2a82e4e7926d72372369d3c))
872
+
873
+ ## [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)
874
+
875
+ ### Bug Fixes
876
+
877
+ - **editable-html:** Called onHandleAreaChange only for delete ([ad1c8aa](https://github.com/pie-framework/pie-lib/commit/ad1c8aa83eef71bd8201cb55ec21513c008f77a6))
878
+
879
+ # [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)
880
+
881
+ ### Features
882
+
883
+ - **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)>)
884
+
885
+ # [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)
886
+
887
+ ### Bug Fixes
888
+
889
+ - **editable-html:** fix style for table rendering PD-1459 ([7c139b5](https://github.com/pie-framework/pie-lib/commit/7c139b5))
890
+ - **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))
891
+ - **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)>)
892
+
893
+ ### Features
894
+
895
+ - **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))
896
+ - **editor:** made sure cursor is visible before and after custom void elements [PD-1474](<[189ee2d](https://github.com/pie-framework/pie-lib/commit/189ee2d)>)
897
+ - **editor:** made sure x<y is not removed from the math latex [PD-1475](<[ea94ad0](https://github.com/pie-framework/pie-lib/commit/ea94ad0)>)
898
+ - **table:** made sure default border is 1 for tables [PD-1459](<[e8bd0d7](https://github.com/pie-framework/pie-lib/commit/e8bd0d7)>)
899
+ - **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)>)
900
+
901
+ ## [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)
902
+
903
+ **Note:** Version bump only for package @pie-lib/editable-html
904
+
905
+ ## [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)
906
+
907
+ **Note:** Version bump only for package @pie-lib/editable-html
908
+
909
+ ## [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)
910
+
911
+ **Note:** Version bump only for package @pie-lib/editable-html
912
+
913
+ ## [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)
914
+
915
+ **Note:** Version bump only for package @pie-lib/editable-html
916
+
917
+ ## [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)
918
+
919
+ **Note:** Version bump only for package @pie-lib/editable-html
920
+
921
+ ## [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)
922
+
923
+ **Note:** Version bump only for package @pie-lib/editable-html
924
+
925
+ ## [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)
926
+
927
+ **Note:** Version bump only for package @pie-lib/editable-html
928
+
929
+ ## [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)
930
+
931
+ **Note:** Version bump only for package @pie-lib/editable-html
932
+
933
+ ## [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)
934
+
935
+ **Note:** Version bump only for package @pie-lib/editable-html
936
+
937
+ ## [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)
938
+
939
+ ### Bug Fixes
940
+
941
+ - **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)>)
942
+
943
+ ## [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)
944
+
945
+ ### Bug Fixes
946
+
947
+ - **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)>)
948
+
949
+ ## [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)
950
+
951
+ ### Bug Fixes
952
+
953
+ - **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)>)
954
+
955
+ ## [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)
956
+
957
+ **Note:** Version bump only for package @pie-lib/editable-html
958
+
959
+ ## [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)
960
+
961
+ **Note:** Version bump only for package @pie-lib/editable-html
962
+
963
+ ## [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)
964
+
965
+ **Note:** Version bump only for package @pie-lib/editable-html
966
+
967
+ ## [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)
968
+
969
+ **Note:** Version bump only for package @pie-lib/editable-html
970
+
971
+ ## [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)
972
+
973
+ ### Bug Fixes
974
+
975
+ - **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)>)
976
+
977
+ ## [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)
978
+
979
+ ### Bug Fixes
980
+
981
+ - **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)>)
982
+ - **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)>)
983
+
984
+ ## [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)
985
+
986
+ ### Bug Fixes
987
+
988
+ - **table:** made sure inserting a table at last position works [PD-1240](<[e81ba95](https://github.com/pie-framework/pie-lib/commit/e81ba95)>)
989
+
990
+ # [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)
991
+
992
+ ### Bug Fixes
993
+
994
+ - **editable-html:** add refs for editors, fix propTypes warnings for PD-1230 ([c6e3a2a](https://github.com/pie-framework/pie-lib/commit/c6e3a2a))
995
+ - **editable-html:** Updated serialization PD-859 ([5f30897](https://github.com/pie-framework/pie-lib/commit/5f30897))
996
+
997
+ ### Features
998
+
999
+ - **editable-html:** add prop that allows editable-html fields to be validated PD-601 ([2fe2b9b](https://github.com/pie-framework/pie-lib/commit/2fe2b9b))
1000
+
1001
+ ## [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)
1002
+
1003
+ **Note:** Version bump only for package @pie-lib/editable-html
1004
+
1005
+ ## [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)
1006
+
1007
+ ### Bug Fixes
1008
+
1009
+ - **editable-html:** Fixed error checking makes it difficult to type a URL - PD-1082 ([42c5ad3](https://github.com/pie-framework/pie-lib/commit/42c5ad3))
1010
+ - **editable-html:** insert video should not accept audio and vice versa PD-832 ([4e1e0a3](https://github.com/pie-framework/pie-lib/commit/4e1e0a3))
1011
+ - **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))
1012
+ - **editable-html:** Text edits will remain when resize window - PD-356 ([c06caaf](https://github.com/pie-framework/pie-lib/commit/c06caaf))
1013
+ - **inline-dropdown:** Called onBlur on editable-html - PD-294 ([437ef1d](https://github.com/pie-framework/pie-lib/commit/437ef1d))
1014
+ - **multi-trait-rubric:** Added right and left alignment for the toolbar ([f3def8b](https://github.com/pie-framework/pie-lib/commit/f3def8b))
1015
+ - **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)>)
1016
+
1017
+ ## [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)
1018
+
1019
+ **Note:** Version bump only for package @pie-lib/editable-html
1020
+
1021
+ ## [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)
1022
+
1023
+ **Note:** Version bump only for package @pie-lib/editable-html
1024
+
1025
+ ## [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)
1026
+
1027
+ ### Bug Fixes
1028
+
1029
+ - **editable-html:** custom key fix for math keypad - PD-388 ([adba7f0](https://github.com/pie-framework/pie-lib/commit/adba7f0))
1030
+
1031
+ ## [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)
1032
+
1033
+ **Note:** Version bump only for package @pie-lib/editable-html
1034
+
1035
+ ## [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)
1036
+
1037
+ **Note:** Version bump only for package @pie-lib/editable-html
1038
+
1039
+ ## [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)
1040
+
1041
+ **Note:** Version bump only for package @pie-lib/editable-html
1042
+
1043
+ ## [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)
1044
+
1045
+ **Note:** Version bump only for package @pie-lib/editable-html
1046
+
1047
+ ## [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)
1048
+
1049
+ ### Bug Fixes
1050
+
1051
+ - **editable-html:** add delete button for response area PD-778 ([234ba06](https://github.com/pie-framework/pie-lib/commit/234ba06))
1052
+ - **editable-html:** add min and max height to fix PD-694 ([955db39](https://github.com/pie-framework/pie-lib/commit/955db39))
1053
+
1054
+ ## [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)
1055
+
1056
+ ### Bug Fixes
1057
+
1058
+ - demo ([affa119](https://github.com/pie-framework/pie-lib/commit/affa119))
1059
+
1060
+ ## [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)
1061
+
1062
+ **Note:** Version bump only for package @pie-lib/editable-html
1063
+
1064
+ ## [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)
1065
+
1066
+ **Note:** Version bump only for package @pie-lib/editable-html
1067
+
1068
+ ## [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)
1069
+
1070
+ **Note:** Version bump only for package @pie-lib/editable-html
1071
+
1072
+ ## [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)
1073
+
1074
+ **Note:** Version bump only for package @pie-lib/editable-html
1075
+
1076
+ ## [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)
1077
+
1078
+ **Note:** Version bump only for package @pie-lib/editable-html
1079
+
1080
+ ## [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)
1081
+
1082
+ **Note:** Version bump only for package @pie-lib/editable-html
1083
+
1084
+ # [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)
1085
+
1086
+ ### Features
1087
+
1088
+ - **editable-html:** remove Code plugin - PD-463 ([d830231](https://github.com/pie-framework/pie-lib/commit/d830231))
1089
+
1090
+ # [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)
1091
+
1092
+ ### Bug Fixes
1093
+
1094
+ - 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))
1095
+ - 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))
1096
+ - 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))
1097
+
1098
+ ### Features
1099
+
1100
+ - **editable-html:** add better math keypad support - PD-355 ([bc4e586](https://github.com/pie-framework/pie-lib/commit/bc4e586))
1101
+
1102
+ ## [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)
1103
+
1104
+ **Note:** Version bump only for package @pie-lib/editable-html
1105
+
1106
+ # [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)
1107
+
1108
+ ### Features
1109
+
1110
+ - **media:** fixed design and some warnings ([df7d84d](https://github.com/pie-framework/pie-lib/commit/df7d84d))
1111
+ - **media:** implemented editing functionality plus some error some more handlng ([66732a3](https://github.com/pie-framework/pie-lib/commit/66732a3))
1112
+ - **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)>)
1113
+ - **media:** made sure width and height are used, and toolbar is relative positioned ([9061067](https://github.com/pie-framework/pie-lib/commit/9061067))
1114
+
1115
+ ## [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)
1116
+
1117
+ ### Bug Fixes
1118
+
1119
+ - missing dependency ([86b18d2](https://github.com/pie-framework/pie-lib/commit/86b18d2))
1120
+
1121
+ ## [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)
1122
+
1123
+ **Note:** Version bump only for package @pie-lib/editable-html
1124
+
1125
+ ## [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)
1126
+
1127
+ **Note:** Version bump only for package @pie-lib/editable-html
1128
+
1129
+ ## [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)
1130
+
1131
+ **Note:** Version bump only for package @pie-lib/editable-html
1132
+
1133
+ ## [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)
1134
+
1135
+ **Note:** Version bump only for package @pie-lib/editable-html
1136
+
1137
+ # [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)
1138
+
1139
+ ### Features
1140
+
1141
+ - **editable-html:** color theme support added ([d7e32fd](https://github.com/pie-framework/pie-lib/commit/d7e32fd))
1142
+ - **editable-html:** initial commit for color treatment ([970c4d1](https://github.com/pie-framework/pie-lib/commit/970c4d1))
1143
+
1144
+ ## [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)
1145
+
1146
+ **Note:** Version bump only for package @pie-lib/editable-html
1147
+
1148
+ ## [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)
1149
+
1150
+ **Note:** Version bump only for package @pie-lib/editable-html
1151
+
1152
+ ## [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)
1153
+
1154
+ **Note:** Version bump only for package @pie-lib/editable-html
1155
+
1156
+ ## [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)
1157
+
1158
+ ### Bug Fixes
1159
+
1160
+ - table borders not visible. ([31500c4](https://github.com/pie-framework/pie-lib/commit/31500c4))
1161
+
1162
+ ## [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)
1163
+
1164
+ **Note:** Version bump only for package @pie-lib/editable-html
1165
+
1166
+ ## [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)
1167
+
1168
+ **Note:** Version bump only for package @pie-lib/editable-html
1169
+
1170
+ ## [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)
1171
+
1172
+ ### Bug Fixes
1173
+
1174
+ - 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))
1175
+
1176
+ ## [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)
1177
+
1178
+ **Note:** Version bump only for package @pie-lib/editable-html
1179
+
1180
+ ## [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)
1181
+
1182
+ **Note:** Version bump only for package @pie-lib/editable-html
1183
+
1184
+ ## [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)
1185
+
1186
+ **Note:** Version bump only for package @pie-lib/editable-html
1187
+
1188
+ ## [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)
1189
+
1190
+ **Note:** Version bump only for package @pie-lib/editable-html
1191
+
1192
+ ## [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)
1193
+
1194
+ **Note:** Version bump only for package @pie-lib/editable-html
1195
+
1196
+ # [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)
1197
+
1198
+ ### Features
1199
+
1200
+ - **math:** made sure that math is clickable inside table [ch3518](<[23185dd](https://github.com/pie-framework/pie-lib/commit/23185dd)>)
1201
+
1202
+ ## [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)
1203
+
1204
+ **Note:** Version bump only for package @pie-lib/editable-html
1205
+
1206
+ ## [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)
1207
+
1208
+ **Note:** Version bump only for package @pie-lib/editable-html
1209
+
1210
+ ## [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)
1211
+
1212
+ ### Bug Fixes
1213
+
1214
+ - correct module path ([15ac0a3](https://github.com/pie-framework/pie-lib/commit/15ac0a3))
1215
+
1216
+ ## [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)
1217
+
1218
+ **Note:** Version bump only for package @pie-lib/editable-html
1219
+
1220
+ ## [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)
1221
+
1222
+ **Note:** Version bump only for package @pie-lib/editable-html
1223
+
1224
+ ## [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)
1225
+
1226
+ **Note:** Version bump only for package @pie-lib/editable-html
1227
+
1228
+ ## [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)
1229
+
1230
+ **Note:** Version bump only for package @pie-lib/editable-html
1231
+
1232
+ ## [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)
1233
+
1234
+ **Note:** Version bump only for package @pie-lib/editable-html
1235
+
1236
+ ## [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)
1237
+
1238
+ **Note:** Version bump only for package @pie-lib/editable-html
1239
+
1240
+ ## [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)
1241
+
1242
+ **Note:** Version bump only for package @pie-lib/editable-html
1243
+
1244
+ ## [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)
1245
+
1246
+ ### Bug Fixes
1247
+
1248
+ - add module prop to package.json ([d20c9ca](https://github.com/pie-framework/pie-lib/commit/d20c9ca))
1249
+
1250
+ ## [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)
1251
+
1252
+ **Note:** Version bump only for package @pie-lib/editable-html
1253
+
1254
+ # [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)
1255
+
1256
+ ### Features
1257
+
1258
+ - bump @pie-framework/mathquill@^1.0.0 ([d43c5c5](https://github.com/pie-framework/pie-lib/commit/d43c5c5))
1259
+ - bump @pie-framework/mathquill@^1.1.0 ([31dbed8](https://github.com/pie-framework/pie-lib/commit/31dbed8))
1260
+
1261
+ ## [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)
1262
+
1263
+ **Note:** Version bump only for package @pie-lib/editable-html
1264
+
1265
+ ## [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)
1266
+
1267
+ ### Bug Fixes
1268
+
1269
+ - 6656: Vertical alignment issue with Image Delete button. ([c99e6c5](https://github.com/pie-framework/pie-lib/commit/c99e6c5))
1270
+
1271
+ ## [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)
1272
+
1273
+ **Note:** Version bump only for package @pie-lib/editable-html
1274
+
1275
+ ## [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)
1276
+
1277
+ **Note:** Version bump only for package @pie-lib/editable-html
1278
+
1279
+ ## [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)
1280
+
1281
+ **Note:** Version bump only for package @pie-lib/editable-html
1282
+
1283
+ ## [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)
1284
+
1285
+ ### Bug Fixes
1286
+
1287
+ - 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))
1288
+
1289
+ ## [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)
1290
+
1291
+ **Note:** Version bump only for package @pie-lib/editable-html
1292
+
1293
+ ## [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)
1294
+
1295
+ **Note:** Version bump only for package @pie-lib/editable-html
1296
+
1297
+ ## [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)
1298
+
1299
+ **Note:** Version bump only for package @pie-lib/editable-html
1300
+
1301
+ ## [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)
1302
+
1303
+ **Note:** Version bump only for package @pie-lib/editable-html
1304
+
1305
+ ## [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)
1306
+
1307
+ **Note:** Version bump only for package @pie-lib/editable-html
1308
+
1309
+ ## [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)
1310
+
1311
+ **Note:** Version bump only for package @pie-lib/editable-html
1312
+
1313
+ ## [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)
1314
+
1315
+ **Note:** Version bump only for package @pie-lib/editable-html
1316
+
1317
+ ## [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)
1318
+
1319
+ **Note:** Version bump only for package @pie-lib/editable-html
1320
+
1321
+ ## [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)
1322
+
1323
+ **Note:** Version bump only for package @pie-lib/editable-html
1324
+
1325
+ ## [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)
1326
+
1327
+ **Note:** Version bump only for package @pie-lib/editable-html
1328
+
1329
+ ## [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)
1330
+
1331
+ **Note:** Version bump only for package @pie-lib/editable-html
1332
+
1333
+ ## [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)
1334
+
1335
+ **Note:** Version bump only for package @pie-lib/editable-html
1336
+
1337
+ ## [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)
1338
+
1339
+ ### Bug Fixes
1340
+
1341
+ - Prevent crashing if prevText is null [PIE-150](<[873e1f8](https://github.com/pie-framework/pie-lib/commit/873e1f8)>)
1342
+
1343
+ ## [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)
1344
+
1345
+ **Note:** Version bump only for package @pie-lib/editable-html
1346
+
1347
+ ## [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)
1348
+
1349
+ ### Bug Fixes
1350
+
1351
+ - **editable-html:** fix outdated plugin validation schema ([ca4b848](https://github.com/pie-framework/pie-lib/commit/ca4b848))
1352
+ - **toolbar:** fixed delete image button not working [ch4162](<[9518a4e](https://github.com/pie-framework/pie-lib/commit/9518a4e)>)
1353
+
1354
+ ## [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)
1355
+
1356
+ **Note:** Version bump only for package @pie-lib/editable-html
1357
+
1358
+ ## [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)
1359
+
1360
+ **Note:** Version bump only for package @pie-lib/editable-html
1361
+
1362
+ ## [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)
1363
+
1364
+ ### Bug Fixes
1365
+
1366
+ - **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)>)
1367
+
1368
+ ## [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)
1369
+
1370
+ **Note:** Version bump only for package @pie-lib/editable-html
1371
+
1372
+ ## [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)
1373
+
1374
+ **Note:** Version bump only for package @pie-lib/editable-html
1375
+
1376
+ ## [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)
1377
+
1378
+ ### Bug Fixes
1379
+
1380
+ - don't format to html / emit in constructor ([ac5c6f8](https://github.com/pie-framework/pie-lib/commit/ac5c6f8))
1381
+
1382
+ ## [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)
1383
+
1384
+ ### Bug Fixes
1385
+
1386
+ - **resparea:** moved the button for the response area functionality [ch1738](<[b3ffe68](https://github.com/pie-framework/pie-lib/commit/b3ffe68)>)
1387
+
1388
+ ## [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)
1389
+
1390
+ **Note:** Version bump only for package @pie-lib/editable-html
1391
+
1392
+ ## [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)
1393
+
1394
+ **Note:** Version bump only for package @pie-lib/editable-html
1395
+
1396
+ ## [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)
1397
+
1398
+ **Note:** Version bump only for package @pie-lib/editable-html
1399
+
1400
+ ## [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)
1401
+
1402
+ ### Bug Fixes
1403
+
1404
+ - keypadMode not updating ([5d72bee](https://github.com/pie-framework/pie-lib/commit/5d72bee))
1405
+
1406
+ ## [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)
1407
+
1408
+ ### Bug Fixes
1409
+
1410
+ - add scroll feature when content exceeds 500px in height ([d7ddc01](https://github.com/pie-framework/pie-lib/commit/d7ddc01))
1411
+ - render degrees as expected ([87402e1](https://github.com/pie-framework/pie-lib/commit/87402e1))
1412
+
1413
+ ## [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)
1414
+
1415
+ ### Bug Fixes
1416
+
1417
+ - **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))
1418
+
1419
+ ## [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)
1420
+
1421
+ ### Bug Fixes
1422
+
1423
+ - **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)>)
1424
+
1425
+ ## [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)
1426
+
1427
+ ### Bug Fixes
1428
+
1429
+ - **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)>)
1430
+
1431
+ ## [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)
1432
+
1433
+ ### Bug Fixes
1434
+
1435
+ - **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))
1436
+
1437
+ ## [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)
1438
+
1439
+ ### Bug Fixes
1440
+
1441
+ - **editor:** added possibility to hide the done button and added a onKeyDown prop [ch2489](<[45bda8c](https://github.com/pie-framework/pie-lib/commit/45bda8c)>)
1442
+
1443
+ ## [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)
1444
+
1445
+ ### Bug Fixes
1446
+
1447
+ - save math changes when editor is re-focused ([7674a86](https://github.com/pie-framework/pie-lib/commit/7674a86))
1448
+
1449
+ ## [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)
1450
+
1451
+ **Note:** Version bump only for package @pie-lib/editable-html
1452
+
1453
+ ## [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)
1454
+
1455
+ **Note:** Version bump only for package @pie-lib/editable-html
1456
+
1457
+ # [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)
1458
+
1459
+ ### Features
1460
+
1461
+ - **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)>)
1462
+
1463
+ # [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)
1464
+
1465
+ ### Features
1466
+
1467
+ - Ability to change keypadMode using props.pluginProps.math.getMode ([179df1c](https://github.com/pie-framework/pie-lib/commit/179df1c))
1468
+ - Ability to change keypadMode using props.pluginProps.math.keypadMode ([cbf3e17](https://github.com/pie-framework/pie-lib/commit/cbf3e17))
1469
+
1470
+ # [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)
1471
+
1472
+ ### Features
1473
+
1474
+ - **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)>)
1475
+
1476
+ ## [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)
1477
+
1478
+ **Note:** Version bump only for package @pie-lib/editable-html
1479
+
1480
+ ## [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)
1481
+
1482
+ ### Bug Fixes
1483
+
1484
+ - **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))
1485
+
1486
+ ## [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)
1487
+
1488
+ ### Bug Fixes
1489
+
1490
+ - **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))
1491
+
1492
+ ## [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)
1493
+
1494
+ ### Bug Fixes
1495
+
1496
+ - **editor:** added sanity check for editor reference in editor ([274d8fd](https://github.com/pie-framework/pie-lib/commit/274d8fd))
1497
+
1498
+ ## [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)
1499
+
1500
+ ### Bug Fixes
1501
+
1502
+ - **editor:** changed setTimeout to a promise resolve statement ([c66d50f](https://github.com/pie-framework/pie-lib/commit/c66d50f))
1503
+ - **tests:** added back the commented tests ([7d2cf81](https://github.com/pie-framework/pie-lib/commit/7d2cf81))
1504
+
1505
+ ## [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)
1506
+
1507
+ **Note:** Version bump only for package @pie-lib/editable-html
1508
+
1509
+ ## [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)
1510
+
1511
+ **Note:** Version bump only for package @pie-lib/editable-html
1512
+
1513
+ ## [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)
1514
+
1515
+ **Note:** Version bump only for package @pie-lib/editable-html
1516
+
1517
+ ## [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)
1518
+
1519
+ **Note:** Version bump only for package @pie-lib/editable-html
1520
+
1521
+ # [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)
1522
+
1523
+ ### Bug Fixes
1524
+
1525
+ - **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))
1526
+
1527
+ ### Features
1528
+
1529
+ - version bumps ([23eb54f](https://github.com/pie-framework/pie-lib/commit/23eb54f))
1530
+
1531
+ ## [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)
1532
+
1533
+ ### Bug Fixes
1534
+
1535
+ - **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))
1536
+
1537
+ # [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)
1538
+
1539
+ ### Bug Fixes
1540
+
1541
+ - **response-area:** fixed a bug that made it impossible to add a response-area ([9c7a54b](https://github.com/pie-framework/pie-lib/commit/9c7a54b))
1542
+
1543
+ ### Features
1544
+
1545
+ - **response-area:** added response area to the editable-html packages ([bc7af2b](https://github.com/pie-framework/pie-lib/commit/bc7af2b))
1546
+ - **response-area:** changes to make the response-areas work ([1c15fcd](https://github.com/pie-framework/pie-lib/commit/1c15fcd))
1547
+ - **response-area:** commiting some changes in order for the packages to be published ([395358d](https://github.com/pie-framework/pie-lib/commit/395358d))
1548
+ - **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))
1549
+
1550
+ ## [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)
1551
+
1552
+ **Note:** Version bump only for package @pie-lib/editable-html
1553
+
1554
+ ## [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)
1555
+
1556
+ **Note:** Version bump only for package @pie-lib/editable-html
1557
+
1558
+ ## [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)
1559
+
1560
+ **Note:** Version bump only for package @pie-lib/editable-html
1561
+
1562
+ ## [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)
1563
+
1564
+ **Note:** Version bump only for package @pie-lib/editable-html
1565
+
1566
+ ## [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)
1567
+
1568
+ **Note:** Version bump only for package @pie-lib/editable-html
1569
+
1570
+ ## [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)
1571
+
1572
+ **Note:** Version bump only for package @pie-lib/editable-html
1573
+
1574
+ # [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)
1575
+
1576
+ ### Features
1577
+
1578
+ - **editable-html:** add onFocus prop support ([e7c471b](https://github.com/pie-framework/pie-lib/commit/e7c471b))
1579
+
1580
+ ## [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)
1581
+
1582
+ ### Bug Fixes
1583
+
1584
+ - **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))
1585
+
1586
+ # [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)
1587
+
1588
+ ### Features
1589
+
1590
+ - **mask-markup:** merging with the develop branch ([0153c1a](https://github.com/pie-framework/pie-lib/commit/0153c1a))
1591
+
1592
+ ## [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)
1593
+
1594
+ **Note:** Version bump only for package @pie-lib/editable-html
1595
+
1596
+ ## [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)
1597
+
1598
+ **Note:** Version bump only for package @pie-lib/editable-html
1599
+
1600
+ ## [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)
1601
+
1602
+ **Note:** Version bump only for package @pie-lib/editable-html
1603
+
1604
+ ## [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)
1605
+
1606
+ **Note:** Version bump only for package @pie-lib/editable-html
1607
+
1608
+ ## [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)
1609
+
1610
+ **Note:** Version bump only for package @pie-lib/editable-html
1611
+
1612
+ ## [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)
1613
+
1614
+ ### Bug Fixes
1615
+
1616
+ - add author ([10ef4db](https://github.com/pie-framework/pie-lib/commit/10ef4db))
1617
+
1618
+ ## [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)
1619
+
1620
+ **Note:** Version bump only for package @pie-lib/editable-html
1621
+
1622
+ ## [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)
1623
+
1624
+ **Note:** Version bump only for package @pie-lib/editable-html
1625
+
1626
+ # [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)
1627
+
1628
+ ### Features
1629
+
1630
+ - add new prop 'pluginProps' ([f73a2a2](https://github.com/pie-framework/pie-lib/commit/f73a2a2))
1631
+
1632
+ ## [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)
1633
+
1634
+ **Note:** Version bump only for package @pie-lib/editable-html
1635
+
1636
+ # [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)
1637
+
1638
+ ### Bug Fixes
1639
+
1640
+ - move mathquill to devDependency ([9466018](https://github.com/pie-framework/pie-lib/commit/9466018))
1641
+ - **extended-text-entry:** Fixed dimensions issue (width & height) were not changing properly. ([6521760](https://github.com/pie-framework/pie-lib/commit/6521760))
1642
+
1643
+ ### Features
1644
+
1645
+ - use [@pie-framework](https://github.com/pie-framework)/mathquill - our fork with extras ([7fc47a7](https://github.com/pie-framework/pie-lib/commit/7fc47a7))
1646
+
1647
+ ## [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)
1648
+
1649
+ ### Bug Fixes
1650
+
1651
+ - **extended-text-entry:** Fixed dimensions issue (width & height) were not changing properly. ([8183203](https://github.com/pie-framework/pie-lib/commit/8183203))
1652
+
1653
+ ## [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)
1654
+
1655
+ ### Bug Fixes
1656
+
1657
+ - rm child prepack in favour of root prepack ([381d8d6](https://github.com/pie-framework/pie-lib/commit/381d8d6))
1658
+
1659
+ ## [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)
1660
+
1661
+ **Note:** Version bump only for package @pie-lib/editable-html
1662
+
1663
+ ## [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)
1664
+
1665
+ **Note:** Version bump only for package @pie-lib/editable-html
1666
+
1667
+ ## [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)
1668
+
1669
+ **Note:** Version bump only for package @pie-lib/editable-html
1670
+
1671
+ ## [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)
1672
+
1673
+ **Note:** Version bump only for package @pie-lib/editable-html
1674
+
1675
+ ## [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)
1676
+
1677
+ **Note:** Version bump only for package @pie-lib/editable-html
1678
+
1679
+ ## [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)
1680
+
1681
+ ### Bug Fixes
1682
+
1683
+ - ignore node_modules ([900ab7c](https://github.com/pie-framework/pie-lib/commit/900ab7c))
1684
+
1685
+ ## [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)
1686
+
1687
+ **Note:** Version bump only for package @pie-lib/editable-html
1688
+
1689
+ ## [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)
1690
+
1691
+ **Note:** Version bump only for package @pie-lib/editable-html
1692
+
1693
+ ## [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)
1694
+
1695
+ **Note:** Version bump only for package @pie-lib/editable-html
1696
+
1697
+ ## [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)
1698
+
1699
+ **Note:** Version bump only for package @pie-lib/editable-html
1700
+
1701
+ ## [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)
1702
+
1703
+ **Note:** Version bump only for package @pie-lib/editable-html
1704
+
1705
+ ## [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)
1706
+
1707
+ **Note:** Version bump only for package @pie-lib/editable-html
1708
+
1709
+ ## [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)
1710
+
1711
+ ### Bug Fixes
1712
+
1713
+ - force version bump ([dd057a5](https://github.com/pie-framework/pie-lib/commit/dd057a5))
1714
+
1715
+ ## [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)
1716
+
1717
+ **Note:** Version bump only for package @pie-lib/editable-html
1718
+
1719
+ # [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)
1720
+
1721
+ ### Features
1722
+
1723
+ - **editable-html:** changed the editable-html design for the new elements ([1aad62f](https://github.com/pie-framework/pie-lib/commit/1aad62f))
1724
+
1725
+ ## [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)
1726
+
1727
+ **Note:** Version bump only for package @pie-lib/editable-html
1728
+
1729
+ ## [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)
1730
+
1731
+ **Note:** Version bump only for package @pie-lib/editable-html
1732
+
1733
+ ## [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)
1734
+
1735
+ **Note:** Version bump only for package @pie-lib/editable-html
1736
+
1737
+ # [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)
1738
+
1739
+ ### Features
1740
+
1741
+ - new ui + layout ([2f6fdba](https://github.com/pie-framework/pie-lib/commit/2f6fdba))
1742
+
1743
+ ### BREAKING CHANGES
1744
+
1745
+ - - The ui is quite different now
1746
+ - Some of the old components are gone (except for HorizontalKeypad which
1747
+ is retained for backward compatibility).
1748
+
1749
+ ## [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)
1750
+
1751
+ ### Bug Fixes
1752
+
1753
+ - version bump ([caaf960](https://github.com/pie-framework/pie-lib/commit/caaf960))
1754
+
1755
+ ## [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)
1756
+
1757
+ **Note:** Version bump only for package @pie-lib/editable-html
1758
+
1759
+ ## [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)
1760
+
1761
+ **Note:** Version bump only for package @pie-lib/editable-html
1762
+
1763
+ # [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)
1764
+
1765
+ ### Features
1766
+
1767
+ - libs version bump ([d905a83](https://github.com/pie-framework/pie-lib/commit/d905a83))
1768
+
1769
+ <a name="6.15.0"></a>
1770
+
1771
+ # [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)
1772
+
1773
+ ### Bug Fixes
1774
+
1775
+ - **editable-html:** bumping editable-html version ([79e6b40](https://github.com/pie-framework/pie-lib/commit/79e6b40))
1776
+
1777
+ <a name="6.13.8"></a>
1778
+
1779
+ ## 6.13.8 (2019-01-08)
1780
+
1781
+ <a name="6.13.7"></a>
1782
+
1783
+ ## 6.13.7 (2019-01-08)
1784
+
1785
+ <a name="6.13.6"></a>
1786
+
1787
+ ## 6.13.6 (2019-01-08)
1788
+
1789
+ ### Bug Fixes
1790
+
1791
+ - **editable-html:** finally fixed the test ([1cc454e](https://github.com/pie-framework/pie-lib/commit/1cc454e))
1792
+ - **editable-html:** fixed some tests ([2916509](https://github.com/pie-framework/pie-lib/commit/2916509))
1793
+ - **editable-html:** fixed some tests ([b9bfcd7](https://github.com/pie-framework/pie-lib/commit/b9bfcd7))
1794
+ - **editable-html:** fixed test ([db0e05c](https://github.com/pie-framework/pie-lib/commit/db0e05c))
1795
+ - **editable-html:** fixed the syntax error ([0d82f87](https://github.com/pie-framework/pie-lib/commit/0d82f87))
1796
+ - **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))
1797
+ - **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))
1798
+ - **editable-html:** updated the math rendering package ([cdd08f7](https://github.com/pie-framework/pie-lib/commit/cdd08f7))
1799
+ - **editable-html:** updated the math-rendering package ([1c38c0b](https://github.com/pie-framework/pie-lib/commit/1c38c0b))
1800
+
1801
+ ### Features
1802
+
1803
+ - **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))
1804
+
1805
+ <a name="6.13.2"></a>
1806
+
1807
+ ## [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)
1808
+
1809
+ ### Bug Fixes
1810
+
1811
+ - **editable-html:** increased the initial width of the table cell ([0f4bf9f](https://github.com/pie-framework/pie-lib/commit/0f4bf9f))
1812
+
1813
+ <a name="6.13.1"></a>
1814
+
1815
+ ## [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)
1816
+
1817
+ **Note:** Version bump only for package @pie-lib/editable-html
1818
+
1819
+ <a name="6.13.0"></a>
1820
+
1821
+ # [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)
1822
+
1823
+ ### Features
1824
+
1825
+ - **math-toolbar:** changed from ssh to https for the mathquill forked repo ([7364008](https://github.com/pie-framework/pie-lib/commit/7364008))
1826
+
1827
+ <a name="6.12.0"></a>
1828
+
1829
+ # [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)
1830
+
1831
+ ### Features
1832
+
1833
+ - **math-input:** added some new symbols to the math-input ([56062aa](https://github.com/pie-framework/pie-lib/commit/56062aa))
1834
+
1835
+ <a name="6.11.0"></a>
1836
+
1837
+ # [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)
1838
+
1839
+ ### Bug Fixes
1840
+
1841
+ - sort tests ([f6d78e3](https://github.com/pie-framework/pie-lib/commit/f6d78e3))
1842
+
1843
+ ### Features
1844
+
1845
+ - **math-toolbar:** broke apart editable-html math toolbar into a separate package ([72c5a79](https://github.com/pie-framework/pie-lib/commit/72c5a79))
1846
+ - **math-toolbar:** fix editable-html broken test ([da6022a](https://github.com/pie-framework/pie-lib/commit/da6022a))
1847
+
1848
+ <a name="6.10.2"></a>
1849
+
1850
+ ## [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)
1851
+
1852
+ ### Bug Fixes
1853
+
1854
+ - **editable-html:** fixed the issue of expanding inputs ([ad972d3](https://github.com/pie-framework/pie-lib/commit/ad972d3))
1855
+
1856
+ <a name="6.10.1"></a>
1857
+
1858
+ ## [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)
1859
+
1860
+ ### Bug Fixes
1861
+
1862
+ - **added-dependencies-where-needed:** fixed missing dependencies ([7c28bd3](https://github.com/pie-framework/pie-lib/commit/7c28bd3))
1863
+
1864
+ <a name="6.10.0"></a>
1865
+
1866
+ # [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)
1867
+
1868
+ ### Features
1869
+
1870
+ - **editable-html:** add raw latex to math plugin created span ([afe2981](https://github.com/pie-framework/pie-lib/commit/afe2981))
1871
+
1872
+ <a name="6.9.0"></a>
1873
+
1874
+ # [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)
1875
+
1876
+ ### Bug Fixes
1877
+
1878
+ - **focus-before-image:** added a withoutNormalization to fix the issue of adding multiple spaces ([21c8b13](https://github.com/pie-framework/pie-lib/commit/21c8b13))
1879
+ - **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))
1880
+ - **focus-before-image:** optimized the normalize function ([8172de2](https://github.com/pie-framework/pie-lib/commit/8172de2))
1881
+ - **focus-before-image:** used the normalizeNode hook to make the changes ([c0eacc3](https://github.com/pie-framework/pie-lib/commit/c0eacc3))
1882
+
1883
+ ### Features
1884
+
1885
+ - **editable-html:** added a test for the normalizeNode function ([4e81020](https://github.com/pie-framework/pie-lib/commit/4e81020))
1886
+
1887
+ <a name="6.8.0"></a>
1888
+
1889
+ # [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)
1890
+
1891
+ ### Features
1892
+
1893
+ - **image-support-tables:** added image support to the table plugin ([88196d2](https://github.com/pie-framework/pie-lib/commit/88196d2))
1894
+ - **math-support-tables:** added math support to the table plugin ([0010443](https://github.com/pie-framework/pie-lib/commit/0010443))
1895
+ - **plugins-support-for-tables:** made the requested changes and fixed the tests ([132e35c](https://github.com/pie-framework/pie-lib/commit/132e35c))
1896
+
1897
+ <a name="6.7.6"></a>
1898
+
1899
+ ## [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)
1900
+
1901
+ ### Bug Fixes
1902
+
1903
+ - **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))
1904
+ - **focus-inside-text-issue:** fixed a test ([5676c82](https://github.com/pie-framework/pie-lib/commit/5676c82))
1905
+
1906
+ <a name="6.7.5"></a>
1907
+
1908
+ ## [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)
1909
+
1910
+ ### Bug Fixes
1911
+
1912
+ - **ch468:** added disableunderline prop for the editable-html component ([0886417](https://github.com/pie-framework/pie-lib/commit/0886417))
1913
+
1914
+ <a name="6.7.4"></a>
1915
+
1916
+ ## [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)
1917
+
1918
+ ### Bug Fixes
1919
+
1920
+ - **editablehtml:** fixed auto resizing ([0f8cdd3](https://github.com/pie-framework/pie-lib/commit/0f8cdd3))
1921
+
1922
+ <a name="6.7.3"></a>
1923
+
1924
+ ## [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)
1925
+
1926
+ ### Bug Fixes
1927
+
1928
+ - rollback slate version, keep slate-soft-break ([fd37c73](https://github.com/pie-framework/pie-lib/commit/fd37c73))
1929
+
1930
+ <a name="6.7.0"></a>
1931
+
1932
+ # [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)
1933
+
1934
+ ### Features
1935
+
1936
+ - **editable-html:** added slate plugin for soft linebreaks ([11637bc](https://github.com/pie-framework/pie-lib/commit/11637bc))
1937
+
1938
+ <a name="6.6.7"></a>
1939
+
1940
+ ## [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)
1941
+
1942
+ ### Bug Fixes
1943
+
1944
+ - reduce package size ([e2b0baa](https://github.com/pie-framework/pie-lib/commit/e2b0baa))
1945
+
1946
+ <a name="6.6.6"></a>
1947
+
1948
+ ## [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)
1949
+
1950
+ ### Bug Fixes
1951
+
1952
+ - githead ([3e485e0](https://github.com/pie-framework/pie-lib/commit/3e485e0))
1953
+ - rm githead ([a1523aa](https://github.com/pie-framework/pie-lib/commit/a1523aa))
1954
+
1955
+ <a name="6.6.5"></a>
1956
+
1957
+ ## [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)
1958
+
1959
+ **Note:** Version bump only for package @pie-lib/editable-html
1960
+
1961
+ <a name="6.6.4"></a>
1962
+
1963
+ ## [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)
1964
+
1965
+ **Note:** Version bump only for package @pie-lib/editable-html
1966
+
1967
+ <a name="6.6.3"></a>
1968
+
1969
+ ## [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)
1970
+
1971
+ ### Bug Fixes
1972
+
1973
+ - serialize - remove empty text nodes after DomParse ([8b6df96](https://github.com/pie-framework/pie-lib/commit/8b6df96))
1974
+
1975
+ <a name="6.6.2"></a>
1976
+
1977
+ ## [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)
1978
+
1979
+ ### Bug Fixes
1980
+
1981
+ - strip \displaystyle from latex ([9de575c](https://github.com/pie-framework/pie-lib/commit/9de575c))
1982
+
1983
+ <a name="6.6.1"></a>
1984
+
1985
+ ## [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)
1986
+
1987
+ ### Bug Fixes
1988
+
1989
+ - rm unused imports ([e8691b8](https://github.com/pie-framework/pie-lib/commit/e8691b8))
1990
+
1991
+ <a name="6.6.0"></a>
1992
+
1993
+ # [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)
1994
+
1995
+ ### Bug Fixes
1996
+
1997
+ - **table:** add support for more attributes ([0c3aeb4](https://github.com/pie-framework/pie-lib/commit/0c3aeb4))
1998
+
1999
+ ### Features
2000
+
2001
+ - **table:** add toolbar border toggle button to toolbar ([7b2add3](https://github.com/pie-framework/pie-lib/commit/7b2add3))
2002
+
2003
+ <a name="6.5.0"></a>
2004
+
2005
+ # [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)
2006
+
2007
+ ### Features
2008
+
2009
+ - **editable-html:** add basic table support ([637a93a](https://github.com/pie-framework/pie-lib/commit/637a93a))
2010
+
2011
+ <a name="6.4.0"></a>
2012
+
2013
+ # [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)
2014
+
2015
+ ### Features
2016
+
2017
+ - **math:** add support for \$ latex character ([0569f14](https://github.com/pie-framework/pie-lib/commit/0569f14))
2018
+
2019
+ <a name="6.3.0"></a>
2020
+
2021
+ # [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)
2022
+
2023
+ ### Features
2024
+
2025
+ - **editable-html:** added autoWidthToolbar for editable-html ([a5103f5](https://github.com/pie-framework/pie-lib/commit/a5103f5))
2026
+
2027
+ <a name="6.2.5"></a>
2028
+
2029
+ ## [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)
2030
+
2031
+ ### Bug Fixes
2032
+
2033
+ - make images inline instead of block so they render correctly. ([e02fec0](https://github.com/pie-framework/pie-lib/commit/e02fec0))
2034
+
2035
+ <a name="6.2.4"></a>
2036
+
2037
+ ## [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)
2038
+
2039
+ ### Bug Fixes
2040
+
2041
+ - **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))
2042
+
2043
+ <a name="6.2.3"></a>
2044
+
2045
+ ## [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)
2046
+
2047
+ ### Bug Fixes
2048
+
2049
+ - **editable-html:** fix image plugin done button ([40bb2e5](https://github.com/pie-framework/pie-lib/commit/40bb2e5))
2050
+
2051
+ <a name="6.2.2"></a>
2052
+
2053
+ ## [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)
2054
+
2055
+ ### Bug Fixes
2056
+
2057
+ - debounce 'onInputEdit' to prevent componentLifecycle overflow ([f1081ce](https://github.com/pie-framework/pie-lib/commit/f1081ce))
2058
+
2059
+ <a name="6.2.1"></a>
2060
+
2061
+ ## [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)
2062
+
2063
+ ### Bug Fixes
2064
+
2065
+ - **math:** emit latex wrapped in brackets ([0ef0a75](https://github.com/pie-framework/pie-lib/commit/0ef0a75))
2066
+
2067
+ <a name="6.2.0"></a>
2068
+
2069
+ # [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)
2070
+
2071
+ ### Features
2072
+
2073
+ - 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))
2074
+
2075
+ <a name="6.1.1"></a>
2076
+
2077
+ ## [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)
2078
+
2079
+ **Note:** Version bump only for package @pie-lib/editable-html
2080
+
2081
+ <a name="6.0.1"></a>
2082
+
2083
+ ## [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)
2084
+
2085
+ **Note:** Version bump only for package @pie-lib/editable-html
2086
+
2087
+ <a name="5.1.0"></a>
2088
+
2089
+ # [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)
2090
+
2091
+ ### Features
2092
+
2093
+ - upgrade material-ui -> [@material-ui](https://github.com/material-ui)/core@^1.0.0-rc.1 ([017ef63](https://github.com/pie-framework/pie-lib/commit/017ef63))
2094
+
2095
+ <a name="5.0.13"></a>
2096
+
2097
+ ## [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)
2098
+
2099
+ ### Bug Fixes
2100
+
2101
+ - **lint:** automatic lint fixes ([7c9a2a4](https://github.com/pie-framework/pie-lib/commit/7c9a2a4))
2102
+ - **lint:** lint fixes ([f059583](https://github.com/pie-framework/pie-lib/commit/f059583))
2103
+
2104
+ <a name="5.0.12"></a>
2105
+
2106
+ ## [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)
2107
+
2108
+ ### Bug Fixes
2109
+
2110
+ - **dependencies:** set material-ui version to ^1.0.0-beta.44 ([6fd66bc](https://github.com/pie-framework/pie-lib/commit/6fd66bc))
2111
+
2112
+ <a name="5.0.11"></a>
2113
+
2114
+ ## [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)
2115
+
2116
+ ### Bug Fixes
2117
+
2118
+ - **dependencies:** roll back material-ui ([5167d1f](https://github.com/pie-framework/pie-lib/commit/5167d1f))
2119
+
2120
+ <a name="5.0.10"></a>
2121
+
2122
+ ## [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)
2123
+
2124
+ ### Bug Fixes
2125
+
2126
+ - **dependencies:** lock material-ui to 1.0.0-beta.44 ([60df8e6](https://github.com/pie-framework/pie-lib/commit/60df8e6))
2127
+
2128
+ <a name="5.0.9"></a>
2129
+
2130
+ ## [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)
2131
+
2132
+ ### Bug Fixes
2133
+
2134
+ - **dependencies:** lock material-ui to 1.0.0-beta.43 ([2a3e087](https://github.com/pie-framework/pie-lib/commit/2a3e087))
2135
+ - **dependencies:** upgrade material-ui ([b94b50e](https://github.com/pie-framework/pie-lib/commit/b94b50e))
2136
+
2137
+ <a name="5.0.8"></a>
2138
+
2139
+ ## [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)
2140
+
2141
+ ### Bug Fixes
2142
+
2143
+ - **editor:** pass in className ([60b2c65](https://github.com/pie-framework/pie-lib/commit/60b2c65))
2144
+
2145
+ <a name="5.0.7"></a>
2146
+
2147
+ ## [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)
2148
+
2149
+ ### Bug Fixes
2150
+
2151
+ - **MarkButton:** change mark type to string ([e9b1ef2](https://github.com/pie-framework/pie-lib/commit/e9b1ef2))
2152
+
2153
+ <a name="5.0.6"></a>
2154
+
2155
+ ## [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)
2156
+
2157
+ ### Bug Fixes
2158
+
2159
+ - **lint:** lint fixes ([e30b47a](https://github.com/pie-framework/pie-lib/commit/e30b47a))
2160
+
2161
+ <a name="5.0.5"></a>
2162
+
2163
+ ## [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)
2164
+
2165
+ ### Bug Fixes
2166
+
2167
+ - **dependencies:** version bump ([dd82caf](https://github.com/pie-framework/pie-lib/commit/dd82caf))
2168
+
2169
+ <a name="5.0.4"></a>
2170
+
2171
+ ## [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)
2172
+
2173
+ ### Bug Fixes
2174
+
2175
+ - **dependencies:** bump slate-edit-list to 0.11.3 ([e82adc7](https://github.com/pie-framework/pie-lib/commit/e82adc7))
2176
+ - **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)
2177
+
2178
+ <a name="5.0.3"></a>
2179
+
2180
+ ## [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)
2181
+
2182
+ **Note:** Version bump only for package @pie-lib/editable-html
2183
+
2184
+ <a name="5.0.2"></a>
2185
+
2186
+ ## [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)
2187
+
2188
+ ### Bug Fixes
2189
+
2190
+ - **test:** normalize tests ([b86b3d9](https://github.com/pie-framework/pie-lib/commit/b86b3d9))
2191
+
2192
+ <a name="5.0.1"></a>
2193
+
2194
+ ## [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)
2195
+
2196
+ **Note:** Version bump only for package @pie-lib/editable-html
2197
+
2198
+ <a name="4.0.2"></a>
2199
+
2200
+ ## [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)
2201
+
2202
+ ### Bug Fixes
2203
+
2204
+ - **dependencies:** update dependencies ([8a5c1b2](https://github.com/pie-framework/pie-lib/commit/8a5c1b2))
2205
+ - **serialization:** fix serialization ([9191bb6](https://github.com/pie-framework/pie-lib/commit/9191bb6))
2206
+
2207
+ <a name="4.0.1"></a>
2208
+
2209
+ ## [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)
2210
+
2211
+ ### Bug Fixes
2212
+
2213
+ - **dependencies:** version bump react and material-ui ([05d72cf](https://github.com/pie-framework/pie-lib/commit/05d72cf))
2214
+ - **font:** set Roboto as font ([d142ce9](https://github.com/pie-framework/pie-lib/commit/d142ce9))
2215
+
2216
+ <a name="3.1.1"></a>
2217
+
2218
+ ## [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)
2219
+
2220
+ ### Bug Fixes
2221
+
2222
+ - **serializtion:** bump slate dependencies to fix serialization issues ([af11784](https://github.com/pie-framework/pie-lib/commit/af11784))
2223
+
2224
+ <a name="3.1.0"></a>
2225
+
2226
+ # [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)
2227
+
2228
+ ### Features
2229
+
2230
+ - **ui:** polish disabled state, polish sizing logic ([9be2757](https://github.com/pie-framework/pie-lib/commit/9be2757))
2231
+
2232
+ <a name="3.0.1"></a>
2233
+
2234
+ ## [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)
2235
+
2236
+ **Note:** Version bump only for package @pie-lib/editable-html
2237
+
2238
+ <a name="3.0.0"></a>
2239
+
2240
+ # [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)
2241
+
2242
+ ### Bug Fixes
2243
+
2244
+ - **EditableHtml:** wrap the Editor with a component that checks markup against value ([57b7dda](https://github.com/pie-framework/pie-lib/commit/57b7dda))
2245
+ - **Editor:** use `object` instead of `kind` w/ slate@0.33.0 ([3bb0cca](https://github.com/pie-framework/pie-lib/commit/3bb0cca))
2246
+ - **list:** use logic from 'slate-edit-list' ([d0be5fe](https://github.com/pie-framework/pie-lib/commit/d0be5fe))
2247
+ - **types:** fix type checking ([a088983](https://github.com/pie-framework/pie-lib/commit/a088983))
2248
+
2249
+ ### Features
2250
+
2251
+ - **bulleted-list:** add new plugin, add activePlugins prop, export DEFAULT_PLUGINS. ([6268832](https://github.com/pie-framework/pie-lib/commit/6268832))
2252
+ - **EditableHtml:** export `Editor` ([c3e53fe](https://github.com/pie-framework/pie-lib/commit/c3e53fe))
2253
+
2254
+ ### BREAKING CHANGES
2255
+
2256
+ - **Editor:** 'math' and 'image' plugins have been disabled pending fixes.
2257
+
2258
+ <a name="2.2.5"></a>
2259
+
2260
+ ## [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)
2261
+
2262
+ **Note:** Version bump only for package @pie-lib/editable-html
2263
+
2264
+ <a name="2.2.4"></a>
2265
+
2266
+ ## 2.2.4 (2018-03-06)
2267
+
2268
+ **Note:** Version bump only for package @pie-lib/editable-html
2269
+
2270
+ <a name="2.2.3"></a>
2271
+
2272
+ ## 2.2.3 (2018-03-06)
2273
+
2274
+ **Note:** Version bump only for package @pie-lib/editable-html
2275
+
2276
+ <a name="2.2.2"></a>
2277
+
2278
+ ## 2.2.2 (2018-03-06)
2279
+
2280
+ **Note:** Version bump only for package @pie-lib/editable-html