@pie-element/drawing-response 12.1.2-next.2 → 12.1.2

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 (172) hide show
  1. package/CHANGELOG.json +547 -0
  2. package/CHANGELOG.md +1966 -0
  3. package/LICENSE.md +5 -0
  4. package/README.md +1 -0
  5. package/configure/CHANGELOG.json +367 -0
  6. package/configure/CHANGELOG.md +1766 -0
  7. package/configure/lib/button.js +37 -0
  8. package/configure/lib/button.js.map +1 -0
  9. package/configure/lib/defaults.js +116 -0
  10. package/configure/lib/defaults.js.map +1 -0
  11. package/configure/lib/image-container.js +307 -0
  12. package/configure/lib/image-container.js.map +1 -0
  13. package/configure/lib/index.js +147 -0
  14. package/configure/lib/index.js.map +1 -0
  15. package/configure/lib/root.js +219 -0
  16. package/configure/lib/root.js.map +1 -0
  17. package/configure/package.json +24 -0
  18. package/configure/src/__tests__/image-container.test.jsx +231 -0
  19. package/configure/src/__tests__/index.test.js +72 -0
  20. package/configure/src/__tests__/root.test.jsx +110 -0
  21. package/configure/src/button.jsx +33 -0
  22. package/configure/src/defaults.js +80 -0
  23. package/configure/src/image-container.jsx +316 -0
  24. package/configure/src/index.js +167 -0
  25. package/configure/src/root.jsx +198 -0
  26. package/controller/CHANGELOG.json +52 -0
  27. package/controller/CHANGELOG.md +261 -0
  28. package/controller/lib/defaults.js +22 -0
  29. package/controller/lib/defaults.js.map +1 -0
  30. package/controller/lib/index.js +84 -0
  31. package/controller/lib/index.js.map +1 -0
  32. package/controller/package.json +16 -0
  33. package/controller/src/__tests__/index.test.js +172 -0
  34. package/controller/src/defaults.js +12 -0
  35. package/controller/src/index.js +71 -0
  36. package/docs/config-schema.json +1766 -0
  37. package/docs/config-schema.json.md +1313 -0
  38. package/docs/demo/config.js +8 -0
  39. package/docs/demo/generate.js +14 -0
  40. package/docs/demo/index.html +1 -0
  41. package/docs/demo/session.js +37 -0
  42. package/docs/pie-schema.json +823 -0
  43. package/docs/pie-schema.json.md +606 -0
  44. package/lib/drawing-response/button.js +49 -0
  45. package/lib/drawing-response/button.js.map +1 -0
  46. package/lib/drawing-response/constants.js +43 -0
  47. package/lib/drawing-response/constants.js.map +1 -0
  48. package/lib/drawing-response/container.js +327 -0
  49. package/lib/drawing-response/container.js.map +1 -0
  50. package/lib/drawing-response/drawable-circle.js +80 -0
  51. package/lib/drawing-response/drawable-circle.js.map +1 -0
  52. package/lib/drawing-response/drawable-eraser.js +64 -0
  53. package/lib/drawing-response/drawable-eraser.js.map +1 -0
  54. package/lib/drawing-response/drawable-free-path.js +71 -0
  55. package/lib/drawing-response/drawable-free-path.js.map +1 -0
  56. package/lib/drawing-response/drawable-helper.js +34 -0
  57. package/lib/drawing-response/drawable-helper.js.map +1 -0
  58. package/lib/drawing-response/drawable-image.js +41 -0
  59. package/lib/drawing-response/drawable-image.js.map +1 -0
  60. package/lib/drawing-response/drawable-line.js +75 -0
  61. package/lib/drawing-response/drawable-line.js.map +1 -0
  62. package/lib/drawing-response/drawable-main.js +345 -0
  63. package/lib/drawing-response/drawable-main.js.map +1 -0
  64. package/lib/drawing-response/drawable-palette.js +140 -0
  65. package/lib/drawing-response/drawable-palette.js.map +1 -0
  66. package/lib/drawing-response/drawable-rectangle.js +80 -0
  67. package/lib/drawing-response/drawable-rectangle.js.map +1 -0
  68. package/lib/drawing-response/drawable-text.js +295 -0
  69. package/lib/drawing-response/drawable-text.js.map +1 -0
  70. package/lib/drawing-response/drawable-transformer.js +52 -0
  71. package/lib/drawing-response/drawable-transformer.js.map +1 -0
  72. package/lib/drawing-response/factory.js +22 -0
  73. package/lib/drawing-response/factory.js.map +1 -0
  74. package/lib/drawing-response/icon.js +55 -0
  75. package/lib/drawing-response/icon.js.map +1 -0
  76. package/lib/drawing-response/index.js +91 -0
  77. package/lib/drawing-response/index.js.map +1 -0
  78. package/lib/index.js +68 -0
  79. package/lib/index.js.map +1 -0
  80. package/package.json +19 -82
  81. package/src/__tests__/drawing-index-test.jsx +103 -0
  82. package/src/drawing-response/__tests__/container.test.jsx +82 -0
  83. package/src/drawing-response/__tests__/drawable-helper.test.jsx +24 -0
  84. package/src/drawing-response/__tests__/drawing-main.test.jsx +855 -0
  85. package/src/drawing-response/__tests__/factory.test.js +13 -0
  86. package/src/drawing-response/button.jsx +45 -0
  87. package/src/drawing-response/constants.js +44 -0
  88. package/src/drawing-response/container.jsx +301 -0
  89. package/src/drawing-response/drawable-circle.jsx +74 -0
  90. package/src/drawing-response/drawable-eraser.jsx +53 -0
  91. package/src/drawing-response/drawable-free-path.jsx +59 -0
  92. package/src/drawing-response/drawable-helper.jsx +21 -0
  93. package/src/drawing-response/drawable-image.jsx +36 -0
  94. package/src/drawing-response/drawable-line.jsx +62 -0
  95. package/src/drawing-response/drawable-main.jsx +333 -0
  96. package/src/drawing-response/drawable-palette.jsx +99 -0
  97. package/src/drawing-response/drawable-rectangle.jsx +69 -0
  98. package/src/drawing-response/drawable-text.jsx +318 -0
  99. package/src/drawing-response/drawable-transformer.jsx +52 -0
  100. package/src/drawing-response/factory.js +17 -0
  101. package/src/drawing-response/icon.jsx +52 -0
  102. package/src/drawing-response/index.jsx +92 -0
  103. package/src/index.js +72 -0
  104. package/configure.js +0 -2
  105. package/controller.js +0 -1
  106. package/dist/author/button.d.ts +0 -29
  107. package/dist/author/button.js +0 -25
  108. package/dist/author/defaults.d.ts +0 -118
  109. package/dist/author/defaults.js +0 -86
  110. package/dist/author/image-container.d.ts +0 -42
  111. package/dist/author/image-container.js +0 -183
  112. package/dist/author/index.d.ts +0 -37
  113. package/dist/author/index.js +0 -79
  114. package/dist/author/root.d.ts +0 -17
  115. package/dist/author/root.js +0 -142
  116. package/dist/browser/MenuItem-N0xdzWSs.js +0 -10483
  117. package/dist/browser/MenuItem-N0xdzWSs.js.map +0 -1
  118. package/dist/browser/author/index.js +0 -37837
  119. package/dist/browser/author/index.js.map +0 -1
  120. package/dist/browser/browser-kkT1XVKw.js +0 -219
  121. package/dist/browser/browser-kkT1XVKw.js.map +0 -1
  122. package/dist/browser/controller/index.js +0 -61
  123. package/dist/browser/controller/index.js.map +0 -1
  124. package/dist/browser/delivery/index.js +0 -13560
  125. package/dist/browser/delivery/index.js.map +0 -1
  126. package/dist/browser/drawing-response.css +0 -2
  127. package/dist/controller/defaults.d.ts +0 -24
  128. package/dist/controller/defaults.js +0 -18
  129. package/dist/controller/index.d.ts +0 -13
  130. package/dist/controller/index.js +0 -46
  131. package/dist/delivery/drawing-response/button.d.ts +0 -31
  132. package/dist/delivery/drawing-response/button.js +0 -36
  133. package/dist/delivery/drawing-response/constants.d.ts +0 -16
  134. package/dist/delivery/drawing-response/constants.js +0 -40
  135. package/dist/delivery/drawing-response/container.d.ts +0 -32
  136. package/dist/delivery/drawing-response/container.js +0 -212
  137. package/dist/delivery/drawing-response/drawable-circle.d.ts +0 -18
  138. package/dist/delivery/drawing-response/drawable-circle.js +0 -51
  139. package/dist/delivery/drawing-response/drawable-eraser.d.ts +0 -17
  140. package/dist/delivery/drawing-response/drawable-eraser.js +0 -52
  141. package/dist/delivery/drawing-response/drawable-free-path.d.ts +0 -18
  142. package/dist/delivery/drawing-response/drawable-free-path.js +0 -52
  143. package/dist/delivery/drawing-response/drawable-helper.d.ts +0 -17
  144. package/dist/delivery/drawing-response/drawable-helper.js +0 -12
  145. package/dist/delivery/drawing-response/drawable-image.d.ts +0 -24
  146. package/dist/delivery/drawing-response/drawable-image.js +0 -28
  147. package/dist/delivery/drawing-response/drawable-line.d.ts +0 -18
  148. package/dist/delivery/drawing-response/drawable-line.js +0 -53
  149. package/dist/delivery/drawing-response/drawable-main.d.ts +0 -25
  150. package/dist/delivery/drawing-response/drawable-main.js +0 -210
  151. package/dist/delivery/drawing-response/drawable-palette.d.ts +0 -14
  152. package/dist/delivery/drawing-response/drawable-palette.js +0 -89
  153. package/dist/delivery/drawing-response/drawable-rectangle.d.ts +0 -18
  154. package/dist/delivery/drawing-response/drawable-rectangle.js +0 -49
  155. package/dist/delivery/drawing-response/drawable-text.d.ts +0 -30
  156. package/dist/delivery/drawing-response/drawable-text.js +0 -189
  157. package/dist/delivery/drawing-response/drawable-transformer.d.ts +0 -16
  158. package/dist/delivery/drawing-response/drawable-transformer.js +0 -35
  159. package/dist/delivery/drawing-response/factory.d.ts +0 -11
  160. package/dist/delivery/drawing-response/factory.js +0 -19
  161. package/dist/delivery/drawing-response/icon.d.ts +0 -19
  162. package/dist/delivery/drawing-response/icon.js +0 -52
  163. package/dist/delivery/drawing-response/index.d.ts +0 -18
  164. package/dist/delivery/drawing-response/index.js +0 -70
  165. package/dist/delivery/index.d.ts +0 -19
  166. package/dist/delivery/index.js +0 -47
  167. package/dist/index.d.ts +0 -1
  168. package/dist/index.iife.d.ts +0 -8
  169. package/dist/index.iife.js +0 -165
  170. package/dist/index.js +0 -2
  171. package/dist/runtime-support.d.ts +0 -12
  172. package/dist/runtime-support.js +0 -12
