@pie-lib/editable-html 7.17.4-next.50 → 7.17.4-next.526

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 (98) hide show
  1. package/CHANGELOG.json +165 -0
  2. package/CHANGELOG.md +421 -0
  3. package/lib/editor.js +391 -174
  4. package/lib/editor.js.map +1 -1
  5. package/lib/index.js +66 -53
  6. package/lib/index.js.map +1 -1
  7. package/lib/parse-html.js.map +1 -1
  8. package/lib/plugins/characters/custom-popper.js +73 -0
  9. package/lib/plugins/characters/custom-popper.js.map +1 -0
  10. package/lib/plugins/characters/index.js +285 -0
  11. package/lib/plugins/characters/index.js.map +1 -0
  12. package/lib/plugins/characters/utils.js +381 -0
  13. package/lib/plugins/characters/utils.js.map +1 -0
  14. package/lib/plugins/image/alt-dialog.js +119 -0
  15. package/lib/plugins/image/alt-dialog.js.map +1 -0
  16. package/lib/plugins/image/component.js +253 -77
  17. package/lib/plugins/image/component.js.map +1 -1
  18. package/lib/plugins/image/image-toolbar.js +95 -61
  19. package/lib/plugins/image/image-toolbar.js.map +1 -1
  20. package/lib/plugins/image/index.js +62 -20
  21. package/lib/plugins/image/index.js.map +1 -1
  22. package/lib/plugins/image/insert-image-handler.js +9 -15
  23. package/lib/plugins/image/insert-image-handler.js.map +1 -1
  24. package/lib/plugins/index.js +20 -12
  25. package/lib/plugins/index.js.map +1 -1
  26. package/lib/plugins/list/index.js +82 -14
  27. package/lib/plugins/list/index.js.map +1 -1
  28. package/lib/plugins/math/index.js +50 -55
  29. package/lib/plugins/math/index.js.map +1 -1
  30. package/lib/plugins/media/index.js +26 -25
  31. package/lib/plugins/media/index.js.map +1 -1
  32. package/lib/plugins/media/media-dialog.js +45 -56
  33. package/lib/plugins/media/media-dialog.js.map +1 -1
  34. package/lib/plugins/media/media-toolbar.js +24 -30
  35. package/lib/plugins/media/media-toolbar.js.map +1 -1
  36. package/lib/plugins/media/media-wrapper.js +28 -35
  37. package/lib/plugins/media/media-wrapper.js.map +1 -1
  38. package/lib/plugins/respArea/drag-in-the-blank/choice.js +68 -46
  39. package/lib/plugins/respArea/drag-in-the-blank/choice.js.map +1 -1
  40. package/lib/plugins/respArea/drag-in-the-blank/index.js +12 -12
  41. package/lib/plugins/respArea/drag-in-the-blank/index.js.map +1 -1
  42. package/lib/plugins/respArea/explicit-constructed-response/index.js +10 -9
  43. package/lib/plugins/respArea/explicit-constructed-response/index.js.map +1 -1
  44. package/lib/plugins/respArea/icons/index.js +11 -11
  45. package/lib/plugins/respArea/icons/index.js.map +1 -1
  46. package/lib/plugins/respArea/index.js +58 -42
  47. package/lib/plugins/respArea/index.js.map +1 -1
  48. package/lib/plugins/respArea/inline-dropdown/index.js +8 -8
  49. package/lib/plugins/respArea/inline-dropdown/index.js.map +1 -1
  50. package/lib/plugins/respArea/utils.js +5 -5
  51. package/lib/plugins/respArea/utils.js.map +1 -1
  52. package/lib/plugins/table/icons/index.js +12 -12
  53. package/lib/plugins/table/icons/index.js.map +1 -1
  54. package/lib/plugins/table/index.js +83 -27
  55. package/lib/plugins/table/index.js.map +1 -1
  56. package/lib/plugins/table/table-toolbar.js +41 -50
  57. package/lib/plugins/table/table-toolbar.js.map +1 -1
  58. package/lib/plugins/toolbar/default-toolbar.js +19 -13
  59. package/lib/plugins/toolbar/default-toolbar.js.map +1 -1
  60. package/lib/plugins/toolbar/done-button.js +5 -5
  61. package/lib/plugins/toolbar/done-button.js.map +1 -1
  62. package/lib/plugins/toolbar/editor-and-toolbar.js +55 -45
  63. package/lib/plugins/toolbar/editor-and-toolbar.js.map +1 -1
  64. package/lib/plugins/toolbar/index.js +5 -5
  65. package/lib/plugins/toolbar/index.js.map +1 -1
  66. package/lib/plugins/toolbar/toolbar-buttons.js +49 -52
  67. package/lib/plugins/toolbar/toolbar-buttons.js.map +1 -1
  68. package/lib/plugins/toolbar/toolbar.js +69 -63
  69. package/lib/plugins/toolbar/toolbar.js.map +1 -1
  70. package/lib/plugins/utils.js +1 -1
  71. package/lib/plugins/utils.js.map +1 -1
  72. package/lib/serialization.js +32 -9
  73. package/lib/serialization.js.map +1 -1
  74. package/lib/theme.js.map +1 -1
  75. package/package.json +7 -6
  76. package/src/editor.jsx +225 -26
  77. package/src/index.jsx +22 -5
  78. package/src/plugins/characters/custom-popper.js +48 -0
  79. package/src/plugins/characters/index.jsx +268 -0
  80. package/src/plugins/characters/utils.js +447 -0
  81. package/src/plugins/image/alt-dialog.jsx +69 -0
  82. package/src/plugins/image/component.jsx +204 -21
  83. package/src/plugins/image/image-toolbar.jsx +68 -22
  84. package/src/plugins/image/index.jsx +47 -9
  85. package/src/plugins/index.jsx +4 -1
  86. package/src/plugins/list/index.jsx +67 -5
  87. package/src/plugins/math/index.jsx +31 -37
  88. package/src/plugins/media/index.jsx +3 -0
  89. package/src/plugins/media/media-dialog.js +1 -1
  90. package/src/plugins/respArea/drag-in-the-blank/choice.jsx +28 -1
  91. package/src/plugins/respArea/explicit-constructed-response/index.jsx +3 -3
  92. package/src/plugins/respArea/index.jsx +50 -31
  93. package/src/plugins/table/index.jsx +63 -14
  94. package/src/plugins/toolbar/default-toolbar.jsx +20 -2
  95. package/src/plugins/toolbar/editor-and-toolbar.jsx +39 -5
  96. package/src/plugins/toolbar/toolbar-buttons.jsx +13 -2
  97. package/src/plugins/toolbar/toolbar.jsx +22 -4
  98. package/src/serialization.jsx +19 -3
