@pie-element/ebsr 6.6.2 → 6.6.3-next.1016

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 (735) hide show
  1. package/CHANGELOG.md +169 -0
  2. package/configure/CHANGELOG.md +169 -0
  3. package/configure/lib/defaults.js +29 -12
  4. package/configure/lib/defaults.js.map +1 -1
  5. package/configure/lib/index.js +30 -23
  6. package/configure/lib/index.js.map +1 -1
  7. package/configure/lib/main.js +70 -43
  8. package/configure/lib/main.js.map +1 -1
  9. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.json +1972 -0
  10. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.md +1793 -0
  11. package/configure/node_modules/@pie-element/multiple-choice/LICENSE.md +5 -0
  12. package/configure/node_modules/@pie-element/multiple-choice/PRINT.md +35 -0
  13. package/configure/node_modules/@pie-element/multiple-choice/README.md +56 -0
  14. package/configure/node_modules/@pie-element/multiple-choice/choice.png +0 -0
  15. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.json +1387 -0
  16. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.md +1334 -0
  17. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js +104 -0
  18. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js.map +1 -0
  19. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js +198 -0
  20. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js.map +1 -0
  21. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js +599 -0
  22. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js.map +1 -0
  23. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js +18 -0
  24. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js.map +1 -0
  25. package/configure/node_modules/@pie-element/multiple-choice/configure/package.json +20 -0
  26. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.json +527 -0
  27. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.md +768 -0
  28. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js +18 -0
  29. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js.map +1 -0
  30. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js +305 -0
  31. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js.map +1 -0
  32. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js +36 -0
  33. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js.map +1 -0
  34. package/configure/node_modules/@pie-element/multiple-choice/controller/package.json +15 -0
  35. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json +353 -0
  36. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json.md +277 -0
  37. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/config.js +8 -0
  38. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/generate.js +52 -0
  39. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/index.html +1 -0
  40. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/session.js +7 -0
  41. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json +338 -0
  42. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json.md +274 -0
  43. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js +298 -0
  44. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js.map +1 -0
  45. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js +157 -0
  46. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js.map +1 -0
  47. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js +174 -0
  48. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js.map +1 -0
  49. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js +151 -0
  50. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js.map +1 -0
  51. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js +97 -0
  52. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js.map +1 -0
  53. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js +254 -0
  54. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js.map +1 -0
  55. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js +129 -0
  56. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js.map +1 -0
  57. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js +35 -0
  58. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js.map +1 -0
  59. package/configure/node_modules/@pie-element/multiple-choice/module/configure.js +843 -0
  60. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/controller.js +17399 -17113
  61. package/configure/node_modules/@pie-element/multiple-choice/module/demo.js +77 -0
  62. package/configure/node_modules/@pie-element/multiple-choice/module/element.js +2019 -0
  63. package/configure/node_modules/@pie-element/multiple-choice/module/index.html +21 -0
  64. package/configure/node_modules/@pie-element/multiple-choice/module/manifest.json +14 -0
  65. package/configure/node_modules/@pie-element/multiple-choice/module/print-demo.js +115 -0
  66. package/configure/node_modules/@pie-element/multiple-choice/module/print.html +18 -0
  67. package/configure/node_modules/@pie-element/multiple-choice/module/print.js +1983 -0
  68. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/CHANGELOG.json +1677 -0
  69. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/CHANGELOG.md +1645 -0
  70. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/LICENSE.md +5 -0
  71. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/README.md +12 -0
  72. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/alert-dialog.js +44 -0
  73. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/alert-dialog.js.map +1 -0
  74. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/checkbox.js +86 -0
  75. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/checkbox.js.map +1 -0
  76. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/choice-configuration/feedback-menu.js +180 -0
  77. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/choice-configuration/feedback-menu.js.map +1 -0
  78. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/choice-configuration/index.js +409 -0
  79. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/choice-configuration/index.js.map +1 -0
  80. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/choice-utils.js +54 -0
  81. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/choice-utils.js.map +1 -0
  82. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/feedback-config/feedback-selector.js +196 -0
  83. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/feedback-config/feedback-selector.js.map +1 -0
  84. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/feedback-config/group.js +75 -0
  85. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/feedback-config/group.js.map +1 -0
  86. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/feedback-config/index.js +189 -0
  87. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/feedback-config/index.js.map +1 -0
  88. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/form-section.js +46 -0
  89. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/form-section.js.map +1 -0
  90. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/help.js +156 -0
  91. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/help.js.map +1 -0
  92. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/index.js +216 -0
  93. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/index.js.map +1 -0
  94. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/input.js +152 -0
  95. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/input.js.map +1 -0
  96. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/inputs.js +131 -0
  97. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/inputs.js.map +1 -0
  98. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/langs.js +191 -0
  99. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/langs.js.map +1 -0
  100. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/layout/config-layout.js +113 -0
  101. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/layout/config-layout.js.map +1 -0
  102. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/layout/index.js +24 -0
  103. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/layout/index.js.map +1 -0
  104. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/layout/layout-contents.js +115 -0
  105. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/layout/layout-contents.js.map +1 -0
  106. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/layout/settings-box.js +99 -0
  107. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/layout/settings-box.js.map +1 -0
  108. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/mui-box/index.js +79 -0
  109. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/mui-box/index.js.map +1 -0
  110. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/number-text-field-custom.js +370 -0
  111. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/number-text-field-custom.js.map +1 -0
  112. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/number-text-field.js +278 -0
  113. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/number-text-field.js.map +1 -0
  114. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/radio-with-label.js +41 -0
  115. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/radio-with-label.js.map +1 -0
  116. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/settings/display-size.js +77 -0
  117. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/settings/display-size.js.map +1 -0
  118. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/settings/index.js +140 -0
  119. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/settings/index.js.map +1 -0
  120. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/settings/panel.js +426 -0
  121. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/settings/panel.js.map +1 -0
  122. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/settings/settings-radio-label.js +43 -0
  123. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/settings/settings-radio-label.js.map +1 -0
  124. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/settings/toggle.js +56 -0
  125. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/settings/toggle.js.map +1 -0
  126. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/tabs/index.js +117 -0
  127. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/tabs/index.js.map +1 -0
  128. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/tags-input/index.js +210 -0
  129. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/tags-input/index.js.map +1 -0
  130. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/two-choice.js +192 -0
  131. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/two-choice.js.map +1 -0
  132. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/with-stateful-model.js +95 -0
  133. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/lib/with-stateful-model.js.map +1 -0
  134. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/CHANGELOG.json +672 -0
  135. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/CHANGELOG.md +449 -0
  136. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/LICENSE.md +5 -0
  137. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/index.js +30 -0
  138. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/index.js.map +1 -0
  139. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js +316 -0
  140. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js.map +1 -0
  141. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/mstack/index.js +23 -0
  142. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/mstack/index.js.map +1 -0
  143. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js +123 -0
  144. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js.map +1 -0
  145. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/normalization.js +103 -0
  146. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/normalization.js.map +1 -0
  147. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/render-math.js +276 -0
  148. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/lib/render-math.js.map +1 -0
  149. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/package.json +19 -0
  150. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/playground/demo.html +872 -0
  151. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/playground/demo.js +108 -0
  152. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/playground/main.html +156 -0
  153. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/playground/main.js +16 -0
  154. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/playground/webpack.config.js +29 -0
  155. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/src/index.js +4 -0
  156. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/src/mstack/chtml.js +215 -0
  157. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/src/mstack/index.js +13 -0
  158. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/src/mstack/mml.js +24 -0
  159. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/src/normalization.js +69 -0
  160. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/math-rendering/src/render-math.js +230 -0
  161. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/CHANGELOG.json +937 -0
  162. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/CHANGELOG.md +618 -0
  163. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/LICENSE.md +5 -0
  164. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/README.md +33 -0
  165. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/collapsible/index.js +146 -0
  166. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/collapsible/index.js.map +1 -0
  167. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/color.js +134 -0
  168. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/color.js.map +1 -0
  169. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/feedback.js +160 -0
  170. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/feedback.js.map +1 -0
  171. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/has-text.js +24 -0
  172. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/has-text.js.map +1 -0
  173. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/html-and-math.js +102 -0
  174. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/html-and-math.js.map +1 -0
  175. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/index.js +104 -0
  176. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/index.js.map +1 -0
  177. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/input-container.js +60 -0
  178. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/input-container.js.map +1 -0
  179. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/preview-layout.js +133 -0
  180. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/preview-layout.js.map +1 -0
  181. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/preview-prompt.js +162 -0
  182. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/preview-prompt.js.map +1 -0
  183. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/purpose.js +28 -0
  184. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/purpose.js.map +1 -0
  185. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/readable.js +28 -0
  186. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/readable.js.map +1 -0
  187. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/response-indicators.js +160 -0
  188. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/response-indicators.js.map +1 -0
  189. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/withUndoReset.js +206 -0
  190. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/lib/withUndoReset.js.map +1 -0
  191. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/package.json +30 -0
  192. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/collapsible/index.jsx +68 -0
  193. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/color.js +48 -0
  194. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/feedback.jsx +100 -0
  195. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/has-text.js +14 -0
  196. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/html-and-math.js +40 -0
  197. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/index.js +27 -0
  198. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/input-container.jsx +41 -0
  199. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/preview-layout.jsx +77 -0
  200. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/preview-prompt.jsx +90 -0
  201. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/purpose.jsx +19 -0
  202. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/readable.jsx +19 -0
  203. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/response-indicators.jsx +89 -0
  204. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/node_modules/@pie-lib/render-ui/src/withUndoReset.jsx +118 -0
  205. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/package.json +30 -0
  206. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/alert-dialog.jsx +43 -0
  207. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/checkbox.jsx +63 -0
  208. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/choice-configuration/feedback-menu.jsx +103 -0
  209. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/choice-configuration/index.jsx +315 -0
  210. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/choice-utils.js +30 -0
  211. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/feedback-config/feedback-selector.jsx +116 -0
  212. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/feedback-config/group.jsx +54 -0
  213. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/feedback-config/index.jsx +98 -0
  214. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/form-section.jsx +23 -0
  215. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/help.jsx +88 -0
  216. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/index.js +58 -0
  217. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/input.jsx +72 -0
  218. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/inputs.jsx +96 -0
  219. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/langs.jsx +122 -0
  220. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/layout/config-layout.jsx +64 -0
  221. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/layout/index.js +4 -0
  222. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/layout/layout-contents.jsx +60 -0
  223. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/layout/settings-box.jsx +31 -0
  224. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/mui-box/index.jsx +64 -0
  225. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/number-text-field-custom.jsx +279 -0
  226. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/number-text-field.jsx +196 -0
  227. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/radio-with-label.jsx +18 -0
  228. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/settings/display-size.jsx +52 -0
  229. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/settings/index.js +75 -0
  230. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/settings/panel.jsx +297 -0
  231. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/settings/settings-radio-label.jsx +20 -0
  232. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/settings/toggle.jsx +31 -0
  233. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/tabs/index.jsx +51 -0
  234. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/tags-input/index.jsx +121 -0
  235. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/two-choice.jsx +94 -0
  236. package/configure/node_modules/@pie-element/multiple-choice/node_modules/@pie-lib/config-ui/src/with-stateful-model.jsx +36 -0
  237. package/configure/node_modules/@pie-element/multiple-choice/package.json +34 -0
  238. package/configure/node_modules/@pie-lib/correct-answer-toggle/CHANGELOG.json +547 -0
  239. package/configure/node_modules/@pie-lib/correct-answer-toggle/CHANGELOG.md +516 -0
  240. package/configure/node_modules/@pie-lib/correct-answer-toggle/LICENSE.md +5 -0
  241. package/configure/node_modules/@pie-lib/correct-answer-toggle/README.md +64 -0
  242. package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/expander.js +86 -0
  243. package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/expander.js.map +1 -0
  244. package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/index.js +155 -0
  245. package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/index.js.map +1 -0
  246. package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/styles.js +65 -0
  247. package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/styles.js.map +1 -0
  248. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/CHANGELOG.json +672 -0
  249. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/CHANGELOG.md +449 -0
  250. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/LICENSE.md +5 -0
  251. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/index.js +30 -0
  252. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/index.js.map +1 -0
  253. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js +316 -0
  254. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js.map +1 -0
  255. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/mstack/index.js +23 -0
  256. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/mstack/index.js.map +1 -0
  257. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js +123 -0
  258. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js.map +1 -0
  259. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/normalization.js +103 -0
  260. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/normalization.js.map +1 -0
  261. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/render-math.js +276 -0
  262. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/lib/render-math.js.map +1 -0
  263. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/package.json +19 -0
  264. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/playground/demo.html +872 -0
  265. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/playground/demo.js +108 -0
  266. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/playground/main.html +156 -0
  267. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/playground/main.js +16 -0
  268. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/playground/webpack.config.js +29 -0
  269. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/src/index.js +4 -0
  270. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/src/mstack/chtml.js +215 -0
  271. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/src/mstack/index.js +13 -0
  272. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/src/mstack/mml.js +24 -0
  273. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/src/normalization.js +69 -0
  274. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/math-rendering/src/render-math.js +230 -0
  275. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/CHANGELOG.json +937 -0
  276. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/CHANGELOG.md +618 -0
  277. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/LICENSE.md +5 -0
  278. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/README.md +33 -0
  279. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/collapsible/index.js +146 -0
  280. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/collapsible/index.js.map +1 -0
  281. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/color.js +134 -0
  282. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/color.js.map +1 -0
  283. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/feedback.js +160 -0
  284. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/feedback.js.map +1 -0
  285. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/has-text.js +24 -0
  286. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/has-text.js.map +1 -0
  287. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/html-and-math.js +102 -0
  288. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/html-and-math.js.map +1 -0
  289. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/index.js +104 -0
  290. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/index.js.map +1 -0
  291. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/input-container.js +60 -0
  292. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/input-container.js.map +1 -0
  293. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/preview-layout.js +133 -0
  294. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/preview-layout.js.map +1 -0
  295. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/preview-prompt.js +162 -0
  296. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/preview-prompt.js.map +1 -0
  297. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/purpose.js +28 -0
  298. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/purpose.js.map +1 -0
  299. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/readable.js +28 -0
  300. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/readable.js.map +1 -0
  301. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/response-indicators.js +160 -0
  302. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/response-indicators.js.map +1 -0
  303. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/withUndoReset.js +206 -0
  304. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/lib/withUndoReset.js.map +1 -0
  305. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/package.json +30 -0
  306. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/collapsible/index.jsx +68 -0
  307. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/color.js +48 -0
  308. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/feedback.jsx +100 -0
  309. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/has-text.js +14 -0
  310. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/html-and-math.js +40 -0
  311. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/index.js +27 -0
  312. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/input-container.jsx +41 -0
  313. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/preview-layout.jsx +77 -0
  314. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/preview-prompt.jsx +90 -0
  315. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/purpose.jsx +19 -0
  316. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/readable.jsx +19 -0
  317. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/response-indicators.jsx +89 -0
  318. package/configure/node_modules/@pie-lib/correct-answer-toggle/node_modules/@pie-lib/render-ui/src/withUndoReset.jsx +118 -0
  319. package/configure/node_modules/@pie-lib/correct-answer-toggle/package.json +36 -0
  320. package/configure/node_modules/@pie-lib/correct-answer-toggle/preview.png +0 -0
  321. package/configure/node_modules/@pie-lib/correct-answer-toggle/src/expander.jsx +65 -0
  322. package/configure/node_modules/@pie-lib/correct-answer-toggle/src/index.jsx +75 -0
  323. package/configure/node_modules/@pie-lib/correct-answer-toggle/src/styles.js +60 -0
  324. package/configure/node_modules/@pie-lib/editable-html/CHANGELOG.json +3327 -0
  325. package/configure/node_modules/@pie-lib/editable-html/CHANGELOG.md +1616 -0
  326. package/configure/node_modules/@pie-lib/editable-html/LICENSE.md +5 -0
  327. package/configure/node_modules/@pie-lib/editable-html/README.md +45 -0
  328. package/configure/node_modules/@pie-lib/editable-html/deploy.sh +16 -0
  329. package/configure/node_modules/@pie-lib/editable-html/lib/editor.js +752 -0
  330. package/configure/node_modules/@pie-lib/editable-html/lib/editor.js.map +1 -0
  331. package/configure/node_modules/@pie-lib/editable-html/lib/index.js +236 -0
  332. package/configure/node_modules/@pie-lib/editable-html/lib/index.js.map +1 -0
  333. package/configure/node_modules/@pie-lib/editable-html/lib/parse-html.js +16 -0
  334. package/configure/node_modules/@pie-lib/editable-html/lib/parse-html.js.map +1 -0
  335. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/component.js +250 -0
  336. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/component.js.map +1 -0
  337. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/image-toolbar.js +143 -0
  338. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/image-toolbar.js.map +1 -0
  339. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/index.js +219 -0
  340. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/index.js.map +1 -0
  341. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/insert-image-handler.js +139 -0
  342. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/image/insert-image-handler.js.map +1 -0
  343. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/index.js +135 -0
  344. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/index.js.map +1 -0
  345. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/list/index.js +204 -0
  346. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/list/index.js.map +1 -0
  347. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/math/index.js +347 -0
  348. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/math/index.js.map +1 -0
  349. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/index.js +344 -0
  350. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/index.js.map +1 -0
  351. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-dialog.js +449 -0
  352. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-dialog.js.map +1 -0
  353. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-toolbar.js +109 -0
  354. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-toolbar.js.map +1 -0
  355. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-wrapper.js +106 -0
  356. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/media/media-wrapper.js.map +1 -0
  357. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/drag-in-the-blank/choice.js +264 -0
  358. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/drag-in-the-blank/choice.js.map +1 -0
  359. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/drag-in-the-blank/index.js +97 -0
  360. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/drag-in-the-blank/index.js.map +1 -0
  361. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/explicit-constructed-response/index.js +54 -0
  362. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/explicit-constructed-response/index.js.map +1 -0
  363. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/icons/index.js +93 -0
  364. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/icons/index.js.map +1 -0
  365. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/index.js +288 -0
  366. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/index.js.map +1 -0
  367. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/inline-dropdown/index.js +70 -0
  368. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/inline-dropdown/index.js.map +1 -0
  369. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/utils.js +110 -0
  370. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/respArea/utils.js.map +1 -0
  371. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/icons/index.js +69 -0
  372. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/icons/index.js.map +1 -0
  373. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/index.js +497 -0
  374. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/index.js.map +1 -0
  375. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/table-toolbar.js +169 -0
  376. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/table/table-toolbar.js.map +1 -0
  377. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/default-toolbar.js +132 -0
  378. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/default-toolbar.js.map +1 -0
  379. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/done-button.js +50 -0
  380. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/done-button.js.map +1 -0
  381. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/editor-and-toolbar.js +275 -0
  382. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/editor-and-toolbar.js.map +1 -0
  383. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/index.js +32 -0
  384. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/index.js.map +1 -0
  385. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/toolbar-buttons.js +179 -0
  386. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/toolbar-buttons.js.map +1 -0
  387. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/toolbar.js +358 -0
  388. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/toolbar/toolbar.js.map +1 -0
  389. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/utils.js +62 -0
  390. package/configure/node_modules/@pie-lib/editable-html/lib/plugins/utils.js.map +1 -0
  391. package/configure/node_modules/@pie-lib/editable-html/lib/serialization.js +411 -0
  392. package/configure/node_modules/@pie-lib/editable-html/lib/serialization.js.map +1 -0
  393. package/configure/node_modules/@pie-lib/editable-html/lib/theme.js +9 -0
  394. package/configure/node_modules/@pie-lib/editable-html/lib/theme.js.map +1 -0
  395. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/CHANGELOG.json +672 -0
  396. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/CHANGELOG.md +449 -0
  397. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/LICENSE.md +5 -0
  398. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/index.js +30 -0
  399. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/index.js.map +1 -0
  400. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js +316 -0
  401. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js.map +1 -0
  402. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/mstack/index.js +23 -0
  403. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/mstack/index.js.map +1 -0
  404. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js +123 -0
  405. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js.map +1 -0
  406. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/normalization.js +103 -0
  407. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/normalization.js.map +1 -0
  408. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/render-math.js +276 -0
  409. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/lib/render-math.js.map +1 -0
  410. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/package.json +19 -0
  411. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/playground/demo.html +872 -0
  412. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/playground/demo.js +108 -0
  413. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/playground/main.html +156 -0
  414. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/playground/main.js +16 -0
  415. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/playground/webpack.config.js +29 -0
  416. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/src/index.js +4 -0
  417. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/src/mstack/chtml.js +215 -0
  418. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/src/mstack/index.js +13 -0
  419. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/src/mstack/mml.js +24 -0
  420. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/src/normalization.js +69 -0
  421. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/math-rendering/src/render-math.js +230 -0
  422. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/CHANGELOG.json +937 -0
  423. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/CHANGELOG.md +618 -0
  424. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/LICENSE.md +5 -0
  425. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/README.md +33 -0
  426. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/collapsible/index.js +146 -0
  427. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/collapsible/index.js.map +1 -0
  428. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/color.js +134 -0
  429. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/color.js.map +1 -0
  430. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/feedback.js +160 -0
  431. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/feedback.js.map +1 -0
  432. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/has-text.js +24 -0
  433. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/has-text.js.map +1 -0
  434. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/html-and-math.js +102 -0
  435. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/html-and-math.js.map +1 -0
  436. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/index.js +104 -0
  437. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/index.js.map +1 -0
  438. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/input-container.js +60 -0
  439. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/input-container.js.map +1 -0
  440. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/preview-layout.js +133 -0
  441. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/preview-layout.js.map +1 -0
  442. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/preview-prompt.js +162 -0
  443. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/preview-prompt.js.map +1 -0
  444. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/purpose.js +28 -0
  445. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/purpose.js.map +1 -0
  446. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/readable.js +28 -0
  447. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/readable.js.map +1 -0
  448. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/response-indicators.js +160 -0
  449. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/response-indicators.js.map +1 -0
  450. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/withUndoReset.js +206 -0
  451. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/lib/withUndoReset.js.map +1 -0
  452. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/package.json +30 -0
  453. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/collapsible/index.jsx +68 -0
  454. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/color.js +48 -0
  455. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/feedback.jsx +100 -0
  456. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/has-text.js +14 -0
  457. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/html-and-math.js +40 -0
  458. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/index.js +27 -0
  459. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/input-container.jsx +41 -0
  460. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/preview-layout.jsx +77 -0
  461. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/preview-prompt.jsx +90 -0
  462. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/purpose.jsx +19 -0
  463. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/readable.jsx +19 -0
  464. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/response-indicators.jsx +89 -0
  465. package/configure/node_modules/@pie-lib/editable-html/node_modules/@pie-lib/render-ui/src/withUndoReset.jsx +118 -0
  466. package/configure/node_modules/@pie-lib/editable-html/package.json +51 -0
  467. package/configure/node_modules/@pie-lib/editable-html/playground/image/data.js +59 -0
  468. package/configure/node_modules/@pie-lib/editable-html/playground/image/index.html +24 -0
  469. package/configure/node_modules/@pie-lib/editable-html/playground/image/index.jsx +83 -0
  470. package/configure/node_modules/@pie-lib/editable-html/playground/index.html +27 -0
  471. package/configure/node_modules/@pie-lib/editable-html/playground/mathquill/index.html +25 -0
  472. package/configure/node_modules/@pie-lib/editable-html/playground/mathquill/index.jsx +151 -0
  473. package/configure/node_modules/@pie-lib/editable-html/playground/package.json +15 -0
  474. package/configure/node_modules/@pie-lib/editable-html/playground/prod-test/index.html +26 -0
  475. package/configure/node_modules/@pie-lib/editable-html/playground/prod-test/index.jsx +30 -0
  476. package/configure/node_modules/@pie-lib/editable-html/playground/schema-override/data.js +29 -0
  477. package/configure/node_modules/@pie-lib/editable-html/playground/schema-override/image-plugin.jsx +40 -0
  478. package/configure/node_modules/@pie-lib/editable-html/playground/schema-override/index.html +23 -0
  479. package/configure/node_modules/@pie-lib/editable-html/playground/schema-override/index.jsx +96 -0
  480. package/configure/node_modules/@pie-lib/editable-html/playground/serialization/data.js +29 -0
  481. package/configure/node_modules/@pie-lib/editable-html/playground/serialization/image-plugin.jsx +40 -0
  482. package/configure/node_modules/@pie-lib/editable-html/playground/serialization/index.html +24 -0
  483. package/configure/node_modules/@pie-lib/editable-html/playground/serialization/index.jsx +12 -0
  484. package/configure/node_modules/@pie-lib/editable-html/playground/static.json +3 -0
  485. package/configure/node_modules/@pie-lib/editable-html/playground/table-examples.html +67 -0
  486. package/configure/node_modules/@pie-lib/editable-html/playground/webpack.config.js +42 -0
  487. package/configure/node_modules/@pie-lib/editable-html/src/editor.jsx +641 -0
  488. package/configure/node_modules/@pie-lib/editable-html/src/index.jsx +145 -0
  489. package/configure/node_modules/@pie-lib/editable-html/src/parse-html.js +8 -0
  490. package/configure/node_modules/@pie-lib/editable-html/src/plugins/README.md +27 -0
  491. package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/component.jsx +166 -0
  492. package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/image-toolbar.jsx +62 -0
  493. package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/index.jsx +180 -0
  494. package/configure/node_modules/@pie-lib/editable-html/src/plugins/image/insert-image-handler.js +93 -0
  495. package/configure/node_modules/@pie-lib/editable-html/src/plugins/index.jsx +112 -0
  496. package/configure/node_modules/@pie-lib/editable-html/src/plugins/list/index.jsx +175 -0
  497. package/configure/node_modules/@pie-lib/editable-html/src/plugins/math/index.jsx +283 -0
  498. package/configure/node_modules/@pie-lib/editable-html/src/plugins/media/index.jsx +284 -0
  499. package/configure/node_modules/@pie-lib/editable-html/src/plugins/media/media-dialog.js +372 -0
  500. package/configure/node_modules/@pie-lib/editable-html/src/plugins/media/media-toolbar.jsx +53 -0
  501. package/configure/node_modules/@pie-lib/editable-html/src/plugins/media/media-wrapper.jsx +43 -0
  502. package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/drag-in-the-blank/choice.jsx +187 -0
  503. package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/drag-in-the-blank/index.jsx +78 -0
  504. package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/explicit-constructed-response/index.jsx +45 -0
  505. package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/icons/index.jsx +68 -0
  506. package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/index.jsx +259 -0
  507. package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/inline-dropdown/index.jsx +63 -0
  508. package/configure/node_modules/@pie-lib/editable-html/src/plugins/respArea/utils.jsx +77 -0
  509. package/configure/node_modules/@pie-lib/editable-html/src/plugins/table/icons/index.jsx +59 -0
  510. package/configure/node_modules/@pie-lib/editable-html/src/plugins/table/index.jsx +437 -0
  511. package/configure/node_modules/@pie-lib/editable-html/src/plugins/table/table-toolbar.jsx +104 -0
  512. package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/default-toolbar.jsx +111 -0
  513. package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/done-button.jsx +36 -0
  514. package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/editor-and-toolbar.jsx +225 -0
  515. package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/index.jsx +21 -0
  516. package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/toolbar-buttons.jsx +97 -0
  517. package/configure/node_modules/@pie-lib/editable-html/src/plugins/toolbar/toolbar.jsx +316 -0
  518. package/configure/node_modules/@pie-lib/editable-html/src/plugins/utils.js +32 -0
  519. package/configure/node_modules/@pie-lib/editable-html/src/serialization.jsx +376 -0
  520. package/configure/node_modules/@pie-lib/editable-html/src/theme.js +1 -0
  521. package/configure/node_modules/@pie-lib/editable-html/static.json +1 -0
  522. package/configure/node_modules/@pie-lib/math-input/CHANGELOG.json +1547 -0
  523. package/configure/node_modules/@pie-lib/math-input/CHANGELOG.md +757 -0
  524. package/configure/node_modules/@pie-lib/math-input/LICENSE.md +5 -0
  525. package/configure/node_modules/@pie-lib/math-input/README.md +27 -0
  526. package/configure/node_modules/@pie-lib/math-input/lib/horizontal-keypad.js +126 -0
  527. package/configure/node_modules/@pie-lib/math-input/lib/horizontal-keypad.js.map +1 -0
  528. package/configure/node_modules/@pie-lib/math-input/lib/index.js +80 -0
  529. package/configure/node_modules/@pie-lib/math-input/lib/index.js.map +1 -0
  530. package/configure/node_modules/@pie-lib/math-input/lib/keypad/index.js +417 -0
  531. package/configure/node_modules/@pie-lib/math-input/lib/keypad/index.js.map +1 -0
  532. package/configure/node_modules/@pie-lib/math-input/lib/keypad/keys-layout.js +34 -0
  533. package/configure/node_modules/@pie-lib/math-input/lib/keypad/keys-layout.js.map +1 -0
  534. package/configure/node_modules/@pie-lib/math-input/lib/keys/basic-operators.js +41 -0
  535. package/configure/node_modules/@pie-lib/math-input/lib/keys/basic-operators.js.map +1 -0
  536. package/configure/node_modules/@pie-lib/math-input/lib/keys/chars.js +17 -0
  537. package/configure/node_modules/@pie-lib/math-input/lib/keys/chars.js.map +1 -0
  538. package/configure/node_modules/@pie-lib/math-input/lib/keys/comparison.js +46 -0
  539. package/configure/node_modules/@pie-lib/math-input/lib/keys/comparison.js.map +1 -0
  540. package/configure/node_modules/@pie-lib/math-input/lib/keys/constants.js +43 -0
  541. package/configure/node_modules/@pie-lib/math-input/lib/keys/constants.js.map +1 -0
  542. package/configure/node_modules/@pie-lib/math-input/lib/keys/digits.js +53 -0
  543. package/configure/node_modules/@pie-lib/math-input/lib/keys/digits.js.map +1 -0
  544. package/configure/node_modules/@pie-lib/math-input/lib/keys/edit.js +16 -0
  545. package/configure/node_modules/@pie-lib/math-input/lib/keys/edit.js.map +1 -0
  546. package/configure/node_modules/@pie-lib/math-input/lib/keys/exponent.js +35 -0
  547. package/configure/node_modules/@pie-lib/math-input/lib/keys/exponent.js.map +1 -0
  548. package/configure/node_modules/@pie-lib/math-input/lib/keys/fractions.js +31 -0
  549. package/configure/node_modules/@pie-lib/math-input/lib/keys/fractions.js.map +1 -0
  550. package/configure/node_modules/@pie-lib/math-input/lib/keys/geometry.js +165 -0
  551. package/configure/node_modules/@pie-lib/math-input/lib/keys/geometry.js.map +1 -0
  552. package/configure/node_modules/@pie-lib/math-input/lib/keys/grades.js +295 -0
  553. package/configure/node_modules/@pie-lib/math-input/lib/keys/grades.js.map +1 -0
  554. package/configure/node_modules/@pie-lib/math-input/lib/keys/index.js +54 -0
  555. package/configure/node_modules/@pie-lib/math-input/lib/keys/index.js.map +1 -0
  556. package/configure/node_modules/@pie-lib/math-input/lib/keys/log.js +32 -0
  557. package/configure/node_modules/@pie-lib/math-input/lib/keys/log.js.map +1 -0
  558. package/configure/node_modules/@pie-lib/math-input/lib/keys/logic.js +23 -0
  559. package/configure/node_modules/@pie-lib/math-input/lib/keys/logic.js.map +1 -0
  560. package/configure/node_modules/@pie-lib/math-input/lib/keys/matrices.js +23 -0
  561. package/configure/node_modules/@pie-lib/math-input/lib/keys/matrices.js.map +1 -0
  562. package/configure/node_modules/@pie-lib/math-input/lib/keys/misc.js +69 -0
  563. package/configure/node_modules/@pie-lib/math-input/lib/keys/misc.js.map +1 -0
  564. package/configure/node_modules/@pie-lib/math-input/lib/keys/navigation.js +23 -0
  565. package/configure/node_modules/@pie-lib/math-input/lib/keys/navigation.js.map +1 -0
  566. package/configure/node_modules/@pie-lib/math-input/lib/keys/operators.js +17 -0
  567. package/configure/node_modules/@pie-lib/math-input/lib/keys/operators.js.map +1 -0
  568. package/configure/node_modules/@pie-lib/math-input/lib/keys/statistics.js +45 -0
  569. package/configure/node_modules/@pie-lib/math-input/lib/keys/statistics.js.map +1 -0
  570. package/configure/node_modules/@pie-lib/math-input/lib/keys/sub-sup.js +23 -0
  571. package/configure/node_modules/@pie-lib/math-input/lib/keys/sub-sup.js.map +1 -0
  572. package/configure/node_modules/@pie-lib/math-input/lib/keys/trigonometry.js +53 -0
  573. package/configure/node_modules/@pie-lib/math-input/lib/keys/trigonometry.js.map +1 -0
  574. package/configure/node_modules/@pie-lib/math-input/lib/keys/utils.js +130 -0
  575. package/configure/node_modules/@pie-lib/math-input/lib/keys/utils.js.map +1 -0
  576. package/configure/node_modules/@pie-lib/math-input/lib/keys/vars.js +29 -0
  577. package/configure/node_modules/@pie-lib/math-input/lib/keys/vars.js.map +1 -0
  578. package/configure/node_modules/@pie-lib/math-input/lib/math-input.js +206 -0
  579. package/configure/node_modules/@pie-lib/math-input/lib/math-input.js.map +1 -0
  580. package/configure/node_modules/@pie-lib/math-input/lib/mq/custom-elements.js +23 -0
  581. package/configure/node_modules/@pie-lib/math-input/lib/mq/custom-elements.js.map +1 -0
  582. package/configure/node_modules/@pie-lib/math-input/lib/mq/index.js +24 -0
  583. package/configure/node_modules/@pie-lib/math-input/lib/mq/index.js.map +1 -0
  584. package/configure/node_modules/@pie-lib/math-input/lib/mq/input.js +257 -0
  585. package/configure/node_modules/@pie-lib/math-input/lib/mq/input.js.map +1 -0
  586. package/configure/node_modules/@pie-lib/math-input/lib/mq/static.js +224 -0
  587. package/configure/node_modules/@pie-lib/math-input/lib/mq/static.js.map +1 -0
  588. package/configure/node_modules/@pie-lib/math-input/package.json +26 -0
  589. package/configure/node_modules/@pie-lib/math-input/src/horizontal-keypad.jsx +54 -0
  590. package/configure/node_modules/@pie-lib/math-input/src/index.jsx +27 -0
  591. package/configure/node_modules/@pie-lib/math-input/src/keypad/index.jsx +335 -0
  592. package/configure/node_modules/@pie-lib/math-input/src/keypad/keys-layout.js +17 -0
  593. package/configure/node_modules/@pie-lib/math-input/src/keys/basic-operators.js +32 -0
  594. package/configure/node_modules/@pie-lib/math-input/src/keys/chars.js +5 -0
  595. package/configure/node_modules/@pie-lib/math-input/src/keys/comparison.js +27 -0
  596. package/configure/node_modules/@pie-lib/math-input/src/keys/constants.js +35 -0
  597. package/configure/node_modules/@pie-lib/math-input/src/keys/digits.js +40 -0
  598. package/configure/node_modules/@pie-lib/math-input/src/keys/edit.js +3 -0
  599. package/configure/node_modules/@pie-lib/math-input/src/keys/exponent.js +27 -0
  600. package/configure/node_modules/@pie-lib/math-input/src/keys/fractions.js +23 -0
  601. package/configure/node_modules/@pie-lib/math-input/src/keys/geometry.js +140 -0
  602. package/configure/node_modules/@pie-lib/math-input/src/keys/grades.js +379 -0
  603. package/configure/node_modules/@pie-lib/math-input/src/keys/index.js +21 -0
  604. package/configure/node_modules/@pie-lib/math-input/src/keys/log.js +22 -0
  605. package/configure/node_modules/@pie-lib/math-input/src/keys/logic.js +15 -0
  606. package/configure/node_modules/@pie-lib/math-input/src/keys/matrices.js +15 -0
  607. package/configure/node_modules/@pie-lib/math-input/src/keys/misc.js +60 -0
  608. package/configure/node_modules/@pie-lib/math-input/src/keys/navigation.js +8 -0
  609. package/configure/node_modules/@pie-lib/math-input/src/keys/operators.js +9 -0
  610. package/configure/node_modules/@pie-lib/math-input/src/keys/statistics.js +36 -0
  611. package/configure/node_modules/@pie-lib/math-input/src/keys/sub-sup.js +15 -0
  612. package/configure/node_modules/@pie-lib/math-input/src/keys/trigonometry.js +15 -0
  613. package/configure/node_modules/@pie-lib/math-input/src/keys/utils.js +71 -0
  614. package/configure/node_modules/@pie-lib/math-input/src/keys/vars.js +19 -0
  615. package/configure/node_modules/@pie-lib/math-input/src/math-input.jsx +128 -0
  616. package/configure/node_modules/@pie-lib/math-input/src/mq/custom-elements.js +11 -0
  617. package/configure/node_modules/@pie-lib/math-input/src/mq/index.js +4 -0
  618. package/configure/node_modules/@pie-lib/math-input/src/mq/input.jsx +163 -0
  619. package/configure/node_modules/@pie-lib/math-input/src/mq/static.jsx +145 -0
  620. package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.json +672 -0
  621. package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.md +427 -0
  622. package/configure/node_modules/@pie-lib/math-rendering/LICENSE.md +5 -0
  623. package/configure/node_modules/@pie-lib/math-rendering/lib/index.js +30 -0
  624. package/configure/node_modules/@pie-lib/math-rendering/lib/index.js.map +1 -0
  625. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js +316 -0
  626. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js.map +1 -0
  627. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js +23 -0
  628. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js.map +1 -0
  629. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js +123 -0
  630. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js.map +1 -0
  631. package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js +103 -0
  632. package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js.map +1 -0
  633. package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js +275 -0
  634. package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js.map +1 -0
  635. package/configure/node_modules/@pie-lib/math-rendering/package.json +19 -0
  636. package/configure/node_modules/@pie-lib/math-rendering/playground/demo.html +872 -0
  637. package/configure/node_modules/@pie-lib/math-rendering/playground/demo.js +108 -0
  638. package/configure/node_modules/@pie-lib/math-rendering/playground/main.html +156 -0
  639. package/configure/node_modules/@pie-lib/math-rendering/playground/main.js +16 -0
  640. package/configure/node_modules/@pie-lib/math-rendering/playground/webpack.config.js +29 -0
  641. package/configure/node_modules/@pie-lib/math-rendering/src/index.js +4 -0
  642. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/chtml.js +215 -0
  643. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/index.js +13 -0
  644. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/mml.js +24 -0
  645. package/configure/node_modules/@pie-lib/math-rendering/src/normalization.js +69 -0
  646. package/configure/node_modules/@pie-lib/math-rendering/src/render-math.js +234 -0
  647. package/configure/node_modules/@pie-lib/math-toolbar/CHANGELOG.json +862 -0
  648. package/configure/node_modules/@pie-lib/math-toolbar/CHANGELOG.md +631 -0
  649. package/configure/node_modules/@pie-lib/math-toolbar/LICENSE.md +5 -0
  650. package/configure/node_modules/@pie-lib/math-toolbar/lib/done-button.js +53 -0
  651. package/configure/node_modules/@pie-lib/math-toolbar/lib/done-button.js.map +1 -0
  652. package/configure/node_modules/@pie-lib/math-toolbar/lib/editor-and-pad.js +463 -0
  653. package/configure/node_modules/@pie-lib/math-toolbar/lib/editor-and-pad.js.map +1 -0
  654. package/configure/node_modules/@pie-lib/math-toolbar/lib/index.js +271 -0
  655. package/configure/node_modules/@pie-lib/math-toolbar/lib/index.js.map +1 -0
  656. package/configure/node_modules/@pie-lib/math-toolbar/lib/math-preview.js +173 -0
  657. package/configure/node_modules/@pie-lib/math-toolbar/lib/math-preview.js.map +1 -0
  658. package/configure/node_modules/@pie-lib/math-toolbar/package.json +37 -0
  659. package/configure/node_modules/@pie-lib/math-toolbar/src/done-button.jsx +39 -0
  660. package/configure/node_modules/@pie-lib/math-toolbar/src/editor-and-pad.jsx +373 -0
  661. package/configure/node_modules/@pie-lib/math-toolbar/src/index.jsx +193 -0
  662. package/configure/node_modules/@pie-lib/math-toolbar/src/math-preview.jsx +107 -0
  663. package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.json +937 -0
  664. package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.md +602 -0
  665. package/configure/node_modules/@pie-lib/render-ui/LICENSE.md +5 -0
  666. package/configure/node_modules/@pie-lib/render-ui/README.md +33 -0
  667. package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js +146 -0
  668. package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js.map +1 -0
  669. package/configure/node_modules/@pie-lib/render-ui/lib/color.js +134 -0
  670. package/configure/node_modules/@pie-lib/render-ui/lib/color.js.map +1 -0
  671. package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js +160 -0
  672. package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js.map +1 -0
  673. package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js +24 -0
  674. package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js.map +1 -0
  675. package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js +102 -0
  676. package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js.map +1 -0
  677. package/configure/node_modules/@pie-lib/render-ui/lib/index.js +104 -0
  678. package/configure/node_modules/@pie-lib/render-ui/lib/index.js.map +1 -0
  679. package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js +60 -0
  680. package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js.map +1 -0
  681. package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js +133 -0
  682. package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js.map +1 -0
  683. package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js +162 -0
  684. package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js.map +1 -0
  685. package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js +28 -0
  686. package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js.map +1 -0
  687. package/configure/node_modules/@pie-lib/render-ui/lib/readable.js +28 -0
  688. package/configure/node_modules/@pie-lib/render-ui/lib/readable.js.map +1 -0
  689. package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js +160 -0
  690. package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js.map +1 -0
  691. package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js +206 -0
  692. package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js.map +1 -0
  693. package/configure/node_modules/@pie-lib/render-ui/package.json +30 -0
  694. package/configure/node_modules/@pie-lib/render-ui/src/collapsible/index.jsx +68 -0
  695. package/configure/node_modules/@pie-lib/render-ui/src/color.js +48 -0
  696. package/configure/node_modules/@pie-lib/render-ui/src/feedback.jsx +100 -0
  697. package/configure/node_modules/@pie-lib/render-ui/src/has-text.js +14 -0
  698. package/configure/node_modules/@pie-lib/render-ui/src/html-and-math.js +40 -0
  699. package/configure/node_modules/@pie-lib/render-ui/src/index.js +27 -0
  700. package/configure/node_modules/@pie-lib/render-ui/src/input-container.jsx +41 -0
  701. package/configure/node_modules/@pie-lib/render-ui/src/preview-layout.jsx +77 -0
  702. package/configure/node_modules/@pie-lib/render-ui/src/preview-prompt.jsx +90 -0
  703. package/configure/node_modules/@pie-lib/render-ui/src/purpose.jsx +19 -0
  704. package/configure/node_modules/@pie-lib/render-ui/src/readable.jsx +19 -0
  705. package/configure/node_modules/@pie-lib/render-ui/src/response-indicators.jsx +89 -0
  706. package/configure/node_modules/@pie-lib/render-ui/src/withUndoReset.jsx +118 -0
  707. package/configure/package.json +3 -3
  708. package/configure/src/__tests__/__snapshots__/index.test.js.snap +12 -4
  709. package/configure/src/__tests__/index.test.js +4 -2
  710. package/configure/src/defaults.js +27 -11
  711. package/configure/src/index.js +14 -35
  712. package/configure/src/main.jsx +69 -35
  713. package/controller/CHANGELOG.md +25 -0
  714. package/controller/lib/index.js +113 -23
  715. package/controller/lib/index.js.map +1 -1
  716. package/controller/package.json +1 -1
  717. package/controller/src/index.js +62 -5
  718. package/docs/config-schema.json +311 -3
  719. package/docs/config-schema.json.md +243 -7
  720. package/docs/demo/config.js +1 -1
  721. package/docs/pie-schema.json +139 -1
  722. package/docs/pie-schema.json.md +106 -2
  723. package/lib/index.js +10 -7
  724. package/lib/index.js.map +1 -1
  725. package/lib/print.js +243 -0
  726. package/lib/print.js.map +1 -0
  727. package/package.json +8 -4
  728. package/src/index.js +4 -0
  729. package/src/print.js +181 -0
  730. package/docs/demo/pie.manifest.json +0 -11
  731. package/module/configure.js +0 -1546
  732. package/module/demo.js +0 -79
  733. package/module/element.js +0 -1326
  734. package/module/index.html +0 -16
  735. package/module/manifest.json +0 -10
