@pie-lib/editable-html 7.17.4-next.42 → 7.17.4-next.437

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 (95) hide show
  1. package/CHANGELOG.json +165 -0
  2. package/CHANGELOG.md +286 -0
  3. package/lib/editor.js +325 -178
  4. package/lib/editor.js.map +1 -1
  5. package/lib/index.js +63 -52
  6. package/lib/index.js.map +1 -1
  7. package/lib/parse-html.js.map +1 -1
  8. package/lib/plugins/characters/custom-popover.js +70 -0
  9. package/lib/plugins/characters/custom-popover.js.map +1 -0
  10. package/lib/plugins/characters/index.js +266 -0
  11. package/lib/plugins/characters/index.js.map +1 -0
  12. package/lib/plugins/characters/utils.js +382 -0
  13. package/lib/plugins/characters/utils.js.map +1 -0
  14. package/lib/plugins/image/component.js +251 -77
  15. package/lib/plugins/image/component.js.map +1 -1
  16. package/lib/plugins/image/image-toolbar.js +49 -63
  17. package/lib/plugins/image/image-toolbar.js.map +1 -1
  18. package/lib/plugins/image/index.js +56 -19
  19. package/lib/plugins/image/index.js.map +1 -1
  20. package/lib/plugins/image/insert-image-handler.js +9 -15
  21. package/lib/plugins/image/insert-image-handler.js.map +1 -1
  22. package/lib/plugins/index.js +20 -12
  23. package/lib/plugins/index.js.map +1 -1
  24. package/lib/plugins/list/index.js +82 -14
  25. package/lib/plugins/list/index.js.map +1 -1
  26. package/lib/plugins/math/index.js +50 -55
  27. package/lib/plugins/math/index.js.map +1 -1
  28. package/lib/plugins/media/index.js +26 -25
  29. package/lib/plugins/media/index.js.map +1 -1
  30. package/lib/plugins/media/media-dialog.js +45 -56
  31. package/lib/plugins/media/media-dialog.js.map +1 -1
  32. package/lib/plugins/media/media-toolbar.js +24 -30
  33. package/lib/plugins/media/media-toolbar.js.map +1 -1
  34. package/lib/plugins/media/media-wrapper.js +28 -35
  35. package/lib/plugins/media/media-wrapper.js.map +1 -1
  36. package/lib/plugins/respArea/drag-in-the-blank/choice.js +68 -46
  37. package/lib/plugins/respArea/drag-in-the-blank/choice.js.map +1 -1
  38. package/lib/plugins/respArea/drag-in-the-blank/index.js +12 -12
  39. package/lib/plugins/respArea/drag-in-the-blank/index.js.map +1 -1
  40. package/lib/plugins/respArea/explicit-constructed-response/index.js +10 -9
  41. package/lib/plugins/respArea/explicit-constructed-response/index.js.map +1 -1
  42. package/lib/plugins/respArea/icons/index.js +11 -11
  43. package/lib/plugins/respArea/icons/index.js.map +1 -1
  44. package/lib/plugins/respArea/index.js +58 -42
  45. package/lib/plugins/respArea/index.js.map +1 -1
  46. package/lib/plugins/respArea/inline-dropdown/index.js +8 -8
  47. package/lib/plugins/respArea/inline-dropdown/index.js.map +1 -1
  48. package/lib/plugins/respArea/utils.js +5 -5
  49. package/lib/plugins/respArea/utils.js.map +1 -1
  50. package/lib/plugins/table/icons/index.js +12 -12
  51. package/lib/plugins/table/icons/index.js.map +1 -1
  52. package/lib/plugins/table/index.js +83 -27
  53. package/lib/plugins/table/index.js.map +1 -1
  54. package/lib/plugins/table/table-toolbar.js +41 -50
  55. package/lib/plugins/table/table-toolbar.js.map +1 -1
  56. package/lib/plugins/toolbar/default-toolbar.js +14 -11
  57. package/lib/plugins/toolbar/default-toolbar.js.map +1 -1
  58. package/lib/plugins/toolbar/done-button.js +5 -5
  59. package/lib/plugins/toolbar/done-button.js.map +1 -1
  60. package/lib/plugins/toolbar/editor-and-toolbar.js +43 -43
  61. package/lib/plugins/toolbar/editor-and-toolbar.js.map +1 -1
  62. package/lib/plugins/toolbar/index.js +5 -5
  63. package/lib/plugins/toolbar/index.js.map +1 -1
  64. package/lib/plugins/toolbar/toolbar-buttons.js +49 -52
  65. package/lib/plugins/toolbar/toolbar-buttons.js.map +1 -1
  66. package/lib/plugins/toolbar/toolbar.js +60 -64
  67. package/lib/plugins/toolbar/toolbar.js.map +1 -1
  68. package/lib/plugins/utils.js +1 -1
  69. package/lib/plugins/utils.js.map +1 -1
  70. package/lib/serialization.js +32 -9
  71. package/lib/serialization.js.map +1 -1
  72. package/lib/theme.js.map +1 -1
  73. package/package.json +5 -5
  74. package/src/editor.jsx +165 -30
  75. package/src/index.jsx +20 -3
  76. package/src/plugins/characters/custom-popover.js +45 -0
  77. package/src/plugins/characters/index.jsx +244 -0
  78. package/src/plugins/characters/utils.js +448 -0
  79. package/src/plugins/image/component.jsx +202 -21
  80. package/src/plugins/image/image-toolbar.jsx +26 -20
  81. package/src/plugins/image/index.jsx +40 -9
  82. package/src/plugins/index.jsx +4 -1
  83. package/src/plugins/list/index.jsx +67 -5
  84. package/src/plugins/math/index.jsx +31 -37
  85. package/src/plugins/media/index.jsx +3 -0
  86. package/src/plugins/media/media-dialog.js +1 -1
  87. package/src/plugins/respArea/drag-in-the-blank/choice.jsx +28 -1
  88. package/src/plugins/respArea/explicit-constructed-response/index.jsx +3 -3
  89. package/src/plugins/respArea/index.jsx +51 -31
  90. package/src/plugins/table/index.jsx +61 -14
  91. package/src/plugins/toolbar/default-toolbar.jsx +8 -0
  92. package/src/plugins/toolbar/editor-and-toolbar.jsx +12 -4
  93. package/src/plugins/toolbar/toolbar-buttons.jsx +13 -2
  94. package/src/plugins/toolbar/toolbar.jsx +14 -4
  95. 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,292 @@
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
+ ## [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)
7
+
8
+ **Note:** Version bump only for package @pie-lib/editable-html
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+ **Note:** Version bump only for package @pie-lib/editable-html
17
+
18
+
19
+
20
+
21
+
22
+ ## [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)
23
+
24
+ **Note:** Version bump only for package @pie-lib/editable-html
25
+
26
+
27
+
28
+
29
+
30
+ ## [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)
31
+
32
+ **Note:** Version bump only for package @pie-lib/editable-html
33
+
34
+
35
+
36
+
37
+
38
+ ## [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)
39
+
40
+ **Note:** Version bump only for package @pie-lib/editable-html
41
+
42
+
43
+
44
+
45
+
46
+ # [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)
47
+
48
+
49
+ ### Bug Fixes
50
+
51
+ * use error as a function ([c767c8b](https://github.com/pie-framework/pie-lib/commit/c767c8bdc5ace6006e86862704a26095fa4b16f6))
52
+
53
+
54
+ ### Features
55
+
56
+ * PD-1707 ([9762d1f](https://github.com/pie-framework/pie-lib/commit/9762d1f4ac1bd615db4f03dfd06809010213052d))
57
+ * PD-1707 show validation errors in ecr ([bb7e95c](https://github.com/pie-framework/pie-lib/commit/bb7e95c824ae802452720856ad1117aa21c5766f))
58
+
59
+
60
+
61
+
62
+
63
+ # [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)
64
+
65
+
66
+ ### Features
67
+
68
+ * **editable-html:** disabled add response area button when maxResponseArea value is reached PD-1699 ([9c28e5b](https://github.com/pie-framework/pie-lib/commit/9c28e5b1702995a497e8528038a1b9e71b72c84f))
69
+ * **editable-html:** PD-1707 add validation ui/ux to responses areas in ecr ([7381c58](https://github.com/pie-framework/pie-lib/commit/7381c581e9f1099f48f8cfbe307f23dbd8776773))
70
+
71
+
72
+
73
+
74
+
75
+ # [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)
76
+
77
+
78
+ ### Bug Fixes
79
+
80
+ * **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))
81
+ * **list:** fixed list in list issues [PD-1229] ([46dcec0](https://github.com/pie-framework/pie-lib/commit/46dcec0e20fc2d09969c45fd75426f647931ec08))
82
+
83
+
84
+ ### Features
85
+
86
+ * **config-ui, editable-html:** add ui/ux validation for choices and editable html fields ([d40148f](https://github.com/pie-framework/pie-lib/commit/d40148f0f4b1232ce1506867a7424aa56e26c5ec))
87
+
88
+
89
+
90
+
91
+
92
+ ## [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)
93
+
94
+ **Note:** Version bump only for package @pie-lib/editable-html
95
+
96
+
97
+
98
+
99
+
100
+ ## [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)
101
+
102
+
103
+ ### Bug Fixes
104
+
105
+ * **editable-html:** Added default values for responseAreaProps ([b49a919](https://github.com/pie-framework/pie-lib/commit/b49a919b4d5e336cb2a82e4e7926d72372369d3c))
106
+
107
+
108
+
109
+
110
+
111
+ ## [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)
112
+
113
+
114
+ ### Bug Fixes
115
+
116
+ * **editable-html:** Called onHandleAreaChange only for delete ([ad1c8aa](https://github.com/pie-framework/pie-lib/commit/ad1c8aa83eef71bd8201cb55ec21513c008f77a6))
117
+
118
+
119
+
120
+
121
+
122
+ # [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)
123
+
124
+
125
+ ### Features
126
+
127
+ * **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))
128
+
129
+
130
+
131
+
132
+
133
+ # [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)
134
+
135
+
136
+ ### Bug Fixes
137
+
138
+ * **editable-html:** fix style for table rendering PD-1459 ([7c139b5](https://github.com/pie-framework/pie-lib/commit/7c139b5))
139
+ * **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))
140
+ * **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))
141
+
142
+
143
+ ### Features
144
+
145
+ * **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))
146
+ * **editor:** made sure cursor is visible before and after custom void elements [PD-1474] ([189ee2d](https://github.com/pie-framework/pie-lib/commit/189ee2d))
147
+ * **editor:** made sure x<y is not removed from the math latex [PD-1475] ([ea94ad0](https://github.com/pie-framework/pie-lib/commit/ea94ad0))
148
+ * **table:** made sure default border is 1 for tables [PD-1459] ([e8bd0d7](https://github.com/pie-framework/pie-lib/commit/e8bd0d7))
149
+ * **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))
150
+
151
+
152
+
153
+
154
+
155
+ ## [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)
156
+
157
+ **Note:** Version bump only for package @pie-lib/editable-html
158
+
159
+
160
+
161
+
162
+
163
+ ## [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)
164
+
165
+ **Note:** Version bump only for package @pie-lib/editable-html
166
+
167
+
168
+
169
+
170
+
171
+ ## [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)
172
+
173
+ **Note:** Version bump only for package @pie-lib/editable-html
174
+
175
+
176
+
177
+
178
+
179
+ ## [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)
180
+
181
+ **Note:** Version bump only for package @pie-lib/editable-html
182
+
183
+
184
+
185
+
186
+
187
+ ## [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)
188
+
189
+ **Note:** Version bump only for package @pie-lib/editable-html
190
+
191
+
192
+
193
+
194
+
195
+ ## [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)
196
+
197
+ **Note:** Version bump only for package @pie-lib/editable-html
198
+
199
+
200
+
201
+
202
+
203
+ ## [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)
204
+
205
+ **Note:** Version bump only for package @pie-lib/editable-html
206
+
207
+
208
+
209
+
210
+
211
+ ## [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)
212
+
213
+ **Note:** Version bump only for package @pie-lib/editable-html
214
+
215
+
216
+
217
+
218
+
219
+ ## [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)
220
+
221
+ **Note:** Version bump only for package @pie-lib/editable-html
222
+
223
+
224
+
225
+
226
+
227
+ ## [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)
228
+
229
+
230
+ ### Bug Fixes
231
+
232
+ * **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))
233
+
234
+
235
+
236
+
237
+
238
+ ## [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)
239
+
240
+
241
+ ### Bug Fixes
242
+
243
+ * **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))
244
+
245
+
246
+
247
+
248
+
249
+ ## [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)
250
+
251
+
252
+ ### Bug Fixes
253
+
254
+ * **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))
255
+
256
+
257
+
258
+
259
+
260
+ ## [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)
261
+
262
+ **Note:** Version bump only for package @pie-lib/editable-html
263
+
264
+
265
+
266
+
267
+
268
+ ## [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)
269
+
270
+ **Note:** Version bump only for package @pie-lib/editable-html
271
+
272
+
273
+
274
+
275
+
276
+ ## [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)
277
+
278
+ **Note:** Version bump only for package @pie-lib/editable-html
279
+
280
+
281
+
282
+
283
+
284
+ ## [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)
285
+
286
+ **Note:** Version bump only for package @pie-lib/editable-html
287
+
288
+
289
+
290
+
291
+
6
292
  ## [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
293
 
8
294