@pie-lib/editable-html 10.0.0-beta.4 → 10.0.0-beta.6

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 (143) hide show
  1. package/CHANGELOG.md +255 -152
  2. package/lib/components.js +15 -39
  3. package/lib/components.js.map +1 -1
  4. package/lib/editor.js +200 -356
  5. package/lib/editor.js.map +1 -1
  6. package/lib/index.js +25 -49
  7. package/lib/index.js.map +1 -1
  8. package/lib/new-serialization.js +31 -71
  9. package/lib/new-serialization.js.map +1 -1
  10. package/lib/parse-html.js +7 -6
  11. package/lib/parse-html.js.map +1 -1
  12. package/lib/plugins/characters/custom-popper.js +3 -13
  13. package/lib/plugins/characters/custom-popper.js.map +1 -1
  14. package/lib/plugins/characters/index.js +20 -59
  15. package/lib/plugins/characters/index.js.map +1 -1
  16. package/lib/plugins/characters/utils.js +1 -1
  17. package/lib/plugins/characters/utils.js.map +1 -1
  18. package/lib/plugins/hotKeys/index.js +9 -16
  19. package/lib/plugins/hotKeys/index.js.map +1 -1
  20. package/lib/plugins/image/alt-dialog.js +6 -27
  21. package/lib/plugins/image/alt-dialog.js.map +1 -1
  22. package/lib/plugins/image/component.js +42 -99
  23. package/lib/plugins/image/component.js.map +1 -1
  24. package/lib/plugins/image/image-toolbar.js +14 -50
  25. package/lib/plugins/image/image-toolbar.js.map +1 -1
  26. package/lib/plugins/image/index.js +16 -59
  27. package/lib/plugins/image/index.js.map +1 -1
  28. package/lib/plugins/image/insert-image-handler.js +13 -25
  29. package/lib/plugins/image/insert-image-handler.js.map +1 -1
  30. package/lib/plugins/index.js +6 -36
  31. package/lib/plugins/index.js.map +1 -1
  32. package/lib/plugins/list/index.js +11 -46
  33. package/lib/plugins/list/index.js.map +1 -1
  34. package/lib/plugins/math/index.js +89 -93
  35. package/lib/plugins/math/index.js.map +1 -1
  36. package/lib/plugins/media/index.js +32 -109
  37. package/lib/plugins/media/index.js.map +1 -1
  38. package/lib/plugins/media/media-dialog.js +107 -195
  39. package/lib/plugins/media/media-dialog.js.map +1 -1
  40. package/lib/plugins/media/media-toolbar.js +7 -27
  41. package/lib/plugins/media/media-toolbar.js.map +1 -1
  42. package/lib/plugins/media/media-wrapper.js +9 -14
  43. package/lib/plugins/media/media-wrapper.js.map +1 -1
  44. package/lib/plugins/respArea/drag-in-the-blank/choice.js +13 -53
  45. package/lib/plugins/respArea/drag-in-the-blank/choice.js.map +1 -1
  46. package/lib/plugins/respArea/drag-in-the-blank/index.js +6 -20
  47. package/lib/plugins/respArea/drag-in-the-blank/index.js.map +1 -1
  48. package/lib/plugins/respArea/explicit-constructed-response/index.js +5 -10
  49. package/lib/plugins/respArea/explicit-constructed-response/index.js.map +1 -1
  50. package/lib/plugins/respArea/icons/index.js +16 -31
  51. package/lib/plugins/respArea/icons/index.js.map +1 -1
  52. package/lib/plugins/respArea/index.js +7 -54
  53. package/lib/plugins/respArea/index.js.map +1 -1
  54. package/lib/plugins/respArea/inline-dropdown/index.js +3 -10
  55. package/lib/plugins/respArea/inline-dropdown/index.js.map +1 -1
  56. package/lib/plugins/respArea/utils.js +6 -21
  57. package/lib/plugins/respArea/utils.js.map +1 -1
  58. package/lib/plugins/table/icons/index.js +1 -8
  59. package/lib/plugins/table/icons/index.js.map +1 -1
  60. package/lib/plugins/table/index.js +54 -187
  61. package/lib/plugins/table/index.js.map +1 -1
  62. package/lib/plugins/table/table-toolbar.js +12 -44
  63. package/lib/plugins/table/table-toolbar.js.map +1 -1
  64. package/lib/plugins/toolbar/default-toolbar.js +17 -46
  65. package/lib/plugins/toolbar/default-toolbar.js.map +1 -1
  66. package/lib/plugins/toolbar/done-button.js +2 -10
  67. package/lib/plugins/toolbar/done-button.js.map +1 -1
  68. package/lib/plugins/toolbar/editor-and-toolbar.js +134 -144
  69. package/lib/plugins/toolbar/editor-and-toolbar.js.map +1 -1
  70. package/lib/plugins/toolbar/index.js +2 -6
  71. package/lib/plugins/toolbar/index.js.map +1 -1
  72. package/lib/plugins/toolbar/toolbar-buttons.js +9 -40
  73. package/lib/plugins/toolbar/toolbar-buttons.js.map +1 -1
  74. package/lib/plugins/toolbar/toolbar.js +29 -83
  75. package/lib/plugins/toolbar/toolbar.js.map +1 -1
  76. package/lib/plugins/utils.js +8 -30
  77. package/lib/plugins/utils.js.map +1 -1
  78. package/lib/serialization.js +11 -69
  79. package/lib/serialization.js.map +1 -1
  80. package/lib/test-serializer.js +5 -56
  81. package/lib/test-serializer.js.map +1 -1
  82. package/lib/theme.js +1 -1
  83. package/lib/theme.js.map +1 -1
  84. package/package.json +7 -7
  85. package/playground/image/data.js +20 -20
  86. package/playground/image/index.html +20 -22
  87. package/playground/image/index.jsx +10 -12
  88. package/playground/index.html +23 -25
  89. package/playground/mathquill/index.html +20 -23
  90. package/playground/mathquill/index.jsx +22 -18
  91. package/playground/prod-test/index.html +20 -24
  92. package/playground/prod-test/index.jsx +3 -5
  93. package/playground/schema-override/data.js +10 -10
  94. package/playground/schema-override/image-plugin.jsx +4 -3
  95. package/playground/schema-override/index.html +19 -21
  96. package/playground/schema-override/index.jsx +14 -13
  97. package/playground/serialization/data.js +10 -10
  98. package/playground/serialization/image-plugin.jsx +4 -3
  99. package/playground/serialization/index.html +20 -22
  100. package/playground/table-examples.html +8 -5
  101. package/playground/webpack.config.js +10 -10
  102. package/src/editor.jsx +108 -104
  103. package/src/index.jsx +20 -13
  104. package/src/new-serialization.jsx +30 -11
  105. package/src/parse-html.js +1 -1
  106. package/src/plugins/characters/custom-popper.js +7 -7
  107. package/src/plugins/characters/index.jsx +34 -23
  108. package/src/plugins/characters/utils.js +81 -81
  109. package/src/plugins/image/alt-dialog.jsx +5 -4
  110. package/src/plugins/image/component.jsx +47 -44
  111. package/src/plugins/image/image-toolbar.jsx +19 -27
  112. package/src/plugins/image/index.jsx +24 -18
  113. package/src/plugins/image/insert-image-handler.js +9 -0
  114. package/src/plugins/index.jsx +7 -9
  115. package/src/plugins/list/index.jsx +7 -7
  116. package/src/plugins/math/index.jsx +71 -28
  117. package/src/plugins/media/index.jsx +7 -7
  118. package/src/plugins/media/media-dialog.js +63 -89
  119. package/src/plugins/media/media-toolbar.jsx +8 -8
  120. package/src/plugins/media/media-wrapper.jsx +8 -5
  121. package/src/plugins/respArea/drag-in-the-blank/choice.jsx +19 -21
  122. package/src/plugins/respArea/drag-in-the-blank/index.jsx +4 -4
  123. package/src/plugins/respArea/explicit-constructed-response/index.jsx +5 -4
  124. package/src/plugins/respArea/icons/index.jsx +14 -11
  125. package/src/plugins/respArea/index.jsx +9 -15
  126. package/src/plugins/respArea/inline-dropdown/index.jsx +6 -6
  127. package/src/plugins/respArea/utils.jsx +7 -3
  128. package/src/plugins/table/icons/index.jsx +11 -17
  129. package/src/plugins/table/index.jsx +14 -10
  130. package/src/plugins/table/table-toolbar.jsx +6 -6
  131. package/src/plugins/toolbar/default-toolbar.jsx +9 -9
  132. package/src/plugins/toolbar/done-button.jsx +4 -4
  133. package/src/plugins/toolbar/editor-and-toolbar.jsx +36 -33
  134. package/src/plugins/toolbar/index.jsx +3 -2
  135. package/src/plugins/toolbar/toolbar-buttons.jsx +11 -11
  136. package/src/plugins/toolbar/toolbar.jsx +6 -1
  137. package/src/plugins/utils.js +2 -2
  138. package/src/serialization.jsx +34 -32
  139. package/src/test-serializer.js +2 -9
  140. package/lib/old-serialization.js +0 -330
  141. package/lib/slate-editor.js +0 -302
  142. package/src/test-serializer.js.rej +0 -20
  143. package/yarn-error.log +0 -18318