@@ -0,0 +1,1793 @@
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
+ ## [6.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.3.1...@pie-element/multiple-choice@6.3.2) (2022-05-16)
7
+
8
+ **Note:** Version bump only for package @pie-element/multiple-choice
9
+
10
+
11
+
12
+
13
+
14
+ ## [6.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.3.0...@pie-element/multiple-choice@6.3.1) (2022-05-09)
15
+
16
+ **Note:** Version bump only for package @pie-element/multiple-choice
17
+
18
+
19
+
20
+
21
+
22
+ # [6.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.2.7...@pie-element/multiple-choice@6.3.0) (2022-05-03)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * build ([7b3a278](https://github.com/pie-framework/pie-elements/commit/7b3a278f2c83562cbe848bd08c38a20d6cd2b8a0))
28
+ * fix crash ([0b5ab48](https://github.com/pie-framework/pie-elements/commit/0b5ab48ecf0468ac7fb724a152a5640dc25fea62))
29
+ * **multiple-choice:** comment validation ui/ux ([89e731c](https://github.com/pie-framework/pie-elements/commit/89e731c549a3da60f4dcbdb2e131d53a4587b5ea))
30
+ * added getters for the session PD-1668 ([de8a754](https://github.com/pie-framework/pie-elements/commit/de8a754f4580370b127257c435e43db405b4bdc4))
31
+ * **multiple-choice:** set choices layout for print PD-1623 ([ed90d57](https://github.com/pie-framework/pie-elements/commit/ed90d578da7d8db040082e93e718357a60dd8881))
32
+ * **multiple-choice:** set lockChoiceOrder to true for print ([5de2c75](https://github.com/pie-framework/pie-elements/commit/5de2c751b7a6cc63d54d4c8a1bbfb7adab4d2c00))
33
+
34
+
35
+ ### Features
36
+
37
+ * **multiple-choice:** PD-1697 ui/ux for validation ([9a088a3](https://github.com/pie-framework/pie-elements/commit/9a088a3d4af75586d6b8e302078c8629a3e7d718))
38
+ * **multiple-choice:** updated validation behaviors PD-1696 PD-1697 ([ab009c4](https://github.com/pie-framework/pie-elements/commit/ab009c4832572dab96c5b4130a5088dea17222e6))
39
+ * added configurable validation ([1e3a0d6](https://github.com/pie-framework/pie-elements/commit/1e3a0d6da3c790e68a7fd401df2c832917d62480))
40
+ * added configurable validation + refactoring PD-1696 ([31f6354](https://github.com/pie-framework/pie-elements/commit/31f6354b256fef876fa6c48e79a3f82486b5fce7))
41
+ * added configurable validation + refactoring PD-1696 ([08d9b70](https://github.com/pie-framework/pie-elements/commit/08d9b70991f159707ef7fd5b3e533a0addda1d90))
42
+ * added configurable validation + refactoring PD-1696 ([07c42c2](https://github.com/pie-framework/pie-elements/commit/07c42c2811349d1e829d367993541157fbbe2dfc))
43
+ * start working on multiple-choice validation ([722037b](https://github.com/pie-framework/pie-elements/commit/722037bc0fddd2e090ec1506e85a91949ad86c91))
44
+
45
+
46
+
47
+
48
+
49
+ ## [6.2.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.2.6...@pie-element/multiple-choice@6.2.7) (2022-04-12)
50
+
51
+ **Note:** Version bump only for package @pie-element/multiple-choice
52
+
53
+
54
+
55
+
56
+
57
+ ## [6.2.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.2.5...@pie-element/multiple-choice@6.2.6) (2022-03-28)
58
+
59
+ **Note:** Version bump only for package @pie-element/multiple-choice
60
+
61
+
62
+
63
+
64
+
65
+ ## [6.2.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.2.4...@pie-element/multiple-choice@6.2.5) (2022-03-22)
66
+
67
+ **Note:** Version bump only for package @pie-element/multiple-choice
68
+
69
+
70
+
71
+
72
+
73
+ ## [6.2.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.2.3...@pie-element/multiple-choice@6.2.4) (2022-03-08)
74
+
75
+ **Note:** Version bump only for package @pie-element/multiple-choice
76
+
77
+
78
+
79
+
80
+
81
+ ## [6.2.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.2.2...@pie-element/multiple-choice@6.2.3) (2022-03-08)
82
+
83
+ **Note:** Version bump only for package @pie-element/multiple-choice
84
+
85
+
86
+
87
+
88
+
89
+ ## [6.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.2.1...@pie-element/multiple-choice@6.2.2) (2022-02-21)
90
+
91
+ **Note:** Version bump only for package @pie-element/multiple-choice
92
+
93
+
94
+
95
+
96
+
97
+ ## [6.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.2.0...@pie-element/multiple-choice@6.2.1) (2022-02-04)
98
+
99
+ **Note:** Version bump only for package @pie-element/multiple-choice
100
+
101
+
102
+
103
+
104
+
105
+ # [6.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.1.11...@pie-element/multiple-choice@6.2.0) (2022-01-24)
106
+
107
+
108
+ ### Bug Fixes
109
+
110
+ * check if limitChoicesNumber is defined when adding a choice ([6f32cf0](https://github.com/pie-framework/pie-elements/commit/6f32cf05a1095b2be28864f2bb697080d05744f8))
111
+ * **multiple-choice:** fix colors for evaluate and view PD-1433 ([7050109](https://github.com/pie-framework/pie-elements/commit/705010946a1b0175fe19566d9daa86846fc55ca7))
112
+ * **multiple-choice:** limit choice number to 9 if it's defined ([4fa374c](https://github.com/pie-framework/pie-elements/commit/4fa374c77ca625522549ce68e1062ca4a5145b8b))
113
+ * **multiple-choice:** show choice prefix in print DNA-13066 ([52bd9bf](https://github.com/pie-framework/pie-elements/commit/52bd9bf862ad7adaf5ff0067a6738ad944b6d32d))
114
+ * **multiple-choice-print:** remove feedback ([25cbac5](https://github.com/pie-framework/pie-elements/commit/25cbac5647afe8864bedd9c50cd98abe6b31ddb0))
115
+ * **multiple-choice-print, ecr-print:** fix toggle issue, change options.mode to options.role ([0b3f534](https://github.com/pie-framework/pie-elements/commit/0b3f534bb4d2f969e21528e74516345e84f18d72))
116
+ * **multiple-choice, explicit-constructed-response, extended-text-entry:** print do not show teacher instructions, rationale or prompt if they are diabled DNA-13089 ([06b9555](https://github.com/pie-framework/pie-elements/commit/06b9555b25e094e0b2bce0e6a852a206c6d2c17d))
117
+ * show tick if available only in evaluate mode ([dddca13](https://github.com/pie-framework/pie-elements/commit/dddca137875221d3b52b17151163610f5eb1ea98))
118
+
119
+
120
+ ### Features
121
+
122
+ * **multiple-choice:** set min and max number of choices. BREAKING CHANGE: removed limitChoicesNumber from config and added minAnswerChoices and maxAnswerChoices ([a467f8f](https://github.com/pie-framework/pie-elements/commit/a467f8f4827c032c88de480b25eb49efcf1486aa))
123
+
124
+
125
+
126
+
127
+
128
+ ## [6.1.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.1.10...@pie-element/multiple-choice@6.1.11) (2022-01-11)
129
+
130
+ **Note:** Version bump only for package @pie-element/multiple-choice
131
+
132
+
133
+
134
+
135
+
136
+ ## [6.1.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.1.9...@pie-element/multiple-choice@6.1.10) (2022-01-10)
137
+
138
+ **Note:** Version bump only for package @pie-element/multiple-choice
139
+
140
+
141
+
142
+
143
+
144
+ ## [6.1.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.1.8...@pie-element/multiple-choice@6.1.9) (2021-12-23)
145
+
146
+ **Note:** Version bump only for package @pie-element/multiple-choice
147
+
148
+
149
+
150
+
151
+
152
+ ## [6.1.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.1.6...@pie-element/multiple-choice@6.1.7) (2021-12-13)
153
+
154
+ **Note:** Version bump only for package @pie-element/multiple-choice
155
+
156
+
157
+
158
+
159
+
160
+ ## [6.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.1.3...@pie-element/multiple-choice@6.1.4) (2021-11-29)
161
+
162
+ **Note:** Version bump only for package @pie-element/multiple-choice
163
+
164
+
165
+
166
+
167
+
168
+ ## [6.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.1.2...@pie-element/multiple-choice@6.1.3) (2021-11-11)
169
+
170
+ **Note:** Version bump only for package @pie-element/multiple-choice
171
+
172
+
173
+
174
+
175
+
176
+ ## [6.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.1.1...@pie-element/multiple-choice@6.1.2) (2021-11-01)
177
+
178
+ **Note:** Version bump only for package @pie-element/multiple-choice
179
+
180
+
181
+
182
+
183
+
184
+ ## [6.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.1.0...@pie-element/multiple-choice@6.1.1) (2021-10-04)
185
+
186
+ **Note:** Version bump only for package @pie-element/multiple-choice
187
+
188
+
189
+
190
+
191
+
192
+ # [6.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.0.1...@pie-element/multiple-choice@6.1.0) (2021-09-20)
193
+
194
+
195
+ ### Bug Fixes
196
+
197
+ * exports ([66ed4d2](https://github.com/pie-framework/pie-elements/commit/66ed4d2ae44df712b8b48849023e6849d6d69126))
198
+ * pie-lib updates ([e521c2f](https://github.com/pie-framework/pie-elements/commit/e521c2f1a44aa7f3e14f82a1cee05ceb484ed0a6))
199
+ * Updated pie-lib versions ([2fe4c5d](https://github.com/pie-framework/pie-elements/commit/2fe4c5d0be2d40f5fdb34815855695a7f1087f56))
200
+ * Updated pie-lib versions ([1c23830](https://github.com/pie-framework/pie-elements/commit/1c23830fc75d1de5f7bb3bb16de3c665ae5fa350))
201
+
202
+
203
+ ### Features
204
+
205
+ * print demo ([a7f9707](https://github.com/pie-framework/pie-elements/commit/a7f9707592e1ec89a55e9d61450b0600aea4d486))
206
+
207
+
208
+
209
+
210
+
211
+ ## [6.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@6.0.0...@pie-element/multiple-choice@6.0.1) (2021-09-01)
212
+
213
+ **Note:** Version bump only for package @pie-element/multiple-choice
214
+
215
+
216
+
217
+
218
+
219
+ # [6.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.10.0...@pie-element/multiple-choice@6.0.0) (2021-08-09)
220
+
221
+
222
+ ### Features
223
+
224
+ * **ebsr:** Added choicesLayout support ([33fb7e7](https://github.com/pie-framework/pie-elements/commit/33fb7e765146a7343a58663f3667f4a5de472960))
225
+ * **ebsr:** Added choicesLayout support \n BREAKING CHANGE: removed vertical mode ([348fc00](https://github.com/pie-framework/pie-elements/commit/348fc0031536d458071a1105e742c3d19399a15e))
226
+
227
+
228
+ ### BREAKING CHANGES
229
+
230
+ * **ebsr:** removed vertical mode.
231
+
232
+
233
+
234
+
235
+
236
+ # [5.10.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.9.2...@pie-element/multiple-choice@5.10.0) (2021-08-05)
237
+
238
+
239
+ ### Bug Fixes
240
+
241
+ * merge conflict ([01655ca](https://github.com/pie-framework/pie-elements/commit/01655caf59311cc1a7a6624a6243147b2819d76e))
242
+
243
+
244
+ ### Features
245
+
246
+ * **multiple-choice:** accessibility label - added aria label to checkbox and radio input types ([22514bb](https://github.com/pie-framework/pie-elements/commit/22514bb5e2476bc79a55756ff9a5c0c1e0642a29))
247
+ * **multiple-choice:** added possibility to change layout - vertical, grid, horizontal ([46e7681](https://github.com/pie-framework/pie-elements/commit/46e7681a178ff29c983db1c7b6206389b55e2a00))
248
+ * **multiple-choice:** grid layout - fix tests ([ab3c750](https://github.com/pie-framework/pie-elements/commit/ab3c750af03d9fbe0794f7ec53452c948b530ad8))
249
+ * **multiple-choice:** toolbar editor position set to bottom ([08ee249](https://github.com/pie-framework/pie-elements/commit/08ee249d45fdaab2c93a32453d757ec3c79215cd))
250
+ * if there are no choices - do not show grid columns dropdown BREAKING CHANGE: removed verticalMode(boolean) from model & configuration - and replaced it with choicesLayout(string) ([1c36ae8](https://github.com/pie-framework/pie-elements/commit/1c36ae8b7f9369b2723a6a84e7350370e1186c50))
251
+ * **multiple-choice:** grid layout - review comments ([540073f](https://github.com/pie-framework/pie-elements/commit/540073faeae2b67645a63e8ca609e7682138c710))
252
+ * **multiple-choice:** remove unused class name ([a7aa576](https://github.com/pie-framework/pie-elements/commit/a7aa576a32f5c44415994fe413491f3f3dd17b3f))
253
+ * **multiple-choice:** toolbar position ( bottom or top ) ([9af6cd9](https://github.com/pie-framework/pie-elements/commit/9af6cd9f6b893501e00640500a34e1c3404edc94))
254
+ * **multiple-choice:** update docs ([0843122](https://github.com/pie-framework/pie-elements/commit/084312288b501a7f1129b24a046f9ab19cf25f79))
255
+
256
+
257
+
258
+
259
+
260
+ ## [5.9.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.9.0...@pie-element/multiple-choice@5.9.2) (2021-08-05)
261
+
262
+
263
+ ### Bug Fixes
264
+
265
+ * force bump ([5ea7295](https://github.com/pie-framework/pie-elements/commit/5ea7295e4755fbc492a76e7ec69e5fc35b196919))
266
+
267
+
268
+
269
+
270
+
271
+ # [5.9.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.8.0...@pie-element/multiple-choice@5.9.0) (2021-06-29)
272
+
273
+
274
+ ### Bug Fixes
275
+
276
+ * 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))
277
+
278
+
279
+ ### Features
280
+
281
+ * remove audio and video buttons from various fields of various items PD-1180 ([#601](https://github.com/pie-framework/pie-elements/issues/601)) ([8766b25](https://github.com/pie-framework/pie-elements/commit/8766b25690f5dde6c3e896860d63e205bf3c831b))
282
+ * **ebsr:** Added vertical/horizontal layout setting - PD-1144 ([#579](https://github.com/pie-framework/pie-elements/issues/579)) ([51c4093](https://github.com/pie-framework/pie-elements/commit/51c4093b4ade86a9c1118066b9dee36bc0582f3a))
283
+
284
+
285
+
286
+
287
+
288
+ # [5.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.7.3...@pie-element/multiple-choice@5.8.0) (2021-04-07)
289
+
290
+
291
+ ### Features
292
+
293
+ * Added Vertical Mode for player ([#555](https://github.com/pie-framework/pie-elements/issues/555)) ([0da549e](https://github.com/pie-framework/pie-elements/commit/0da549e8af2523491779582674477ef08ba0990b))
294
+ * merge pie-ui into pie-elements PD-977 ([01ebfd7](https://github.com/pie-framework/pie-elements/commit/01ebfd7ce98b041dd0573575efd8b6da03f22162))
295
+
296
+
297
+
298
+
299
+
300
+ ## [5.7.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.7.0...@pie-element/multiple-choice@5.7.3) (2021-03-03)
301
+
302
+ **Note:** Version bump only for package @pie-element/multiple-choice
303
+
304
+
305
+
306
+
307
+
308
+ # [5.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.6.1...@pie-element/multiple-choice@5.7.0) (2021-03-03)
309
+
310
+
311
+ ### Bug Fixes
312
+
313
+ * **multiple-choice:** hide feedback for player if disabled ([2fb6a5d](https://github.com/pie-framework/pie-elements/commit/2fb6a5d707e9ed60502aaa87a5ff1aa3b77f8df0))
314
+ * **multiple-choice:** test feedback ([7827e4d](https://github.com/pie-framework/pie-elements/commit/7827e4d3032e321b9ff5ac7e465026faa2fa2997))
315
+
316
+
317
+ ### Features
318
+
319
+ * Updated design. Moved exclude zero at item level. Added ability to toggle from Settings Panel: level tag input, description, standards, visibility to student, half scoring, score labels, drag and drop. Added Actionable List. BREAKING CHANGE: moved exclude zero at item level (from scale level) ([c8bb906](https://github.com/pie-framework/pie-elements/commit/c8bb9064712aae057b74dceba5928a19054b27eb))
320
+
321
+
322
+
323
+
324
+
325
+ ## [5.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.6.0...@pie-element/multiple-choice@5.6.1) (2021-02-04)
326
+
327
+ **Note:** Version bump only for package @pie-element/multiple-choice
328
+
329
+
330
+
331
+
332
+
333
+ # [5.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.12...@pie-element/multiple-choice@5.6.0) (2021-02-02)
334
+
335
+
336
+ ### Features
337
+
338
+ * **multiple-choice:** add maximum number of choices toggle and related logic ([f506444](https://github.com/pie-framework/pie-elements/commit/f506444))
339
+
340
+
341
+
342
+
343
+
344
+ ## [5.5.12](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.11...@pie-element/multiple-choice@5.5.12) (2020-11-07)
345
+
346
+ **Note:** Version bump only for package @pie-element/multiple-choice
347
+
348
+
349
+
350
+
351
+
352
+ ## [5.5.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.10...@pie-element/multiple-choice@5.5.11) (2020-10-29)
353
+
354
+ **Note:** Version bump only for package @pie-element/multiple-choice
355
+
356
+
357
+
358
+
359
+
360
+ ## [5.5.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.9...@pie-element/multiple-choice@5.5.10) (2020-10-29)
361
+
362
+ **Note:** Version bump only for package @pie-element/multiple-choice
363
+
364
+
365
+
366
+
367
+
368
+ ## [5.5.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.8...@pie-element/multiple-choice@5.5.9) (2020-10-16)
369
+
370
+ **Note:** Version bump only for package @pie-element/multiple-choice
371
+
372
+
373
+
374
+
375
+
376
+ ## [5.5.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.7...@pie-element/multiple-choice@5.5.8) (2020-10-02)
377
+
378
+ **Note:** Version bump only for package @pie-element/multiple-choice
379
+
380
+
381
+
382
+
383
+
384
+ ## [5.5.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.6...@pie-element/multiple-choice@5.5.7) (2020-09-23)
385
+
386
+ **Note:** Version bump only for package @pie-element/multiple-choice
387
+
388
+
389
+
390
+
391
+
392
+ ## [5.5.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.5...@pie-element/multiple-choice@5.5.6) (2020-09-23)
393
+
394
+ **Note:** Version bump only for package @pie-element/multiple-choice
395
+
396
+
397
+
398
+
399
+
400
+ ## [5.5.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.4...@pie-element/multiple-choice@5.5.5) (2020-09-07)
401
+
402
+ **Note:** Version bump only for package @pie-element/multiple-choice
403
+
404
+
405
+
406
+
407
+
408
+ ## [5.5.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.3...@pie-element/multiple-choice@5.5.4) (2020-08-25)
409
+
410
+ **Note:** Version bump only for package @pie-element/multiple-choice
411
+
412
+
413
+
414
+
415
+
416
+ ## [5.5.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.2...@pie-element/multiple-choice@5.5.3) (2020-08-25)
417
+
418
+ **Note:** Version bump only for package @pie-element/multiple-choice
419
+
420
+
421
+
422
+
423
+
424
+ ## [5.5.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.5.1...@pie-element/multiple-choice@5.5.2) (2020-08-13)
425
+
426
+ **Note:** Version bump only for package @pie-element/multiple-choice
427
+
428
+
429
+
430
+
431
+
432
+ ## [5.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.4.0...@pie-element/multiple-choice@5.5.1) (2020-08-07)
433
+
434
+ **Note:** Version bump only for package @pie-element/multiple-choice
435
+
436
+
437
+
438
+
439
+
440
+ # [5.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.3.5...@pie-element/multiple-choice@5.4.0) (2020-06-09)
441
+
442
+
443
+ ### Features
444
+
445
+ * PD-311 - upgrade pie-ui/multiple-choice@4.13.0 ([154caf5](https://github.com/pie-framework/pie-elements/commit/154caf5))
446
+
447
+
448
+
449
+
450
+
451
+ ## [5.3.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.4.0-next.0...@pie-element/multiple-choice@5.3.5) (2020-05-25)
452
+
453
+
454
+ ### Bug Fixes
455
+
456
+ * version issue ([3935c9c](https://github.com/pie-framework/pie-elements/commit/3935c9c))
457
+
458
+
459
+
460
+
461
+
462
+ # [5.4.0-next.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.3.4...@pie-element/multiple-choice@5.4.0-next.0) (2020-05-25)
463
+
464
+
465
+ ### Bug Fixes
466
+
467
+ * bump deps ([c6080d6](https://github.com/pie-framework/pie-elements/commit/c6080d6))
468
+ * Multiple Select should report a question as "answered" as soon as a selection has been made (Remove unintended clue about how many answer choices are correct.) PD-253 ([314ead5](https://github.com/pie-framework/pie-elements/commit/314ead5))
469
+ * New partial-credit scoring algorithm for MCA items. PD-165 ([e80f2db](https://github.com/pie-framework/pie-elements/commit/e80f2db))
470
+ * PD-253 upgrade @pie-ui/multiple-choice to 4.12.23 ([007fb04](https://github.com/pie-framework/pie-elements/commit/007fb04))
471
+
472
+
473
+ ### Features
474
+
475
+ * add postpublish handler ([9b41dea](https://github.com/pie-framework/pie-elements/commit/9b41dea))
476
+
477
+
478
+
479
+
480
+
481
+ ## [5.3.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.3.3...@pie-element/multiple-choice@5.3.4) (2020-04-28)
482
+
483
+
484
+ ### Bug Fixes
485
+
486
+ * bump ui/lib versions ([45f0da6](https://github.com/pie-framework/pie-elements/commit/45f0da6))
487
+ * ui+libs update ([6127de2](https://github.com/pie-framework/pie-elements/commit/6127de2))
488
+ * update ui/lib versions ([0226b0b](https://github.com/pie-framework/pie-elements/commit/0226b0b))
489
+
490
+
491
+
492
+
493
+
494
+ ## [5.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.3.2...@pie-element/multiple-choice@5.3.3) (2020-04-14)
495
+
496
+
497
+ ### Bug Fixes
498
+
499
+ * bump ui/lib versions ([3edb232](https://github.com/pie-framework/pie-elements/commit/3edb232))
500
+
501
+
502
+
503
+
504
+
505
+ ## [5.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.3.1...@pie-element/multiple-choice@5.3.2) (2020-04-14)
506
+
507
+
508
+ ### Bug Fixes
509
+
510
+ * PD-127: MC Choice Prefix Issue (Set 'letters' as default choicePrefix) ([27cd7ad](https://github.com/pie-framework/pie-elements/commit/27cd7ad))
511
+ * PD-129: Updated pie-ui/multiple-choice version. ([7dd504a](https://github.com/pie-framework/pie-elements/commit/7dd504a))
512
+
513
+
514
+
515
+
516
+
517
+ ## [5.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.1.5...@pie-element/multiple-choice@5.3.1) (2020-04-10)
518
+
519
+
520
+ ### Bug Fixes
521
+
522
+ * bump [@pie-lib](https://github.com/pie-lib) dependencies ([dcef3a7](https://github.com/pie-framework/pie-elements/commit/dcef3a7))
523
+ * bump all packages to avoid tag conflict ([d9ec9a8](https://github.com/pie-framework/pie-elements/commit/d9ec9a8))
524
+ * bump lib and ui versions ([a882cbf](https://github.com/pie-framework/pie-elements/commit/a882cbf))
525
+ * bump ui versions ([5b9d99f](https://github.com/pie-framework/pie-elements/commit/5b9d99f))
526
+ * bump version ([98a1304](https://github.com/pie-framework/pie-elements/commit/98a1304))
527
+ * bump version to avoid tag conflict ([4d55f6d](https://github.com/pie-framework/pie-elements/commit/4d55f6d))
528
+
529
+
530
+
531
+
532
+
533
+ ## [5.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.1.5...@pie-element/multiple-choice@5.2.1) (2020-04-10)
534
+
535
+
536
+ ### Bug Fixes
537
+
538
+ * bump [@pie-lib](https://github.com/pie-lib) dependencies ([dcef3a7](https://github.com/pie-framework/pie-elements/commit/dcef3a7))
539
+ * bump lib and ui versions ([a882cbf](https://github.com/pie-framework/pie-elements/commit/a882cbf))
540
+ * bump ui versions ([5b9d99f](https://github.com/pie-framework/pie-elements/commit/5b9d99f))
541
+ * bump version ([98a1304](https://github.com/pie-framework/pie-elements/commit/98a1304))
542
+ * bump version to avoid tag conflict ([4d55f6d](https://github.com/pie-framework/pie-elements/commit/4d55f6d))
543
+
544
+
545
+
546
+
547
+
548
+ ## [5.1.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.1.4...@pie-element/multiple-choice@5.1.5) (2020-02-18)
549
+
550
+ **Note:** Version bump only for package @pie-element/multiple-choice
551
+
552
+
553
+
554
+
555
+
556
+ ## [5.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.1.3...@pie-element/multiple-choice@5.1.4) (2020-01-31)
557
+
558
+ **Note:** Version bump only for package @pie-element/multiple-choice
559
+
560
+
561
+
562
+
563
+
564
+ ## [5.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.1.2...@pie-element/multiple-choice@5.1.3) (2020-01-30)
565
+
566
+ **Note:** Version bump only for package @pie-element/multiple-choice
567
+
568
+
569
+
570
+
571
+
572
+ ## [5.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.1.1...@pie-element/multiple-choice@5.1.2) (2020-01-28)
573
+
574
+ **Note:** Version bump only for package @pie-element/multiple-choice
575
+
576
+
577
+
578
+
579
+
580
+ ## [5.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.1.0...@pie-element/multiple-choice@5.1.1) (2020-01-28)
581
+
582
+ **Note:** Version bump only for package @pie-element/multiple-choice
583
+
584
+
585
+
586
+
587
+
588
+ # [5.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.0.9...@pie-element/multiple-choice@5.1.0) (2020-01-09)
589
+
590
+
591
+ ### Features
592
+
593
+ * **normalization:** added a choicePrefix default value in case one is not given [ch6650] ([955ff40](https://github.com/pie-framework/pie-elements/commit/955ff40))
594
+
595
+
596
+
597
+
598
+
599
+ ## [5.0.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.0.8...@pie-element/multiple-choice@5.0.9) (2019-12-18)
600
+
601
+ **Note:** Version bump only for package @pie-element/multiple-choice
602
+
603
+
604
+
605
+
606
+
607
+ ## [5.0.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.0.7...@pie-element/multiple-choice@5.0.8) (2019-12-18)
608
+
609
+
610
+ ### Bug Fixes
611
+
612
+ * bump pie-ui version ([42e7db9](https://github.com/pie-framework/pie-elements/commit/42e7db9))
613
+
614
+
615
+
616
+
617
+
618
+ ## [5.0.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.0.6...@pie-element/multiple-choice@5.0.7) (2019-12-03)
619
+
620
+
621
+ ### Bug Fixes
622
+
623
+ * PIE-201 - store prompts and answers in session, fix ([2380224](https://github.com/pie-framework/pie-elements/commit/2380224))
624
+
625
+
626
+
627
+
628
+
629
+ ## [5.0.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.0.5...@pie-element/multiple-choice@5.0.6) (2019-11-06)
630
+
631
+
632
+ ### Bug Fixes
633
+
634
+ * feedbackEnabled should not be the property that decides whether the choice correctness is displayed or not. ([b69adfd](https://github.com/pie-framework/pie-elements/commit/b69adfd))
635
+ * Hide Partial Scoring option from Settings Panel setting to false by default. ([1d0f617](https://github.com/pie-framework/pie-elements/commit/1d0f617))
636
+
637
+
638
+
639
+
640
+
641
+ ## [5.0.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.0.4...@pie-element/multiple-choice@5.0.5) (2019-10-29)
642
+
643
+ **Note:** Version bump only for package @pie-element/multiple-choice
644
+
645
+
646
+
647
+
648
+
649
+ ## [5.0.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.0.3...@pie-element/multiple-choice@5.0.4) (2019-10-16)
650
+
651
+
652
+ ### Bug Fixes
653
+
654
+ * ch2766 fix unresolved promise ([#366](https://github.com/pie-framework/pie-elements/issues/366)) ([9057b7f](https://github.com/pie-framework/pie-elements/commit/9057b7f)), closes [#365](https://github.com/pie-framework/pie-elements/issues/365)
655
+
656
+
657
+
658
+
659
+
660
+ ## [5.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.0.2...@pie-element/multiple-choice@5.0.3) (2019-10-16)
661
+
662
+ **Note:** Version bump only for package @pie-element/multiple-choice
663
+
664
+
665
+
666
+
667
+
668
+ ## [5.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.0.1...@pie-element/multiple-choice@5.0.2) (2019-10-15)
669
+
670
+
671
+ ### Bug Fixes
672
+
673
+ * bump @pie-lib/controller-utils@^0.2.2 ([edae61c](https://github.com/pie-framework/pie-elements/commit/edae61c))
674
+
675
+
676
+
677
+
678
+
679
+ ## [5.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@5.0.0...@pie-element/multiple-choice@5.0.1) (2019-10-11)
680
+
681
+
682
+ ### Bug Fixes
683
+
684
+ * bump @pie-lib/controller-utils@^0.2.1 [ch4723] ([0a33d68](https://github.com/pie-framework/pie-elements/commit/0a33d68))
685
+ * Updated docs. ([3787619](https://github.com/pie-framework/pie-elements/commit/3787619))
686
+
687
+
688
+
689
+
690
+
691
+ # [5.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@4.2.2...@pie-element/multiple-choice@5.0.0) (2019-10-08)
692
+
693
+
694
+ * 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)
695
+
696
+
697
+ ### BREAKING CHANGES
698
+
699
+ * allowFeedback was replaced with feedbackEnabled.
700
+
701
+ * fix(charting): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
702
+
703
+ * fix(drag-in-the-blank): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
704
+
705
+ * fix(drawing-response): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
706
+
707
+ * fix(ebsr): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
708
+
709
+ * fix(explicit-constructed-response): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
710
+
711
+ * fix(extended-text-entry): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
712
+
713
+ * fix(graph-lines): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
714
+
715
+ * fix(graphing): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
716
+
717
+ * fix(hotspot): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
718
+
719
+ * fix(image-cloze-association): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
720
+
721
+ * fix(inline-dropdown): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
722
+
723
+ * fix(match): replaced usage of allowFeedback with feedbackEnabled. Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
724
+ * allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
725
+
726
+ * fix(math-inline): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
727
+
728
+ * fix(multiple-choice): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
729
+
730
+ * fix(placement-ordering): replaced usage of allowFeedback with feedbackEnabled. Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
731
+ * allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
732
+
733
+ * fix(select-text): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
734
+
735
+ * fix(text-entry): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
736
+
737
+ * fix: Updated pie-models.
738
+
739
+ * fix(categorize): Added normalize function on controller (to be able to add default values to the model).
740
+
741
+ * fix(charting): Added normalize function on controller (to be able to add default values to the model).
742
+
743
+ * fix(drag-in-the-blank): Added normalize function on controller (to be able to add default values to the model).
744
+
745
+ * fix(drawing-response): Added normalize function on controller (to be able to add default values to the model).
746
+
747
+ * fix(ebsr): Added normalize function on controller (to be able to add default values to the model).
748
+
749
+ * fix(explicit-constructed-response): Added normalize function on controller (to be able to add default values to the model).
750
+
751
+ * fix(extended-text-entry): Added normalize function on controller (to be able to add default values to the model).
752
+
753
+ * Remove unnecessary change.
754
+
755
+ * fix(graph-lines): Added normalize function on controller (to be able to add default values to the model).
756
+
757
+ * fix(graphing): Added normalize function on controller (to be able to add default values to the model).
758
+
759
+ * fix(hotspot): Added normalize function on controller (to be able to add default values to the model).
760
+
761
+ * fix(image-cloze-association): Added normalize function on controller (to be able to add default values to the model).
762
+
763
+ * fix(inline-dropdown): Added normalize function on controller (to be able to add default values to the model).
764
+
765
+ * fix(match): Added normalize function on controller (to be able to add default values to the model).
766
+
767
+ * fix(math-inline): Added normalize function on controller (to be able to add default values to the model).
768
+
769
+ * fix(multiple-choice): Added normalize function on controller (to be able to add default values to the model).
770
+
771
+ * fix(placement-ordering): Added normalize function on controller (to be able to add default values to the model).
772
+
773
+ * fix(select-text): Added normalize function on controller (to be able to add default values to the model).
774
+
775
+ * fix(text-entry): Added normalize function on controller (to be able to add default values to the model).
776
+
777
+
778
+
779
+
780
+
781
+ ## [4.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@4.2.1...@pie-element/multiple-choice@4.2.2) (2019-10-04)
782
+
783
+ **Note:** Version bump only for package @pie-element/multiple-choice
784
+
785
+
786
+
787
+
788
+
789
+ ## [4.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@4.2.0...@pie-element/multiple-choice@4.2.1) (2019-10-03)
790
+
791
+ **Note:** Version bump only for package @pie-element/multiple-choice
792
+
793
+
794
+
795
+
796
+
797
+ # [4.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@4.1.1...@pie-element/multiple-choice@4.2.0) (2019-10-03)
798
+
799
+
800
+ ### Features
801
+
802
+ * **alternateSection:** removed isBrowser function [ch4599] and debounced some session changes in ecr [ch4387] ([01dc151](https://github.com/pie-framework/pie-elements/commit/01dc151))
803
+ * **alternateSection:** removed isBrowser function [ch4599], debounced some session changes in ecr [ch4387] and fixed select-text issue [ch4385] ([ab4478e](https://github.com/pie-framework/pie-elements/commit/ab4478e))
804
+
805
+
806
+
807
+
808
+
809
+ ## [4.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@4.1.0...@pie-element/multiple-choice@4.1.1) (2019-10-03)
810
+
811
+ **Note:** Version bump only for package @pie-element/multiple-choice
812
+
813
+
814
+
815
+
816
+
817
+ # [4.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@4.0.1...@pie-element/multiple-choice@4.1.0) (2019-09-27)
818
+
819
+
820
+ ### Bug Fixes
821
+
822
+ * Show Correct Answer was not working properly: replaced allowFeedback (used to send data to pie-ui) with feedbackEnabled (can be changed in settings panel). ([494bf3a](https://github.com/pie-framework/pie-elements/commit/494bf3a))
823
+
824
+
825
+ ### Features
826
+
827
+ * **multiple-choice:** model based prompt ([d90c1a1](https://github.com/pie-framework/pie-elements/commit/d90c1a1))
828
+
829
+
830
+
831
+
832
+
833
+ ## [4.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@4.0.0...@pie-element/multiple-choice@4.0.1) (2019-09-19)
834
+
835
+ **Note:** Version bump only for package @pie-element/multiple-choice
836
+
837
+
838
+
839
+
840
+
841
+ # [4.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.10.1...@pie-element/multiple-choice@4.0.0) (2019-09-17)
842
+
843
+
844
+ * Moved rationale, teacherInstructions and studentInstructions enabled flag in model because it's needed in controller. ([9b3e532](https://github.com/pie-framework/pie-elements/commit/9b3e532))
845
+
846
+
847
+ ### BREAKING CHANGES
848
+
849
+ * `enabled` property from `configuration.rationale.enabled` moved to `model.rationaleEnabled`. Same applies to teacherInstructions/studentInstructions.
850
+
851
+
852
+
853
+
854
+
855
+ ## [3.10.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.10.0...@pie-element/multiple-choice@3.10.1) (2019-09-13)
856
+
857
+ **Note:** Version bump only for package @pie-element/multiple-choice
858
+
859
+
860
+
861
+
862
+
863
+ # [3.10.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.9.0...@pie-element/multiple-choice@3.10.0) (2019-09-13)
864
+
865
+
866
+ ### Features
867
+
868
+ * add Part Labels feature (but will be used in EBSR context only) ([c3c066b](https://github.com/pie-framework/pie-elements/commit/c3c066b))
869
+
870
+
871
+
872
+
873
+
874
+ # [3.9.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.8.1...@pie-element/multiple-choice@3.9.0) (2019-09-13)
875
+
876
+
877
+ ### Features
878
+
879
+ * Added the possibility to disable Settings Panel (used for EBSR). ([0327953](https://github.com/pie-framework/pie-elements/commit/0327953))
880
+
881
+
882
+
883
+
884
+
885
+ ## [3.8.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.8.0...@pie-element/multiple-choice@3.8.1) (2019-09-05)
886
+
887
+ **Note:** Version bump only for package @pie-element/multiple-choice
888
+
889
+
890
+
891
+
892
+
893
+ # [3.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.7.0...@pie-element/multiple-choice@3.8.0) (2019-09-04)
894
+
895
+
896
+ ### Bug Fixes
897
+
898
+ * bump pie-lib/controller-utils ([ba3de00](https://github.com/pie-framework/pie-elements/commit/ba3de00))
899
+ * prevent value='' ([754372b](https://github.com/pie-framework/pie-elements/commit/754372b))
900
+
901
+
902
+ ### Features
903
+
904
+ * make use of updateSession callback ([c82de88](https://github.com/pie-framework/pie-elements/commit/c82de88))
905
+
906
+
907
+
908
+
909
+
910
+ # [3.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.6.1...@pie-element/multiple-choice@3.7.0) (2019-08-27)
911
+
912
+
913
+ ### Features
914
+
915
+ * Session null/empty check. ([f24dc8b](https://github.com/pie-framework/pie-elements/commit/f24dc8b))
916
+
917
+
918
+
919
+
920
+
921
+ ## [3.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.11...@pie-element/multiple-choice@3.6.1) (2019-08-26)
922
+
923
+
924
+ ### Bug Fixes
925
+
926
+ * null choices were throwing 'choices.map is not a function' error. ([54d0c8c](https://github.com/pie-framework/pie-elements/commit/54d0c8c))
927
+
928
+
929
+
930
+
931
+
932
+ ## [3.5.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.10...@pie-element/multiple-choice@3.5.11) (2019-08-21)
933
+
934
+ **Note:** Version bump only for package @pie-element/multiple-choice
935
+
936
+
937
+
938
+
939
+
940
+ ## [3.5.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.9...@pie-element/multiple-choice@3.5.10) (2019-08-21)
941
+
942
+
943
+ ### Bug Fixes
944
+
945
+ * **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))
946
+
947
+
948
+
949
+
950
+
951
+ ## [3.5.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.8...@pie-element/multiple-choice@3.5.9) (2019-08-18)
952
+
953
+
954
+ ### Bug Fixes
955
+
956
+ * **math-rendering:** updated all dependent packages [ch3365] ([7cbf25a](https://github.com/pie-framework/pie-elements/commit/7cbf25a))
957
+ * set default values to configuration properties ([83501cd](https://github.com/pie-framework/pie-elements/commit/83501cd))
958
+
959
+
960
+
961
+
962
+
963
+ ## [3.5.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.7...@pie-element/multiple-choice@3.5.8) (2019-08-15)
964
+
965
+
966
+ ### Bug Fixes
967
+
968
+ * **elements:** version bumped the editable-html packages [ch1738] ([949222a](https://github.com/pie-framework/pie-elements/commit/949222a))
969
+
970
+
971
+
972
+
973
+
974
+ ## [3.5.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.6...@pie-element/multiple-choice@3.5.7) (2019-08-02)
975
+
976
+
977
+ ### Bug Fixes
978
+
979
+ * **elements:** fixed some feedback config issues and the prompt issue on categorize [ch2192], [ch1770] ([eb22724](https://github.com/pie-framework/pie-elements/commit/eb22724))
980
+
981
+
982
+
983
+
984
+
985
+ ## [3.5.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.5...@pie-element/multiple-choice@3.5.6) (2019-07-25)
986
+
987
+ **Note:** Version bump only for package @pie-element/multiple-choice
988
+
989
+
990
+
991
+
992
+
993
+ ## [3.5.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.4...@pie-element/multiple-choice@3.5.5) (2019-07-25)
994
+
995
+ **Note:** Version bump only for package @pie-element/multiple-choice
996
+
997
+
998
+
999
+
1000
+
1001
+ ## [3.5.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.3...@pie-element/multiple-choice@3.5.4) (2019-07-13)
1002
+
1003
+ **Note:** Version bump only for package @pie-element/multiple-choice
1004
+
1005
+
1006
+
1007
+
1008
+
1009
+ ## [3.5.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.2...@pie-element/multiple-choice@3.5.3) (2019-07-12)
1010
+
1011
+ **Note:** Version bump only for package @pie-element/multiple-choice
1012
+
1013
+
1014
+
1015
+
1016
+
1017
+ ## [3.5.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.1...@pie-element/multiple-choice@3.5.2) (2019-07-12)
1018
+
1019
+
1020
+ ### Bug Fixes
1021
+
1022
+ * **rendering:** implemented rendering for math elements [ch1915], [ch1935] ([2f35842](https://github.com/pie-framework/pie-elements/commit/2f35842))
1023
+
1024
+
1025
+
1026
+
1027
+
1028
+ ## [3.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.5.0...@pie-element/multiple-choice@3.5.1) (2019-07-12)
1029
+
1030
+ **Note:** Version bump only for package @pie-element/multiple-choice
1031
+
1032
+
1033
+
1034
+
1035
+
1036
+ # [3.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.4.9...@pie-element/multiple-choice@3.5.0) (2019-07-11)
1037
+
1038
+
1039
+ ### Features
1040
+
1041
+ * **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))
1042
+
1043
+
1044
+
1045
+
1046
+
1047
+ ## [3.4.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.4.8...@pie-element/multiple-choice@3.4.9) (2019-07-09)
1048
+
1049
+ **Note:** Version bump only for package @pie-element/multiple-choice
1050
+
1051
+
1052
+
1053
+
1054
+
1055
+ ## [3.4.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.4.7...@pie-element/multiple-choice@3.4.8) (2019-07-09)
1056
+
1057
+
1058
+ ### Bug Fixes
1059
+
1060
+ * The text when adding a new choice should be empty. ([f37bcb0](https://github.com/pie-framework/pie-elements/commit/f37bcb0))
1061
+
1062
+
1063
+
1064
+
1065
+
1066
+ ## [3.4.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.4.6...@pie-element/multiple-choice@3.4.7) (2019-07-07)
1067
+
1068
+ **Note:** Version bump only for package @pie-element/multiple-choice
1069
+
1070
+
1071
+
1072
+
1073
+
1074
+ ## [3.4.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.4.5...@pie-element/multiple-choice@3.4.6) (2019-07-07)
1075
+
1076
+
1077
+ ### Bug Fixes
1078
+
1079
+ * **editable-html:** fixed lots of stuff regarding the editable-html ([12c1129](https://github.com/pie-framework/pie-elements/commit/12c1129))
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+ ## [3.4.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.4.4...@pie-element/multiple-choice@3.4.5) (2019-07-05)
1086
+
1087
+ **Note:** Version bump only for package @pie-element/multiple-choice
1088
+
1089
+
1090
+
1091
+
1092
+
1093
+ ## [3.4.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.4.3...@pie-element/multiple-choice@3.4.4) (2019-07-04)
1094
+
1095
+
1096
+ ### Bug Fixes
1097
+
1098
+ * **template-els:** fixed some ditb issues ([9133840](https://github.com/pie-framework/pie-elements/commit/9133840))
1099
+
1100
+
1101
+
1102
+
1103
+
1104
+ ## [3.4.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.4.2...@pie-element/multiple-choice@3.4.3) (2019-07-03)
1105
+
1106
+ **Note:** Version bump only for package @pie-element/multiple-choice
1107
+
1108
+
1109
+
1110
+
1111
+
1112
+ ## [3.4.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.4.1...@pie-element/multiple-choice@3.4.2) (2019-07-03)
1113
+
1114
+ **Note:** Version bump only for package @pie-element/multiple-choice
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+ ## [3.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.4.0...@pie-element/multiple-choice@3.4.1) (2019-07-02)
1121
+
1122
+ **Note:** Version bump only for package @pie-element/multiple-choice
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+ # [3.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.3.1...@pie-element/multiple-choice@3.4.0) (2019-07-02)
1129
+
1130
+
1131
+ ### Features
1132
+
1133
+ * **mask-markup-elements:** refactored the elements and version bumped the necessary files ([f8f77c0](https://github.com/pie-framework/pie-elements/commit/f8f77c0))
1134
+
1135
+
1136
+
1137
+
1138
+
1139
+ ## [3.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.3.0...@pie-element/multiple-choice@3.3.1) (2019-06-26)
1140
+
1141
+ **Note:** Version bump only for package @pie-element/multiple-choice
1142
+
1143
+
1144
+
1145
+
1146
+
1147
+ # [3.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.2.1...@pie-element/multiple-choice@3.3.0) (2019-06-26)
1148
+
1149
+
1150
+ ### Features
1151
+
1152
+ * **settings-panel:** updated the settings panel design and changes needed for [ch2242] ([d830e57](https://github.com/pie-framework/pie-elements/commit/d830e57))
1153
+
1154
+
1155
+
1156
+
1157
+
1158
+ ## [3.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.2.0...@pie-element/multiple-choice@3.2.1) (2019-06-23)
1159
+
1160
+ **Note:** Version bump only for package @pie-element/multiple-choice
1161
+
1162
+
1163
+
1164
+
1165
+
1166
+ # [3.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.1.7...@pie-element/multiple-choice@3.2.0) (2019-06-21)
1167
+
1168
+
1169
+ ### Features
1170
+
1171
+ * **general:** updated all the packages that have the config-ui as a dependency ([44061de](https://github.com/pie-framework/pie-elements/commit/44061de))
1172
+
1173
+
1174
+
1175
+
1176
+
1177
+ ## [3.1.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.1.6...@pie-element/multiple-choice@3.1.7) (2019-06-17)
1178
+
1179
+ **Note:** Version bump only for package @pie-element/multiple-choice
1180
+
1181
+
1182
+
1183
+
1184
+
1185
+ ## [3.1.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.1.5...@pie-element/multiple-choice@3.1.6) (2019-06-12)
1186
+
1187
+ **Note:** Version bump only for package @pie-element/multiple-choice
1188
+
1189
+
1190
+
1191
+
1192
+
1193
+ ## [3.1.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.1.4...@pie-element/multiple-choice@3.1.5) (2019-06-07)
1194
+
1195
+ **Note:** Version bump only for package @pie-element/multiple-choice
1196
+
1197
+
1198
+
1199
+
1200
+
1201
+ ## [3.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.1.3...@pie-element/multiple-choice@3.1.4) (2019-06-06)
1202
+
1203
+ **Note:** Version bump only for package @pie-element/multiple-choice
1204
+
1205
+
1206
+
1207
+
1208
+
1209
+ ## [3.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.1.2...@pie-element/multiple-choice@3.1.3) (2019-06-05)
1210
+
1211
+ **Note:** Version bump only for package @pie-element/multiple-choice
1212
+
1213
+
1214
+
1215
+
1216
+
1217
+ ## [3.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.1.1...@pie-element/multiple-choice@3.1.2) (2019-05-23)
1218
+
1219
+ **Note:** Version bump only for package @pie-element/multiple-choice
1220
+
1221
+
1222
+
1223
+
1224
+
1225
+ ## [3.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.1.0...@pie-element/multiple-choice@3.1.1) (2019-05-21)
1226
+
1227
+
1228
+ ### Bug Fixes
1229
+
1230
+ * Updated pie-schema and config-schema. ([e552800](https://github.com/pie-framework/pie-elements/commit/e552800))
1231
+
1232
+
1233
+
1234
+
1235
+
1236
+ # [3.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.0.1...@pie-element/multiple-choice@3.1.0) (2019-05-16)
1237
+
1238
+
1239
+ ### Features
1240
+
1241
+ * added rationale support ([3c1edf3](https://github.com/pie-framework/pie-elements/commit/3c1edf3))
1242
+ * added rationale support. ([1ddc137](https://github.com/pie-framework/pie-elements/commit/1ddc137))
1243
+ * added support for rationale. ([9c206b0](https://github.com/pie-framework/pie-elements/commit/9c206b0))
1244
+
1245
+
1246
+
1247
+
1248
+
1249
+ ## [3.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@3.0.0...@pie-element/multiple-choice@3.0.1) (2019-05-08)
1250
+
1251
+ **Note:** Version bump only for package @pie-element/multiple-choice
1252
+
1253
+
1254
+
1255
+
1256
+
1257
+ # [3.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.12.6...@pie-element/multiple-choice@3.0.0) (2019-05-07)
1258
+
1259
+
1260
+ ### Features
1261
+
1262
+ * Updated with new version of [@pie-lib-config-ui](https://github.com/pie-lib-config-ui). Renamed `configure` with `configuration`. Removed usage of state (root.jsx) and updated tests. ([8031454](https://github.com/pie-framework/pie-elements/commit/8031454))
1263
+
1264
+
1265
+ ### BREAKING CHANGES
1266
+
1267
+ * `configure` is removed, use `configuration` instead.
1268
+
1269
+
1270
+
1271
+
1272
+
1273
+ ## [2.12.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.12.5...@pie-element/multiple-choice@2.12.6) (2019-05-02)
1274
+
1275
+ **Note:** Version bump only for package @pie-element/multiple-choice
1276
+
1277
+
1278
+
1279
+
1280
+
1281
+ ## [2.12.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.12.4...@pie-element/multiple-choice@2.12.5) (2019-05-02)
1282
+
1283
+
1284
+ ### Bug Fixes
1285
+
1286
+ * Removed usage of state and updated tests. ([0985890](https://github.com/pie-framework/pie-elements/commit/0985890))
1287
+ * renamed `configure` to `configuration` ([d18cea9](https://github.com/pie-framework/pie-elements/commit/d18cea9))
1288
+ * Updated with new version of @pie-lib/config-ui. ([4dd2a2e](https://github.com/pie-framework/pie-elements/commit/4dd2a2e))
1289
+
1290
+
1291
+
1292
+
1293
+
1294
+ ## [2.12.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.12.3...@pie-element/multiple-choice@2.12.4) (2019-05-01)
1295
+
1296
+ **Note:** Version bump only for package @pie-element/multiple-choice
1297
+
1298
+
1299
+
1300
+
1301
+
1302
+ ## [2.12.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.12.2...@pie-element/multiple-choice@2.12.3) (2019-04-26)
1303
+
1304
+
1305
+ ### Bug Fixes
1306
+
1307
+ * Updated @pie-ui/multiple-choice version. ([0eb901a](https://github.com/pie-framework/pie-elements/commit/0eb901a))
1308
+ * Updated with new version of @pie-lib/config-ui. ([49bb68b](https://github.com/pie-framework/pie-elements/commit/49bb68b))
1309
+
1310
+
1311
+
1312
+
1313
+
1314
+ ## [2.12.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.12.1...@pie-element/multiple-choice@2.12.2) (2019-04-23)
1315
+
1316
+ **Note:** Version bump only for package @pie-element/multiple-choice
1317
+
1318
+
1319
+
1320
+
1321
+
1322
+ ## [2.12.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.12.0...@pie-element/multiple-choice@2.12.1) (2019-04-19)
1323
+
1324
+ **Note:** Version bump only for package @pie-element/multiple-choice
1325
+
1326
+
1327
+
1328
+
1329
+
1330
+ # [2.12.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.11.2...@pie-element/multiple-choice@2.12.0) (2019-04-18)
1331
+
1332
+
1333
+ ### Bug Fixes
1334
+
1335
+ * **multiple-choice:** Refactored using new established naming convention and updated tests. ([78ffbae](https://github.com/pie-framework/pie-elements/commit/78ffbae))
1336
+ * **placement-ordering:** renaming model properties with naming conventions. ([9d9be01](https://github.com/pie-framework/pie-elements/commit/9d9be01))
1337
+
1338
+
1339
+ ### Features
1340
+
1341
+ * Updated @pie-ui/multiple-choice version. ([93dbd6a](https://github.com/pie-framework/pie-elements/commit/93dbd6a))
1342
+ * **multiple-choice:** Integrated new settings panel. Updated tests. ([6387043](https://github.com/pie-framework/pie-elements/commit/6387043))
1343
+
1344
+
1345
+
1346
+
1347
+
1348
+ ## [2.11.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.11.1...@pie-element/multiple-choice@2.11.2) (2019-04-08)
1349
+
1350
+ **Note:** Version bump only for package @pie-element/multiple-choice
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+ ## [2.11.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.11.0...@pie-element/multiple-choice@2.11.1) (2019-04-08)
1357
+
1358
+
1359
+ ### Bug Fixes
1360
+
1361
+ * Update state.model if there are any changes. ([610a9db](https://github.com/pie-framework/pie-elements/commit/610a9db))
1362
+
1363
+
1364
+
1365
+
1366
+
1367
+ # [2.11.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.10.3...@pie-element/multiple-choice@2.11.0) (2019-04-04)
1368
+
1369
+
1370
+ ### Bug Fixes
1371
+
1372
+ * bump editable-html ([1b4b238](https://github.com/pie-framework/pie-elements/commit/1b4b238))
1373
+
1374
+
1375
+ ### Features
1376
+
1377
+ * allow config to control the UI ([70551b8](https://github.com/pie-framework/pie-elements/commit/70551b8))
1378
+ * partial scoring ([928bcc3](https://github.com/pie-framework/pie-elements/commit/928bcc3))
1379
+ * support env.partialScoring, disable for radio ([40862cb](https://github.com/pie-framework/pie-elements/commit/40862cb))
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+ ## [2.10.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.10.2...@pie-element/multiple-choice@2.10.3) (2019-03-18)
1386
+
1387
+ **Note:** Version bump only for package @pie-element/multiple-choice
1388
+
1389
+
1390
+
1391
+
1392
+
1393
+ ## [2.10.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.10.1...@pie-element/multiple-choice@2.10.2) (2019-03-18)
1394
+
1395
+ **Note:** Version bump only for package @pie-element/multiple-choice
1396
+
1397
+
1398
+
1399
+
1400
+
1401
+ ## [2.10.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.10.0...@pie-element/multiple-choice@2.10.1) (2019-03-18)
1402
+
1403
+ **Note:** Version bump only for package @pie-element/multiple-choice
1404
+
1405
+
1406
+
1407
+
1408
+
1409
+ # [2.10.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.9.0...@pie-element/multiple-choice@2.10.0) (2019-03-18)
1410
+
1411
+
1412
+ ### Features
1413
+
1414
+ * **general:** initialize default model (2) ([#138](https://github.com/pie-framework/pie-elements/issues/138)) ([fc72eca](https://github.com/pie-framework/pie-elements/commit/fc72eca))
1415
+
1416
+
1417
+
1418
+
1419
+
1420
+ # [2.9.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.8.0...@pie-element/multiple-choice@2.9.0) (2019-03-13)
1421
+
1422
+
1423
+ ### Features
1424
+
1425
+ * **general:** initialize default model ([#129](https://github.com/pie-framework/pie-elements/issues/129)) ([b62d058](https://github.com/pie-framework/pie-elements/commit/b62d058))
1426
+ * all elements on `develop` target [@next](https://github.com/next) releases ([d3766e6](https://github.com/pie-framework/pie-elements/commit/d3766e6))
1427
+ * update schema docs ([#136](https://github.com/pie-framework/pie-elements/issues/136)) ([184f262](https://github.com/pie-framework/pie-elements/commit/184f262))
1428
+
1429
+
1430
+
1431
+
1432
+
1433
+ # [2.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.7.1...@pie-element/multiple-choice@2.8.0) (2019-02-20)
1434
+
1435
+
1436
+ ### Features
1437
+
1438
+ * **multiple-choice:** reimplemented the new design ([10c3b9b](https://github.com/pie-framework/pie-elements/commit/10c3b9b))
1439
+
1440
+
1441
+
1442
+
1443
+
1444
+ ## [2.7.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.6.1...@pie-element/multiple-choice@2.7.1) (2019-02-13)
1445
+
1446
+ **Note:** Version bump only for package @pie-element/multiple-choice
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+ ## [2.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.5.1...@pie-element/multiple-choice@2.6.1) (2019-02-13)
1453
+
1454
+ **Note:** Version bump only for package @pie-element/multiple-choice
1455
+
1456
+
1457
+
1458
+
1459
+
1460
+ ## [2.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.5.0...@pie-element/multiple-choice@2.5.1) (2019-02-13)
1461
+
1462
+ **Note:** Version bump only for package @pie-element/multiple-choice
1463
+
1464
+
1465
+
1466
+
1467
+
1468
+ # [2.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.4.0...@pie-element/multiple-choice@2.5.0) (2019-02-08)
1469
+
1470
+
1471
+ ### Bug Fixes
1472
+
1473
+ * **multiple-choice:** fixed a warning ([c8ccb36](https://github.com/pie-framework/pie-elements/commit/c8ccb36))
1474
+ * add partial scoring and shuffle prop for multiple-choice ([7577651](https://github.com/pie-framework/pie-elements/commit/7577651))
1475
+
1476
+
1477
+ ### Features
1478
+
1479
+ * **multiple-choice:** added a configurable property for the multiple-choice configure element and fixed some names for the customization properties ([9959eda](https://github.com/pie-framework/pie-elements/commit/9959eda))
1480
+ * **multiple-choice:** added a third option for the choices label and also fixed a configuration property name ([2f6d28d](https://github.com/pie-framework/pie-elements/commit/2f6d28d))
1481
+ * **multiple-choice:** changed the behaviour when enableShowPrompt is false ([5edaad1](https://github.com/pie-framework/pie-elements/commit/5edaad1))
1482
+ * **multiple-choice:** made some change in order to be able to publish a new version ([2be2aae](https://github.com/pie-framework/pie-elements/commit/2be2aae))
1483
+ * **multiple-choice:** made some change to the customization properties ([6f0d1b6](https://github.com/pie-framework/pie-elements/commit/6f0d1b6))
1484
+ * json schemas and docs ([6bfc2a9](https://github.com/pie-framework/pie-elements/commit/6bfc2a9))
1485
+ * **multiple-choice:** updated package version ([8f75d56](https://github.com/pie-framework/pie-elements/commit/8f75d56))
1486
+
1487
+
1488
+
1489
+ ## 2.4.1 (2019-01-08)
1490
+
1491
+
1492
+ ### Bug Fixes
1493
+
1494
+ * **multiple-choice:** bumped the editable-html version ([220b147](https://github.com/pie-framework/pie-elements/commit/220b147))
1495
+
1496
+
1497
+
1498
+
1499
+
1500
+ # [2.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.3.3...@pie-element/multiple-choice@2.4.0) (2019-01-08)
1501
+
1502
+
1503
+ ### Bug Fixes
1504
+
1505
+ * **tests:** fixed tests for the multiple choice element ([0fa715c](https://github.com/pie-framework/pie-elements/commit/0fa715c))
1506
+
1507
+
1508
+ ### Features
1509
+
1510
+ * **multiple-choice:** moved the theming to the config-ui layout element and removed some unnecessary code ([910e799](https://github.com/pie-framework/pie-elements/commit/910e799))
1511
+ * **multiple-choice:** updated snapshot in order to fix tests ([3fb6464](https://github.com/pie-framework/pie-elements/commit/3fb6464))
1512
+ * **multiple-choice:** updated the config-ui package and the pie-ui package ([95ae357](https://github.com/pie-framework/pie-elements/commit/95ae357))
1513
+ * **multiple-choice:** updated the version of the config-ui ([1d79056](https://github.com/pie-framework/pie-elements/commit/1d79056))
1514
+
1515
+
1516
+
1517
+ ## 2.3.5 (2018-12-20)
1518
+
1519
+
1520
+ ### Features
1521
+
1522
+ * **multiple-choice:** updated the config-ui package ([bc7aac1](https://github.com/pie-framework/pie-elements/commit/bc7aac1))
1523
+
1524
+
1525
+
1526
+ ## 2.3.4 (2018-12-17)
1527
+
1528
+
1529
+ ### Features
1530
+
1531
+ * **multiple-choice:** refactored the code of the multiple-choice package in order to use the new layout ([b16b654](https://github.com/pie-framework/pie-elements/commit/b16b654))
1532
+
1533
+
1534
+
1535
+
1536
+
1537
+ ## [2.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.3.2...@pie-element/multiple-choice@2.3.3) (2018-11-14)
1538
+
1539
+ **Note:** Version bump only for package @pie-element/multiple-choice
1540
+
1541
+
1542
+
1543
+
1544
+
1545
+ ## [2.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.3.1...@pie-element/multiple-choice@2.3.2) (2018-11-12)
1546
+
1547
+
1548
+ ### Bug Fixes
1549
+
1550
+ * **multiple-choice-item-preview-reset:** resetting the item preview when changing response type ([eb2f4c2](https://github.com/pie-framework/pie-elements/commit/eb2f4c2))
1551
+ * **multiple-choice-tests:** added tests for the new and old logic ([b78d059](https://github.com/pie-framework/pie-elements/commit/b78d059))
1552
+
1553
+
1554
+
1555
+
1556
+
1557
+ ## [2.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.3.0...@pie-element/multiple-choice@2.3.1) (2018-11-12)
1558
+
1559
+
1560
+ ### Bug Fixes
1561
+
1562
+ * **dependencies-add:** added dependencies where needed ([23df697](https://github.com/pie-framework/pie-elements/commit/23df697))
1563
+ * conflict ([b854c6b](https://github.com/pie-framework/pie-elements/commit/b854c6b))
1564
+
1565
+
1566
+
1567
+
1568
+
1569
+ <a name="2.3.0"></a>
1570
+ # [2.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.2.0...@pie-element/multiple-choice@2.3.0) (2018-11-05)
1571
+
1572
+
1573
+ ### Features
1574
+
1575
+ * **multiple-choice-configure-customization:** added possibility to customize some of the elements from the design tab (ch557) ([b3b9d47](https://github.com/pie-framework/pie-elements/commit/b3b9d47))
1576
+ * **multiple-choice-configure-customization:** changed the key for the options object from config to configure ([8c01e2b](https://github.com/pie-framework/pie-elements/commit/8c01e2b))
1577
+ * **multiple-choice-configure-customization:** updated the scoring config version ([947cdd0](https://github.com/pie-framework/pie-elements/commit/947cdd0))
1578
+
1579
+
1580
+
1581
+
1582
+
1583
+ <a name="2.2.0"></a>
1584
+ # [2.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.1.3...@pie-element/multiple-choice@2.2.0) (2018-10-31)
1585
+
1586
+
1587
+ ### Features
1588
+
1589
+ * **ch497:** updated the partial scoring for 3 packages: match, select-text and multiple-choice ([5a46b06](https://github.com/pie-framework/pie-elements/commit/5a46b06))
1590
+ * **choice-interaction-update:** made the requested changes for the multiple-choice package ([d03dc1a](https://github.com/pie-framework/pie-elements/commit/d03dc1a))
1591
+ * **choice-interaction-update:** updated the partial scoring package version for 3 packages: match, select-text and multiple-choice (ch497) ([b1f2803](https://github.com/pie-framework/pie-elements/commit/b1f2803))
1592
+
1593
+
1594
+
1595
+
1596
+
1597
+ <a name="2.1.3"></a>
1598
+ ## [2.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.1.2...@pie-element/multiple-choice@2.1.3) (2018-10-10)
1599
+
1600
+
1601
+ ### Bug Fixes
1602
+
1603
+ * **editable-html-package-update:** updated the editable-html version ([4240cb8](https://github.com/pie-framework/pie-elements/commit/4240cb8))
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+ <a name="2.1.2"></a>
1610
+ ## [2.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.1.1...@pie-element/multiple-choice@2.1.2) (2018-09-20)
1611
+
1612
+
1613
+ ### Bug Fixes
1614
+
1615
+ * fix bad import ([2cd1cde](https://github.com/pie-framework/pie-elements/commit/2cd1cde))
1616
+
1617
+
1618
+
1619
+
1620
+
1621
+ <a name="2.1.1"></a>
1622
+ ## [2.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.1.0...@pie-element/multiple-choice@2.1.1) (2018-09-20)
1623
+
1624
+
1625
+ ### Bug Fixes
1626
+
1627
+ * build fixes ([3c3a7f2](https://github.com/pie-framework/pie-elements/commit/3c3a7f2))
1628
+
1629
+
1630
+
1631
+
1632
+
1633
+ <a name="2.1.0"></a>
1634
+ # [2.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.0.5...@pie-element/multiple-choice@2.1.0) (2018-08-16)
1635
+
1636
+
1637
+ ### Features
1638
+
1639
+ * add outcome method to controller ([ec2853e](https://github.com/pie-framework/pie-elements/commit/ec2853e))
1640
+
1641
+
1642
+
1643
+
1644
+ <a name="2.0.5"></a>
1645
+ ## [2.0.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.0.4...@pie-element/multiple-choice@2.0.5) (2018-08-06)
1646
+
1647
+
1648
+ ### Bug Fixes
1649
+
1650
+ * bump config-ui@^7.6.6 ([266235a](https://github.com/pie-framework/pie-elements/commit/266235a))
1651
+
1652
+
1653
+
1654
+
1655
+ <a name="2.0.4"></a>
1656
+ ## [2.0.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.0.3...@pie-element/multiple-choice@2.0.4) (2018-07-27)
1657
+
1658
+
1659
+ ### Bug Fixes
1660
+
1661
+ * bump config-ui and editable html versions ([002fb60](https://github.com/pie-framework/pie-elements/commit/002fb60))
1662
+
1663
+
1664
+
1665
+
1666
+ <a name="2.0.3"></a>
1667
+ ## [2.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.0.2...@pie-element/multiple-choice@2.0.3) (2018-07-18)
1668
+
1669
+
1670
+
1671
+
1672
+ **Note:** Version bump only for package @pie-element/multiple-choice
1673
+
1674
+ <a name="2.0.2"></a>
1675
+ ## [2.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@2.0.1...@pie-element/multiple-choice@2.0.2) (2018-06-06)
1676
+
1677
+
1678
+ ### Bug Fixes
1679
+
1680
+ * dont import *.jsx files ([5811854](https://github.com/pie-framework/pie-elements/commit/5811854))
1681
+
1682
+
1683
+
1684
+
1685
+ <a name="2.0.1"></a>
1686
+ ## [2.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@1.8.0...@pie-element/multiple-choice@2.0.1) (2018-05-25)
1687
+
1688
+
1689
+
1690
+
1691
+ **Note:** Version bump only for package @pie-element/multiple-choice
1692
+
1693
+ <a name="1.8.0"></a>
1694
+ # [1.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@1.7.1...@pie-element/multiple-choice@1.8.0) (2018-05-22)
1695
+
1696
+
1697
+ ### Features
1698
+
1699
+ * upgrade material-ui -> [@material-ui](https://github.com/material-ui)/core@1.0.0-rc.1 ([3d57d5c](https://github.com/pie-framework/pie-elements/commit/3d57d5c))
1700
+
1701
+
1702
+
1703
+
1704
+ <a name="1.7.1"></a>
1705
+ ## [1.7.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@1.7.0...@pie-element/multiple-choice@1.7.1) (2018-05-11)
1706
+
1707
+
1708
+ ### Bug Fixes
1709
+
1710
+ * **prompt:** add image functionality back in ([3aa73db](https://github.com/pie-framework/pie-elements/commit/3aa73db))
1711
+
1712
+
1713
+
1714
+
1715
+ <a name="1.7.0"></a>
1716
+ # [1.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@1.6.1...@pie-element/multiple-choice@1.7.0) (2018-05-03)
1717
+
1718
+
1719
+ ### Features
1720
+
1721
+ * **dependencies:** use latest of [@pie-ui](https://github.com/pie-ui)/* ([ac9d2e5](https://github.com/pie-framework/pie-elements/commit/ac9d2e5))
1722
+
1723
+
1724
+
1725
+
1726
+ <a name="1.6.1"></a>
1727
+ ## [1.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice@1.6.0...@pie-element/multiple-choice@1.6.1) (2018-05-02)
1728
+
1729
+
1730
+
1731
+
1732
+ **Note:** Version bump only for package @pie-element/multiple-choice
1733
+
1734
+ <a name="1.6.0"></a>
1735
+ # 1.6.0 (2018-04-25)
1736
+
1737
+
1738
+ ### Bug Fixes
1739
+
1740
+ * **configure:** make sure value is unique ([0f437c2](https://github.com/pie-framework/pie-elements/commit/0f437c2))
1741
+ * **dependencies:** use latest [@pie-lib](https://github.com/pie-lib)/editable-html ([b29ff91](https://github.com/pie-framework/pie-elements/commit/b29ff91))
1742
+ * **dependencies:** version bump ([ee6d3d0](https://github.com/pie-framework/pie-elements/commit/ee6d3d0))
1743
+ * **dependencies:** version bump [@pie-ui](https://github.com/pie-ui)/multiple-choice ([f82c722](https://github.com/pie-framework/pie-elements/commit/f82c722))
1744
+
1745
+
1746
+ ### Features
1747
+
1748
+ * **root:** use [@pie-lib](https://github.com/pie-lib)/config-ui choiceUtils ([2a3f180](https://github.com/pie-framework/pie-elements/commit/2a3f180))
1749
+ * **value:** remove 'value' input, it is now generated based on the choice index. ([5ea34fa](https://github.com/pie-framework/pie-elements/commit/5ea34fa))
1750
+
1751
+
1752
+
1753
+ <a name="1.5.0"></a>
1754
+ # 1.5.0 (2018-04-17)
1755
+
1756
+
1757
+ ### Features
1758
+
1759
+ * **dependencies:** use latest [@pie-ui](https://github.com/pie-ui)/multiple-choice ([9b73dbb](https://github.com/pie-framework/pie-elements/commit/9b73dbb))
1760
+
1761
+
1762
+
1763
+ <a name="1.2.2"></a>
1764
+ ## 1.2.2 (2018-03-06)
1765
+
1766
+
1767
+ ### Bug Fixes
1768
+
1769
+ * **dependencies:** fix dependencies ([0d16dc0](https://github.com/pie-framework/pie-elements/commit/0d16dc0))
1770
+ * **dependencies:** update dependency names ([dc789ac](https://github.com/pie-framework/pie-elements/commit/dc789ac))
1771
+
1772
+
1773
+
1774
+
1775
+ <a name="1.5.0"></a>
1776
+ # [1.5.0](https://github.com/pie-framework/pie-elements/compare/v1.4.1...v1.5.0) (2018-04-17)
1777
+
1778
+
1779
+ ### Features
1780
+
1781
+ * **dependencies:** use latest [@pie-ui](https://github.com/pie-ui)/multiple-choice ([9b73dbb](https://github.com/pie-framework/pie-elements/commit/9b73dbb))
1782
+
1783
+
1784
+
1785
+
1786
+ <a name="1.2.2"></a>
1787
+ ## 1.2.2 (2018-03-06)
1788
+
1789
+
1790
+ ### Bug Fixes
1791
+
1792
+ * **dependencies:** fix dependencies ([0d16dc0](https://github.com/pie-framework/pie-elements/commit/0d16dc0))
1793
+ * **dependencies:** update dependency names ([dc789ac](https://github.com/pie-framework/pie-elements/commit/dc789ac))