package/CHANGELOG.md ADDED
@@ -0,0 +1,1966 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [12.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@12.1.1...@pie-element/drawing-response@12.1.2) (2026-06-04)
7
+
8
+ ### Bug Fixes
9
+
10
+ - bump shared modules and libs PIE-600, PIE-602 ([ce99f6a](https://github.com/pie-framework/pie-elements/commit/ce99f6af50cb855b666a6df9340f9f5445fde4c4))
11
+
12
+ ## [12.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@12.1.0...@pie-element/drawing-response@12.1.1) (2026-05-21)
13
+
14
+ **Note:** Version bump only for package @pie-element/drawing-response
15
+
16
+ # [12.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@12.1.0-next.1...@pie-element/drawing-response@12.1.0) (2026-05-21)
17
+
18
+ ### Bug Fixes
19
+
20
+ - bump pie-libs PIE-434, PIE-437, PIE-452, PIE-510, PIE-451 ([f0764a8](https://github.com/pie-framework/pie-elements/commit/f0764a861ef328fd7c35bfefa5a274b0c6d2d77b))
21
+ - bump shared modules and libs PIE-522, PIE-451, PIE-511, PIE-561, PIE-562, PIE-563 ([5cfc2e9](https://github.com/pie-framework/pie-elements/commit/5cfc2e9f7d6c1a485538fd674f8602dd92018c50))
22
+ - publish missing libs ([04a5b2f](https://github.com/pie-framework/pie-elements/commit/04a5b2f26ae7b009b4f5df665b4c901d82e27775))
23
+
24
+ # [12.1.0-next.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@12.1.0-next.0...@pie-element/drawing-response@12.1.0-next.1) (2026-05-06)
25
+
26
+ ### Bug Fixes
27
+
28
+ - bump libs and shared modules PIE-440, PIE-436, PIE-439, PIE-519, PIE-216 ([932fc12](https://github.com/pie-framework/pie-elements/commit/932fc12557ba56a737cee005be898d54d5e590ef))
29
+
30
+ ## [12.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@12.0.0...@pie-element/drawing-response@12.0.1) (2026-04-28)
31
+
32
+ **Note:** Version bump only for package @pie-element/drawing-response
33
+
34
+ # [11.2.0-next.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.2.0-next.8...@pie-element/drawing-response@11.2.0-next.9) (2026-04-27)
35
+
36
+ ### Features
37
+
38
+ - bump major libs and shared modules ([acb4bf3](https://github.com/pie-framework/pie-elements/commit/acb4bf32dafd5cd47cd1c673791b7af3c66b2938))
39
+
40
+ # [11.2.0-next.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.2.0-next.7...@pie-element/drawing-response@11.2.0-next.8) (2026-04-24)
41
+
42
+ ### Bug Fixes
43
+
44
+ - bump dLl modules and libs PIE-171, PIE-133, PIE-151, PIE-130, PIE-147, PIE-168, PIE-425 ([6b02d2a](https://github.com/pie-framework/pie-elements/commit/6b02d2abfd4027569150d347ea9f7701ce634270))
45
+
46
+ # [11.2.0-next.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.2.0-next.6...@pie-element/drawing-response@11.2.0-next.7) (2026-04-17)
47
+
48
+ ### Bug Fixes
49
+
50
+ - bump libs PIE-129 ([cee3e10](https://github.com/pie-framework/pie-elements/commit/cee3e109a9c1d9a68ab592781c968f6b27209846))
51
+
52
+ # [11.2.0-next.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.2.0-next.5...@pie-element/drawing-response@11.2.0-next.6) (2026-04-16)
53
+
54
+ ### Bug Fixes
55
+
56
+ - bump libs PIE-46, PIE-25, PIE-54, PIE-44, PIE-29, PIE-13, PIE-129 ([5c17838](https://github.com/pie-framework/pie-elements/commit/5c17838a53483437e42dc679a4361e16b7ef5e31))
57
+
58
+ # [11.2.0-next.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.2.0-next.4...@pie-element/drawing-response@11.2.0-next.5) (2026-04-13)
59
+
60
+ ### Bug Fixes
61
+
62
+ - bump libs PIE-34 ([9f8b35a](https://github.com/pie-framework/pie-elements/commit/9f8b35a856ca1eba67d5630a358b96226cfca984))
63
+
64
+ # [11.2.0-next.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.2.0-next.3...@pie-element/drawing-response@11.2.0-next.4) (2026-04-10)
65
+
66
+ ### Features
67
+
68
+ - **math-inline:** replace @pie-framework/mathquill with math-input helpers PIE-56, bump libs PIE-34, PIE-57, PIE-36, PIE-38, PIE-18 ([abd205e](https://github.com/pie-framework/pie-elements/commit/abd205e9c8335957b9fc2548822e4125bf1a7edb))
69
+
70
+ # [11.2.0-next.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.2.0-next.2...@pie-element/drawing-response@11.2.0-next.3) (2026-04-08)
71
+
72
+ ### Bug Fixes
73
+
74
+ - bump shared modules and libs PIE-53, PIE-48, PIE-114, PIE-74, PIE-35, PIE-40, PIE-27 ([3e6682d](https://github.com/pie-framework/pie-elements/commit/3e6682db1eb23414f3a4222abe13d2dd8ae5378e))
75
+
76
+ # [11.2.0-next.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.2.0-next.1...@pie-element/drawing-response@11.2.0-next.2) (2026-04-03)
77
+
78
+ **Note:** Version bump only for package @pie-element/drawing-response
79
+
80
+ # [11.2.0-next.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.2.0-next.0...@pie-element/drawing-response@11.2.0-next.1) (2026-03-25)
81
+
82
+ **Note:** Version bump only for package @pie-element/drawing-response
83
+
84
+ # [11.2.0-next.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.1.2-next.4...@pie-element/drawing-response@11.2.0-next.0) (2026-03-19)
85
+
86
+ ### Features
87
+
88
+ - bump libs PD-5669, PD-5530, PD-5496,PD-5501, PD-5790, PD-5622, PD-5811, PD-5590, PD-5510 ([1c7cfc4](https://github.com/pie-framework/pie-elements/commit/1c7cfc4ea91dfd631b9e2ca23810b65a4a4585cf))
89
+
90
+ ## [11.1.2-next.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.1.2-next.3...@pie-element/drawing-response@11.1.2-next.4) (2026-03-12)
91
+
92
+ ### Bug Fixes
93
+
94
+ - bump libs, update mathquill, switch interface PD-5791 ([686a7c0](https://github.com/pie-framework/pie-elements/commit/686a7c0d41ff82f5ddad7cecd93cc0c18324a81b))
95
+
96
+ ## [11.1.2-next.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.1.2-next.2...@pie-element/drawing-response@11.1.2-next.3) (2026-03-06)
97
+
98
+ **Note:** Version bump only for package @pie-element/drawing-response
99
+
100
+ ## [11.1.2-next.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.1.2-next.1...@pie-element/drawing-response@11.1.2-next.2) (2026-03-05)
101
+
102
+ **Note:** Version bump only for package @pie-element/drawing-response
103
+
104
+ ## [11.1.2-next.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.1.0-next.2...@pie-element/drawing-response@11.1.2-next.1) (2026-02-26)
105
+
106
+ ### Bug Fixes
107
+
108
+ - **drawing-response:** avoid drawing when text element is moved PD-5593 ([5a506cb](https://github.com/pie-framework/pie-elements/commit/5a506cbe516e4b4479693a8ff6e76cff21725eee))
109
+ - **drawing-response:** avoid drawing when text element is moved PD-5593 ([dd1b590](https://github.com/pie-framework/pie-elements/commit/dd1b5907c2d72d1fb661756d208df81c8f0842ac))
110
+ - **drawing-response:** avoid drwinf when text element is moved PD-5593 ([d853a26](https://github.com/pie-framework/pie-elements/commit/d853a26c320153e4207582c57851c8271cd56c02))
111
+
112
+ # [11.1.0-next.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@11.1.0-next.1...@pie-element/drawing-response@11.1.0-next.2) (2026-02-24)
113
+
114
+ **Note:** Version bump only for package @pie-element/drawing-response
115
+
116
+ ## [10.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@10.3.1...@pie-element/drawing-response@10.3.2) (2025-10-22)
117
+
118
+ ### Bug Fixes
119
+
120
+ - bump libs PD-5265 ([184a978](https://github.com/pie-framework/pie-elements/commit/184a978f57a2a84dc6ba87c1eba0b92d5cdd9eae))
121
+
122
+ ## [10.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@10.2.1...@pie-element/drawing-response@10.3.1) (2025-10-16)
123
+
124
+ ### Bug Fixes
125
+
126
+ - bump pie-lib versions and pslb module versions ([393d39f](https://github.com/pie-framework/pie-elements/commit/393d39fb850ad055568f4d20464213e9043f208f))
127
+
128
+ # [10.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@10.2.0...@pie-element/drawing-response@10.3.0) (2025-10-15)
129
+
130
+ ### Bug Fixes
131
+
132
+ - bump libs ([2616ab2](https://github.com/pie-framework/pie-elements/commit/2616ab24f776f4df02302f5855c381ee52527665))
133
+
134
+ ## [10.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@10.2.0...@pie-element/drawing-response@10.2.1) (2025-10-14)
135
+
136
+ ### Bug Fixes
137
+
138
+ - bump libs ([2616ab2](https://github.com/pie-framework/pie-elements/commit/2616ab24f776f4df02302f5855c381ee52527665))
139
+
140
+ # [10.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@10.0.0...@pie-element/drawing-response@10.2.0) (2025-10-10)
141
+
142
+ ### Features
143
+
144
+ - update libs PD-5208, PD-5211, PD-5199, PD-5218, PD-5217 ([da327fa](https://github.com/pie-framework/pie-elements/commit/da327fa501f6e9eff1c0b30b5ef092426a91f78b))
145
+
146
+ # [10.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@9.0.0...@pie-element/drawing-response@10.1.0) (2025-10-07)
147
+
148
+ **Note:** Version bump only for package @pie-element/drawing-response
149
+
150
+ # [10.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.10...@pie-element/drawing-response@10.0.0) (2025-10-02)
151
+
152
+ ### Features
153
+
154
+ - publish majors to adopt pie-toolbox split without breaking legacy bundles PD-5242 ([50ede62](https://github.com/pie-framework/pie-elements/commit/50ede624eff05e2bc52fa80e453d561c505ab38d))
155
+
156
+ ### Performance Improvements
157
+
158
+ - **multiple-choice:** adopt pie-toolbox split ([b4b8f45](https://github.com/pie-framework/pie-elements/commit/b4b8f45b68b71622b314c3d80fdc180832a640e1))
159
+
160
+ ### BREAKING CHANGES
161
+
162
+ - **multiple-choice:** publish majors to carry the pie-toolbox split without breaking legacy bundles
163
+
164
+ # [9.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.10...@pie-element/drawing-response@9.0.0) (2025-10-01)
165
+
166
+ ### Features
167
+
168
+ - publish majors to adopt pie-toolbox split without breaking legacy bundles PD-5242 ([50ede62](https://github.com/pie-framework/pie-elements/commit/50ede624eff05e2bc52fa80e453d561c505ab38d))
169
+
170
+ ### Performance Improvements
171
+
172
+ - **multiple-choice:** adopt pie-toolbox split ([b4b8f45](https://github.com/pie-framework/pie-elements/commit/b4b8f45b68b71622b314c3d80fdc180832a640e1))
173
+
174
+ ### BREAKING CHANGES
175
+
176
+ - **multiple-choice:** publish majors to carry the pie-toolbox split without breaking legacy bundles
177
+
178
+ ## [8.6.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.7.0-beta.0...@pie-element/drawing-response@8.6.10) (2025-09-26)
179
+
180
+ **Note:** Version bump only for package @pie-element/drawing-response
181
+
182
+ # [8.7.0-beta.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.9...@pie-element/drawing-response@8.7.0-beta.0) (2025-09-25)
183
+
184
+ ### Bug Fixes
185
+
186
+ - **math-rendering:** move mathjax-full back to dependencies ([aba6dbf](https://github.com/pie-framework/pie-elements/commit/aba6dbf2c98da164149a881616df5e7b8e29b2f2))
187
+ - fix imports PD-5126 ([3bf4684](https://github.com/pie-framework/pie-elements/commit/3bf4684871a62b3e23f50e2c010adfc9ae674919))
188
+ - update pie-lib/pie-toolbox PD-5196 ([d525b88](https://github.com/pie-framework/pie-elements/commit/d525b888f16fcc2ac115c8e699ca6f249db27406))
189
+
190
+ ### Features
191
+
192
+ - split pie-toolbox PD-5156 ([8650ea1](https://github.com/pie-framework/pie-elements/commit/8650ea1f717f59f95f7ca7d20ddb9b1a6d38f50a))
193
+
194
+ ## [8.6.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.8...@pie-element/drawing-response@8.6.9) (2025-09-11)
195
+
196
+ ### Bug Fixes
197
+
198
+ - update pie-lib/pie-toolbox PD-5198, PD-5187 ([f04a94c](https://github.com/pie-framework/pie-elements/commit/f04a94c62a29d77fcb17b473b7de1022ad65eeb4))
199
+
200
+ ## [8.6.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.7...@pie-element/drawing-response@8.6.8) (2025-09-09)
201
+
202
+ ### Bug Fixes
203
+
204
+ - update pie-lib/pie-toolbox PD-5196 ([29ec1c8](https://github.com/pie-framework/pie-elements/commit/29ec1c80dd278b534751f3944445b91d5f9524a5))
205
+
206
+ ## [8.6.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.6...@pie-element/drawing-response@8.6.7) (2025-09-09)
207
+
208
+ ### Bug Fixes
209
+
210
+ - update pie-lib/pie-toolboox PD-5181, PD-5187, PD-4580, PD-5198 ([9fa09cd](https://github.com/pie-framework/pie-elements/commit/9fa09cdb29fe43e292e6f3fba2b88561d8deceab))
211
+
212
+ ## [8.6.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.5...@pie-element/drawing-response@8.6.6) (2025-09-02)
213
+
214
+ ### Bug Fixes
215
+
216
+ - update pie-lib/pie-toolbox PD-4579, PD-4430 ([277d2a6](https://github.com/pie-framework/pie-elements/commit/277d2a6bad2fc884ab9d980f71774ba9eca8dbb5))
217
+
218
+ ## [8.6.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.4...@pie-element/drawing-response@8.6.5) (2025-08-15)
219
+
220
+ ### Bug Fixes
221
+
222
+ - PD-5084 ([78bd9ca](https://github.com/pie-framework/pie-elements/commit/78bd9ca1540c3968ddd36e0ff5cc4ac095865250))
223
+
224
+ ## [8.6.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.3...@pie-element/drawing-response@8.6.4) (2025-08-14)
225
+
226
+ ### Bug Fixes
227
+
228
+ - update pie-lib/pie-toolboxPD-5147, PD-4579, PD-5084, PD-4918 ([ff9ec92](https://github.com/pie-framework/pie-elements/commit/ff9ec92eb659a1664729aaae54eedf3b87f6a96a))
229
+
230
+ ## [8.6.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.2...@pie-element/drawing-response@8.6.3) (2025-08-14)
231
+
232
+ ### Bug Fixes
233
+
234
+ - update pie-lib/pie-toolbox PD-5147 ([484432f](https://github.com/pie-framework/pie-elements/commit/484432fd824ebe403e8f4302f6b8cf4d026dacb5))
235
+
236
+ ## [8.6.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.1...@pie-element/drawing-response@8.6.2) (2025-07-25)
237
+
238
+ ### Bug Fixes
239
+
240
+ - refactor PD-5132, update pie-lib/pie-toolbox PD-3797 ([7434408](https://github.com/pie-framework/pie-elements/commit/7434408416a883fd680eec13fe1109711fd7e6b5))
241
+ - update pie-lib/pie-toolbox PD-4885, PD-5131 ([4b9859c](https://github.com/pie-framework/pie-elements/commit/4b9859c919a1a7cc8e29d6168a91cd1f7d1aafd1))
242
+
243
+ ## [8.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.6.0...@pie-element/drawing-response@8.6.1) (2025-07-22)
244
+
245
+ ### Bug Fixes
246
+
247
+ - update pie-toolbox PD-4885 ([a6d439e](https://github.com/pie-framework/pie-elements/commit/a6d439e49a0082f3d5e8bf46cc73c69d1d0ae311))
248
+
249
+ # [8.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.5.10...@pie-element/drawing-response@8.6.0) (2025-07-18)
250
+
251
+ ### Bug Fixes
252
+
253
+ - update pie-lib/pie-toolbox PD-363 ([10ce402](https://github.com/pie-framework/pie-elements/commit/10ce402bcb1c0c9c24dfc9ecff2e13c4de14a753))
254
+
255
+ ### Features
256
+
257
+ - update pie-lib/pie toolbox PD-5082, PD-5081, PD-3797, PD-5083, revert PD-363, PD-653 ([9214466](https://github.com/pie-framework/pie-elements/commit/92144667464f18c213c7ab1d769595e43b553dab))
258
+ - update pie-lib/pie-toolbox PD-5082, PD-5081, PD-3797, PD-5083, PD-4885, PD-5097, PD-5100, PD-5131, PD-5080 ([dc67b1c](https://github.com/pie-framework/pie-elements/commit/dc67b1c735b2adb60943e5d145e739ce4e39a428))
259
+
260
+ ## [8.5.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.5.9...@pie-element/drawing-response@8.5.10) (2025-06-27)
261
+
262
+ ### Bug Fixes
263
+
264
+ - update pie-lib/pie-toolbox PD-5064 ([f61face](https://github.com/pie-framework/pie-elements/commit/f61face71312f0a4e46a16a646aa616b9d4ed8eb))
265
+
266
+ ## [8.5.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.5.8...@pie-element/drawing-response@8.5.9) (2025-06-25)
267
+
268
+ ### Bug Fixes
269
+
270
+ - update pie-lib/pie-toolbox PD-5059 ([d6f2203](https://github.com/pie-framework/pie-elements/commit/d6f22032dcfb049ce7aeb496f94456fdd06d4139))
271
+
272
+ ## [8.5.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.5.7...@pie-element/drawing-response@8.5.8) (2025-06-19)
273
+
274
+ ### Bug Fixes
275
+
276
+ - update pie-lib/pie-toolbox PD-5076, PD-5063, PD-4832, PD-5059 ([16201a3](https://github.com/pie-framework/pie-elements/commit/16201a35183965fabd033bbf797ef3b438d69a85))
277
+
278
+ ## [8.5.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.5.6...@pie-element/drawing-response@8.5.7) (2025-06-05)
279
+
280
+ ### Bug Fixes
281
+
282
+ - add validation for audio content PD-4123 ([f0ce3f1](https://github.com/pie-framework/pie-elements/commit/f0ce3f19a12fd4cfe2d2159ca4af801d866dc8a9))
283
+ - update pie-lib pie-toolbox PD-3756 and revert changes for PD-4810 ([1e3030b](https://github.com/pie-framework/pie-elements/commit/1e3030bfdb13d0cce7b54ce0e9a109446c5ec2a2))
284
+ - update pie-lib-pie-toolbox PD-4810 ([6c81afc](https://github.com/pie-framework/pie-elements/commit/6c81afc6a8ad41e001bafb0bd1563164e9f32a10))
285
+ - update pie-lib-pie-toolbox PD-4810 ([0f9dd82](https://github.com/pie-framework/pie-elements/commit/0f9dd827c474e87770fd3bd146d870dd77d296df))
286
+ - update pie-lib/pie-toolbox PD-4888, PD-3542, PD-4873, PD-4679 ([9c3bdef](https://github.com/pie-framework/pie-elements/commit/9c3bdef1b68f128ecc6338ef74f25fb74c482aa6))
287
+
288
+ ## [8.5.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.5.5...@pie-element/drawing-response@8.5.6) (2025-05-22)
289
+
290
+ ### Bug Fixes
291
+
292
+ - conflicts ([fce1a12](https://github.com/pie-framework/pie-elements/commit/fce1a12cacfcdc0f7ded44291eb7539dc3567127))
293
+ - tests PD-5009 ([e00ac85](https://github.com/pie-framework/pie-elements/commit/e00ac85428a335d1dd67012b99a89861926594d0))
294
+ - update pie-lib/pie-toolbox PD-4555, PD-4561 ([a7c878c](https://github.com/pie-framework/pie-elements/commit/a7c878cc1c1440bc0f72acb8ca3ef2a023023066))
295
+ - update pie-lib/pie-toolbox PD-5009, PD-5002 ([9d5d7a3](https://github.com/pie-framework/pie-elements/commit/9d5d7a31ea06b568c346008aee2557dfd2e9a796))
296
+
297
+ ## [8.5.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.5.4...@pie-element/drawing-response@8.5.5) (2025-05-12)
298
+
299
+ ### Bug Fixes
300
+
301
+ - update pie-lib/pie-toolbox PD-4977 ([1f864de](https://github.com/pie-framework/pie-elements/commit/1f864de43661adf716578caf4657c4c0a0384556))
302
+
303
+ ## [8.5.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.5.3...@pie-element/drawing-response@8.5.4) (2025-04-29)
304
+
305
+ ### Bug Fixes
306
+
307
+ - update pie-lib/pie-toolbox PD-4976 ([ccf7412](https://github.com/pie-framework/pie-elements/commit/ccf74123f4581fc45383bdf2c181e699588b989d))
308
+ - update pie-lib/pie-toolbox PD-4976, PD-4980, PD-3496 ([a001d12](https://github.com/pie-framework/pie-elements/commit/a001d122ca198b23eeef9596857555eb1a76bb6b))
309
+
310
+ ## [8.5.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.5.2...@pie-element/drawing-response@8.5.3) (2025-04-18)
311
+
312
+ ### Bug Fixes
313
+
314
+ - update pie-lib/pie-toolbox PD-4967 ([cf4c095](https://github.com/pie-framework/pie-elements/commit/cf4c095f21a2e9bdf74ce5a419ad5fc8d0d7f6ca))
315
+
316
+ ## [8.5.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.5.1...@pie-element/drawing-response@8.5.2) (2025-04-17)
317
+
318
+ ### Bug Fixes
319
+
320
+ - update pie-lib/pie-toolbox PD-4967 ([0901bff](https://github.com/pie-framework/pie-elements/commit/0901bff14ea3398cf3930d7e41809a4d9dde0ccd))
321
+
322
+ ## [8.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.5.0...@pie-element/drawing-response@8.5.1) (2025-04-10)
323
+
324
+ ### Bug Fixes
325
+
326
+ - update pie-lib/pie-toolbox PD-4765, PD-4947 ([56312ea](https://github.com/pie-framework/pie-elements/commit/56312ea13151cc7e5d026a112fb7d86d320e4799))
327
+ - **drawing-responnse:** detach undo controls from scrollable canvas area PD-4949 ([ecd9174](https://github.com/pie-framework/pie-elements/commit/ecd9174d89201e072c6e3a9cad41fee51857a8cc))
328
+ - **drawing-responnse:** detach undo controls from scrollable canvas area PD-4949 ([f4c148d](https://github.com/pie-framework/pie-elements/commit/f4c148ddc5297bf416a156699c8bc9a24fefde56))
329
+ - **drawing-responnse:** detach undo controls from scrollable canvas area PD-4949 ([236ce48](https://github.com/pie-framework/pie-elements/commit/236ce486483c276427545c79a592b328a2795706))
330
+ - **drawing-response:** move overflow:scroll to stage container to restore canvas interaction PD-4949 ([438b45c](https://github.com/pie-framework/pie-elements/commit/438b45c16fcc44b7183af1c293ad58948ff5c0d5))
331
+ - **drawing-response:** use ResizeObserver to correctly set canvas dimensions when switching from build to item preview PD-4955 ([baaabf6](https://github.com/pie-framework/pie-elements/commit/baaabf6abbee7736292b044bc3244051b0696499))
332
+
333
+ # [8.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.4.0...@pie-element/drawing-response@8.5.0) (2025-04-01)
334
+
335
+ ### Features
336
+
337
+ - update pie-lib/pie-toolbox PD-4938 ([4d89e6e](https://github.com/pie-framework/pie-elements/commit/4d89e6ef28c75b344b6669562f99057359bff794))
338
+
339
+ # [8.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.3.9...@pie-element/drawing-response@8.4.0) (2025-03-27)
340
+
341
+ ### Bug Fixes
342
+
343
+ - update pie-lib/pie-toolbox PD-4895, PD-4093, PD-4888 ([7e6f1c5](https://github.com/pie-framework/pie-elements/commit/7e6f1c5d7bd0832f62ec8f048e04bcdbfe426779))
344
+
345
+ ### Features
346
+
347
+ - updated config so line breaks are enabled in editor [PD-4093] ([2e1978d](https://github.com/pie-framework/pie-elements/commit/2e1978db22d6e39328fff7dce8af3a494f77e2e1))
348
+
349
+ ## [8.3.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.3.8...@pie-element/drawing-response@8.3.9) (2025-03-21)
350
+
351
+ ### Bug Fixes
352
+
353
+ - update pie-toolbox PD-4917 ([03f3dab](https://github.com/pie-framework/pie-elements/commit/03f3dab963e2c5a55c8e44c472eaf00053bd111c))
354
+
355
+ ## [8.3.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.3.7...@pie-element/drawing-response@8.3.8) (2025-03-14)
356
+
357
+ ### Bug Fixes
358
+
359
+ - update Recharts to latest stable version PD-4900 and revert PD-4093 in pie-lib/pie-toolbox ([60b5d7c](https://github.com/pie-framework/pie-elements/commit/60b5d7c799ac4457495a77c4f7d93e3fece1476e))
360
+
361
+ ## [8.3.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.3.6...@pie-element/drawing-response@8.3.7) (2025-03-13)
362
+
363
+ ### Bug Fixes
364
+
365
+ - update pie-lib/pie-toolbox PD-4872, PD-4093, PD-4588, PD-4812, PD-4867 ([2386fb5](https://github.com/pie-framework/pie-elements/commit/2386fb5f84cadb42305ab5a0e6248bd2b2279e0a))
366
+
367
+ ## [8.3.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.3.5...@pie-element/drawing-response@8.3.6) (2025-03-03)
368
+
369
+ ### Bug Fixes
370
+
371
+ - update pie-lib pie-toolbox PD-4795 ([c0bc482](https://github.com/pie-framework/pie-elements/commit/c0bc48285a67aaaf6f4b81057ced62bc57ee978d))
372
+
373
+ ## [8.3.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.3.4...@pie-element/drawing-response@8.3.5) (2025-02-27)
374
+
375
+ ### Bug Fixes
376
+
377
+ - update pie-lib/pie-toolbox PD-4820, PD-4766 ([7ccdb40](https://github.com/pie-framework/pie-elements/commit/7ccdb405614f1c310efe530d97c46fe324c0a669))
378
+
379
+ ## [8.3.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.3.3...@pie-element/drawing-response@8.3.4) (2025-02-19)
380
+
381
+ ### Bug Fixes
382
+
383
+ - update pie-lib/pie-toolbox PD-4168, PD-4723 ([921f1bf](https://github.com/pie-framework/pie-elements/commit/921f1bfff211979c859821bb15c369327cfacdf7))
384
+ - **drawing-response:** fix drawing response area is cut off PD-4739 ([a4d74ca](https://github.com/pie-framework/pie-elements/commit/a4d74ca8ac290fbfa870c4cec5a551a1843fe38b))
385
+ - **drawing-response:** optimize setDimensions by reducing redundant DOM calls PD-4739 ([a2d061a](https://github.com/pie-framework/pie-elements/commit/a2d061ae56ff542c0a564201a272d0f90488f3eb))
386
+ - **drawing-response:** update snapshots PD-4739 ([e77ec0d](https://github.com/pie-framework/pie-elements/commit/e77ec0d45ab1e3355904dc6c5236ab7c04853429))
387
+ - **drawing-response:** update width in drawing response session PD-4739 ([79731e0](https://github.com/pie-framework/pie-elements/commit/79731e069c02428203e517f7866aaf54a968cbd7))
388
+
389
+ ## [8.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.3.2...@pie-element/drawing-response@8.3.3) (2025-02-14)
390
+
391
+ ### Bug Fixes
392
+
393
+ - update pie-lib/pie-toolbox PD-4801 ([194e2d7](https://github.com/pie-framework/pie-elements/commit/194e2d7e86a02887ffe03e13c062f8d98d543fd9))
394
+
395
+ ## [8.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.3.1...@pie-element/drawing-response@8.3.2) (2025-02-12)
396
+
397
+ ### Bug Fixes
398
+
399
+ - update pie-lib/pie-toolbox PD-4717 ([4bc5bea](https://github.com/pie-framework/pie-elements/commit/4bc5beafe3c04efe64809ff95c5863a6142cbb02))
400
+
401
+ ## [8.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.3.0...@pie-element/drawing-response@8.3.1) (2025-02-06)
402
+
403
+ ### Bug Fixes
404
+
405
+ - update pie-lib/pie-toolbox PD-4753, PD-4618, PD-4641 ([f73f2be](https://github.com/pie-framework/pie-elements/commit/f73f2bec76321a677fff71e575d19c0f2e5b1d9c))
406
+
407
+ # [8.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.2.10...@pie-element/drawing-response@8.3.0) (2025-01-27)
408
+
409
+ ### Bug Fixes
410
+
411
+ - update pie-lib/pie-toolbox PD-3995, PD-4679 ([87dadfa](https://github.com/pie-framework/pie-elements/commit/87dadfacfae3b06690edaf0b3c4a5ea09981b153))
412
+
413
+ ### Features
414
+
415
+ - enabled textAlign only for passage element [PD-3995] ([600d67f](https://github.com/pie-framework/pie-elements/commit/600d67fa31fc0e19761bc78381ba18036e7f64e7))
416
+ - updated snapshots [PD-3995] ([59702ab](https://github.com/pie-framework/pie-elements/commit/59702ab491722a24bd67a2c6dc70ad6540e3a909))
417
+
418
+ ## [8.2.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.2.9...@pie-element/drawing-response@8.2.10) (2025-01-27)
419
+
420
+ ### Bug Fixes
421
+
422
+ - update pie-lib/pie-toolbox PD-4688, PD-4589, PD-4616 ([754480c](https://github.com/pie-framework/pie-elements/commit/754480c6c747fa9123d374df0287a644c8376939))
423
+
424
+ ## [8.2.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.2.8...@pie-element/drawing-response@8.2.9) (2025-01-22)
425
+
426
+ ### Bug Fixes
427
+
428
+ - update pie-lib/pie-toolbox PD-4452, PD-3872, PD-4689, PD-4704, PD-4588, PD-4698, PD-4618 ([a97329c](https://github.com/pie-framework/pie-elements/commit/a97329cf73619a3a5aae8d492edb8d6e5c5730df))
429
+
430
+ ## [8.2.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.2.7...@pie-element/drawing-response@8.2.8) (2025-01-22)
431
+
432
+ ### Bug Fixes
433
+
434
+ - build ([68d8029](https://github.com/pie-framework/pie-elements/commit/68d8029520e531ae0a1eae15da6371289cde4c7a))
435
+ - replace mra package with mr, includes accessibility PD-4527 ([c83bd43](https://github.com/pie-framework/pie-elements/commit/c83bd438d3a0e94d524c04364fddd3a8edc8876e))
436
+
437
+ ## [8.2.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.2.6...@pie-element/drawing-response@8.2.7) (2025-01-06)
438
+
439
+ ### Bug Fixes
440
+
441
+ - update pie-lib/pie-toolbox PD-4555, PD-4660, PD-4426, PD-4607, PD-4394, PD-4521 ([e4928b4](https://github.com/pie-framework/pie-elements/commit/e4928b4f9ac268a892b382045f76ae4eac6b458e))
442
+
443
+ ## [8.2.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.2.5...@pie-element/drawing-response@8.2.6) (2024-12-20)
444
+
445
+ ### Bug Fixes
446
+
447
+ - update pie-lib/pie-toolbox PD-3843, PD-4518, PD-4588, PD-4210, PD-4362, PD-4618 ([c213141](https://github.com/pie-framework/pie-elements/commit/c2131410e19605093ca77afb8234b31708db01b1))
448
+
449
+ ## [8.2.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.2.4...@pie-element/drawing-response@8.2.5) (2024-12-10)
450
+
451
+ ### Bug Fixes
452
+
453
+ - update pie-lib/pie-toolbox PD-4388, PD-4548 ([0e7dad4](https://github.com/pie-framework/pie-elements/commit/0e7dad48f541e7c5c10212e58c6ae846c60be93c))
454
+
455
+ ## [8.2.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.2.3...@pie-element/drawing-response@8.2.4) (2024-12-05)
456
+
457
+ ### Bug Fixes
458
+
459
+ - update pie-lib/pie-toolbox PD-4393, PD-4388, PD-4550, PD-4394, PD-4165 ([afafda4](https://github.com/pie-framework/pie-elements/commit/afafda4a504ecae6e4c85a45817b7f73a4b81244))
460
+
461
+ ## [8.2.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.2.2...@pie-element/drawing-response@8.2.3) (2024-11-29)
462
+
463
+ ### Bug Fixes
464
+
465
+ - update pie-lib/pie-toolbox PD-4387, PD-4388 ([0416caf](https://github.com/pie-framework/pie-elements/commit/0416caf1188a62367a893c1e2bcfd138303c1d6d))
466
+
467
+ ## [8.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.2.1...@pie-element/drawing-response@8.2.2) (2024-11-15)
468
+
469
+ ### Bug Fixes
470
+
471
+ - update pie-lib/pie-toolbox PD-4401, PD-4441, PD-4319, PD-4394, PD-3687 ([f1f0af3](https://github.com/pie-framework/pie-elements/commit/f1f0af31f3c6fba54ca3a378dea3b8b32d8ebb87))
472
+
473
+ ## [8.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.2.0...@pie-element/drawing-response@8.2.1) (2024-11-01)
474
+
475
+ ### Bug Fixes
476
+
477
+ - update pie-lib PD-4361 ([0ed2a71](https://github.com/pie-framework/pie-elements/commit/0ed2a7156d3fef55b9c25ab9c60d0df836b86ee5))
478
+ - update pie-lib/pie-toolbox PD-4319, PD-1460, PD-4004 ([db03ac7](https://github.com/pie-framework/pie-elements/commit/db03ac7473960cedef2c83c79920e77db06f605d))
479
+ - update pie-lib/pie-toolbox PD-4372 ([dc73470](https://github.com/pie-framework/pie-elements/commit/dc734705a6aefa0f69eb29d3d695c57e31671ab8))
480
+
481
+ # [8.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.1.4...@pie-element/drawing-response@8.2.0) (2024-10-29)
482
+
483
+ ### Bug Fixes
484
+
485
+ - fixed all tests after updating pie-toolbox [PD-1460] ([9f5293d](https://github.com/pie-framework/pie-elements/commit/9f5293d618edc06f69fabb27a042ec5eee66e151))
486
+
487
+ ### Features
488
+
489
+ - used configlayout, preview layout or uilayout to enable extraCSSRules inside author and player elements [PD-1460] ([eeebb02](https://github.com/pie-framework/pie-elements/commit/eeebb02f200208620c1af56366a22bf65944ba3e))
490
+
491
+ ## [8.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.1.3...@pie-element/drawing-response@8.1.4) (2024-10-28)
492
+
493
+ ### Bug Fixes
494
+
495
+ - update pie-lib/pie-toolbox PD-4322, PD-4215, PD-4209 ([08eac95](https://github.com/pie-framework/pie-elements/commit/08eac95fd3e1a79b420fbc88cd0c7436ba284c3c))
496
+
497
+ ## [8.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.1.2...@pie-element/drawing-response@8.1.3) (2024-10-22)
498
+
499
+ ### Bug Fixes
500
+
501
+ - update pie-toolbox PD-4220, PD-4194, PD-4201, PD-4189, PD-4193, PD-4018, PD-4187 ([47b14fb](https://github.com/pie-framework/pie-elements/commit/47b14fbd80a04494511bc0ae44196b4e0175f0bb))
502
+
503
+ ## [8.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.1.1...@pie-element/drawing-response@8.1.2) (2024-10-15)
504
+
505
+ ### Bug Fixes
506
+
507
+ - added complexjs as dependency [PD-4200] ([da393d5](https://github.com/pie-framework/pie-elements/commit/da393d5ae8ef52f17b47ccf32967410a9263180e))
508
+ - added resolutions in controller as well [PD-4200] ([020edc5](https://github.com/pie-framework/pie-elements/commit/020edc5f0bb5de6bf8f344efd0a3b9b0b16b9dc7))
509
+ - added resolutions to every package [PD-4200] ([480bed5](https://github.com/pie-framework/pie-elements/commit/480bed5eddfc91ec9dbc7ca7e3f6d09b2a199e7d))
510
+ - reverting changes since the issue is fixed in the latest complex.js [PD-4200] ([42c9f21](https://github.com/pie-framework/pie-elements/commit/42c9f216c4d29b051156489beb43fa7093667eb7))
511
+ - update pie toolbox ([ba98798](https://github.com/pie-framework/pie-elements/commit/ba987984ebc2f856950611874436cf148a9a3963))
512
+ - update pie-lib/pie-toolbox PD-4200 ([a41a620](https://github.com/pie-framework/pie-elements/commit/a41a62036afe6aa8ef70493900c08875cff8eec2))
513
+ - update pie-lib/pie-toolbox PD-4241 ([b24d439](https://github.com/pie-framework/pie-elements/commit/b24d43945457792d403d0da62ce3e4b5b898ca46))
514
+
515
+ ## [8.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.1.0...@pie-element/drawing-response@8.1.1) (2024-10-03)
516
+
517
+ ### Bug Fixes
518
+
519
+ - update pie-toolbox and @pie-lib/pie-toolbox-module PD-4018 ([2d60730](https://github.com/pie-framework/pie-elements/commit/2d60730eb6c3ade08e522c58218cff2f6cb496cb))
520
+
521
+ # [8.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.0.1...@pie-element/drawing-response@8.1.0) (2024-10-01)
522
+
523
+ ### Bug Fixes
524
+
525
+ - update pie-toolbox and @pie-lib/pie-toolbox-module ([ddb9d44](https://github.com/pie-framework/pie-elements/commit/ddb9d444243b881b3a468ecfb5bab551511a2495))
526
+
527
+ ### Features
528
+
529
+ - update documentation (languageCharachters -> characters inside inputConfiguration object ([9e7dceb](https://github.com/pie-framework/pie-elements/commit/9e7dceb5291be261df0eb0bebe1e04f932dc327d))
530
+
531
+ ## [8.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@8.0.0...@pie-element/drawing-response@8.0.1) (2024-09-26)
532
+
533
+ ### Bug Fixes
534
+
535
+ - update pie-toolbox and @pie-lib/pie-toolbox-module ([c363be4](https://github.com/pie-framework/pie-elements/commit/c363be48f9428024d4acc1eed05cd598840ffe3a))
536
+ - update pie-toolbox and @pie-lib/pie-toolbox-module ([fe83296](https://github.com/pie-framework/pie-elements/commit/fe83296445f9785e67c9643642221b28b4485921))
537
+ - update pie-toolbox and @pie-lib/pie-toolbox-module ([321147b](https://github.com/pie-framework/pie-elements/commit/321147b4072f2a6200d155f7f09c712960fe078c))
538
+ - update pie-toolbox and @pie-lib/pie-toolbox-module ([d3e24e8](https://github.com/pie-framework/pie-elements/commit/d3e24e83d74e93f0720eff8841ebac1d0493b769))
539
+ - update pie-toolbox and @pie-lib/pie-toolbox-module ([a3dd8d6](https://github.com/pie-framework/pie-elements/commit/a3dd8d65a754acadd95134ee825b769355a08a45))
540
+
541
+ # [8.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.23.2...@pie-element/drawing-response@8.0.0) (2024-09-25)
542
+
543
+ ### Bug Fixes
544
+
545
+ - update math-rendering-accessible ([a5588cf](https://github.com/pie-framework/pie-elements/commit/a5588cfdccb40e970e93736dea60de4b01f1a85d))
546
+ - update pie-toolbox and @pie-lib/pie-toolbox-module ([8fa1e13](https://github.com/pie-framework/pie-elements/commit/8fa1e132d97ccc92093e789e4349610c2be21edb))
547
+
548
+ ### Features
549
+
550
+ - update math-rendering-accessible PD-3989, PD-4103, PD-3865 ([01590fe](https://github.com/pie-framework/pie-elements/commit/01590fe0f6ac36d14983cc144ef03f9cff397dfc))
551
+
552
+ ### BREAKING CHANGES
553
+
554
+ - big refactoring on the implementation of math-rendering-accessible
555
+
556
+ ## [7.23.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.23.1...@pie-element/drawing-response@7.23.2) (2024-09-16)
557
+
558
+ ### Bug Fixes
559
+
560
+ - update pie-lib/pie-toolbox PD-4061, PD-4021 ([ef8e3d0](https://github.com/pie-framework/pie-elements/commit/ef8e3d0d5fca4ca57c89c7c8ef8e74ec5600551e))
561
+
562
+ ## [7.23.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.23.0...@pie-element/drawing-response@7.23.1) (2024-09-16)
563
+
564
+ ### Bug Fixes
565
+
566
+ - experiment with mra ([d62f2b4](https://github.com/pie-framework/pie-elements/commit/d62f2b4526eeda1f90d3660d97bf278ac1ae72da))
567
+ - experiment with mra ([d9487a5](https://github.com/pie-framework/pie-elements/commit/d9487a5394c9b71bb7d7d69a836ed629ae13f7b1))
568
+ - experiment with mra ([a2e933c](https://github.com/pie-framework/pie-elements/commit/a2e933cd27bb052046e245672d3e01cb5ba1b518))
569
+ - update pie-lib/pie-toolbox PD-4027, PD-4042,PD-4039, PD-4073 ([68306be](https://github.com/pie-framework/pie-elements/commit/68306be02254a6019916637fd9b75427cae1c0ed))
570
+
571
+ # [7.23.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.22.4...@pie-element/drawing-response@7.23.0) (2024-09-11)
572
+
573
+ ### Features
574
+
575
+ - upload images for drawing-response and only store url in db, not full base64 PD-4067 ([429b47d](https://github.com/pie-framework/pie-elements/commit/429b47d309052cbec17cb592df0ae9bc878e590a))
576
+
577
+ ## [7.22.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.22.3...@pie-element/drawing-response@7.22.4) (2024-09-10)
578
+
579
+ ### Bug Fixes
580
+
581
+ - update pie-lib/pie-toolbox PD-3652, PD-2451 ([8a00529](https://github.com/pie-framework/pie-elements/commit/8a00529f67a8e27e78e4c16de5d04e11ec8c4d16))
582
+
583
+ ## [7.22.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.22.2...@pie-element/drawing-response@7.22.3) (2024-09-10)
584
+
585
+ ### Bug Fixes
586
+
587
+ - **inline-dropdown:** add all available fields in docs PD-4065 ([2c4c243](https://github.com/pie-framework/pie-elements/commit/2c4c24344d11ab66e0a67b5ccc630fa43dafc200))
588
+ - update pie-lib/pie-toolbox: ability to disable table and lists PD-4065 ([49f1ce4](https://github.com/pie-framework/pie-elements/commit/49f1ce4000bc45d0eb8032f6538c0c780940a503))
589
+
590
+ ## [7.22.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.22.1...@pie-element/drawing-response@7.22.2) (2024-08-29)
591
+
592
+ ### Bug Fixes
593
+
594
+ - trigger build PD-4052 ([24783c4](https://github.com/pie-framework/pie-elements/commit/24783c43a97db9c9a2b665f2c784ccd4ce8511ca))
595
+
596
+ ## [7.22.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.22.0...@pie-element/drawing-response@7.22.1) (2024-08-29)
597
+
598
+ ### Bug Fixes
599
+
600
+ - update pie-lib/pie-toolbox PD-4052 ([ebbbe2d](https://github.com/pie-framework/pie-elements/commit/ebbbe2dc584829abe8f1b4d6e8a9031e27f30dce))
601
+
602
+ # [7.22.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.21.3...@pie-element/drawing-response@7.22.0) (2024-08-27)
603
+
604
+ ### Features
605
+
606
+ - update pie-lib PD-4026, PD-3990 ([395d7d7](https://github.com/pie-framework/pie-elements/commit/395d7d779caae57a810cc19c1d676319d1c19ded))
607
+
608
+ ## [7.21.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.21.2...@pie-element/drawing-response@7.21.3) (2024-08-22)
609
+
610
+ ### Bug Fixes
611
+
612
+ - update pie-lib PD-4021 ([07d6e85](https://github.com/pie-framework/pie-elements/commit/07d6e8560ddfe25f95dfbafc2d3155b93eb85404))
613
+
614
+ ## [7.21.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.21.1...@pie-element/drawing-response@7.21.2) (2024-08-19)
615
+
616
+ ### Bug Fixes
617
+
618
+ - update pie-lib PD-3855, PD-3841 ([29ed50e](https://github.com/pie-framework/pie-elements/commit/29ed50ec75c3deedfe765f776dc24a6ecd6af284))
619
+
620
+ ## [7.21.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.21.0...@pie-element/drawing-response@7.21.1) (2024-08-06)
621
+
622
+ ### Bug Fixes
623
+
624
+ - update pie-lib ([6ed3619](https://github.com/pie-framework/pie-elements/commit/6ed3619e0c670165ab45518e5bdbb40586c5adf8))
625
+
626
+ # [7.21.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.20.0...@pie-element/drawing-response@7.21.0) (2024-08-06)
627
+
628
+ ### Features
629
+
630
+ - update pie-lib PD-3996, PD-3792, Pd-3791, PD-3841, PD-3956, PD-3569, PD-3855 ([6343d1b](https://github.com/pie-framework/pie-elements/commit/6343d1b00c5a4a3d88de70ed13a8aa5c1a43002d))
631
+
632
+ # [7.20.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.19.6...@pie-element/drawing-response@7.20.0) (2024-07-26)
633
+
634
+ ### Features
635
+
636
+ - update pie-lib/pie-toolbox PD-2451, PD-3950, PD-3845 ([278d705](https://github.com/pie-framework/pie-elements/commit/278d7052dc7c17796ba196a2e397739e2e882b7f))
637
+ - update pie-lib/pie-toolbox PD-3944, PD-3946, Pd-2450 ([ac34d93](https://github.com/pie-framework/pie-elements/commit/ac34d93fcc97e79cacddcd38c7509f3c96b69976))
638
+
639
+ ## [7.19.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.19.5...@pie-element/drawing-response@7.19.6) (2024-07-19)
640
+
641
+ ### Bug Fixes
642
+
643
+ - udate pie-lib/pie-toolbox to revert PD-3630 ([7858313](https://github.com/pie-framework/pie-elements/commit/785831349bb7830a3df8f35971958ebf616527f3))
644
+
645
+ ## [7.19.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.19.4...@pie-element/drawing-response@7.19.5) (2024-07-17)
646
+
647
+ ### Bug Fixes
648
+
649
+ - udate pie-lib/pie-toolbox PD-3945, PD-3627 ([c37e8aa](https://github.com/pie-framework/pie-elements/commit/c37e8aaa6c7e561707a2ed9ec76deb313380c6ba))
650
+
651
+ ## [7.19.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.19.3...@pie-element/drawing-response@7.19.4) (2024-07-16)
652
+
653
+ ### Bug Fixes
654
+
655
+ - udate pie-lib/pie-toolbox PD-3622, PD-3627, PD-3629, PD-3630, PD-3631 ([1e50c85](https://github.com/pie-framework/pie-elements/commit/1e50c859e2b5133e1ff9ef81f4169e49e76d9e4b))
656
+
657
+ ## [7.19.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.19.2...@pie-element/drawing-response@7.19.3) (2024-07-10)
658
+
659
+ ### Bug Fixes
660
+
661
+ - update pie-lib/pie-toolbox PD-3799, PD-3924, PD-3878 ([2f276fb](https://github.com/pie-framework/pie-elements/commit/2f276fb29f121005cecd81459469ff9f5a06740d))
662
+
663
+ ## [7.19.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.19.1...@pie-element/drawing-response@7.19.2) (2024-07-04)
664
+
665
+ **Note:** Version bump only for package @pie-element/drawing-response
666
+
667
+ ## [7.19.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.19.0...@pie-element/drawing-response@7.19.1) (2024-06-26)
668
+
669
+ ### Bug Fixes
670
+
671
+ - update pie-lib/pie-toolbox PD-3028, PD-3773 ([61bc47c](https://github.com/pie-framework/pie-elements/commit/61bc47c18d2becea321f18462f5cd486db0115e1))
672
+
673
+ # [7.19.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.18.0...@pie-element/drawing-response@7.19.0) (2024-06-24)
674
+
675
+ ### Features
676
+
677
+ - update pie-lib/pie-toolbox PD-3868, PD-3771, PD-3772, PD-3775 ([4475c65](https://github.com/pie-framework/pie-elements/commit/4475c658be5489a0f66be27af24e01c03b32b294))
678
+
679
+ # [7.18.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.17.0...@pie-element/drawing-response@7.18.0) (2024-06-24)
680
+
681
+ ### Features
682
+
683
+ - update pie-lib/pie-toolbox ability to enabled/disable blockquote and h3 (PD-3772, PD-3771) and PD-3813 ([c2cfd9b](https://github.com/pie-framework/pie-elements/commit/c2cfd9b323acdf3d456c05806c1f97f9067bb4fe))
684
+
685
+ # [7.17.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.16.0...@pie-element/drawing-response@7.17.0) (2024-06-19)
686
+
687
+ ### Bug Fixes
688
+
689
+ - update pie-lib/pie-toolbox fix build ([75777e1](https://github.com/pie-framework/pie-elements/commit/75777e189786cb9041bd0d2f843c023a1ea5b8b1))
690
+
691
+ ### Features
692
+
693
+ - update pie-lib/pie-toolbox PD-3179, PD-3206, PD-3186, PD-1311, PD-3771, PD-3772, PD-3817 ([14e175c](https://github.com/pie-framework/pie-elements/commit/14e175cd62770ab4d7ba8bf83e6d0c9ad683f595))
694
+
695
+ # [7.16.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.15.2...@pie-element/drawing-response@7.16.0) (2024-06-13)
696
+
697
+ ### Features
698
+
699
+ - update pie-toolbox PD-3735 ([7a38768](https://github.com/pie-framework/pie-elements/commit/7a38768b320640de853e90e137082e141ee4ad1f))
700
+
701
+ ## [7.15.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.15.1...@pie-element/drawing-response@7.15.2) (2024-06-13)
702
+
703
+ ### Bug Fixes
704
+
705
+ - update pie-toolbox PD-3180, PD-3391 ([f888f35](https://github.com/pie-framework/pie-elements/commit/f888f350468fca91379d4216c9c696c30695add3))
706
+
707
+ ## [7.15.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.15.0...@pie-element/drawing-response@7.15.1) (2024-06-13)
708
+
709
+ ### Bug Fixes
710
+
711
+ - update pie-toolbox PD-3839 ([dcdc0bf](https://github.com/pie-framework/pie-elements/commit/dcdc0bf9a7cc341d257de831e87915fb9425e4a2))
712
+
713
+ # [7.15.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.14.1...@pie-element/drawing-response@7.15.0) (2024-06-03)
714
+
715
+ ### Features
716
+
717
+ - update pie-lib/pie-toolbox PD-3733, PD-2455 ([a507dcb](https://github.com/pie-framework/pie-elements/commit/a507dcb30bf2de72614aaba8ee576edf0c953d05))
718
+
719
+ ## [7.14.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.14.0...@pie-element/drawing-response@7.14.1) (2024-06-03)
720
+
721
+ ### Bug Fixes
722
+
723
+ - update pie-lib/pie-toolbox PD-3788, PD-1273 ([f4b6aba](https://github.com/pie-framework/pie-elements/commit/f4b6aba5c741fbf6305dba71bf47d2226f39f2ee))
724
+
725
+ # [7.14.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.13.6...@pie-element/drawing-response@7.14.0) (2024-05-27)
726
+
727
+ ### Features
728
+
729
+ - update pie-lib/pie-toolbox PD-3736, PD-3734, PD-2488 ([3c44f06](https://github.com/pie-framework/pie-elements/commit/3c44f06d96e609246acde257a8223dc16192c2c4))
730
+
731
+ ## [7.13.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.13.5...@pie-element/drawing-response@7.13.6) (2024-05-27)
732
+
733
+ ### Bug Fixes
734
+
735
+ - update pie-lib/pie-toolbox PD-3740, PD-2126 ([5573a4e](https://github.com/pie-framework/pie-elements/commit/5573a4e2f4524839525679df319bb92c7c841916))
736
+
737
+ ## [7.13.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.13.4...@pie-element/drawing-response@7.13.5) (2024-05-14)
738
+
739
+ ### Bug Fixes
740
+
741
+ - update pie-toolbox PD-3640 ([707c240](https://github.com/pie-framework/pie-elements/commit/707c24031bc0cb05bb070605d4bc27384334eaac))
742
+
743
+ ## [7.13.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.13.3...@pie-element/drawing-response@7.13.4) (2024-05-13)
744
+
745
+ ### Bug Fixes
746
+
747
+ - update pie-lib/pie-toolbox PD-3650, PD-3651, PD-3621, PD-3620, PD-2127,PD-3709, PD-3726, PD-3191 ([2ef6881](https://github.com/pie-framework/pie-elements/commit/2ef688118b9099c7338cbe88afcdeed228fae11e))
748
+
749
+ ## [7.13.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.13.2...@pie-element/drawing-response@7.13.3) (2024-05-07)
750
+
751
+ ### Bug Fixes
752
+
753
+ - update pie-lib/pie-toolbox PD-3731 ([2b5d6c9](https://github.com/pie-framework/pie-elements/commit/2b5d6c932280981a0fd636bcb30d7fbc181ac311))
754
+
755
+ ## [7.13.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.13.1...@pie-element/drawing-response@7.13.2) (2024-05-03)
756
+
757
+ ### Bug Fixes
758
+
759
+ - update pie-lib/pie-toolbox PD-3537, PD-3538, PD-3539, PD-3540,PD-3680 ([d9cb471](https://github.com/pie-framework/pie-elements/commit/d9cb47148a8fec71d5de29f2cf2b92ec7b479470))
760
+
761
+ ## [7.13.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.13.0...@pie-element/drawing-response@7.13.1) (2024-04-29)
762
+
763
+ ### Bug Fixes
764
+
765
+ - update pie-lib/pie-toolbox PD-3683, PD-3644 ([73734c5](https://github.com/pie-framework/pie-elements/commit/73734c50a1e4fcda6be4f67c725816d75aea222f))
766
+
767
+ # [7.13.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.12.1...@pie-element/drawing-response@7.13.0) (2024-04-22)
768
+
769
+ ### Features
770
+
771
+ - update pie-lib/pie-toolbox PD-2449 ([2a0b40a](https://github.com/pie-framework/pie-elements/commit/2a0b40a826f0338b5eda2e8301f79870be3d0073))
772
+
773
+ ## [7.12.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.12.0...@pie-element/drawing-response@7.12.1) (2024-04-22)
774
+
775
+ ### Bug Fixes
776
+
777
+ - update pie-lib/pie-toolbox PD-3644, PD-3673 ([5e28ce0](https://github.com/pie-framework/pie-elements/commit/5e28ce0dab4a7ecd93ef7bba45ddb20f768b450b))
778
+
779
+ # [7.12.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.11.1...@pie-element/drawing-response@7.12.0) (2024-04-18)
780
+
781
+ ### Features
782
+
783
+ - update pie-lib/pie-toolbox SC-30530, SC-30682, PD-3607, PD-3655 ([f08bccf](https://github.com/pie-framework/pie-elements/commit/f08bccf86fcb430e75e410116b000b3affc252c0))
784
+
785
+ ## [7.11.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.11.0...@pie-element/drawing-response@7.11.1) (2024-04-01)
786
+
787
+ **Note:** Version bump only for package @pie-element/drawing-response
788
+
789
+ # [7.11.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.10.0...@pie-element/drawing-response@7.11.0) (2024-04-01)
790
+
791
+ ### Features
792
+
793
+ - **inline-dropdown:** upgrade pie-toolbox PD-2465 ([828d1c1](https://github.com/pie-framework/pie-elements/commit/828d1c1bc9e9221c1e141baaa8f89a4929ad0eb9))
794
+
795
+ # [7.10.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.9.0...@pie-element/drawing-response@7.10.0) (2024-04-01)
796
+
797
+ ### Features
798
+
799
+ - update pie-lib/pie-toolbox PD-3567, PD-3426 ([2a706d7](https://github.com/pie-framework/pie-elements/commit/2a706d799bb000c60b7a77a790de9dc66345ebf5))
800
+
801
+ # [7.9.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.8.0...@pie-element/drawing-response@7.9.0) (2024-03-28)
802
+
803
+ ### Bug Fixes
804
+
805
+ - update pie-lib/pie-toolbox PD-3603 ([8fc82ab](https://github.com/pie-framework/pie-elements/commit/8fc82ab19baf45aecb40e4b364a7c307a9840130))
806
+
807
+ ### Features
808
+
809
+ - **drawing-response:** add required fields functionality PD-3589 ([8f57ade](https://github.com/pie-framework/pie-elements/commit/8f57ade13c83d226d1b58e389f844f3519eb7337))
810
+
811
+ # [7.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.7.0...@pie-element/drawing-response@7.8.0) (2024-03-26)
812
+
813
+ ### Features
814
+
815
+ - Replace math-rendering package with math-rendering-accessible-package for accessibility PD-1870 ([a416664](https://github.com/pie-framework/pie-elements/commit/a41666452b86426a35e8501ab2a4ac95f327ad53))
816
+
817
+ # [7.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.6.0...@pie-element/drawing-response@7.7.0) (2024-03-20)
818
+
819
+ ### Bug Fixes
820
+
821
+ - Renamed the html prop to the correct math prop PD-3527 ([28061b6](https://github.com/pie-framework/pie-elements/commit/28061b6032817dae15837131d8a0bf5a08683b10))
822
+ - updated pie-lib/pie-toolbox SC-28500 ([a8e4e6a](https://github.com/pie-framework/pie-elements/commit/a8e4e6ab27584435ce7ac3e964ccac2747402777))
823
+
824
+ ### Features
825
+
826
+ - Add configuration for custom buttons PD-3520 ([a7a7ace](https://github.com/pie-framework/pie-elements/commit/a7a7ace27eaac47c9a0f172f7ae0440c6dc4e600))
827
+ - Add configuration for custom buttons PD-3527 ([45a32bd](https://github.com/pie-framework/pie-elements/commit/45a32bd8e9d7bd33beca74cc10c7dd973a9f9dbc))
828
+ - Replace math-rendering package with math-rendering-accessible-package for accessibility PD-1870 ([b6cdee8](https://github.com/pie-framework/pie-elements/commit/b6cdee8915b06e4c11b002b10437db07ce966501))
829
+ - updated pie-lib/pie-toolbox SC-27890 and reverted once again math-rendering-accessible ([fd312e1](https://github.com/pie-framework/pie-elements/commit/fd312e1336999893025231946649496d290883e4))
830
+ - use math-rendering-accessible everywhere PD-1870 ([d52e660](https://github.com/pie-framework/pie-elements/commit/d52e6607ad8847d704bd9cb9b7e3107c130f0500))
831
+
832
+ # [7.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.5.1...@pie-element/drawing-response@7.6.0) (2024-03-15)
833
+
834
+ ### Features
835
+
836
+ - update pie-lib/pie-toolbox SC-27890,PD-2461 ([13d94fa](https://github.com/pie-framework/pie-elements/commit/13d94faaf0cf9cf923bbc64587cdd4202154ea33))
837
+
838
+ ## [7.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.5.0...@pie-element/drawing-response@7.5.1) (2024-03-13)
839
+
840
+ ### Bug Fixes
841
+
842
+ - update pie-lib/pie-toolbox PD-3549 ([b5d7d13](https://github.com/pie-framework/pie-elements/commit/b5d7d1352169cc67eaedcd56898a5806b0a8812a))
843
+
844
+ # [7.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.4.1...@pie-element/drawing-response@7.5.0) (2024-03-12)
845
+
846
+ ### Features
847
+
848
+ - Add configuration for custom buttons PD-3518 ([992f573](https://github.com/pie-framework/pie-elements/commit/992f5736c5d34f0d05b071c6b5be3c11c1301fae))
849
+
850
+ ## [7.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.4.0...@pie-element/drawing-response@7.4.1) (2024-03-12)
851
+
852
+ ### Bug Fixes
853
+
854
+ - update pie-lib/pie-toolbox PD-3509, PD-3465 ([b1745aa](https://github.com/pie-framework/pie-elements/commit/b1745aa981722b5561aab1f4495ac81ac7bc4155))
855
+
856
+ # [7.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.3.2...@pie-element/drawing-response@7.4.0) (2024-03-04)
857
+
858
+ ### Features
859
+
860
+ - update pie-lib/pie-toolbox version PD-1870 and PD-3501 ([8df1d8d](https://github.com/pie-framework/pie-elements/commit/8df1d8d281a0d6023d5a9c0e6fdd29fea71b6ac1))
861
+
862
+ ## [7.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.3.1...@pie-element/drawing-response@7.3.2) (2024-02-20)
863
+
864
+ ### Bug Fixes
865
+
866
+ - update pie-lib/pie-toolbox PD-3372, PD-3385, PD-3439 ([a79d800](https://github.com/pie-framework/pie-elements/commit/a79d800bb69af0d175793bc737282100168c4c60))
867
+ - update pie-lib/pie-toolbox PD-3455 ([4ff9971](https://github.com/pie-framework/pie-elements/commit/4ff9971e65b680aea180c94f9e85cab7249af2fb))
868
+
869
+ ## [7.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.3.0...@pie-element/drawing-response@7.3.1) (2024-02-14)
870
+
871
+ ### Bug Fixes
872
+
873
+ - pie-lib/pie-toolbox with slate updates ([a8f8707](https://github.com/pie-framework/pie-elements/commit/a8f8707b2c197c2b40fb6632cee0ba4c27aa9aa4))
874
+ - update pie-lib/pie-toolbox ([cec328c](https://github.com/pie-framework/pie-elements/commit/cec328caf5b69d9fee00473c502aed62d6e27462))
875
+
876
+ # [7.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.2.5...@pie-element/drawing-response@7.3.0) (2024-02-09)
877
+
878
+ ### Features
879
+
880
+ - update pie-toolbox version SC-28868 ([5745f50](https://github.com/pie-framework/pie-elements/commit/5745f502c89d730e72d4cdb83e96c9465a81ae19))
881
+
882
+ ## [7.2.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.2.4...@pie-element/drawing-response@7.2.5) (2024-02-07)
883
+
884
+ ### Bug Fixes
885
+
886
+ - update pie-toolbox version PD-3423 ([053ad69](https://github.com/pie-framework/pie-elements/commit/053ad690619980bce68b1b44e51975fcf91054ec))
887
+
888
+ ## [7.2.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.2.3...@pie-element/drawing-response@7.2.4) (2024-01-24)
889
+
890
+ ### Bug Fixes
891
+
892
+ - update to pie-lib/pie-toolbox 1.5.7 PD-3404 ([eae668d](https://github.com/pie-framework/pie-elements/commit/eae668d980ef4731af5eceb3e70329b7621a232b))
893
+
894
+ ## [7.2.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.2.2...@pie-element/drawing-response@7.2.3) (2024-01-24)
895
+
896
+ ### Bug Fixes
897
+
898
+ - update to pie-lib/pie-toolbox 1.5.6 to fix issue introduced by fix for PD-3392 ([8d0a33f](https://github.com/pie-framework/pie-elements/commit/8d0a33f51a5ebe442eb824749cb419bf23c44d28))
899
+
900
+ ## [7.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.2.1...@pie-element/drawing-response@7.2.2) (2024-01-23)
901
+
902
+ ### Bug Fixes
903
+
904
+ - update to pie-lib/pie-toolbox 1.5.4 for PD-3387, PD-3384, PD-3383, PD-3392 ([2278f9a](https://github.com/pie-framework/pie-elements/commit/2278f9a3fdf1bc89ab590f240d926a857339179e))
905
+ - update to pie-lib/pie-toolbox 1.5.5 for PD-3392 ([d4286e0](https://github.com/pie-framework/pie-elements/commit/d4286e08a060a73e6de098f87173baaaa88cc997))
906
+
907
+ ## [7.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.2.0...@pie-element/drawing-response@7.2.1) (2024-01-15)
908
+
909
+ ### Bug Fixes
910
+
911
+ - update pie-lib/pie-toolbox PD-3366, PD-3367, PD-3381 ([8c9d35f](https://github.com/pie-framework/pie-elements/commit/8c9d35ff6f0dad1a161d6a2dba203a169169e562))
912
+
913
+ # [7.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.1.2...@pie-element/drawing-response@7.2.0) (2024-01-08)
914
+
915
+ ### Bug Fixes
916
+
917
+ - update pie-lib/pie-toolbox PD-2068, PD-2060 ([b63f783](https://github.com/pie-framework/pie-elements/commit/b63f78371452e265f31f721dcfa5f8ba9789089c))
918
+ - update pie-lib/pie-toolbox PD-3352 ([c40c326](https://github.com/pie-framework/pie-elements/commit/c40c326209315b57ce8da802b8e00616256e3bd6))
919
+ - update pie-lib/pie-toolbox SC-27396, SC-27398 ([658a553](https://github.com/pie-framework/pie-elements/commit/658a55358181271b508f7d550467eefadcd71544))
920
+
921
+ ### Features
922
+
923
+ - refactor for pie-lib/pie-toolbox and add print module for boilerplate-item-type ([8230d26](https://github.com/pie-framework/pie-elements/commit/8230d264069672c4a3242ff5ed60a6842bf5147f))
924
+
925
+ ## [7.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.1.1...@pie-element/drawing-response@7.1.2) (2024-01-08)
926
+
927
+ ### Bug Fixes
928
+
929
+ - update pie-lib/pie-toolbox PD-3352,PD-3348, PD-3296 ([48b1952](https://github.com/pie-framework/pie-elements/commit/48b1952831835ead598b692abb3d492ec9adb564))
930
+
931
+ ## [7.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.1.0...@pie-element/drawing-response@7.1.1) (2024-01-04)
932
+
933
+ ### Bug Fixes
934
+
935
+ - update pie-lib/pie-toolbox PD-2068, PD-2060 ([e918850](https://github.com/pie-framework/pie-elements/commit/e9188502ffeaefe41bf0f23895d4bb2daf839364))
936
+ - update pie-lib/pie-toolbox PD-3037 ([b2f689a](https://github.com/pie-framework/pie-elements/commit/b2f689a416c2c39d7ed423a22db02dd32415ba82))
937
+
938
+ # [7.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.0.3...@pie-element/drawing-response@7.1.0) (2023-12-19)
939
+
940
+ ### Bug Fixes
941
+
942
+ - update pie-lib/pie-toolbox PD-2068 ([34eccd5](https://github.com/pie-framework/pie-elements/commit/34eccd52c44259eddf3e2b816b00b82f83bc2bf8))
943
+
944
+ ### Features
945
+
946
+ - update pie-lib/pie-toolbox PD-2555 ([86d4fd9](https://github.com/pie-framework/pie-elements/commit/86d4fd909180dd1fcbc446bd8b29c23af21a1c69))
947
+ - update pie-lib/pie-toolbox PD-3307, PD-2067, PD-3271, PD-3041, PD-2068 ([2eabcbd](https://github.com/pie-framework/pie-elements/commit/2eabcbd036e318bb24552f4140ca7384ad865951))
948
+
949
+ ## [7.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.0.2...@pie-element/drawing-response@7.0.3) (2023-11-27)
950
+
951
+ ### Bug Fixes
952
+
953
+ - update pie-lib ([74283d7](https://github.com/pie-framework/pie-elements/commit/74283d71b12ab9c82875ce995368e5e39f4face6))
954
+
955
+ ## [7.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.0.1...@pie-element/drawing-response@7.0.2) (2023-11-27)
956
+
957
+ ### Bug Fixes
958
+
959
+ - update pie-lib/pie-toolbox PD-597 ([1ec84aa](https://github.com/pie-framework/pie-elements/commit/1ec84aadae515088ef65b99f780a5e5dca516f99))
960
+ - update pie-libs PD-2996 ([cd092c6](https://github.com/pie-framework/pie-elements/commit/cd092c6b5c4db91645394cd23febc1f9a07f46f9))
961
+
962
+ ## [7.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@7.0.0...@pie-element/drawing-response@7.0.1) (2023-11-09)
963
+
964
+ ### Bug Fixes
965
+
966
+ - update pie-lib/pie-toolbox PD-3221, PD-3249, PD-2765 ([9de1563](https://github.com/pie-framework/pie-elements/commit/9de1563d636983c3ddceee0279c0709d396d4f96))
967
+
968
+ # [7.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.8.1...@pie-element/drawing-response@7.0.0) (2023-11-07)
969
+
970
+ ### Bug Fixes
971
+
972
+ - fixed imports and used next version of rubric and multi-trait-rubric for complex-rubric ([bdf07b0](https://github.com/pie-framework/pie-elements/commit/bdf07b05e4fe0c32576bdfb4b7d3a2a4d7a5cbd7))
973
+ - update pie-lib version to fix imports for pie-lib/pie-toolbox/editable-html ([a90cbf6](https://github.com/pie-framework/pie-elements/commit/a90cbf6be81824e7266df23c2dc49b259337c1b6))
974
+ - update pie-lib/pie-toolbox version ([212cbfa](https://github.com/pie-framework/pie-elements/commit/212cbfad27b29f0b1b2a3706ba82f6fb59147001))
975
+ - update pie-lib/pie-toolbox version ([b791e10](https://github.com/pie-framework/pie-elements/commit/b791e10857928766e2d73c6aa80b3fb50fd1afac))
976
+ - update pie-lib/pie-toolbox version ([7f64f9f](https://github.com/pie-framework/pie-elements/commit/7f64f9f2b874fd08bd8f6f05c1c4292c34ac6338))
977
+
978
+ ### Code Refactoring
979
+
980
+ - replaced all pie-lib packages with the new pie-toolbox package that contains all of them. ([073d7e5](https://github.com/pie-framework/pie-elements/commit/073d7e5175f7a73069f09d2ceda799682acce494))
981
+
982
+ ### BREAKING CHANGES
983
+
984
+ - using pie-lib/pie-toolbox now, instead of any other pie-lib package.
985
+
986
+ ## [6.8.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.8.0...@pie-element/drawing-response@6.8.1) (2023-10-26)
987
+
988
+ ### Bug Fixes
989
+
990
+ - update pie-lib PD-3221 ([f04d59f](https://github.com/pie-framework/pie-elements/commit/f04d59f204852e430dc3e8fe2c442bb9a1634761))
991
+
992
+ # [6.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.7.5...@pie-element/drawing-response@6.8.0) (2023-10-16)
993
+
994
+ ### Features
995
+
996
+ - updated pie-libs PD-2950 ([acffe41](https://github.com/pie-framework/pie-elements/commit/acffe41120fbe288e375321cbd58cfbd48f98595))
997
+
998
+ ## [6.7.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.7.4...@pie-element/drawing-response@6.7.5) (2023-10-16)
999
+
1000
+ ### Bug Fixes
1001
+
1002
+ - updated pie-libs PD-3223, PD-3121, PD-3018, PD-2765, PD-3105 ([666e660](https://github.com/pie-framework/pie-elements/commit/666e6604c40b9bde8b88af5ce1b02ba65f11e957))
1003
+
1004
+ ## [6.7.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.7.3...@pie-element/drawing-response@6.7.4) (2023-10-03)
1005
+
1006
+ ### Bug Fixes
1007
+
1008
+ - update with latest pie-libs, forcing pie-lib/math-rendering to v2.5.18 ([7ff936a](https://github.com/pie-framework/pie-elements/commit/7ff936ab9fc85c264032181755ce5e2149825406))
1009
+
1010
+ ## [6.7.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.7.2...@pie-element/drawing-response@6.7.3) (2023-09-28)
1011
+
1012
+ **Note:** Version bump only for package @pie-element/drawing-response
1013
+
1014
+ ## [6.7.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.7.1...@pie-element/drawing-response@6.7.2) (2023-09-26)
1015
+
1016
+ ### Bug Fixes
1017
+
1018
+ - update pie-libs ([702f4c6](https://github.com/pie-framework/pie-elements/commit/702f4c657f3413274b3a4443c1950e2cdf8e5588))
1019
+
1020
+ ## [6.7.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.7.0...@pie-element/drawing-response@6.7.1) (2023-09-25)
1021
+
1022
+ **Note:** Version bump only for package @pie-element/drawing-response
1023
+
1024
+ # [6.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.6.5...@pie-element/drawing-response@6.7.0) (2023-09-25)
1025
+
1026
+ ### Bug Fixes
1027
+
1028
+ - configuration setter fix for language props ([da6bc07](https://github.com/pie-framework/pie-elements/commit/da6bc07a067f0a4d1167ab85e07bef6c605643ad))
1029
+ - update pie-libs PD-3167 ([1b109bb](https://github.com/pie-framework/pie-elements/commit/1b109bb3b74dcea72ee2f241996a5e6a71893b4e))
1030
+ - update pie-libs PD-3167 ([b21d0c3](https://github.com/pie-framework/pie-elements/commit/b21d0c332623667257a5de1363b9f4fc6ee2bb51))
1031
+ - update pie-libs PD-3167 ([1a76806](https://github.com/pie-framework/pie-elements/commit/1a7680657ebe0a73969f3100e60f0a090ffc7ada))
1032
+ - update pie-libs PD-3167, PD-3105, PD-3162, PD-2765 ([26199b2](https://github.com/pie-framework/pie-elements/commit/26199b255ddbcb9255f2769091c7ba58f8b1dae0))
1033
+
1034
+ ### Features
1035
+
1036
+ - update pie-libs PD-3011 ([0fd32b3](https://github.com/pie-framework/pie-elements/commit/0fd32b3fd1333bb25de584b98c8ef0471de2d5e8))
1037
+
1038
+ ## [6.6.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.6.4...@pie-element/drawing-response@6.6.5) (2023-09-18)
1039
+
1040
+ ### Bug Fixes
1041
+
1042
+ - add sanity checks DNA-18268 ([29d7de9](https://github.com/pie-framework/pie-elements/commit/29d7de9422c075117173a3afeb2b29acf1caab3c))
1043
+
1044
+ ## [6.6.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.6.3...@pie-element/drawing-response@6.6.4) (2023-09-05)
1045
+
1046
+ ### Bug Fixes
1047
+
1048
+ - update pie-libs PD-2765 ([f03972d](https://github.com/pie-framework/pie-elements/commit/f03972dda33ff5d4c0343f094fd33acadad30cb4))
1049
+
1050
+ ## [6.6.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.6.2...@pie-element/drawing-response@6.6.3) (2023-09-04)
1051
+
1052
+ ### Bug Fixes
1053
+
1054
+ - update pie-libs PD-3051 ([1e1a7a3](https://github.com/pie-framework/pie-elements/commit/1e1a7a38732eff5585ad789aea5a08c5e94720ae))
1055
+ - updated pie-libs PD-2765, PD-3051 ([e6f5b17](https://github.com/pie-framework/pie-elements/commit/e6f5b17c95faf426898f897651863089a54ff3ff))
1056
+
1057
+ ## [6.6.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.6.1...@pie-element/drawing-response@6.6.2) (2023-08-21)
1058
+
1059
+ ### Bug Fixes
1060
+
1061
+ - update pie-libs PD-3119 ([01c474b](https://github.com/pie-framework/pie-elements/commit/01c474bf9396374dc86b9248651206672b765af6))
1062
+
1063
+ ## [6.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.6.0...@pie-element/drawing-response@6.6.1) (2023-08-21)
1064
+
1065
+ **Note:** Version bump only for package @pie-element/drawing-response
1066
+
1067
+ # [6.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.5.2...@pie-element/drawing-response@6.6.0) (2023-08-15)
1068
+
1069
+ ### Bug Fixes
1070
+
1071
+ - update pie-libs PD-3049, PD-2916, PD-2059 ([0e800b5](https://github.com/pie-framework/pie-elements/commit/0e800b54b852304d222a292400362e0870f0cc9a))
1072
+ - updated pie-lib to fix PD-2802, PD-3050, PD-3051 ([34b4dd7](https://github.com/pie-framework/pie-elements/commit/34b4dd7ba18f4c18589975921cc9d127926f8294))
1073
+ - updated pie-libs Pd-1163 ([300c1db](https://github.com/pie-framework/pie-elements/commit/300c1db1658ce85ca58f3cc2981b604aefbf9f01))
1074
+
1075
+ ### Features
1076
+
1077
+ - **drawing-response:** add drawing response logic for configuration ([7137cc5](https://github.com/pie-framework/pie-elements/commit/7137cc5a70cc81997587cfcafc205dd82dfb3a37))
1078
+
1079
+ ## [6.5.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.5.1...@pie-element/drawing-response@6.5.2) (2023-07-24)
1080
+
1081
+ ### Bug Fixes
1082
+
1083
+ - update pie-libs PD-2984, PD-2991, PD-2992, PD-3036 ([12c9426](https://github.com/pie-framework/pie-elements/commit/12c94269e3b645d74a0014c597d30662823bb34a))
1084
+
1085
+ ## [6.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.5.0...@pie-element/drawing-response@6.5.1) (2023-07-06)
1086
+
1087
+ ### Bug Fixes
1088
+
1089
+ - updated editable-html dependent packages for PD-2150 ([ffa6297](https://github.com/pie-framework/pie-elements/commit/ffa62977a9e329c1e12ea1dfcb2af4ba4c993bca))
1090
+ - updated pie-lib PD-2150 ([72f20be](https://github.com/pie-framework/pie-elements/commit/72f20be258248c86dde8d5d587290cd640bfd947))
1091
+
1092
+ # [6.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.4.0...@pie-element/drawing-response@6.5.0) (2023-06-13)
1093
+
1094
+ ### Bug Fixes
1095
+
1096
+ - tests ([b5c5cae](https://github.com/pie-framework/pie-elements/commit/b5c5cae308eea1f99f05c01dbf5ee89cd69ceac8))
1097
+ - update docs ([bc716ee](https://github.com/pie-framework/pie-elements/commit/bc716ee68f0673b391375df9d68904af4110c37a))
1098
+ - update libs PD-2722, PD-2827, PD-2832 ([834ecf9](https://github.com/pie-framework/pie-elements/commit/834ecf92cc7204c851c68f0945ad5d52e453c9d0))
1099
+ - update pie-libs ([649fb8f](https://github.com/pie-framework/pie-elements/commit/649fb8f535172d76b3ffc676ec53b2726432808c))
1100
+ - update pie-libs PD-2150, PD-2795 ([ff6f64a](https://github.com/pie-framework/pie-elements/commit/ff6f64afa6ccaa8a060c986b1637c680e68c62b6))
1101
+ - updated snapshots ([5cc0c23](https://github.com/pie-framework/pie-elements/commit/5cc0c23e41565160b7ffed3053d1d08aca637a88))
1102
+
1103
+ ### Features
1104
+
1105
+ - **drawing-response:** add language translator to text entry ([c45e41c](https://github.com/pie-framework/pie-elements/commit/c45e41c15af31ea5866b73a091d75f05cd865e14))
1106
+ - **drawing-response:** add translator PD-2795 ([371fbce](https://github.com/pie-framework/pie-elements/commit/371fbceba849a1777770c9aba7584d914c60728c))
1107
+ - add mathMlOptions PD-2150 ([0c6984c](https://github.com/pie-framework/pie-elements/commit/0c6984cf042141eac36badfbab1c46d8d42f71ee))
1108
+
1109
+ # [6.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.3.3...@pie-element/drawing-response@6.4.0) (2023-05-23)
1110
+
1111
+ ### Bug Fixes
1112
+
1113
+ - update pie-lib PD-2777, PD-1914, PD-2066 ([7102893](https://github.com/pie-framework/pie-elements/commit/71028930a6dc554eb587cf4de0c1d0d28bfff1f5))
1114
+ - update pie-libs PD-2774, PD-1026 ([04f8cd0](https://github.com/pie-framework/pie-elements/commit/04f8cd000afdb2ccb0c25146d46acb60c5fea651))
1115
+
1116
+ ### Features
1117
+
1118
+ - ability to upload images when using imageSupoort from pie-api-components PD-2707 ([685f3b0](https://github.com/pie-framework/pie-elements/commit/685f3b035d86c5f4ad60cdb9ec84690d5ccaa4fc))
1119
+
1120
+ ## [6.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.3.2...@pie-element/drawing-response@6.3.3) (2023-05-02)
1121
+
1122
+ ### Bug Fixes
1123
+
1124
+ - update pie-libs (fix eslint problems PD-2732) ([3fa630e](https://github.com/pie-framework/pie-elements/commit/3fa630eb96b116cb685ab58fbf216fb572d1c333))
1125
+ - update pie-libs PD-2755, PD-2625, PD-2119 ([698446b](https://github.com/pie-framework/pie-elements/commit/698446b29a553a022c91825118370faae824b723))
1126
+ - update pie-libs PD-2755, PD-2625, PD-491, PD-2753, PD-2758, PD-2720, PD-2770 ([2cf9ffa](https://github.com/pie-framework/pie-elements/commit/2cf9ffa4fbef6f2ebc0924f305debc9fc6560a75))
1127
+
1128
+ ## [6.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.3.1...@pie-element/drawing-response@6.3.2) (2023-04-25)
1129
+
1130
+ ### Bug Fixes
1131
+
1132
+ - update pie-libs PD-2762 ([7ac4313](https://github.com/pie-framework/pie-elements/commit/7ac431346b822fe3bbb0d13375f044f6ce1f426b))
1133
+
1134
+ ## [6.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.3.0...@pie-element/drawing-response@6.3.1) (2023-04-14)
1135
+
1136
+ ### Bug Fixes
1137
+
1138
+ - update pie-libs ([830e9fc](https://github.com/pie-framework/pie-elements/commit/830e9fcf07f057e632b44d7a64ddb436353d49f6))
1139
+
1140
+ # [6.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.2.2...@pie-element/drawing-response@6.3.0) (2023-04-10)
1141
+
1142
+ ### Bug Fixes
1143
+
1144
+ - update pie-libs ([b7d3e7f](https://github.com/pie-framework/pie-elements/commit/b7d3e7f7160aafd5dcfed2960bc6c2f03dba2180))
1145
+ - **all elements:** fix eslint problems-PD-2732 ([eaeabfb](https://github.com/pie-framework/pie-elements/commit/eaeabfbbe3a868a1f9828ef831a7ea864dee75a9))
1146
+ - update pie-libs ([6738269](https://github.com/pie-framework/pie-elements/commit/6738269d878f24ec4429f210d18bbf591123a55f))
1147
+ - update pie-libs ([9f05be1](https://github.com/pie-framework/pie-elements/commit/9f05be1ae6bf0a9651739b6bef7eca32ecabb4ce))
1148
+
1149
+ ### Features
1150
+
1151
+ - added the ability to set min/max width and height for the content PD-2425 ([befba3a](https://github.com/pie-framework/pie-elements/commit/befba3a8fa23e8dd21a3e3f63f306bd6dfc35bdd))
1152
+
1153
+ ## [6.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.2.0...@pie-element/drawing-response@6.2.2) (2023-03-20)
1154
+
1155
+ ### Bug Fixes
1156
+
1157
+ - version bump ([b3f6919](https://github.com/pie-framework/pie-elements/commit/b3f6919c3ad2078953ed5162327cf356090c9aec))
1158
+
1159
+ # [6.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.1.2...@pie-element/drawing-response@6.2.0) (2023-03-20)
1160
+
1161
+ ### Bug Fixes
1162
+
1163
+ - update pie-libs ([340825a](https://github.com/pie-framework/pie-elements/commit/340825aab8c88569378eb5af6c5b9c9b99aeb285))
1164
+ - update pie-libs ([1fe3d37](https://github.com/pie-framework/pie-elements/commit/1fe3d37d2b001f7944e4da7c895a83ccecefefcb))
1165
+
1166
+ ### Features
1167
+
1168
+ - added color theming support PD-310 ([64976e0](https://github.com/pie-framework/pie-elements/commit/64976e08151b346f0760aedee2cd0e4ce6ff7f8b))
1169
+
1170
+ ## [6.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.1.1...@pie-element/drawing-response@6.1.2) (2023-02-28)
1171
+
1172
+ ### Bug Fixes
1173
+
1174
+ - update pie-libs ([7bb37a7](https://github.com/pie-framework/pie-elements/commit/7bb37a7da11017eff7191968fad4517182f1c363))
1175
+
1176
+ ## [6.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.1.0...@pie-element/drawing-response@6.1.1) (2023-02-28)
1177
+
1178
+ ### Bug Fixes
1179
+
1180
+ - update pie-libs ([6a10f3f](https://github.com/pie-framework/pie-elements/commit/6a10f3f45306cc9d9e077e45a90245d047235521))
1181
+
1182
+ # [6.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@6.0.0...@pie-element/drawing-response@6.1.0) (2023-02-28)
1183
+
1184
+ ### Bug Fixes
1185
+
1186
+ - update pie-libs ([110161a](https://github.com/pie-framework/pie-elements/commit/110161ad113e76b5fdb6fc06e233889befbc366a))
1187
+
1188
+ ### Features
1189
+
1190
+ - add back forceEnabled functionality (at moment, just for testing purpose) ([f551483](https://github.com/pie-framework/pie-elements/commit/f5514830d53ecf98cc5ce0c9a3afc779195bd82d))
1191
+ - add back forceEnabled functionality with documentation ([10a5502](https://github.com/pie-framework/pie-elements/commit/10a55021ca455b27dc5e5a38436648a1fd2f9d36))
1192
+
1193
+ # [6.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@5.0.0...@pie-element/drawing-response@6.0.0) (2023-02-22)
1194
+
1195
+ ### Bug Fixes
1196
+
1197
+ - **drawing-response, extended-text-entry:** imports ([795a39b](https://github.com/pie-framework/pie-elements/commit/795a39b2fa89301393c4075da2d6c64eb9220065))
1198
+ - **drawing-response, extended-text-entry:** remove verifyRubric method. remove enabled logic ([bcd498d](https://github.com/pie-framework/pie-elements/commit/bcd498df3712a24643199103df7a72316c667a00))
1199
+ - change withRubric type for extended-text-entry and drawing-response. docs update from different pr for multi-trait-rubric ([7bf77ad](https://github.com/pie-framework/pie-elements/commit/7bf77ada1a09bc56a053341bce9a0eaf02955672))
1200
+
1201
+ ### BREAKING CHANGES
1202
+
1203
+ - **drawing-response, extended-text-entry:** create new versions to avoid issues
1204
+
1205
+ # [5.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.7.0...@pie-element/drawing-response@5.0.0) (2023-02-14)
1206
+
1207
+ ### Features
1208
+
1209
+ - PD-2624 ([fc5ce28](https://github.com/pie-framework/pie-elements/commit/fc5ce282c52308665aeec8bcec5d6338cc83f513))
1210
+ - remove force enabled logic from withRubric property PD-2624 ([9e557b9](https://github.com/pie-framework/pie-elements/commit/9e557b90285e3fe1ec3d70d2b3865fc4968cd690))
1211
+ - update pie-libs ([e2c0b89](https://github.com/pie-framework/pie-elements/commit/e2c0b894caa20ed5d5681302a84b2bfd20dbd9f6))
1212
+
1213
+ ### BREAKING CHANGES
1214
+
1215
+ - create new versions to avoid issues
1216
+
1217
+ # [4.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.6.0...@pie-element/drawing-response@4.7.0) (2023-02-01)
1218
+
1219
+ ### Features
1220
+
1221
+ - update pie-libs ([0af590d](https://github.com/pie-framework/pie-elements/commit/0af590d624f4b2c0af58039e935531cef52e2a86))
1222
+
1223
+ # [4.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.5.0...@pie-element/drawing-response@4.6.0) (2023-01-17)
1224
+
1225
+ ### Features
1226
+
1227
+ - update pie-libs ([6423903](https://github.com/pie-framework/pie-elements/commit/6423903898b041f56db2111de2e4aac4ee9f1fd3))
1228
+
1229
+ # [4.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.4.1...@pie-element/drawing-response@4.5.0) (2023-01-05)
1230
+
1231
+ ### Features
1232
+
1233
+ - update pie-libs ([b174476](https://github.com/pie-framework/pie-elements/commit/b174476729119a0689f1f8adfc8c235246676cab))
1234
+ - update pie-libs ([f72c3c8](https://github.com/pie-framework/pie-elements/commit/f72c3c8d8bc9bbf061bb81502317157a63c22972))
1235
+ - update pie-libs ([8490729](https://github.com/pie-framework/pie-elements/commit/8490729a2389d36fd3968f0806119fde96577842))
1236
+ - **drawing-response:** added configuration prop to hide the settings panel PD-1999 ([57ddf9e](https://github.com/pie-framework/pie-elements/commit/57ddf9e56540f77ab3286495d660821bc70deb59))
1237
+
1238
+ ## [4.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.4.0...@pie-element/drawing-response@4.4.1) (2022-12-21)
1239
+
1240
+ ### Bug Fixes
1241
+
1242
+ - updated pie-libs ([8cb5b90](https://github.com/pie-framework/pie-elements/commit/8cb5b90d501ccbdf5ffd764e6555faa48b8f54d6))
1243
+
1244
+ # [4.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.3.4...@pie-element/drawing-response@4.4.0) (2022-12-20)
1245
+
1246
+ ### Bug Fixes
1247
+
1248
+ - updated pie-libs ([6549302](https://github.com/pie-framework/pie-elements/commit/65493026fbf356c5ab752ae6a14d961d4b256368))
1249
+
1250
+ ### Features
1251
+
1252
+ - **pie-models:** update schemas for extended-text-entry in order to include the updated spellchek property ([bf4b656](https://github.com/pie-framework/pie-elements/commit/bf4b656241887acf8e2aa1264e747c0c338ed727))
1253
+
1254
+ ## [4.3.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.3.3...@pie-element/drawing-response@4.3.4) (2022-12-07)
1255
+
1256
+ ### Bug Fixes
1257
+
1258
+ - update libs ([441f403](https://github.com/pie-framework/pie-elements/commit/441f403870b7bec0d61fab58b8d93dbe0ead4c32))
1259
+ - update libs for PD-2030 PD-2031 ([3174022](https://github.com/pie-framework/pie-elements/commit/3174022d45603ed217bbe8804a142b07084636a5))
1260
+ - updated lib PD-1715 ([42e788d](https://github.com/pie-framework/pie-elements/commit/42e788db0c792838994e55001952da7701251a8e))
1261
+ - updated libs ([c20de3a](https://github.com/pie-framework/pie-elements/commit/c20de3a6ba4499a090c809e18e52588d2a585fa0))
1262
+ - updated libs ([0eed79a](https://github.com/pie-framework/pie-elements/commit/0eed79a32c3b777c16c8cabf201513fc1d2726a0))
1263
+ - updated libs ([343c9ec](https://github.com/pie-framework/pie-elements/commit/343c9ec3dccba7f781e90ae2bd195cac6f78f467))
1264
+ - **drawing-response:** ensure that using the drawing tools on an iPad or other touchscreen device does not also cause the page to scroll at the same time ([f2be94c](https://github.com/pie-framework/pie-elements/commit/f2be94c011c1c0cdfc21ff210d3b683acbc3ed09))
1265
+
1266
+ ## [4.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.3.2...@pie-element/drawing-response@4.3.3) (2022-11-15)
1267
+
1268
+ ### Bug Fixes
1269
+
1270
+ - **drawing-response:** code review observations-PD-2047 ([0535548](https://github.com/pie-framework/pie-elements/commit/053554892f6fa9c280d77007905a13dc431f8dcc))
1271
+ - **drawing-response:** for black, text color is changed to white-PD-2047 ([f4270aa](https://github.com/pie-framework/pie-elements/commit/f4270aa931eb68f243153f0d550dd258c5dca636))
1272
+
1273
+ ## [4.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.3.1...@pie-element/drawing-response@4.3.2) (2022-11-11)
1274
+
1275
+ ### Bug Fixes
1276
+
1277
+ - add sanity checks ([1cfd187](https://github.com/pie-framework/pie-elements/commit/1cfd187d2c2bab2d589aa2d7b7563b1c69e3295e))
1278
+
1279
+ ## [4.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.3.0...@pie-element/drawing-response@4.3.1) (2022-11-11)
1280
+
1281
+ ### Bug Fixes
1282
+
1283
+ - **drawing-response:** add sanity checks for withRubric ([d22ea78](https://github.com/pie-framework/pie-elements/commit/d22ea78fc5b0a9dd73d3614fbd2a39b28183a991))
1284
+
1285
+ # [4.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.2.2...@pie-element/drawing-response@4.3.0) (2022-11-01)
1286
+
1287
+ ### Features
1288
+
1289
+ - add a different property in the config, to force a value ([300c664](https://github.com/pie-framework/pie-elements/commit/300c664618f46177137deef3bced2d096cdb8126))
1290
+
1291
+ ## [4.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.2.1...@pie-element/drawing-response@4.2.2) (2022-11-01)
1292
+
1293
+ ### Bug Fixes
1294
+
1295
+ - trigger updating model depending on configuration.withRubric ([6b42963](https://github.com/pie-framework/pie-elements/commit/6b429639dade1f72e77e972530ab784c5417384c))
1296
+ - trigger updating model depending on configuration.withRubric (added additional check) ([02ae9c0](https://github.com/pie-framework/pie-elements/commit/02ae9c0664aa140d6624643b6efbdef33cea2acb))
1297
+
1298
+ ## [4.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.2.0...@pie-element/drawing-response@4.2.1) (2022-10-31)
1299
+
1300
+ ### Bug Fixes
1301
+
1302
+ - **drawing-response:** add missing spaces to lightblue and lightyellow colors-PD-2046 ([f20de3f](https://github.com/pie-framework/pie-elements/commit/f20de3fee768818acb38531e8d0b7c063a0e6994))
1303
+
1304
+ # [4.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.1.9...@pie-element/drawing-response@4.2.0) (2022-10-17)
1305
+
1306
+ ### Bug Fixes
1307
+
1308
+ - update snapshots ([9781596](https://github.com/pie-framework/pie-elements/commit/978159686bbbd6b727dff4b88ce4ab9606504586))
1309
+
1310
+ ### Features
1311
+
1312
+ - set withRubric to false in item default configurations. Set rubricEnabled to true if it's enabled for drawing-response and extended-text-entry ([a209057](https://github.com/pie-framework/pie-elements/commit/a209057f5a3fa5438efc8595453c89c11959a8f5))
1313
+ - update libs ([7e174fb](https://github.com/pie-framework/pie-elements/commit/7e174fba75e7ea668900ad5c103751cefe33e2af))
1314
+ - **docs:** update docs ([23cab69](https://github.com/pie-framework/pie-elements/commit/23cab69700cfee41395941f99599253cba8a28a3))
1315
+ - **drawing-response:** add pie-api config PD-23 ([d98fc22](https://github.com/pie-framework/pie-elements/commit/d98fc225c16f6bc89631f72ea488ff67feab3872))
1316
+ - **drawing-response:** add settings to enable rubric. Add withRubric prop to configuration and rubricEnabled prop to model PD-2096 ([142429a](https://github.com/pie-framework/pie-elements/commit/142429a1a92af9e41f670d4f611e9bb62039a1f3))
1317
+ - **drawing-response:** updated snapshot PD-2096 ([4e1a63c](https://github.com/pie-framework/pie-elements/commit/4e1a63cf0840c2ac93de0b314d56b9bb6c3835ac))
1318
+ - enable spanish and special characters in author PD-2120 ([85fd3dd](https://github.com/pie-framework/pie-elements/commit/85fd3dd0fc10da1a2dfd5a842809c625790f8ba9))
1319
+ - **drawing-response:** add uploadSoundSupport property PD-23-updated ([9a0f0b4](https://github.com/pie-framework/pie-elements/commit/9a0f0b4adb5d3956240fdebc62485c27572be495))
1320
+
1321
+ ## [4.1.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.1.8...@pie-element/drawing-response@4.1.9) (2022-09-29)
1322
+
1323
+ **Note:** Version bump only for package @pie-element/drawing-response
1324
+
1325
+ ## [4.1.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.1.7...@pie-element/drawing-response@4.1.8) (2022-09-14)
1326
+
1327
+ **Note:** Version bump only for package @pie-element/drawing-response
1328
+
1329
+ ## [4.1.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.1.6...@pie-element/drawing-response@4.1.7) (2022-08-31)
1330
+
1331
+ **Note:** Version bump only for package @pie-element/drawing-response
1332
+
1333
+ ## [4.1.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.1.5...@pie-element/drawing-response@4.1.6) (2022-08-16)
1334
+
1335
+ ### Bug Fixes
1336
+
1337
+ - tests ([ae31244](https://github.com/pie-framework/pie-elements/commit/ae312449fcf05ec6787163259b3c75e15d42b261))
1338
+ - **drawing-respone:** make sure image dimensions are not reset in IBX in authoring and preview PD-1932 ([47fc982](https://github.com/pie-framework/pie-elements/commit/47fc982d21f992fecf61af96bc15744055787f78))
1339
+ - **drawing-response:** fix image aspect ratio PD-1934 ([0a094b8](https://github.com/pie-framework/pie-elements/commit/0a094b874abc81a6f642bf0bdece83ee2ce815a4))
1340
+ - **drawing-response:** fix svg not loading PD-1933 ([f65540e](https://github.com/pie-framework/pie-elements/commit/f65540e1627184d47f29ec3aeea0ad439ca07844))
1341
+
1342
+ ## [4.1.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.1.4...@pie-element/drawing-response@4.1.5) (2022-08-08)
1343
+
1344
+ **Note:** Version bump only for package @pie-element/drawing-response
1345
+
1346
+ ## [4.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.1.3...@pie-element/drawing-response@4.1.4) (2022-08-02)
1347
+
1348
+ **Note:** Version bump only for package @pie-element/drawing-response
1349
+
1350
+ ## [4.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.1.2...@pie-element/drawing-response@4.1.3) (2022-07-22)
1351
+
1352
+ **Note:** Version bump only for package @pie-element/drawing-response
1353
+
1354
+ ## [4.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.1.1...@pie-element/drawing-response@4.1.2) (2022-07-20)
1355
+
1356
+ **Note:** Version bump only for package @pie-element/drawing-response
1357
+
1358
+ ## [4.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.1.0...@pie-element/drawing-response@4.1.1) (2022-07-19)
1359
+
1360
+ **Note:** Version bump only for package @pie-element/drawing-response
1361
+
1362
+ # [4.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@4.0.0...@pie-element/drawing-response@4.1.0) (2022-06-28)
1363
+
1364
+ ### Bug Fixes
1365
+
1366
+ - **drawing-response:** PD-1839 do not set image width if it's 0 ([ba4e321](https://github.com/pie-framework/pie-elements/commit/ba4e321f4fe3252e93ed125efbf93d684a2740f0))
1367
+ - add missing prop ([fd4220c](https://github.com/pie-framework/pie-elements/commit/fd4220c60d519dccd9a37ab3639d4feaa90a58a4))
1368
+ - **drawing-response:** fix width of image not being rendered correctly PD-1839 ([5599ff5](https://github.com/pie-framework/pie-elements/commit/5599ff5c4d03a1d0d86c687f2b781b92903e5a63))
1369
+
1370
+ ### Features
1371
+
1372
+ - **drawing-response:** add maxImageWidth and maxImageHeight props PD-1801 ([4f1fb5d](https://github.com/pie-framework/pie-elements/commit/4f1fb5dfa4616c194eefd1702854a5aaa413ce1f))
1373
+ - Touch screen support for Drawing Response PD-1633 ([9d13832](https://github.com/pie-framework/pie-elements/commit/9d13832075cc84528a9766a087c0bcc77d38e6d2))
1374
+
1375
+ # [4.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.21...@pie-element/drawing-response@4.0.0) (2022-06-28)
1376
+
1377
+ ### chore
1378
+
1379
+ - Merge master with develop. ([cdca48a](https://github.com/pie-framework/pie-elements/commit/cdca48abaa1d4179e4a961e13d171e14b7ed2444))
1380
+
1381
+ ### BREAKING CHANGES
1382
+
1383
+ - Image percent buttons were removed from toolbar.
1384
+ New properties maxImageWidth and maxImageHeight were added.
1385
+
1386
+ ## [3.9.21](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.20...@pie-element/drawing-response@3.9.21) (2022-06-13)
1387
+
1388
+ **Note:** Version bump only for package @pie-element/drawing-response
1389
+
1390
+ ## [3.9.20](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.19...@pie-element/drawing-response@3.9.20) (2022-05-30)
1391
+
1392
+ **Note:** Version bump only for package @pie-element/drawing-response
1393
+
1394
+ ## [3.9.19](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.18...@pie-element/drawing-response@3.9.19) (2022-05-16)
1395
+
1396
+ **Note:** Version bump only for package @pie-element/drawing-response
1397
+
1398
+ ## [3.9.18](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.17...@pie-element/drawing-response@3.9.18) (2022-05-09)
1399
+
1400
+ **Note:** Version bump only for package @pie-element/drawing-response
1401
+
1402
+ ## [3.9.17](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.16...@pie-element/drawing-response@3.9.17) (2022-05-03)
1403
+
1404
+ **Note:** Version bump only for package @pie-element/drawing-response
1405
+
1406
+ ## [3.9.16](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.15...@pie-element/drawing-response@3.9.16) (2022-04-12)
1407
+
1408
+ **Note:** Version bump only for package @pie-element/drawing-response
1409
+
1410
+ ## [3.9.15](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.14...@pie-element/drawing-response@3.9.15) (2022-03-28)
1411
+
1412
+ **Note:** Version bump only for package @pie-element/drawing-response
1413
+
1414
+ ## [3.9.14](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.13...@pie-element/drawing-response@3.9.14) (2022-03-22)
1415
+
1416
+ **Note:** Version bump only for package @pie-element/drawing-response
1417
+
1418
+ ## [3.9.13](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.12...@pie-element/drawing-response@3.9.13) (2022-03-08)
1419
+
1420
+ **Note:** Version bump only for package @pie-element/drawing-response
1421
+
1422
+ ## [3.9.12](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.11...@pie-element/drawing-response@3.9.12) (2022-03-08)
1423
+
1424
+ **Note:** Version bump only for package @pie-element/drawing-response
1425
+
1426
+ ## [3.9.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.10...@pie-element/drawing-response@3.9.11) (2022-02-21)
1427
+
1428
+ **Note:** Version bump only for package @pie-element/drawing-response
1429
+
1430
+ ## [3.9.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.9...@pie-element/drawing-response@3.9.10) (2022-02-04)
1431
+
1432
+ **Note:** Version bump only for package @pie-element/drawing-response
1433
+
1434
+ ## [3.9.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.8...@pie-element/drawing-response@3.9.9) (2022-01-24)
1435
+
1436
+ ### Bug Fixes
1437
+
1438
+ - use preview prompt for prompt, rationale and teacher instructions to fix table rendering PD-1456 ([f330601](https://github.com/pie-framework/pie-elements/commit/f3306019a2d1c8ce3e2783823dfe9ef0a0394e4f))
1439
+
1440
+ ## [3.9.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.7...@pie-element/drawing-response@3.9.8) (2022-01-10)
1441
+
1442
+ **Note:** Version bump only for package @pie-element/drawing-response
1443
+
1444
+ ## [3.9.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.6...@pie-element/drawing-response@3.9.7) (2021-12-23)
1445
+
1446
+ **Note:** Version bump only for package @pie-element/drawing-response
1447
+
1448
+ ## [3.9.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.4...@pie-element/drawing-response@3.9.5) (2021-12-13)
1449
+
1450
+ **Note:** Version bump only for package @pie-element/drawing-response
1451
+
1452
+ ## [3.9.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.9.1...@pie-element/drawing-response@3.9.2) (2021-11-29)
1453
+
1454
+ **Note:** Version bump only for package @pie-element/drawing-response
1455
+
1456
+ ## [3.9.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.8.3...@pie-element/drawing-response@3.9.1) (2021-11-11)
1457
+
1458
+ **Note:** Version bump only for package @pie-element/drawing-response
1459
+
1460
+ # [3.9.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.7.2...@pie-element/drawing-response@3.9.0) (2021-11-11)
1461
+
1462
+ ### Bug Fixes
1463
+
1464
+ - pie-lib updates ([e521c2f](https://github.com/pie-framework/pie-elements/commit/e521c2f1a44aa7f3e14f82a1cee05ceb484ed0a6))
1465
+ - Updated pie-lib versions ([2fe4c5d](https://github.com/pie-framework/pie-elements/commit/2fe4c5d0be2d40f5fdb34815855695a7f1087f56))
1466
+ - Updated pie-lib versions ([1c23830](https://github.com/pie-framework/pie-elements/commit/1c23830fc75d1de5f7bb3bb16de3c665ae5fa350))
1467
+
1468
+ ### Features
1469
+
1470
+ - **drawing-response:** set toolbar editor position to bottom ([cac36e9](https://github.com/pie-framework/pie-elements/commit/cac36e96e1113a4843409ebaa6683b415ea1ee4a))
1471
+
1472
+ ## [3.8.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.8.2...@pie-element/drawing-response@3.8.3) (2021-10-04)
1473
+
1474
+ **Note:** Version bump only for package @pie-element/drawing-response
1475
+
1476
+ ## [3.8.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.8.1...@pie-element/drawing-response@3.8.2) (2021-09-20)
1477
+
1478
+ ### Bug Fixes
1479
+
1480
+ - pie-lib updates ([e521c2f](https://github.com/pie-framework/pie-elements/commit/e521c2f1a44aa7f3e14f82a1cee05ceb484ed0a6))
1481
+ - Updated pie-lib versions ([2fe4c5d](https://github.com/pie-framework/pie-elements/commit/2fe4c5d0be2d40f5fdb34815855695a7f1087f56))
1482
+ - Updated pie-lib versions ([1c23830](https://github.com/pie-framework/pie-elements/commit/1c23830fc75d1de5f7bb3bb16de3c665ae5fa350))
1483
+
1484
+ ## [3.8.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.8.0...@pie-element/drawing-response@3.8.1) (2021-09-01)
1485
+
1486
+ **Note:** Version bump only for package @pie-element/drawing-response
1487
+
1488
+ # [3.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.7.2...@pie-element/drawing-response@3.8.0) (2021-08-05)
1489
+
1490
+ ### Features
1491
+
1492
+ - **drawing-response:** set toolbar editor position to bottom ([cac36e9](https://github.com/pie-framework/pie-elements/commit/cac36e96e1113a4843409ebaa6683b415ea1ee4a))
1493
+
1494
+ ## [3.7.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.7.0...@pie-element/drawing-response@3.7.2) (2021-08-05)
1495
+
1496
+ ### Bug Fixes
1497
+
1498
+ - force bump ([5ea7295](https://github.com/pie-framework/pie-elements/commit/5ea7295e4755fbc492a76e7ec69e5fc35b196919))
1499
+
1500
+ # [3.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.6.0...@pie-element/drawing-response@3.7.0) (2021-06-29)
1501
+
1502
+ ### Bug Fixes
1503
+
1504
+ - Removed excess white space at the beginning of all items - PD-1184 ([#602](https://github.com/pie-framework/pie-elements/issues/602)) ([25b9f72](https://github.com/pie-framework/pie-elements/commit/25b9f72d2fe73bd46ea1a5c3611ff82eef3efb84))
1505
+
1506
+ ### Features
1507
+
1508
+ - **drawing-response:** remove rationale PD-191 ([#597](https://github.com/pie-framework/pie-elements/issues/597)) ([3b52331](https://github.com/pie-framework/pie-elements/commit/3b52331ac843084e6d402daad3536627ab0ddf28))
1509
+
1510
+ # [3.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.16...@pie-element/drawing-response@3.6.0) (2021-04-07)
1511
+
1512
+ ### Bug Fixes
1513
+
1514
+ - **drawing-response:** remove console error PD-263 ([7d33a12](https://github.com/pie-framework/pie-elements/commit/7d33a1266a416c4960193c228f471bdd577f4cb4))
1515
+
1516
+ ### Features
1517
+
1518
+ - merge pie-ui into pie-elements PD-977 ([01ebfd7](https://github.com/pie-framework/pie-elements/commit/01ebfd7ce98b041dd0573575efd8b6da03f22162))
1519
+
1520
+ ## [3.5.16](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.14...@pie-element/drawing-response@3.5.16) (2021-03-03)
1521
+
1522
+ **Note:** Version bump only for package @pie-element/drawing-response
1523
+
1524
+ ## [3.5.14](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.13...@pie-element/drawing-response@3.5.14) (2021-03-03)
1525
+
1526
+ **Note:** Version bump only for package @pie-element/drawing-response
1527
+
1528
+ ## [3.5.13](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.12...@pie-element/drawing-response@3.5.13) (2021-03-03)
1529
+
1530
+ ### Bug Fixes
1531
+
1532
+ - hotspot and drawing response settings panel sections to fix PD-61 ([1bf43f0](https://github.com/pie-framework/pie-elements/commit/1bf43f07825ad98c9e0920aad09c411fe6d14b2c))
1533
+
1534
+ ## [3.5.12](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.11...@pie-element/drawing-response@3.5.12) (2021-02-04)
1535
+
1536
+ **Note:** Version bump only for package @pie-element/drawing-response
1537
+
1538
+ ## [3.5.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.10...@pie-element/drawing-response@3.5.11) (2021-02-02)
1539
+
1540
+ ### Bug Fixes
1541
+
1542
+ - **drawing-response:** fix image removal if setting is turned off ([5f6c56a](https://github.com/pie-framework/pie-elements/commit/5f6c56a))
1543
+
1544
+ ## [3.5.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.9...@pie-element/drawing-response@3.5.10) (2020-11-07)
1545
+
1546
+ **Note:** Version bump only for package @pie-element/drawing-response
1547
+
1548
+ ## [3.5.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.8...@pie-element/drawing-response@3.5.9) (2020-10-29)
1549
+
1550
+ **Note:** Version bump only for package @pie-element/drawing-response
1551
+
1552
+ ## [3.5.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.7...@pie-element/drawing-response@3.5.8) (2020-10-29)
1553
+
1554
+ **Note:** Version bump only for package @pie-element/drawing-response
1555
+
1556
+ ## [3.5.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.6...@pie-element/drawing-response@3.5.7) (2020-10-16)
1557
+
1558
+ **Note:** Version bump only for package @pie-element/drawing-response
1559
+
1560
+ ## [3.5.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.5...@pie-element/drawing-response@3.5.6) (2020-10-02)
1561
+
1562
+ **Note:** Version bump only for package @pie-element/drawing-response
1563
+
1564
+ ## [3.5.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.4...@pie-element/drawing-response@3.5.5) (2020-09-23)
1565
+
1566
+ **Note:** Version bump only for package @pie-element/drawing-response
1567
+
1568
+ ## [3.5.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.3...@pie-element/drawing-response@3.5.4) (2020-09-23)
1569
+
1570
+ **Note:** Version bump only for package @pie-element/drawing-response
1571
+
1572
+ ## [3.5.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.2...@pie-element/drawing-response@3.5.3) (2020-08-25)
1573
+
1574
+ **Note:** Version bump only for package @pie-element/drawing-response
1575
+
1576
+ ## [3.5.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.5.1...@pie-element/drawing-response@3.5.2) (2020-08-13)
1577
+
1578
+ **Note:** Version bump only for package @pie-element/drawing-response
1579
+
1580
+ ## [3.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.4.2...@pie-element/drawing-response@3.5.1) (2020-08-07)
1581
+
1582
+ **Note:** Version bump only for package @pie-element/drawing-response
1583
+
1584
+ ## [3.4.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.4.1...@pie-element/drawing-response@3.4.2) (2020-06-09)
1585
+
1586
+ ### Bug Fixes
1587
+
1588
+ - For Drawing Response, "View" mode is acting like "Gather" Mode (pie-ui/drawing-response update) PD-274 ([92c671e](https://github.com/pie-framework/pie-elements/commit/92c671e))
1589
+
1590
+ ## [3.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.4.0-next.0...@pie-element/drawing-response@3.4.1) (2020-05-25)
1591
+
1592
+ ### Bug Fixes
1593
+
1594
+ - version issue ([e4cc522](https://github.com/pie-framework/pie-elements/commit/e4cc522))
1595
+ - version issue ([3935c9c](https://github.com/pie-framework/pie-elements/commit/3935c9c))
1596
+
1597
+ # [3.4.0-next.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.3.4...@pie-element/drawing-response@3.4.0-next.0) (2020-05-25)
1598
+
1599
+ ### Bug Fixes
1600
+
1601
+ - bump deps ([c6080d6](https://github.com/pie-framework/pie-elements/commit/c6080d6))
1602
+
1603
+ ### Features
1604
+
1605
+ - add postpublish handler ([9b41dea](https://github.com/pie-framework/pie-elements/commit/9b41dea))
1606
+
1607
+ ## [3.3.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.3.3...@pie-element/drawing-response@3.3.4) (2020-04-28)
1608
+
1609
+ ### Bug Fixes
1610
+
1611
+ - bump ui/lib versions ([45f0da6](https://github.com/pie-framework/pie-elements/commit/45f0da6))
1612
+ - ui+libs update ([6127de2](https://github.com/pie-framework/pie-elements/commit/6127de2))
1613
+ - update ui/lib versions ([0226b0b](https://github.com/pie-framework/pie-elements/commit/0226b0b))
1614
+
1615
+ ## [3.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.3.2...@pie-element/drawing-response@3.3.3) (2020-04-14)
1616
+
1617
+ ### Bug Fixes
1618
+
1619
+ - bump ui/lib versions ([3edb232](https://github.com/pie-framework/pie-elements/commit/3edb232))
1620
+
1621
+ ## [3.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.3.1...@pie-element/drawing-response@3.3.2) (2020-04-14)
1622
+
1623
+ **Note:** Version bump only for package @pie-element/drawing-response
1624
+
1625
+ ## [3.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.1.9...@pie-element/drawing-response@3.3.1) (2020-04-10)
1626
+
1627
+ ### Bug Fixes
1628
+
1629
+ - bump all packages to avoid tag conflict ([d9ec9a8](https://github.com/pie-framework/pie-elements/commit/d9ec9a8))
1630
+ - bump lib and ui versions ([a882cbf](https://github.com/pie-framework/pie-elements/commit/a882cbf))
1631
+ - bump ui versions ([5b9d99f](https://github.com/pie-framework/pie-elements/commit/5b9d99f))
1632
+ - bump version ([98a1304](https://github.com/pie-framework/pie-elements/commit/98a1304))
1633
+ - bump version to avoid tag conflict ([4d55f6d](https://github.com/pie-framework/pie-elements/commit/4d55f6d))
1634
+
1635
+ ## [3.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.1.9...@pie-element/drawing-response@3.2.1) (2020-04-10)
1636
+
1637
+ ### Bug Fixes
1638
+
1639
+ - bump lib and ui versions ([a882cbf](https://github.com/pie-framework/pie-elements/commit/a882cbf))
1640
+ - bump ui versions ([5b9d99f](https://github.com/pie-framework/pie-elements/commit/5b9d99f))
1641
+ - bump version ([98a1304](https://github.com/pie-framework/pie-elements/commit/98a1304))
1642
+ - bump version to avoid tag conflict ([4d55f6d](https://github.com/pie-framework/pie-elements/commit/4d55f6d))
1643
+
1644
+ ## [3.1.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.1.8...@pie-element/drawing-response@3.1.9) (2020-02-18)
1645
+
1646
+ **Note:** Version bump only for package @pie-element/drawing-response
1647
+
1648
+ ## [3.1.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.1.7...@pie-element/drawing-response@3.1.8) (2020-01-31)
1649
+
1650
+ ### Bug Fixes
1651
+
1652
+ - bump pie-ui/drawing-response ([6209674](https://github.com/pie-framework/pie-elements/commit/6209674))
1653
+
1654
+ ## [3.1.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.1.6...@pie-element/drawing-response@3.1.7) (2020-01-30)
1655
+
1656
+ ### Bug Fixes
1657
+
1658
+ - bump drawing-response@^1.6.4 ch6084 ([54bf3c0](https://github.com/pie-framework/pie-elements/commit/54bf3c0))
1659
+
1660
+ ## [3.1.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.1.5...@pie-element/drawing-response@3.1.6) (2020-01-28)
1661
+
1662
+ **Note:** Version bump only for package @pie-element/drawing-response
1663
+
1664
+ ## [3.1.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.1.4...@pie-element/drawing-response@3.1.5) (2020-01-28)
1665
+
1666
+ ### Bug Fixes
1667
+
1668
+ - bump @pie-ui/drawing-response [ch6084] ([4329218](https://github.com/pie-framework/pie-elements/commit/4329218))
1669
+
1670
+ ## [3.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.1.3...@pie-element/drawing-response@3.1.4) (2019-12-18)
1671
+
1672
+ **Note:** Version bump only for package @pie-element/drawing-response
1673
+
1674
+ ## [3.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.1.2...@pie-element/drawing-response@3.1.3) (2019-12-18)
1675
+
1676
+ ### Bug Fixes
1677
+
1678
+ - bump pie-ui version ([88e991b](https://github.com/pie-framework/pie-elements/commit/88e991b))
1679
+ - ch6084 - bump @pie-ui/drawing-response ([ca71006](https://github.com/pie-framework/pie-elements/commit/ca71006))
1680
+
1681
+ ## [3.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.1.1...@pie-element/drawing-response@3.1.2) (2019-12-03)
1682
+
1683
+ **Note:** Version bump only for package @pie-element/drawing-response
1684
+
1685
+ ## [3.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.1.0...@pie-element/drawing-response@3.1.1) (2019-11-06)
1686
+
1687
+ **Note:** Version bump only for package @pie-element/drawing-response
1688
+
1689
+ # [3.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.0.2...@pie-element/drawing-response@3.1.0) (2019-11-01)
1690
+
1691
+ ### Features
1692
+
1693
+ - upgrade @pie-ui/drawing-response@^1.5.0 [ch5017] ([8953427](https://github.com/pie-framework/pie-elements/commit/8953427))
1694
+
1695
+ ## [3.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.0.1...@pie-element/drawing-response@3.0.2) (2019-10-15)
1696
+
1697
+ **Note:** Version bump only for package @pie-element/drawing-response
1698
+
1699
+ ## [3.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@3.0.0...@pie-element/drawing-response@3.0.1) (2019-10-11)
1700
+
1701
+ ### Bug Fixes
1702
+
1703
+ - Updated docs. ([3787619](https://github.com/pie-framework/pie-elements/commit/3787619))
1704
+
1705
+ # [3.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@2.1.2...@pie-element/drawing-response@3.0.0) (2019-10-08)
1706
+
1707
+ - Andreea/ch3969/for all items default values should be true (#355) ([9916c38](https://github.com/pie-framework/pie-elements/commit/9916c38)), closes [#355](https://github.com/pie-framework/pie-elements/issues/355)
1708
+
1709
+ ### BREAKING CHANGES
1710
+
1711
+ - allowFeedback was replaced with feedbackEnabled.
1712
+
1713
+ - fix(charting): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1714
+
1715
+ - fix(drag-in-the-blank): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1716
+
1717
+ - fix(drawing-response): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1718
+
1719
+ - fix(ebsr): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1720
+
1721
+ - fix(explicit-constructed-response): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1722
+
1723
+ - fix(extended-text-entry): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1724
+
1725
+ - fix(graph-lines): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1726
+
1727
+ - fix(graphing): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1728
+
1729
+ - fix(hotspot): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1730
+
1731
+ - fix(image-cloze-association): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1732
+
1733
+ - fix(inline-dropdown): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1734
+
1735
+ - fix(match): replaced usage of allowFeedback with feedbackEnabled. Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1736
+ - allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
1737
+
1738
+ - fix(math-inline): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1739
+
1740
+ - fix(multiple-choice): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1741
+
1742
+ - fix(placement-ordering): replaced usage of allowFeedback with feedbackEnabled. Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1743
+ - allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
1744
+
1745
+ - fix(select-text): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1746
+
1747
+ - fix(text-entry): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
1748
+
1749
+ - fix: Updated pie-models.
1750
+
1751
+ - fix(categorize): Added normalize function on controller (to be able to add default values to the model).
1752
+
1753
+ - fix(charting): Added normalize function on controller (to be able to add default values to the model).
1754
+
1755
+ - fix(drag-in-the-blank): Added normalize function on controller (to be able to add default values to the model).
1756
+
1757
+ - fix(drawing-response): Added normalize function on controller (to be able to add default values to the model).
1758
+
1759
+ - fix(ebsr): Added normalize function on controller (to be able to add default values to the model).
1760
+
1761
+ - fix(explicit-constructed-response): Added normalize function on controller (to be able to add default values to the model).
1762
+
1763
+ - fix(extended-text-entry): Added normalize function on controller (to be able to add default values to the model).
1764
+
1765
+ - Remove unnecessary change.
1766
+
1767
+ - fix(graph-lines): Added normalize function on controller (to be able to add default values to the model).
1768
+
1769
+ - fix(graphing): Added normalize function on controller (to be able to add default values to the model).
1770
+
1771
+ - fix(hotspot): Added normalize function on controller (to be able to add default values to the model).
1772
+
1773
+ - fix(image-cloze-association): Added normalize function on controller (to be able to add default values to the model).
1774
+
1775
+ - fix(inline-dropdown): Added normalize function on controller (to be able to add default values to the model).
1776
+
1777
+ - fix(match): Added normalize function on controller (to be able to add default values to the model).
1778
+
1779
+ - fix(math-inline): Added normalize function on controller (to be able to add default values to the model).
1780
+
1781
+ - fix(multiple-choice): Added normalize function on controller (to be able to add default values to the model).
1782
+
1783
+ - fix(placement-ordering): Added normalize function on controller (to be able to add default values to the model).
1784
+
1785
+ - fix(select-text): Added normalize function on controller (to be able to add default values to the model).
1786
+
1787
+ - fix(text-entry): Added normalize function on controller (to be able to add default values to the model).
1788
+
1789
+ ## [2.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@2.1.1...@pie-element/drawing-response@2.1.2) (2019-10-03)
1790
+
1791
+ **Note:** Version bump only for package @pie-element/drawing-response
1792
+
1793
+ ## [2.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@2.1.0...@pie-element/drawing-response@2.1.1) (2019-10-03)
1794
+
1795
+ **Note:** Version bump only for package @pie-element/drawing-response
1796
+
1797
+ # [2.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@2.0.1...@pie-element/drawing-response@2.1.0) (2019-09-27)
1798
+
1799
+ ### Features
1800
+
1801
+ - **drawing-response:** model based prompt ([cb06b2a](https://github.com/pie-framework/pie-elements/commit/cb06b2a))
1802
+
1803
+ ## [2.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@2.0.0...@pie-element/drawing-response@2.0.1) (2019-09-19)
1804
+
1805
+ **Note:** Version bump only for package @pie-element/drawing-response
1806
+
1807
+ # [2.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.13...@pie-element/drawing-response@2.0.0) (2019-09-17)
1808
+
1809
+ ### Features
1810
+
1811
+ - Moved rationale, teacherInstructions and student instructions enabled flag in model because it's needed in controller. ([ca54ff9](https://github.com/pie-framework/pie-elements/commit/ca54ff9))
1812
+
1813
+ ### BREAKING CHANGES
1814
+
1815
+ - `enabled` property from `configuration.rationale.enabled` moved to `model.rationaleEnabled`. Same applies to teacherInstructions/studentInstructions.
1816
+
1817
+ ## [1.4.13](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.12...@pie-element/drawing-response@1.4.13) (2019-09-04)
1818
+
1819
+ **Note:** Version bump only for package @pie-element/drawing-response
1820
+
1821
+ ## [1.4.12](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.11...@pie-element/drawing-response@1.4.12) (2019-08-27)
1822
+
1823
+ **Note:** Version bump only for package @pie-element/drawing-response
1824
+
1825
+ ## [1.4.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.10...@pie-element/drawing-response@1.4.11) (2019-08-26)
1826
+
1827
+ **Note:** Version bump only for package @pie-element/drawing-response
1828
+
1829
+ ## [1.4.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.9...@pie-element/drawing-response@1.4.10) (2019-08-21)
1830
+
1831
+ **Note:** Version bump only for package @pie-element/drawing-response
1832
+
1833
+ ## [1.4.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.8...@pie-element/drawing-response@1.4.9) (2019-08-21)
1834
+
1835
+ ### Bug Fixes
1836
+
1837
+ - **math-rendering:** updated all dependent packages for math rendering and for editable-html [ch3365], [ch1530] ([33e3287](https://github.com/pie-framework/pie-elements/commit/33e3287))
1838
+
1839
+ ## [1.4.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.7...@pie-element/drawing-response@1.4.8) (2019-08-18)
1840
+
1841
+ ### Bug Fixes
1842
+
1843
+ - **math-rendering:** updated all dependent packages [ch3365] ([7cbf25a](https://github.com/pie-framework/pie-elements/commit/7cbf25a))
1844
+ - set default values to configuration properties ([56bcc5b](https://github.com/pie-framework/pie-elements/commit/56bcc5b))
1845
+
1846
+ ## [1.4.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.6...@pie-element/drawing-response@1.4.7) (2019-08-15)
1847
+
1848
+ ### Bug Fixes
1849
+
1850
+ - **elements:** version bumped the editable-html packages [ch1738] ([949222a](https://github.com/pie-framework/pie-elements/commit/949222a))
1851
+
1852
+ ## [1.4.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.5...@pie-element/drawing-response@1.4.6) (2019-08-02)
1853
+
1854
+ ### Bug Fixes
1855
+
1856
+ - **elements:** fixed some feedback config issues and the prompt issue on categorize [ch2192], [ch1770] ([eb22724](https://github.com/pie-framework/pie-elements/commit/eb22724))
1857
+
1858
+ ## [1.4.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.4...@pie-element/drawing-response@1.4.5) (2019-07-25)
1859
+
1860
+ **Note:** Version bump only for package @pie-element/drawing-response
1861
+
1862
+ ## [1.4.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.3...@pie-element/drawing-response@1.4.4) (2019-07-25)
1863
+
1864
+ **Note:** Version bump only for package @pie-element/drawing-response
1865
+
1866
+ ## [1.4.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.2...@pie-element/drawing-response@1.4.3) (2019-07-12)
1867
+
1868
+ **Note:** Version bump only for package @pie-element/drawing-response
1869
+
1870
+ ## [1.4.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.1...@pie-element/drawing-response@1.4.2) (2019-07-12)
1871
+
1872
+ ### Bug Fixes
1873
+
1874
+ - **rendering:** implemented rendering for math elements [ch1915], [ch1935] ([2f35842](https://github.com/pie-framework/pie-elements/commit/2f35842))
1875
+
1876
+ ## [1.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.4.0...@pie-element/drawing-response@1.4.1) (2019-07-12)
1877
+
1878
+ **Note:** Version bump only for package @pie-element/drawing-response
1879
+
1880
+ # [1.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.3.9...@pie-element/drawing-response@1.4.0) (2019-07-11)
1881
+
1882
+ ### Features
1883
+
1884
+ - **template-elements:** updated the dependent packages that use editable-html and fixed [ch2564], [ch2565], [ch2538], [ch2489], [ch2557], [ch2593], [ch2490], [ch2527] ([a87febe](https://github.com/pie-framework/pie-elements/commit/a87febe))
1885
+
1886
+ ## [1.3.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.3.8...@pie-element/drawing-response@1.3.9) (2019-07-09)
1887
+
1888
+ **Note:** Version bump only for package @pie-element/drawing-response
1889
+
1890
+ ## [1.3.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.3.7...@pie-element/drawing-response@1.3.8) (2019-07-09)
1891
+
1892
+ **Note:** Version bump only for package @pie-element/drawing-response
1893
+
1894
+ ## [1.3.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.3.6...@pie-element/drawing-response@1.3.7) (2019-07-07)
1895
+
1896
+ **Note:** Version bump only for package @pie-element/drawing-response
1897
+
1898
+ ## [1.3.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.3.5...@pie-element/drawing-response@1.3.6) (2019-07-07)
1899
+
1900
+ ### Bug Fixes
1901
+
1902
+ - **editable-html:** fixed lots of stuff regarding the editable-html ([12c1129](https://github.com/pie-framework/pie-elements/commit/12c1129))
1903
+
1904
+ ## [1.3.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.3.4...@pie-element/drawing-response@1.3.5) (2019-07-05)
1905
+
1906
+ **Note:** Version bump only for package @pie-element/drawing-response
1907
+
1908
+ ## [1.3.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.3.3...@pie-element/drawing-response@1.3.4) (2019-07-04)
1909
+
1910
+ ### Bug Fixes
1911
+
1912
+ - **template-els:** fixed some ditb issues ([9133840](https://github.com/pie-framework/pie-elements/commit/9133840))
1913
+
1914
+ ## [1.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.3.2...@pie-element/drawing-response@1.3.3) (2019-07-03)
1915
+
1916
+ **Note:** Version bump only for package @pie-element/drawing-response
1917
+
1918
+ ## [1.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.3.1...@pie-element/drawing-response@1.3.2) (2019-07-03)
1919
+
1920
+ **Note:** Version bump only for package @pie-element/drawing-response
1921
+
1922
+ ## [1.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.3.0...@pie-element/drawing-response@1.3.1) (2019-07-02)
1923
+
1924
+ **Note:** Version bump only for package @pie-element/drawing-response
1925
+
1926
+ # [1.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.2.1...@pie-element/drawing-response@1.3.0) (2019-07-02)
1927
+
1928
+ ### Features
1929
+
1930
+ - **mask-markup-elements:** refactored the elements and version bumped the necessary files ([f8f77c0](https://github.com/pie-framework/pie-elements/commit/f8f77c0))
1931
+
1932
+ ## [1.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.2.0...@pie-element/drawing-response@1.2.1) (2019-06-26)
1933
+
1934
+ **Note:** Version bump only for package @pie-element/drawing-response
1935
+
1936
+ # [1.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.1.1...@pie-element/drawing-response@1.2.0) (2019-06-26)
1937
+
1938
+ ### Features
1939
+
1940
+ - **settings-panel:** updated the settings panel design and changes needed for [ch2242] ([d830e57](https://github.com/pie-framework/pie-elements/commit/d830e57))
1941
+
1942
+ ## [1.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.1.0...@pie-element/drawing-response@1.1.1) (2019-06-23)
1943
+
1944
+ **Note:** Version bump only for package @pie-element/drawing-response
1945
+
1946
+ # [1.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.0.4...@pie-element/drawing-response@1.1.0) (2019-06-21)
1947
+
1948
+ ### Features
1949
+
1950
+ - **general:** updated all the packages that have the config-ui as a dependency ([44061de](https://github.com/pie-framework/pie-elements/commit/44061de))
1951
+
1952
+ ## [1.0.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.0.3...@pie-element/drawing-response@1.0.4) (2019-06-17)
1953
+
1954
+ **Note:** Version bump only for package @pie-element/drawing-response
1955
+
1956
+ ## [1.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.0.2...@pie-element/drawing-response@1.0.3) (2019-06-07)
1957
+
1958
+ **Note:** Version bump only for package @pie-element/drawing-response
1959
+
1960
+ ## [1.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/drawing-response@1.0.1...@pie-element/drawing-response@1.0.2) (2019-06-06)
1961
+
1962
+ **Note:** Version bump only for package @pie-element/drawing-response
1963
+
1964
+ ## 1.0.1 (2019-05-31)
1965
+
1966
+ **Note:** Version bump only for package @pie-element/drawing-response