package/CHANGELOG.json CHANGED
@@ -3158,5 +3158,170 @@
3158
3158
  "committerDate": "2021-08-12 13:40:51 +0300",
3159
3159
  "isTagged": true,
3160
3160
  "tag": "@pie-lib/editable-html@7.17.3"
3161
+ },
3162
+ {
3163
+ "type": "fix",
3164
+ "scope": "editor",
3165
+ "subject": "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]",
3166
+ "merge": null,
3167
+ "header": "fix(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]",
3168
+ "body": null,
3169
+ "footer": null,
3170
+ "notes": [],
3171
+ "hash": "e74f00a7949ab1ab993fb618d087f6156ab0e67f",
3172
+ "gitTags": " (origin/fix/editable-html-dom-blur)",
3173
+ "committerDate": "2021-09-20 11:10:47 +0300",
3174
+ "isTagged": true,
3175
+ "tag": "@pie-lib/editable-html@7.17.8"
3176
+ },
3177
+ {
3178
+ "type": "fix",
3179
+ "scope": "editor",
3180
+ "subject": "used dom refs in order to check if the editor is still in focus [PD-1126]",
3181
+ "merge": null,
3182
+ "header": "fix(editor): used dom refs in order to check if the editor is still in focus [PD-1126]",
3183
+ "body": null,
3184
+ "footer": null,
3185
+ "notes": [],
3186
+ "hash": "99e0f72de5a208c5760723bad4698b9115ac80e7",
3187
+ "gitTags": " (origin/fix/editable-html-dom-blur-query-fix)",
3188
+ "committerDate": "2021-09-20 13:43:11 +0300",
3189
+ "isTagged": true,
3190
+ "tag": "@pie-lib/editable-html@7.17.9"
3191
+ },
3192
+ {
3193
+ "type": "fix",
3194
+ "scope": "serialization",
3195
+ "subject": "made sure that units are not added to numbered values when they are encountered [PD-722]",
3196
+ "merge": null,
3197
+ "header": "fix(serialization): made sure that units are not added to numbered values when they are encountered [PD-722]",
3198
+ "body": null,
3199
+ "footer": null,
3200
+ "notes": [],
3201
+ "hash": "8d229cf92ce1cf68db194d281803a79c03141d8a",
3202
+ "gitTags": " (origin/fix/PD-722-no-unit-adding)",
3203
+ "committerDate": "2021-09-27 15:01:05 +0300",
3204
+ "isTagged": true,
3205
+ "tag": "@pie-lib/editable-html@7.17.10"
3206
+ },
3207
+ {
3208
+ "type": "fix",
3209
+ "scope": "editor",
3210
+ "subject": "made sure space is added after table even when there is a div wrapper [PD-1614]",
3211
+ "merge": null,
3212
+ "header": "fix(editor): made sure space is added after table even when there is a div wrapper [PD-1614]",
3213
+ "body": null,
3214
+ "footer": null,
3215
+ "notes": [],
3216
+ "hash": "5aa8bd167705a4715b4e9835d6031502ea122980",
3217
+ "gitTags": " (origin/fix/PD-1614-table-space-after)",
3218
+ "committerDate": "2022-02-21 12:39:01 +0200",
3219
+ "isTagged": true,
3220
+ "tag": "@pie-lib/editable-html@7.18.0"
3221
+ },
3222
+ {
3223
+ "type": "feat",
3224
+ "scope": "editor",
3225
+ "subject": "made sure x<y is not removed from the math latex [PD-1475]",
3226
+ "merge": null,
3227
+ "header": "feat(editor): made sure x<y is not removed from the math latex [PD-1475]",
3228
+ "body": null,
3229
+ "footer": null,
3230
+ "notes": [],
3231
+ "hash": "ea94ad06a75c5caae5d2ad18bc68634c99541e0f",
3232
+ "gitTags": " (origin/feat/PD-1475-math-serialization)",
3233
+ "committerDate": "2022-01-28 10:36:25 +0200",
3234
+ "isTagged": true,
3235
+ "tag": "@pie-lib/editable-html@7.18.0"
3236
+ },
3237
+ {
3238
+ "type": "fix",
3239
+ "scope": "editable-html",
3240
+ "subject": "Insert button from video/audio modal can't be pressed if the URL is empty PD-1488",
3241
+ "merge": null,
3242
+ "header": "fix(editable-html): Insert button from video/audio modal can't be pressed if the URL is empty PD-1488",
3243
+ "body": null,
3244
+ "footer": null,
3245
+ "notes": [],
3246
+ "hash": "6c7c1f66c3b916b60c66ce428b9316bfa2d35d1e",
3247
+ "gitTags": " (origin/fix/PD-1488)",
3248
+ "committerDate": "2022-01-19 14:48:55 +0200",
3249
+ "isTagged": true,
3250
+ "tag": "@pie-lib/editable-html@7.18.0"
3251
+ },
3252
+ {
3253
+ "type": "feat",
3254
+ "scope": "editor",
3255
+ "subject": "made sure cursor is visible before and after custom void elements [PD-1474]",
3256
+ "merge": null,
3257
+ "header": "feat(editor): made sure cursor is visible before and after custom void elements [PD-1474]",
3258
+ "body": null,
3259
+ "footer": null,
3260
+ "notes": [],
3261
+ "hash": "189ee2d91dbf40f9ae9fdd49e058a73ba76364ab",
3262
+ "gitTags": " (origin/feat/PD-1474-cursor-and-spacing)",
3263
+ "committerDate": "2022-01-18 14:29:08 +0200",
3264
+ "isTagged": true,
3265
+ "tag": "@pie-lib/editable-html@7.18.0"
3266
+ },
3267
+ {
3268
+ "type": "feat",
3269
+ "scope": "table",
3270
+ "subject": "made sure focus is switched to first cell of the table when adding one [PD-1455]",
3271
+ "merge": null,
3272
+ "header": "feat(table): made sure focus is switched to first cell of the table when adding one [PD-1455]",
3273
+ "body": null,
3274
+ "footer": null,
3275
+ "notes": [],
3276
+ "hash": "907c230457754e35804138afa7de87c25f27241e",
3277
+ "gitTags": "",
3278
+ "committerDate": "2021-12-27 17:10:59 +0200",
3279
+ "isTagged": true,
3280
+ "tag": "@pie-lib/editable-html@7.18.0"
3281
+ },
3282
+ {
3283
+ "type": "feat",
3284
+ "scope": "table",
3285
+ "subject": "made sure default border is 1 for tables [PD-1459]",
3286
+ "merge": null,
3287
+ "header": "feat(table): made sure default border is 1 for tables [PD-1459]",
3288
+ "body": null,
3289
+ "footer": null,
3290
+ "notes": [],
3291
+ "hash": "e8bd0d746ce367499b26883183e1e79babadee4a",
3292
+ "gitTags": "",
3293
+ "committerDate": "2021-12-13 18:01:26 +0200",
3294
+ "isTagged": true,
3295
+ "tag": "@pie-lib/editable-html@7.18.0"
3296
+ },
3297
+ {
3298
+ "type": "fix",
3299
+ "scope": "editable-html",
3300
+ "subject": "fix style for table rendering PD-1459",
3301
+ "merge": null,
3302
+ "header": "fix(editable-html): fix style for table rendering PD-1459",
3303
+ "body": null,
3304
+ "footer": null,
3305
+ "notes": [],
3306
+ "hash": "7c139b59bd45f49b3b57ea8fa3ce6d0136b996c1",
3307
+ "gitTags": "",
3308
+ "committerDate": "2021-12-10 10:26:42 +0200",
3309
+ "isTagged": true,
3310
+ "tag": "@pie-lib/editable-html@7.18.0"
3311
+ },
3312
+ {
3313
+ "type": "feat",
3314
+ "scope": "editable-html",
3315
+ "subject": "drag-in-the-blank visually indicate when response area is selected, hide non-applicable tools PD-1383",
3316
+ "merge": null,
3317
+ "header": "feat(editable-html): drag-in-the-blank visually indicate when response area is selected, hide non-applicable tools PD-1383",
3318
+ "body": null,
3319
+ "footer": null,
3320
+ "notes": [],
3321
+ "hash": "a3b7d0898a1bb3d1c3626f05a4fcdae4371e9f6f",
3322
+ "gitTags": "",
3323
+ "committerDate": "2021-11-12 13:23:37 +0200",
3324
+ "isTagged": true,
3325
+ "tag": "@pie-lib/editable-html@7.18.0"
3161
3326
  }