package/CHANGELOG.md CHANGED
@@ -3,7 +3,7 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [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)
6
+ ## [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)
7
7
 
8
8
  **Note:** Version bump only for package @pie-lib/editable-html
9
9
 
@@ -11,452 +11,555 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
11
 
12
12
 
13
13
 
14
- ## [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)
14
+ ## [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)
15
15
 
16
16
 
17
17
  ### Bug Fixes
18
18
 
19
- * **editable-html:** fix paste text PD-1899 ([a1e8477](https://github.com/pie-framework/pie-lib/commit/a1e847763ceb14912592fcdf20317fb9a309a912))
19
+ * made sure mathMlOptions are editable live [PD-2150] ([31ce3d3](https://github.com/pie-framework/pie-lib/commit/31ce3d3536788021b912895c611f972aa87161b0))
20
20
 
21
21
 
22
22
 
23
23
 
24
24
 
25
- ## [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)
25
+ # [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)
26
26
 
27
27
 
28
- ### Bug Fixes
29
-
30
- * bump mathquill to 1.1.3 ([48b84c5](https://github.com/pie-framework/pie-lib/commit/48b84c534cbf519e172a80d18a48b26eda3cf7e6))
28
+ ### Features
31
29
 
30
+ * **editable-html:** make error class important to avoid overwriting ([37af2fc](https://github.com/pie-framework/pie-lib/commit/37af2fc862f3e5d0dfd0b1ad42fbd462d98bac89))
32
31
 
33
32
 
34
33
 
35
34
 
36
- ## [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)
37
35
 
36
+ ## [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)
38
37
 
39
- ### Reverts
38
+ **Note:** Version bump only for package @pie-lib/editable-html
40
39
 
41
- * 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))
42
40
 
43
41
 
44
42
 
45
43
 
44
+ ## [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)
46
45
 
47
- # [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)
46
+ **Note:** Version bump only for package @pie-lib/editable-html
48
47
 
48
+ ## [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)
49
49
 
50
50
  ### Bug Fixes
51
51
 
52
- * **editable-html:** add another sanity checks ([d872981](https://github.com/pie-framework/pie-lib/commit/d87298124408b55d75d42598c0272294a0881043))
53
- * **editable-html:** add sanity check for drop / paste file - sentry ([d27d252](https://github.com/pie-framework/pie-lib/commit/d27d2522d0567333e0af1ce49a3793ebc44ef032))
54
- * **editable-html:** add sanity check in respArea - toolbar ([1e4c9f2](https://github.com/pie-framework/pie-lib/commit/1e4c9f21be612409deee08cca6790f019f5d01d3))
55
- * **editable-html:** potential fix - sanity check for node key in table - sentry ([f417c72](https://github.com/pie-framework/pie-lib/commit/f417c724c49e50e8c3c514b46b42f5d410da2942))
56
- * code tweaks ([a390dcb](https://github.com/pie-framework/pie-lib/commit/a390dcbe22e9d37776b91071ec1502bbad59ff2a))
57
- * duplicate image issue ([924a4df](https://github.com/pie-framework/pie-lib/commit/924a4df45cf9f1601704dd48c2a757dd02e2e7a3))
58
- * tests ([41caca9](https://github.com/pie-framework/pie-lib/commit/41caca9855aa8099f5cb7286cc6660dd20d5c622))
52
+ - rerun serialization if mathml options are provided, added tests as well PD-2150 ([530af87](https://github.com/pie-framework/pie-lib/commit/530af87026010325124b70a47fd18e4a0d06cedb))
53
+ - 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))
59
54
 
55
+ ## [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)
60
56
 
61
- ### Features
62
-
63
- * **characters:** special character accents span 2 rows, added border for visibility [PD-1462] ([c60b0bc](https://github.com/pie-framework/pie-lib/commit/c60b0bc8ff45cc01f53bc752fd5dd64da623f6be))
64
- * **editable-html:** add image alignment buttons ([a076a41](https://github.com/pie-framework/pie-lib/commit/a076a4193c82dc552bd21de7a8f928d8481e73e6))
65
- * **editable-html:** BREAKING CHANGE add image alignment buttons in image toolbar PD-1802 ([bcb59e5](https://github.com/pie-framework/pie-lib/commit/bcb59e5737fe61560fac8de01276baf187888048))
66
- * **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))
67
- * **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))
68
- * **editable-html, render-ui:** wrap up PD-1802 ([e10babf](https://github.com/pie-framework/pie-lib/commit/e10babf2e80aed67c856e9e021e37072e3df33fb))
69
- * **editor:** added insert spanish and special characters as default [PD-1883] ([26655ec](https://github.com/pie-framework/pie-lib/commit/26655ec87cb4b8a82357e88b62faad3fdc7c296a))
57
+ **Note:** Version bump only for package @pie-lib/editable-html
70
58
 
59
+ ## [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)
71
60
 
72
- ### BREAKING CHANGES
61
+ ### Bug Fixes
73
62
 
74
- * **editable-html:** Added new buttons in image toolbar.
75
- The buttons control image horizontal alignment.
63
+ - 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))
76
64
 
65
+ ## [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)
77
66
 
67
+ **Note:** Version bump only for package @pie-lib/editable-html
78
68
 
69
+ # [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)
79
70
 
71
+ ### Features
80
72
 
81
- ## [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)
73
+ - 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))
82
74
 
75
+ ## [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)
83
76
 
84
77
  ### Bug Fixes
85
78
 
86
- * running locally does not work ([ce2d09a](https://github.com/pie-framework/pie-lib/commit/ce2d09a3556937aea4a1c8075a2dbc7c1131fd5f))
87
-
79
+ - **math-toolbar:** add white background for spanish and special characters done button PD-2119 ([3c1dd82](https://github.com/pie-framework/pie-lib/commit/3c1dd82f7d3f21651d3e5f87d5d543ad4a0907bf))
88
80
 
81
+ ## [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)
89
82
 
83
+ **Note:** Version bump only for package @pie-lib/editable-html
90
84
 
85
+ ## [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)
91
86
 
92
- ## [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)
87
+ **Note:** Version bump only for package @pie-lib/editable-html
93
88
 
89
+ ## [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)
94
90
 
95
91
  ### Bug Fixes
96
92
 
97
- * running locally does not work ([e2fbb74](https://github.com/pie-framework/pie-lib/commit/e2fbb74c79bbb2ad6e9af447af51687391d89ad3))
98
- * **editable-html:** fix image remove ([0f446b3](https://github.com/pie-framework/pie-lib/commit/0f446b38d93fec1548b9ff5c73cc48f2f10d9397))
93
+ - **eslint:** fix eslint problems-PD-2732 ([9eb9976](https://github.com/pie-framework/pie-lib/commit/9eb9976749753da86e1057a07bd2cfc65bf64ae4))
99
94
 
95
+ ## [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)
100
96
 
97
+ **Note:** Version bump only for package @pie-lib/editable-html
101
98
 
99
+ ## [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)
102
100
 
101
+ **Note:** Version bump only for package @pie-lib/editable-html
103
102
 
104
- # [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)
103
+ ## [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)
105
104
 
105
+ **Note:** Version bump only for package @pie-lib/editable-html
106
106
 
107
- ### Features
107
+ ## [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)
108
108
 
109
- * **editable-html:** allow drop & paste images PD-581 ([f7ec0d4](https://github.com/pie-framework/pie-lib/commit/f7ec0d4578ededc095422356471fb5e9f2b29af9))
109
+ ### Bug Fixes
110
110
 
111
+ - **editable-html:** focus on empty choice-PD-1805 ([3497742](https://github.com/pie-framework/pie-lib/commit/34977426bfd4db1a5c6869bc275ffbbe30ad3131))
111
112
 
113
+ ## [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)
112
114
 
115
+ **Note:** Version bump only for package @pie-lib/editable-html
113
116
 
117
+ ## [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)
114
118
 
115
- # [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)
119
+ ### Bug Fixes
116
120
 
121
+ - **editable-html:** tweak placement of the character toolbar if parent is scrollable PD-2175 ([11daa2e](https://github.com/pie-framework/pie-lib/commit/11daa2ea984ad5fef849a612ffcd4e53dd6af7b1))
117
122
 
118
- ### Features
123
+ ## [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)
119
124
 
120
- * **editable-html:** Added characters limit support PD-1681 ([9e7f6ad](https://github.com/pie-framework/pie-lib/commit/9e7f6add3f846d32265990aca98dfb5b4847bb95))
121
- * **editable-html:** image resize functionality PD-1801 ([6f46903](https://github.com/pie-framework/pie-lib/commit/6f46903acdf791716263be33abe49235572421ad))
122
- * **plugins:** added special characters adding capabilities [PD-1462] ([b9f41e1](https://github.com/pie-framework/pie-lib/commit/b9f41e11f44df140a66145d0b04558ca2b0ea48e))
125
+ **Note:** Version bump only for package @pie-lib/editable-html
123
126
 
127
+ ## [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)
124
128
 
125
- ### BREAKING CHANGES
129
+ ### Bug Fixes
126
130
 
127
- * **editable-html:** Removed the percent buttons from editable-html image button. Added resize functionality.
131
+ - version bump ([d9280a9](https://github.com/pie-framework/pie-lib/commit/d9280a9aeddab459b6d84ecdbeb62814e1eee965))
128
132
 
133
+ ## [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)
129
134
 
135
+ **Note:** Version bump only for package @pie-lib/editable-html
130
136
 
137
+ ## [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)
131
138
 
139
+ **Note:** Version bump only for package @pie-lib/editable-html
132
140
 
133
- ## [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)
141
+ ## [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)
134
142
 
135
143
  **Note:** Version bump only for package @pie-lib/editable-html
136
144
 
145
+ ## [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)
137
146
 
147
+ **Note:** Version bump only for package @pie-lib/editable-html
138
148
 
149
+ ## [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)
139
150
 
151
+ **Note:** Version bump only for package @pie-lib/editable-html
140
152
 
141
- ## [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)
153
+ ## [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)
142
154
 
143
155
  **Note:** Version bump only for package @pie-lib/editable-html
144
156
 
157
+ ## [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)
145
158
 
159
+ **Note:** Version bump only for package @pie-lib/editable-html
146
160
 
161
+ ## [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)
147
162
 
163
+ **Note:** Version bump only for package @pie-lib/editable-html
148
164
 
149
- ## [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)
165
+ ## [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)
150
166
 
151
167
  **Note:** Version bump only for package @pie-lib/editable-html
152
168
 
169
+ # [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)
153
170
 
171
+ ### Features
154
172
 
173
+ - added theme naming support + cleanup ([72d562d](https://github.com/pie-framework/pie-lib/commit/72d562d509e5d31d883690eb455a9afea6bf54fc))
155
174
 
156
-
157
- ## [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)
175
+ ## [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)
158
176
 
159
177
  **Note:** Version bump only for package @pie-lib/editable-html
160
178
 
179
+ # [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)
161
180
 
181
+ ### Bug Fixes
162
182
 
183
+ - add param to createToolbarOpts ([b80af8a](https://github.com/pie-framework/pie-lib/commit/b80af8ad0a7381a14ba935b7ee121133ab99f765))
184
+ - revert changes to yarn lock that are causing build issues ([390d28c](https://github.com/pie-framework/pie-lib/commit/390d28c479452d58978984c961ed56716f156f91))
163
185
 
186
+ ### Features
164
187
 
165
- ## [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)
188
+ - **editable-html:** add error PD-2417 ([b53fb99](https://github.com/pie-framework/pie-lib/commit/b53fb993c27ee7058b3d4c0722b1c582592bbec4))
166
189
 
167
- **Note:** Version bump only for package @pie-lib/editable-html
190
+ # [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)
168
191
 
192
+ ### Bug Fixes
169
193
 
194
+ - **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))
170
195
 
196
+ ### Features
171
197
 
198
+ - **editable-html:** select text at focus-PD-1971 ([f7c7bce](https://github.com/pie-framework/pie-lib/commit/f7c7bce8abc72aa3aa3b3c7adbf281ea34253d35))
172
199
 
173
- ## [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)
200
+ ## [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)
201
+
202
+ ### Bug Fixes
203
+
204
+ - **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))
205
+
206
+ ## [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)
174
207
 
175
208
  **Note:** Version bump only for package @pie-lib/editable-html
176
209
 
210
+ ## [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)
177
211
 
212
+ **Note:** Version bump only for package @pie-lib/editable-html
178
213
 
214
+ ## [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)
179
215
 
216
+ **Note:** Version bump only for package @pie-lib/editable-html
180
217
 
181
- # [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)
218
+ ## [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)
182
219
 
220
+ **Note:** Version bump only for package @pie-lib/editable-html
183
221
 
184
- ### Bug Fixes
222
+ ## [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)
185
223
 
186
- * use error as a function ([c767c8b](https://github.com/pie-framework/pie-lib/commit/c767c8bdc5ace6006e86862704a26095fa4b16f6))
224
+ **Note:** Version bump only for package @pie-lib/editable-html
187
225
 
226
+ ## [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)
188
227
 
189
- ### Features
228
+ ### Bug Fixes
190
229
 
191
- * PD-1707 ([9762d1f](https://github.com/pie-framework/pie-lib/commit/9762d1f4ac1bd615db4f03dfd06809010213052d))
192
- * PD-1707 show validation errors in ecr ([bb7e95c](https://github.com/pie-framework/pie-lib/commit/bb7e95c824ae802452720856ad1117aa21c5766f))
230
+ - **editable-html:** increase helper text font size in alt dialog PD-2087 ([013cecb](https://github.com/pie-framework/pie-lib/commit/013cecbae73b5b8b6199aa814feb34d9627ed26f))
231
+ - **editable-html:** send autoWidth property to toolbar to fix PD-2129 ([f001ddb](https://github.com/pie-framework/pie-lib/commit/f001ddbf51bd8a2b3294603811351b26587bfc0b))
193
232
 
233
+ ## [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)
194
234
 
235
+ ### Bug Fixes
195
236
 
237
+ - **editable-html:** handle use case were there no child in audio tag ([dbc5410](https://github.com/pie-framework/pie-lib/commit/dbc54109fbe7201aea5ea6d5a6226f8ce9c797a0))
196
238
 
239
+ ### Reverts
197
240
 
198
- # [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)
241
+ - Revert "PD-1886 updated slate js version" ([0069bc8](https://github.com/pie-framework/pie-lib/commit/0069bc829175194e663a9601f284a31d7285d7eb))
199
242
 
243
+ ## [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)
200
244
 
201
- ### Features
245
+ ### Bug Fixes
202
246
 
203
- * **editable-html:** disabled add response area button when maxResponseArea value is reached PD-1699 ([9c28e5b](https://github.com/pie-framework/pie-lib/commit/9c28e5b1702995a497e8528038a1b9e71b72c84f))
204
- * **editable-html:** PD-1707 add validation ui/ux to responses areas in ecr ([7381c58](https://github.com/pie-framework/pie-lib/commit/7381c581e9f1099f48f8cfbe307f23dbd8776773))
247
+ - fire add image method when copy-paste image is used ([23d525e](https://github.com/pie-framework/pie-lib/commit/23d525efda2d41a8bfd603460b4cc4fda5d2a184))
205
248
 
249
+ # [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)
206
250
 
251
+ ### Bug Fixes
207
252
 
253
+ - **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))
208
254
 
255
+ ### Features
209
256
 
210
- # [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)
257
+ - add upload logic in pie lib (wip) PD-23-updated ([c666f68](https://github.com/pie-framework/pie-lib/commit/c666f68682bf4e9746cea3d7e18c1b1e1948131d))
258
+ - add upload logic in pie lib (wip) PD-23-updated ([0ece29e](https://github.com/pie-framework/pie-lib/commit/0ece29e256ee7d7c84202d1be97244e7d4b70411))
259
+ - hide edit uploaded sound in editable-html for now ([88882e6](https://github.com/pie-framework/pie-lib/commit/88882e6704f5f5f889328666a9b0fe03554339cd))
260
+ - UI improvements and bit of cleanup for PD-23-updated ([37e88e8](https://github.com/pie-framework/pie-lib/commit/37e88e8fb04698eadb805c26b5ee2c57cc0b51a8))
261
+ - **editable-html:** allow audio file upload (editable-html & rendering logic) ([f5df32d](https://github.com/pie-framework/pie-lib/commit/f5df32d1e53859435556f866e8727fef077896d4))
262
+ - **editable-html:** allow audio file upload (modal logic) ([f57cff1](https://github.com/pie-framework/pie-lib/commit/f57cff12d861d1182ab2fa84c8ce2a89f144b222))
263
+ - **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))
264
+ - **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))
211
265
 
266
+ ## [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)
212
267
 
213
- ### Bug Fixes
268
+ **Note:** Version bump only for package @pie-lib/editable-html
214
269
 
215
- * **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))
216
- * **list:** fixed list in list issues [PD-1229] ([46dcec0](https://github.com/pie-framework/pie-lib/commit/46dcec0e20fc2d09969c45fd75426f647931ec08))
270
+ ## [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)
217
271
 
272
+ **Note:** Version bump only for package @pie-lib/editable-html
218
273
 
219
- ### Features
274
+ ## [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)
220
275
 
221
- * **config-ui, editable-html:** add ui/ux validation for choices and editable html fields ([d40148f](https://github.com/pie-framework/pie-lib/commit/d40148f0f4b1232ce1506867a7424aa56e26c5ec))
276
+ ### Bug Fixes
222
277
 
278
+ - revert defaults to empty ([d7905be](https://github.com/pie-framework/pie-lib/commit/d7905be52adcda0af2ae92ec537b02beb1313439))
223
279
 
280
+ ## [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)
224
281
 
282
+ ### Bug Fixes
225
283
 
284
+ - **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))
226
285
 
227
- ## [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)
286
+ ## [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)
228
287
 
229
288
  **Note:** Version bump only for package @pie-lib/editable-html
230
289
 
290
+ ## [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)
231
291
 
292
+ **Note:** Version bump only for package @pie-lib/editable-html
232
293
 
294
+ # [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)
233
295
 
296
+ ### Features
234
297
 
235
- ## [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)
236
-
298
+ - **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))
237
299
 
238
- ### Bug Fixes
300
+ ## [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)
239
301
 
240
- * **editable-html:** Added default values for responseAreaProps ([b49a919](https://github.com/pie-framework/pie-lib/commit/b49a919b4d5e336cb2a82e4e7926d72372369d3c))
302
+ **Note:** Version bump only for package @pie-lib/editable-html
241
303
 
304
+ ## [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)
242
305
 
306
+ **Note:** Version bump only for package @pie-lib/editable-html
243
307
 
308
+ ## [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)
244
309
 
310
+ ### Bug Fixes
245
311
 
246
- ## [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)
312
+ - **editable-html:** fix paste text PD-1899 ([a1e8477](https://github.com/pie-framework/pie-lib/commit/a1e847763ceb14912592fcdf20317fb9a309a912))
247
313
 
314
+ ## [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)
248
315
 
249
316
  ### Bug Fixes
250
317
 
251
- * **editable-html:** Called onHandleAreaChange only for delete ([ad1c8aa](https://github.com/pie-framework/pie-lib/commit/ad1c8aa83eef71bd8201cb55ec21513c008f77a6))
318
+ - bump mathquill to 1.1.3 ([48b84c5](https://github.com/pie-framework/pie-lib/commit/48b84c534cbf519e172a80d18a48b26eda3cf7e6))
252
319
 
320
+ ## [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)
253
321
 
322
+ ### Reverts
254
323
 
324
+ - 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))
255
325
 
326
+ # [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)
256
327
 
257
- # [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)
328
+ ### Bug Fixes
258
329
 
330
+ - **editable-html:** add another sanity checks ([d872981](https://github.com/pie-framework/pie-lib/commit/d87298124408b55d75d42598c0272294a0881043))
331
+ - **editable-html:** add sanity check for drop / paste file - sentry ([d27d252](https://github.com/pie-framework/pie-lib/commit/d27d2522d0567333e0af1ce49a3793ebc44ef032))
332
+ - **editable-html:** add sanity check in respArea - toolbar ([1e4c9f2](https://github.com/pie-framework/pie-lib/commit/1e4c9f21be612409deee08cca6790f019f5d01d3))
333
+ - **editable-html:** potential fix - sanity check for node key in table - sentry ([f417c72](https://github.com/pie-framework/pie-lib/commit/f417c724c49e50e8c3c514b46b42f5d410da2942))
334
+ - code tweaks ([a390dcb](https://github.com/pie-framework/pie-lib/commit/a390dcbe22e9d37776b91071ec1502bbad59ff2a))
335
+ - duplicate image issue ([924a4df](https://github.com/pie-framework/pie-lib/commit/924a4df45cf9f1601704dd48c2a757dd02e2e7a3))
336
+ - tests ([41caca9](https://github.com/pie-framework/pie-lib/commit/41caca9855aa8099f5cb7286cc6660dd20d5c622))
259
337
 
260
338
  ### Features
261
339
 
262
- * **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))
340
+ - **characters:** special character accents span 2 rows, added border for visibility [PD-1462](<[c60b0bc](https://github.com/pie-framework/pie-lib/commit/c60b0bc8ff45cc01f53bc752fd5dd64da623f6be)>)
341
+ - **editable-html:** add image alignment buttons ([a076a41](https://github.com/pie-framework/pie-lib/commit/a076a4193c82dc552bd21de7a8f928d8481e73e6))
342
+ - **editable-html:** BREAKING CHANGE add image alignment buttons in image toolbar PD-1802 ([bcb59e5](https://github.com/pie-framework/pie-lib/commit/bcb59e5737fe61560fac8de01276baf187888048))
343
+ - **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))
344
+ - **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))
345
+ - **editable-html, render-ui:** wrap up PD-1802 ([e10babf](https://github.com/pie-framework/pie-lib/commit/e10babf2e80aed67c856e9e021e37072e3df33fb))
346
+ - **editor:** added insert spanish and special characters as default [PD-1883](<[26655ec](https://github.com/pie-framework/pie-lib/commit/26655ec87cb4b8a82357e88b62faad3fdc7c296a)>)
263
347
 
348
+ ### BREAKING CHANGES
264
349
 
350
+ - **editable-html:** Added new buttons in image toolbar.
351
+ The buttons control image horizontal alignment.
265
352
 
353
+ ## [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)
266
354
 
355
+ ### Bug Fixes
267
356
 
268
- # [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)
357
+ - running locally does not work ([ce2d09a](https://github.com/pie-framework/pie-lib/commit/ce2d09a3556937aea4a1c8075a2dbc7c1131fd5f))
269
358
 
359
+ ## [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)
270
360
 
271
361
  ### Bug Fixes
272
362
 
273
- * **editable-html:** fix style for table rendering PD-1459 ([7c139b5](https://github.com/pie-framework/pie-lib/commit/7c139b5))
274
- * **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))
275
- * **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))
363
+ - running locally does not work ([e2fbb74](https://github.com/pie-framework/pie-lib/commit/e2fbb74c79bbb2ad6e9af447af51687391d89ad3))
364
+ - **editable-html:** fix image remove ([0f446b3](https://github.com/pie-framework/pie-lib/commit/0f446b38d93fec1548b9ff5c73cc48f2f10d9397))
276
365
 
366
+ # [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)
277
367
 
278
368
  ### Features
279
369
 
280
- * **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))
281
- * **editor:** made sure cursor is visible before and after custom void elements [PD-1474] ([189ee2d](https://github.com/pie-framework/pie-lib/commit/189ee2d))
282
- * **editor:** made sure x<y is not removed from the math latex [PD-1475] ([ea94ad0](https://github.com/pie-framework/pie-lib/commit/ea94ad0))
283
- * **table:** made sure default border is 1 for tables [PD-1459] ([e8bd0d7](https://github.com/pie-framework/pie-lib/commit/e8bd0d7))
284
- * **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))
370
+ - **editable-html:** allow drop & paste images PD-581 ([f7ec0d4](https://github.com/pie-framework/pie-lib/commit/f7ec0d4578ededc095422356471fb5e9f2b29af9))
285
371
 
372
+ # [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)
286
373
 
374
+ ### Features
287
375
 
376
+ - **editable-html:** Added characters limit support PD-1681 ([9e7f6ad](https://github.com/pie-framework/pie-lib/commit/9e7f6add3f846d32265990aca98dfb5b4847bb95))
377
+ - **editable-html:** image resize functionality PD-1801 ([6f46903](https://github.com/pie-framework/pie-lib/commit/6f46903acdf791716263be33abe49235572421ad))
378
+ - **plugins:** added special characters adding capabilities [PD-1462](<[b9f41e1](https://github.com/pie-framework/pie-lib/commit/b9f41e11f44df140a66145d0b04558ca2b0ea48e)>)
288
379
 
380
+ ### BREAKING CHANGES
289
381
 
290
- ## [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)
382
+ - **editable-html:** Removed the percent buttons from editable-html image button. Added resize functionality.
383
+
384
+ ## [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)
291
385
 
292
386
  **Note:** Version bump only for package @pie-lib/editable-html
293
387
 
388
+ ## [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)
294
389
 
390
+ **Note:** Version bump only for package @pie-lib/editable-html
295
391
 
392
+ ## [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)
296
393
 
394
+ **Note:** Version bump only for package @pie-lib/editable-html
297
395
 
298
- ## [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)
396
+ ## [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)
299
397
 
300
398
  **Note:** Version bump only for package @pie-lib/editable-html
301
399
 
400
+ ## [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)
302
401
 
402
+ **Note:** Version bump only for package @pie-lib/editable-html
303
403
 
404
+ ## [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)
304
405
 
406
+ **Note:** Version bump only for package @pie-lib/editable-html
305
407
 
306
- ## [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)
408
+ # [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)
307
409
 
308
- **Note:** Version bump only for package @pie-lib/editable-html
410
+ ### Bug Fixes
309
411
 
412
+ - use error as a function ([c767c8b](https://github.com/pie-framework/pie-lib/commit/c767c8bdc5ace6006e86862704a26095fa4b16f6))
310
413
 
414
+ ### Features
311
415
 
416
+ - PD-1707 ([9762d1f](https://github.com/pie-framework/pie-lib/commit/9762d1f4ac1bd615db4f03dfd06809010213052d))
417
+ - PD-1707 show validation errors in ecr ([bb7e95c](https://github.com/pie-framework/pie-lib/commit/bb7e95c824ae802452720856ad1117aa21c5766f))
312
418
 
419
+ # [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)
313
420
 
314
- ## [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)
421
+ ### Features
315
422
 
316
- **Note:** Version bump only for package @pie-lib/editable-html
423
+ - **editable-html:** disabled add response area button when maxResponseArea value is reached PD-1699 ([9c28e5b](https://github.com/pie-framework/pie-lib/commit/9c28e5b1702995a497e8528038a1b9e71b72c84f))
424
+ - **editable-html:** PD-1707 add validation ui/ux to responses areas in ecr ([7381c58](https://github.com/pie-framework/pie-lib/commit/7381c581e9f1099f48f8cfbe307f23dbd8776773))
317
425
 
426
+ # [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)
318
427
 
428
+ ### Bug Fixes
319
429
 
430
+ - **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))
431
+ - **list:** fixed list in list issues [PD-1229](<[46dcec0](https://github.com/pie-framework/pie-lib/commit/46dcec0e20fc2d09969c45fd75426f647931ec08)>)
320
432
 
433
+ ### Features
321
434
 
322
- ## [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)
435
+ - **config-ui, editable-html:** add ui/ux validation for choices and editable html fields ([d40148f](https://github.com/pie-framework/pie-lib/commit/d40148f0f4b1232ce1506867a7424aa56e26c5ec))
436
+
437
+ ## [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)
323
438
 
324
439
  **Note:** Version bump only for package @pie-lib/editable-html
325
440
 
441
+ ## [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)
326
442
 
443
+ ### Bug Fixes
327
444
 
445
+ - **editable-html:** Added default values for responseAreaProps ([b49a919](https://github.com/pie-framework/pie-lib/commit/b49a919b4d5e336cb2a82e4e7926d72372369d3c))
328
446
 
447
+ ## [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)
329
448
 
330
- ## [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)
449
+ ### Bug Fixes
331
450
 
332
- **Note:** Version bump only for package @pie-lib/editable-html
451
+ - **editable-html:** Called onHandleAreaChange only for delete ([ad1c8aa](https://github.com/pie-framework/pie-lib/commit/ad1c8aa83eef71bd8201cb55ec21513c008f77a6))
333
452
 
453
+ # [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)
334
454
 
455
+ ### Features
335
456
 
457
+ - **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)>)
336
458
 
459
+ # [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)
337
460
 
338
- ## [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)
461
+ ### Bug Fixes
339
462
 
340
- **Note:** Version bump only for package @pie-lib/editable-html
463
+ - **editable-html:** fix style for table rendering PD-1459 ([7c139b5](https://github.com/pie-framework/pie-lib/commit/7c139b5))
464
+ - **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))
465
+ - **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)>)
341
466
 
467
+ ### Features
342
468
 
469
+ - **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))
470
+ - **editor:** made sure cursor is visible before and after custom void elements [PD-1474](<[189ee2d](https://github.com/pie-framework/pie-lib/commit/189ee2d)>)
471
+ - **editor:** made sure x<y is not removed from the math latex [PD-1475](<[ea94ad0](https://github.com/pie-framework/pie-lib/commit/ea94ad0)>)
472
+ - **table:** made sure default border is 1 for tables [PD-1459](<[e8bd0d7](https://github.com/pie-framework/pie-lib/commit/e8bd0d7)>)
473
+ - **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)>)
343
474
 
475
+ ## [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)
344
476
 
477
+ **Note:** Version bump only for package @pie-lib/editable-html
345
478
 
346
- ## [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)
479
+ ## [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)
347
480
 
348
481
  **Note:** Version bump only for package @pie-lib/editable-html
349
482
 
483
+ ## [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)
350
484
 
485
+ **Note:** Version bump only for package @pie-lib/editable-html
351
486
 
487
+ ## [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)
352
488
 
489
+ **Note:** Version bump only for package @pie-lib/editable-html
353
490
 
354
- ## [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)
491
+ ## [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)
355
492
 
356
493
  **Note:** Version bump only for package @pie-lib/editable-html
357
494
 
495
+ ## [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)
358
496
 
497
+ **Note:** Version bump only for package @pie-lib/editable-html
359
498
 
499
+ ## [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)
360
500
 
501
+ **Note:** Version bump only for package @pie-lib/editable-html
361
502
 
362
- ## [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)
363
-
503
+ ## [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)
364
504
 
365
- ### Bug Fixes
505
+ **Note:** Version bump only for package @pie-lib/editable-html
366
506
 
367
- * **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))
507
+ ## [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)
368
508
 
509
+ **Note:** Version bump only for package @pie-lib/editable-html
369
510
 
511
+ ## [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)
370
512
 
513
+ ### Bug Fixes
371
514
 
515
+ - **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)>)
372
516
 
373
517
  ## [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)
374
518
 
375
-
376
519
  ### Bug Fixes
377
520
 
378
- * **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))
379
-
380
-
381
-
382
-
521
+ - **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)>)
383
522
 
384
523
  ## [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)
385
524
 
386
-
387
525
  ### Bug Fixes
388
526
 
389
- * **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))
390
-
391
-
392
-
393
-
527
+ - **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)>)
394
528
 
395
529
  ## [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)
396
530
 
397
531
  **Note:** Version bump only for package @pie-lib/editable-html
398
532
 
399
-
400
-
401
-
402
-
403
533
  ## [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)
404
534
 
405
535
  **Note:** Version bump only for package @pie-lib/editable-html
406
536
 
407
-
408
-
409
-
410
-
411
537
  ## [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)
412
538
 
413
539
  **Note:** Version bump only for package @pie-lib/editable-html
414
540
 
415
-
416
-
417
-
418
-
419
541
  ## [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)
420
542
 
421
543
  **Note:** Version bump only for package @pie-lib/editable-html
422
544
 
423
-
424
-
425
-
426
-
427
545
  ## [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)
428
546
 
429
-
430
547
  ### Bug Fixes
431
548
 
432
- * **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))
433
-
434
-
435
-
436
-
549
+ - **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)>)
437
550
 
438
551
  ## [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)
439
552
 
440
-
441
553
  ### Bug Fixes
442
554
 
443
- * **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))
444
- * **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))
445
-
446
-
447
-
448
-
555
+ - **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)>)
556
+ - **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)>)
449
557
 
450
558
  ## [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)
451
559
 
452
-
453
560
  ### Bug Fixes
454
561
 
455
- * **table:** made sure inserting a table at last position works [PD-1240] ([e81ba95](https://github.com/pie-framework/pie-lib/commit/e81ba95))
456
-
457
-
458
-
459
-
562
+ - **table:** made sure inserting a table at last position works [PD-1240](<[e81ba95](https://github.com/pie-framework/pie-lib/commit/e81ba95)>)
460
563
 
461
564
  # [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)
462
565