3162
3327
  ]
package/CHANGELOG.md CHANGED
@@ -3,6 +3,427 @@
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)
7
+
8
+ **Note:** Version bump only for package @pie-lib/editable-html
9
+
10
+
11
+
12
+
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)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **editable-html:** fix paste text PD-1899 ([a1e8477](https://github.com/pie-framework/pie-lib/commit/a1e847763ceb14912592fcdf20317fb9a309a912))
20
+
21
+
22
+
23
+
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)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * bump mathquill to 1.1.3 ([48b84c5](https://github.com/pie-framework/pie-lib/commit/48b84c534cbf519e172a80d18a48b26eda3cf7e6))
31
+
32
+
33
+
34
+
35
+
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
+
38
+
39
+ ### Reverts
40
+
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
+
43
+
44
+
45
+
46
+
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)
48
+
49
+
50
+ ### Bug Fixes
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))
59
+
60
+
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))
70
+
71
+
72
+ ### BREAKING CHANGES
73
+
74
+ * **editable-html:** Added new buttons in image toolbar.
75
+ The buttons control image horizontal alignment.
76
+
77
+
78
+
79
+
80
+
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)
82
+
83
+
84
+ ### Bug Fixes
85
+
86
+ * running locally does not work ([ce2d09a](https://github.com/pie-framework/pie-lib/commit/ce2d09a3556937aea4a1c8075a2dbc7c1131fd5f))
87
+
88
+
89
+
90
+
91
+
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)
93
+
94
+
95
+ ### Bug Fixes
96
+
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))
99
+
100
+
101
+
102
+
103
+
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)
105
+
106
+
107
+ ### Features
108
+
109
+ * **editable-html:** allow drop & paste images PD-581 ([f7ec0d4](https://github.com/pie-framework/pie-lib/commit/f7ec0d4578ededc095422356471fb5e9f2b29af9))
110
+
111
+
112
+
113
+
114
+
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)
116
+
117
+
118
+ ### Features
119
+
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))
123
+
124
+
125
+ ### BREAKING CHANGES
126
+
127
+ * **editable-html:** Removed the percent buttons from editable-html image button. Added resize functionality.
128
+
129
+
130
+
131
+
132
+
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)
134
+
135
+ **Note:** Version bump only for package @pie-lib/editable-html
136
+
137
+
138
+
139
+
140
+
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)
142
+
143
+ **Note:** Version bump only for package @pie-lib/editable-html
144
+
145
+
146
+
147
+
148
+
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)
150
+
151
+ **Note:** Version bump only for package @pie-lib/editable-html
152
+
153
+
154
+
155
+
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)
158
+
159
+ **Note:** Version bump only for package @pie-lib/editable-html
160
+
161
+
162
+
163
+
164
+
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)
166
+
167
+ **Note:** Version bump only for package @pie-lib/editable-html
168
+
169
+
170
+
171
+
172
+
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)
174
+
175
+ **Note:** Version bump only for package @pie-lib/editable-html
176
+
177
+
178
+
179
+
180
+
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)
182
+
183
+
184
+ ### Bug Fixes
185
+
186
+ * use error as a function ([c767c8b](https://github.com/pie-framework/pie-lib/commit/c767c8bdc5ace6006e86862704a26095fa4b16f6))
187
+
188
+
189
+ ### Features
190
+
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))
193
+
194
+
195
+
196
+
197
+
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)
199
+
200
+
201
+ ### Features
202
+
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))
205
+
206
+
207
+
208
+
209
+
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)
211
+
212
+
213
+ ### Bug Fixes
214
+
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))
217
+
218
+
219
+ ### Features
220
+
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))
222
+
223
+
224
+
225
+
226
+
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)
228
+
229
+ **Note:** Version bump only for package @pie-lib/editable-html
230
+
231
+
232
+
233
+
234
+
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
+
237
+
238
+ ### Bug Fixes
239
+
240
+ * **editable-html:** Added default values for responseAreaProps ([b49a919](https://github.com/pie-framework/pie-lib/commit/b49a919b4d5e336cb2a82e4e7926d72372369d3c))
241
+
242
+
243
+
244
+
245
+
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)
247
+
248
+
249
+ ### Bug Fixes
250
+
251
+ * **editable-html:** Called onHandleAreaChange only for delete ([ad1c8aa](https://github.com/pie-framework/pie-lib/commit/ad1c8aa83eef71bd8201cb55ec21513c008f77a6))
252
+
253
+
254
+
255
+
256
+
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)
258
+
259
+
260
+ ### Features
261
+
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))
263
+
264
+
265
+
266
+
267
+
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)
269
+
270
+
271
+ ### Bug Fixes
272
+
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))
276
+
277
+
278
+ ### Features
279
+
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))
285
+
286
+
287
+
288
+
289
+
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)
291
+
292
+ **Note:** Version bump only for package @pie-lib/editable-html
293
+
294
+
295
+
296
+
297
+
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)
299
+
300
+ **Note:** Version bump only for package @pie-lib/editable-html
301
+
302
+
303
+
304
+
305
+
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)
307
+
308
+ **Note:** Version bump only for package @pie-lib/editable-html
309
+
310
+
311
+
312
+
313
+
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)
315
+
316
+ **Note:** Version bump only for package @pie-lib/editable-html
317
+
318
+
319
+
320
+
321
+
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)
323
+
324
+ **Note:** Version bump only for package @pie-lib/editable-html
325
+
326
+
327
+
328
+
329
+
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)
331
+
332
+ **Note:** Version bump only for package @pie-lib/editable-html
333
+
334
+
335
+
336
+
337
+
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)
339
+
340
+ **Note:** Version bump only for package @pie-lib/editable-html
341
+
342
+
343
+
344
+
345
+
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)
347
+
348
+ **Note:** Version bump only for package @pie-lib/editable-html
349
+
350
+
351
+
352
+
353
+
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)
355
+
356
+ **Note:** Version bump only for package @pie-lib/editable-html
357
+
358
+
359
+
360
+
361
+
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
+
364
+
365
+ ### Bug Fixes
366
+
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))
368
+
369
+
370
+
371
+
372
+
373
+ ## [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
+
375
+
376
+ ### Bug Fixes
377
+
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
+
383
+
384
+ ## [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
+
386
+
387
+ ### Bug Fixes
388
+
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
+
394
+
395
+ ## [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
+
397
+ **Note:** Version bump only for package @pie-lib/editable-html
398
+
399
+
400
+
401
+
402
+
403
+ ## [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
+
405
+ **Note:** Version bump only for package @pie-lib/editable-html
406
+
407
+
408
+
409
+
410
+
411
+ ## [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
+
413
+ **Note:** Version bump only for package @pie-lib/editable-html
414
+
415
+
416
+
417
+
418
+
419
+ ## [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
+
421
+ **Note:** Version bump only for package @pie-lib/editable-html
422
+
423
+
424
+
425
+
426
+
6
427
  ## [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)
7
428
 
8
429