@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,1547 @@
1
+ [
2
+ {
3
+ "type": "fix",
4
+ "scope": null,
5
+ "subject": "rm child prepack in favour of root prepack",
6
+ "merge": null,
7
+ "header": "fix: rm child prepack in favour of root prepack",
8
+ "body": null,
9
+ "footer": null,
10
+ "notes": [],
11
+ "hash": "381d8d6485269b641d8d4655148966d2e70803be",
12
+ "gitTags": "",
13
+ "committerDate": "2019-03-15 09:51:11 +0000",
14
+ "isTagged": true,
15
+ "tag": "@pie-lib/math-input@5.1.13"
16
+ },
17
+ {
18
+ "type": "chore",
19
+ "scope": null,
20
+ "subject": "get packages to call changelog function on prepack",
21
+ "merge": null,
22
+ "header": "chore: get packages to call changelog function on prepack",
23
+ "body": null,
24
+ "footer": null,
25
+ "notes": [],
26
+ "hash": "8828f01f2d16d29404ba837c1de40d09e7230ec5",
27
+ "gitTags": "",
28
+ "committerDate": "2019-03-14 12:40:05 +0000",
29
+ "isTagged": true,
30
+ "tag": "@pie-lib/math-input@5.1.10"
31
+ },
32
+ {
33
+ "type": "chore",
34
+ "scope": null,
35
+ "subject": "call changelog on prepack",
36
+ "merge": null,
37
+ "header": "chore: call changelog on prepack",
38
+ "body": null,
39
+ "footer": null,
40
+ "notes": [],
41
+ "hash": "b672c012de096c55b765a765f758da3fc5df2f90",
42
+ "gitTags": "",
43
+ "committerDate": "2019-03-13 23:00:44 +0000",
44
+ "isTagged": true,
45
+ "tag": "@pie-lib/math-input@5.1.10"
46
+ },
47
+ {
48
+ "type": "chore",
49
+ "scope": null,
50
+ "subject": "generate changelog.json instead of markdown",
51
+ "merge": null,
52
+ "header": "chore: generate changelog.json instead of markdown",
53
+ "body": null,
54
+ "footer": null,
55
+ "notes": [],
56
+ "hash": "eaa5019a11f70c53425d55856bd3b940237f8c7d",
57
+ "gitTags": "",
58
+ "committerDate": "2019-03-13 17:24:09 +0000",
59
+ "isTagged": true,
60
+ "tag": "@pie-lib/math-input@5.1.10"
61
+ },
62
+ {
63
+ "type": "chore",
64
+ "scope": null,
65
+ "subject": "force version bump to avoid collision w/ next packages",
66
+ "merge": null,
67
+ "header": "chore: force version bump to avoid collision w/ next packages",
68
+ "body": null,
69
+ "footer": null,
70
+ "notes": [],
71
+ "hash": "a05f0fdb47f72d3a3d839cd70e96de6642a44c1e",
72
+ "gitTags": "",
73
+ "committerDate": "2019-03-12 21:55:40 +0000",
74
+ "isTagged": true,
75
+ "tag": "@pie-lib/math-input@5.1.10"
76
+ },
77
+ {
78
+ "type": "chore",
79
+ "scope": null,
80
+ "subject": "import re-order",
81
+ "merge": null,
82
+ "header": "chore: import re-order",
83
+ "body": null,
84
+ "footer": null,
85
+ "notes": [],
86
+ "hash": "21c3be5a812e902a500d34a0be31f939740745a3",
87
+ "gitTags": "",
88
+ "committerDate": "2019-02-20 12:03:20 +0200",
89
+ "isTagged": true,
90
+ "tag": "@pie-lib/math-input@5.1.0"
91
+ },
92
+ {
93
+ "type": "feat",
94
+ "scope": "math-toolbar",
95
+ "subject": "configurable keypad for extra button variety",
96
+ "merge": null,
97
+ "header": "feat(math-toolbar): configurable keypad for extra button variety",
98
+ "body": null,
99
+ "footer": null,
100
+ "notes": [],
101
+ "hash": "f219ae19c18a4166ccc4f7d6e1d6b24b0b444fd7",
102
+ "gitTags": "",
103
+ "committerDate": "2019-02-20 12:01:12 +0200",
104
+ "isTagged": true,
105
+ "tag": "@pie-lib/math-input@5.1.0"
106
+ },
107
+ {
108
+ "type": "fix",
109
+ "scope": null,
110
+ "subject": "use export '*' for mq",
111
+ "merge": null,
112
+ "header": "fix: use export '*' for mq",
113
+ "body": null,
114
+ "footer": null,
115
+ "notes": [],
116
+ "hash": "1d8200b7a6091b40f5f681380ece21a61a22ba1d",
117
+ "gitTags": "",
118
+ "committerDate": "2019-02-12 16:44:04 +0200",
119
+ "isTagged": true,
120
+ "tag": "@pie-lib/math-input@5.0.4"
121
+ },
122
+ {
123
+ "type": "fix",
124
+ "scope": null,
125
+ "subject": "remove unnecessary mathquill wrappers in favor of @pie-lib/math-input and small styling fixes",
126
+ "merge": null,
127
+ "header": "fix: remove unnecessary mathquill wrappers in favor of @pie-lib/math-input and small styling fixes",
128
+ "body": null,
129
+ "footer": null,
130
+ "notes": [],
131
+ "hash": "b29bc9a50123944921ee65f1a561c32c080b5455",
132
+ "gitTags": "",
133
+ "committerDate": "2019-02-12 16:44:04 +0200",
134
+ "isTagged": true,
135
+ "tag": "@pie-lib/math-input@5.0.4"
136
+ },
137
+ {
138
+ "type": "fix",
139
+ "scope": null,
140
+ "subject": "fraction button in HorizontalKeypad",
141
+ "merge": null,
142
+ "header": "fix: fraction button in HorizontalKeypad",
143
+ "body": null,
144
+ "footer": null,
145
+ "notes": [],
146
+ "hash": "0d5d89620b2f959468fc88c89e7f37d1d8e9040a",
147
+ "gitTags": "",
148
+ "committerDate": "2019-02-12 13:02:53 +0000",
149
+ "isTagged": true,
150
+ "tag": "@pie-lib/math-input@5.0.4"
151
+ },
152
+ {
153
+ "type": "fix",
154
+ "scope": null,
155
+ "subject": "version bump",
156
+ "merge": null,
157
+ "header": "fix: version bump",
158
+ "body": null,
159
+ "footer": null,
160
+ "notes": [],
161
+ "hash": "4591a501c02b943111deab1327967b19100cba0a",
162
+ "gitTags": "",
163
+ "committerDate": "2019-02-11 11:28:18 +0000",
164
+ "isTagged": true,
165
+ "tag": "@pie-lib/math-input@5.0.2"
166
+ },
167
+ {
168
+ "type": "fix",
169
+ "scope": null,
170
+ "subject": "nav w/ HorizontalKeypad",
171
+ "merge": null,
172
+ "header": "fix: nav w/ HorizontalKeypad",
173
+ "body": null,
174
+ "footer": null,
175
+ "notes": [],
176
+ "hash": "79a72be598f494cc8dca38045a9faa88794526b0",
177
+ "gitTags": " (origin/feature/equation-editor, feature/equation-editor)",
178
+ "committerDate": "2019-02-11 10:46:28 +0000",
179
+ "isTagged": true,
180
+ "tag": "@pie-lib/math-input@5.0.0"
181
+ },
182
+ {
183
+ "type": "feat",
184
+ "scope": null,
185
+ "subject": "new ui + layout",
186
+ "merge": null,
187
+ "header": "feat: new ui + layout",
188
+ "body": "* new component `MathInput` which combines a mathquill input and a\n`Keypad`.\n* `Keypad` has been re-written to:\n * improve it's layout\n * make it more configurable\n* `HorizontalKeypad` has been rewritten to use the new `Keypad`.",
189
+ "footer": "BREAKING CHANGE:\n* The ui is quite different now\n* Some of the old components are gone (except for HorizontalKeypad which\nis retained for backward compatibility).",
190
+ "notes": [
191
+ {
192
+ "title": "BREAKING CHANGE",
193
+ "text": "* The ui is quite different now\n* Some of the old components are gone (except for HorizontalKeypad which\nis retained for backward compatibility)."
194
+ }
195
+ ],
196
+ "hash": "2f6fdba637d26b061407bdd09ccb4d0226aec3cc",
197
+ "gitTags": "",
198
+ "committerDate": "2019-02-08 16:53:52 +0000",
199
+ "isTagged": true,
200
+ "tag": "@pie-lib/math-input@5.0.0"
201
+ },
202
+ {
203
+ "type": "fix",
204
+ "scope": null,
205
+ "subject": "version bump",
206
+ "merge": null,
207
+ "header": "fix: version bump",
208
+ "body": null,
209
+ "footer": null,
210
+ "notes": [],
211
+ "hash": "caaf960891fb17ad8e221849ce992381e4c2c31c",
212
+ "gitTags": "",
213
+ "committerDate": "2019-02-05 15:38:33 +0000",
214
+ "isTagged": true,
215
+ "tag": "@pie-lib/math-input@4.7.3"
216
+ },
217
+ {
218
+ "type": "fix",
219
+ "scope": "math-input",
220
+ "subject": "styling fixes to adjust for most recent material-ui",
221
+ "merge": null,
222
+ "header": "fix(math-input): styling fixes to adjust for most recent material-ui",
223
+ "body": null,
224
+ "footer": null,
225
+ "notes": [],
226
+ "hash": "b4663584c7847f6fdb5310d42c07be950da4e505",
227
+ "gitTags": "",
228
+ "committerDate": "2019-02-05 17:07:07 +0200",
229
+ "isTagged": true,
230
+ "tag": "@pie-lib/math-input@4.7.2"
231
+ },
232
+ {
233
+ "type": "feat",
234
+ "scope": null,
235
+ "subject": "libs version bump",
236
+ "merge": null,
237
+ "header": "feat: libs version bump",
238
+ "body": null,
239
+ "footer": null,
240
+ "notes": [],
241
+ "hash": "b9476a927a344a047b854d16116b28a8de2ab76d",
242
+ "gitTags": "",
243
+ "committerDate": "2019-01-30 22:14:28 +0000",
244
+ "isTagged": true,
245
+ "tag": "@pie-lib/math-input@4.7.0"
246
+ },
247
+ {
248
+ "type": "chore",
249
+ "scope": null,
250
+ "subject": "remove old mock",
251
+ "merge": null,
252
+ "header": "chore: remove old mock",
253
+ "body": null,
254
+ "footer": null,
255
+ "notes": [],
256
+ "hash": "c3e8bf7f27110ada794d3998eca81e13bb3eeddb",
257
+ "gitTags": "",
258
+ "committerDate": "2018-12-18 13:12:45 +0000",
259
+ "isTagged": true,
260
+ "tag": "@pie-lib/math-input@4.6.0"
261
+ },
262
+ {
263
+ "type": "chore",
264
+ "scope": null,
265
+ "subject": "fix conflict",
266
+ "merge": null,
267
+ "header": "chore: fix conflict",
268
+ "body": null,
269
+ "footer": null,
270
+ "notes": [],
271
+ "hash": "55181f1c118a0f640b7975f212b9adf454896110",
272
+ "gitTags": "",
273
+ "committerDate": "2018-12-18 13:07:02 +0000",
274
+ "isTagged": true,
275
+ "tag": "@pie-lib/math-input@4.6.0"
276
+ },
277
+ {
278
+ "type": "fix",
279
+ "scope": null,
280
+ "subject": "version bump",
281
+ "merge": null,
282
+ "header": "fix: version bump",
283
+ "body": null,
284
+ "footer": null,
285
+ "notes": [],
286
+ "hash": "3dcbea969abef98945b73a73fb73174cecb99a11",
287
+ "gitTags": "",
288
+ "committerDate": "2018-12-18 12:59:14 +0000",
289
+ "isTagged": true,
290
+ "tag": "@pie-lib/math-input@4.5.2"
291
+ },
292
+ {
293
+ "type": "feat",
294
+ "scope": "math-toolbar",
295
+ "subject": "version bumps",
296
+ "merge": null,
297
+ "header": "feat(math-toolbar): version bumps",
298
+ "body": null,
299
+ "footer": null,
300
+ "notes": [],
301
+ "hash": "e88dc9ae8d549a9c4a6f1183fe1d7d334d674fe6",
302
+ "gitTags": "",
303
+ "committerDate": "2018-12-18 14:39:32 +0200",
304
+ "isTagged": true,
305
+ "tag": "@pie-lib/math-input@4.6.0"
306
+ },
307
+ {
308
+ "type": "feat",
309
+ "scope": "math-toolbar",
310
+ "subject": "answer block initial implementation",
311
+ "merge": null,
312
+ "header": "feat(math-toolbar): answer block initial implementation",
313
+ "body": null,
314
+ "footer": null,
315
+ "notes": [],
316
+ "hash": "2200ee4258e316e2f0d3903751e088cc30c50318",
317
+ "gitTags": "",
318
+ "committerDate": "2018-12-18 13:52:00 +0200",
319
+ "isTagged": true,
320
+ "tag": "@pie-lib/math-input@4.6.0"
321
+ },
322
+ {
323
+ "type": "feat",
324
+ "scope": "math-toolbar",
325
+ "subject": "answer block column for keypad and related functionality",
326
+ "merge": null,
327
+ "header": "feat(math-toolbar): answer block column for keypad and related functionality",
328
+ "body": null,
329
+ "footer": null,
330
+ "notes": [],
331
+ "hash": "2fd700a128f6d513d8cfa51473c2f384b8948f9e",
332
+ "gitTags": "",
333
+ "committerDate": "2018-11-29 13:34:45 +0200",
334
+ "isTagged": true,
335
+ "tag": "@pie-lib/math-input@4.5.0"
336
+ },
337
+ {
338
+ "type": "feat",
339
+ "scope": "math-toolbar",
340
+ "subject": "changed from ssh to https for the mathquill forked repo",
341
+ "merge": null,
342
+ "header": "feat(math-toolbar): changed from ssh to https for the mathquill forked repo",
343
+ "body": null,
344
+ "footer": null,
345
+ "notes": [],
346
+ "hash": "7364008088bb47419af4391c2bc5aa17173692b5",
347
+ "gitTags": "",
348
+ "committerDate": "2018-11-27 16:02:58 +0200",
349
+ "isTagged": true,
350
+ "tag": "@pie-lib/math-input@4.4.0"
351
+ },
352
+ {
353
+ "type": "feat",
354
+ "scope": "math-input",
355
+ "subject": "added some new symbols to the math-input",
356
+ "merge": null,
357
+ "header": "feat(math-input): added some new symbols to the math-input",
358
+ "body": null,
359
+ "footer": null,
360
+ "notes": [],
361
+ "hash": "56062aa598de2aec765626de861b01576bfea150",
362
+ "gitTags": "",
363
+ "committerDate": "2018-11-27 10:53:44 +0200",
364
+ "isTagged": true,
365
+ "tag": "@pie-lib/math-input@4.3.0"
366
+ },
367
+ {
368
+ "type": "fix",
369
+ "scope": null,
370
+ "subject": "rm githead",
371
+ "merge": null,
372
+ "header": "fix: rm githead",
373
+ "body": null,
374
+ "footer": null,
375
+ "notes": [],
376
+ "hash": "a1523aabfe34697970bb94f3ed300603d9e11f74",
377
+ "gitTags": "",
378
+ "committerDate": "2018-09-12 14:44:09 +0100",
379
+ "isTagged": true,
380
+ "tag": "@pie-lib/math-input@4.2.3"
381
+ },
382
+ {
383
+ "type": "fix",
384
+ "scope": null,
385
+ "subject": "githead",
386
+ "merge": null,
387
+ "header": "fix: githead",
388
+ "body": null,
389
+ "footer": null,
390
+ "notes": [],
391
+ "hash": "3e485e0a7094496fd93d86a0500c75e343e9fac2",
392
+ "gitTags": "",
393
+ "committerDate": "2018-09-12 14:38:21 +0100",
394
+ "isTagged": true,
395
+ "tag": "@pie-lib/math-input@4.2.3"
396
+ },
397
+ {
398
+ "type": "feat",
399
+ "scope": null,
400
+ "subject": "Update toolbar api to provide better separation between react components and slate and move math editing to toolbar to simplify ui",
401
+ "merge": null,
402
+ "header": "feat: Update toolbar api to provide better separation between react components and slate and move math editing to toolbar to simplify ui",
403
+ "body": "The toolbar api has been updated so that you can write your toolbar logic as pure React components without having to know about Slate at all.\nThe glue from slate -> React is done in the plugin's `customToolbar` method. To update React -> slate you apply the change when you update in your toolbar then call the plugin's `applyChange` method.",
404
+ "footer": null,
405
+ "notes": [],
406
+ "hash": "b694a290c923fe6e8405d215fcb492aaa81e21d3",
407
+ "gitTags": "",
408
+ "committerDate": "2018-07-24 14:50:51 -0400",
409
+ "isTagged": true,
410
+ "tag": "@pie-lib/math-input@4.2.0"
411
+ },
412
+ {
413
+ "type": "chore",
414
+ "scope": null,
415
+ "subject": " bump version",
416
+ "merge": null,
417
+ "header": "chore: bump version",
418
+ "body": null,
419
+ "footer": null,
420
+ "notes": [],
421
+ "hash": "3beae89b27316f1215744e05d3c0cbeee42b1f9a",
422
+ "gitTags": "",
423
+ "committerDate": "2018-05-16 09:26:48 -0400",
424
+ "isTagged": true,
425
+ "tag": "@pie-lib/math-input@4.1.0"
426
+ },
427
+ {
428
+ "type": "fix",
429
+ "scope": "demo",
430
+ "subject": "fix issues from mui update",
431
+ "merge": null,
432
+ "header": "fix(demo): fix issues from mui update",
433
+ "body": null,
434
+ "footer": null,
435
+ "notes": [],
436
+ "hash": "4f948e13ebb83cdb215b964b0f73a12c79d64167",
437
+ "gitTags": "",
438
+ "committerDate": "2018-05-16 09:07:43 -0400",
439
+ "isTagged": true,
440
+ "tag": "@pie-lib/math-input@4.0.0"
441
+ },
442
+ {
443
+ "type": "feat",
444
+ "scope": null,
445
+ "subject": "upgrade material-ui -> @material-ui/core@^1.0.0-rc.1",
446
+ "merge": null,
447
+ "header": "feat: upgrade material-ui -> @material-ui/core@^1.0.0-rc.1",
448
+ "body": null,
449
+ "footer": null,
450
+ "notes": [],
451
+ "hash": "017ef6300f1fd345fc932496d25682a7981a4938",
452
+ "gitTags": "",
453
+ "committerDate": "2018-05-15 21:52:09 -0400",
454
+ "isTagged": true,
455
+ "tag": "@pie-lib/math-input@3.1.0"
456
+ },
457
+ {
458
+ "type": "fix",
459
+ "scope": "lint",
460
+ "subject": "lint fixes",
461
+ "merge": null,
462
+ "header": "fix(lint): lint fixes",
463
+ "body": null,
464
+ "footer": null,
465
+ "notes": [],
466
+ "hash": "f0595831a75561d829c0f18f86ce5ea7feeb4ddd",
467
+ "gitTags": "",
468
+ "committerDate": "2018-05-09 13:35:42 -0400",
469
+ "isTagged": true,
470
+ "tag": "@pie-lib/math-input@3.0.9"
471
+ },
472
+ {
473
+ "type": "fix",
474
+ "scope": "lint",
475
+ "subject": "automatic lint fixes",
476
+ "merge": null,
477
+ "header": "fix(lint): automatic lint fixes",
478
+ "body": null,
479
+ "footer": null,
480
+ "notes": [],
481
+ "hash": "7c9a2a42d3b27e09cd8660cb22abfed419c187d5",
482
+ "gitTags": "",
483
+ "committerDate": "2018-05-09 12:33:39 -0400",
484
+ "isTagged": true,
485
+ "tag": "@pie-lib/math-input@3.0.9"
486
+ },
487
+ {
488
+ "type": "fix",
489
+ "scope": "dependencies",
490
+ "subject": "set material-ui version to ^1.0.0-beta.44",
491
+ "merge": null,
492
+ "header": "fix(dependencies): set material-ui version to ^1.0.0-beta.44",
493
+ "body": null,
494
+ "footer": null,
495
+ "notes": [],
496
+ "hash": "6fd66bc6b4359a32c378f64cd3a315f1a551875e",
497
+ "gitTags": "",
498
+ "committerDate": "2018-04-30 11:38:04 -0400",
499
+ "isTagged": true,
500
+ "tag": "@pie-lib/math-input@3.0.8"
501
+ },
502
+ {
503
+ "type": "fix",
504
+ "scope": "dependencies",
505
+ "subject": "roll back material-ui",
506
+ "merge": null,
507
+ "header": "fix(dependencies): roll back material-ui",
508
+ "body": null,
509
+ "footer": null,
510
+ "notes": [],
511
+ "hash": "5167d1f55be278b8f58684aadeacb108794ec024",
512
+ "gitTags": "",
513
+ "committerDate": "2018-04-30 11:31:31 -0400",
514
+ "isTagged": true,
515
+ "tag": "@pie-lib/math-input@3.0.7"
516
+ },
517
+ {
518
+ "type": "fix",
519
+ "scope": "dependencies",
520
+ "subject": "lock material-ui to 1.0.0-beta.44",
521
+ "merge": null,
522
+ "header": "fix(dependencies): lock material-ui to 1.0.0-beta.44",
523
+ "body": null,
524
+ "footer": null,
525
+ "notes": [],
526
+ "hash": "60df8e6e6147962cd6fae9bc81638c4c75c0c9e9",
527
+ "gitTags": "",
528
+ "committerDate": "2018-04-30 11:27:53 -0400",
529
+ "isTagged": true,
530
+ "tag": "@pie-lib/math-input@3.0.6"
531
+ },
532
+ {
533
+ "type": "fix",
534
+ "scope": "dependencies",
535
+ "subject": "lock material-ui to 1.0.0-beta.43",
536
+ "merge": null,
537
+ "header": "fix(dependencies): lock material-ui to 1.0.0-beta.43",
538
+ "body": null,
539
+ "footer": null,
540
+ "notes": [],
541
+ "hash": "2a3e087cadb03b428aec80948032eb644864f77c",
542
+ "gitTags": "",
543
+ "committerDate": "2018-04-30 11:19:39 -0400",
544
+ "isTagged": true,
545
+ "tag": "@pie-lib/math-input@3.0.5"
546
+ },
547
+ {
548
+ "type": "fix",
549
+ "scope": "dependencies",
550
+ "subject": "upgrade material-ui",
551
+ "merge": null,
552
+ "header": "fix(dependencies): upgrade material-ui",
553
+ "body": null,
554
+ "footer": null,
555
+ "notes": [],
556
+ "hash": "b94b50ef8f89beec45b488d92f4e95661c22c501",
557
+ "gitTags": "",
558
+ "committerDate": "2018-04-30 10:56:18 -0400",
559
+ "isTagged": true,
560
+ "tag": "@pie-lib/math-input@3.0.5"
561
+ },
562
+ {
563
+ "type": "fix",
564
+ "scope": "dependencies",
565
+ "subject": "version bump",
566
+ "merge": null,
567
+ "header": "fix(dependencies): version bump",
568
+ "body": null,
569
+ "footer": null,
570
+ "notes": [],
571
+ "hash": "3317784c462f003adbdb1370a7b328fab22e57d5",
572
+ "gitTags": "",
573
+ "committerDate": "2018-04-24 09:42:21 -0400",
574
+ "isTagged": true,
575
+ "tag": "@pie-lib/math-input@3.0.4"
576
+ },
577
+ {
578
+ "type": "fix",
579
+ "scope": "editable-math-input",
580
+ "subject": "fix props",
581
+ "merge": null,
582
+ "header": "fix(editable-math-input): fix props",
583
+ "body": null,
584
+ "footer": null,
585
+ "notes": [],
586
+ "hash": "078de38bb4a47622c9bc642fc822ef7b7fbe5328",
587
+ "gitTags": "",
588
+ "committerDate": "2018-04-20 12:54:02 -0400",
589
+ "isTagged": true,
590
+ "tag": "@pie-lib/math-input@3.0.3"
591
+ },
592
+ {
593
+ "type": "fix",
594
+ "scope": "ssr",
595
+ "subject": "throw error if MQ is undefined",
596
+ "merge": null,
597
+ "header": "fix(ssr): throw error if MQ is undefined",
598
+ "body": null,
599
+ "footer": null,
600
+ "notes": [],
601
+ "hash": "f91a4056378ac55a02e714c1b8abe42b9e96a3a4",
602
+ "gitTags": "",
603
+ "committerDate": "2018-04-20 10:34:18 -0400",
604
+ "isTagged": true,
605
+ "tag": "@pie-lib/math-input@3.0.2"
606
+ },
607
+ {
608
+ "type": "fix",
609
+ "scope": "test",
610
+ "subject": "normalize tests",
611
+ "merge": null,
612
+ "header": "fix(test): normalize tests",
613
+ "body": null,
614
+ "footer": null,
615
+ "notes": [],
616
+ "hash": "b86b3d9bbe94b88a5c9b2473c26beec637e23672",
617
+ "gitTags": "",
618
+ "committerDate": "2018-04-19 22:25:09 -0400",
619
+ "isTagged": true,
620
+ "tag": "@pie-lib/math-input@3.0.2"
621
+ },
622
+ {
623
+ "type": "chore",
624
+ "scope": "demo",
625
+ "subject": "set mode to development",
626
+ "merge": null,
627
+ "header": "chore(demo): set mode to development",
628
+ "body": null,
629
+ "footer": null,
630
+ "notes": [],
631
+ "hash": "2f4fba9ddd8bd54d0224230b1014df6580820fc6",
632
+ "gitTags": "",
633
+ "committerDate": "2018-04-13 17:48:18 -0400",
634
+ "isTagged": true,
635
+ "tag": "@pie-lib/math-input@2.0.0"
636
+ },
637
+ {
638
+ "type": "chore",
639
+ "scope": "test",
640
+ "subject": "test todos",
641
+ "merge": null,
642
+ "header": "chore(test): test todos",
643
+ "body": null,
644
+ "footer": null,
645
+ "notes": [],
646
+ "hash": "3f4218fd3555edb5c3148f6df77b2e5c862ce321",
647
+ "gitTags": "",
648
+ "committerDate": "2018-04-13 15:03:15 -0400",
649
+ "isTagged": true,
650
+ "tag": "@pie-lib/math-input@2.0.0"
651
+ },
652
+ {
653
+ "type": "chore",
654
+ "scope": "version",
655
+ "subject": "set up prerelease version",
656
+ "merge": null,
657
+ "header": "chore(version): set up prerelease version",
658
+ "body": null,
659
+ "footer": null,
660
+ "notes": [],
661
+ "hash": "d0e920b16ac086427c62cf8b9ea35ef14e5cd0fa",
662
+ "gitTags": "",
663
+ "committerDate": "2018-04-13 12:42:14 -0400",
664
+ "isTagged": true,
665
+ "tag": "@pie-lib/math-input@2.0.0"
666
+ },
667
+ {
668
+ "type": "fix",
669
+ "scope": "dependencies",
670
+ "subject": "version bump react",
671
+ "merge": null,
672
+ "header": "fix(dependencies): version bump react",
673
+ "body": null,
674
+ "footer": "BREAKING CHANGE: requires react@^16.3.1",
675
+ "notes": [
676
+ {
677
+ "title": "BREAKING CHANGE",
678
+ "text": "requires react@^16.3.1"
679
+ }
680
+ ],
681
+ "hash": "1c2b53ddb4f0ad8d7bba476c44e583b580540499",
682
+ "gitTags": "",
683
+ "committerDate": "2018-04-13 12:32:58 -0400",
684
+ "isTagged": true,
685
+ "tag": "@pie-lib/math-input@2.0.0"
686
+ },
687
+ {
688
+ "type": "chore",
689
+ "scope": null,
690
+ "subject": "update dependencies",
691
+ "merge": null,
692
+ "header": "chore: update dependencies",
693
+ "body": null,
694
+ "footer": null,
695
+ "notes": [],
696
+ "hash": "bbd1bfcabfaa85802df710b4a59c25ba8ff9fd51",
697
+ "gitTags": "",
698
+ "committerDate": "2018-03-06 13:31:35 -0500",
699
+ "isTagged": true,
700
+ "tag": "@pie-lib/math-input@1.3.2"
701
+ },
702
+ {
703
+ "type": "chore",
704
+ "scope": null,
705
+ "subject": "update tests for static in math-input",
706
+ "merge": null,
707
+ "header": "chore: update tests for static in math-input",
708
+ "body": null,
709
+ "footer": null,
710
+ "notes": [],
711
+ "hash": "c191e437af7fdc121467c88e1a62051e3860e1de",
712
+ "gitTags": "",
713
+ "committerDate": "2019-03-26 15:17:06 +0200",
714
+ "isTagged": true,
715
+ "tag": "@pie-lib/math-input@5.2.0"
716
+ },
717
+ {
718
+ "type": "feat",
719
+ "scope": null,
720
+ "subject": "math-input static subfield setter on props",
721
+ "merge": null,
722
+ "header": "feat: math-input static subfield setter on props",
723
+ "body": null,
724
+ "footer": null,
725
+ "notes": [],
726
+ "hash": "a4651d9a2d84f3954653ed159ab128a58ee45852",
727
+ "gitTags": "",
728
+ "committerDate": "2019-03-26 14:56:07 +0200",
729
+ "isTagged": true,
730
+ "tag": "@pie-lib/math-input@5.2.0"
731
+ },
732
+ {
733
+ "type": "fix",
734
+ "scope": null,
735
+ "subject": "continued mathquill math-input work",
736
+ "merge": null,
737
+ "header": "fix: continued mathquill math-input work",
738
+ "body": null,
739
+ "footer": null,
740
+ "notes": [],
741
+ "hash": "f4c6d6783002a8d9e76e24ac399887f1ff48c54e",
742
+ "gitTags": "",
743
+ "committerDate": "2019-03-22 16:03:57 +0200",
744
+ "isTagged": true,
745
+ "tag": "@pie-lib/math-input@5.2.0"
746
+ },
747
+ {
748
+ "type": "feat",
749
+ "scope": null,
750
+ "subject": "use @pie-framework/mathquill - our fork with extras",
751
+ "merge": null,
752
+ "header": "feat: use @pie-framework/mathquill - our fork with extras",
753
+ "body": null,
754
+ "footer": null,
755
+ "notes": [],
756
+ "hash": "7fc47a75b5153065e3f26ecce2a8e79daacc389e",
757
+ "gitTags": "",
758
+ "committerDate": "2019-04-03 22:05:15 +0100",
759
+ "isTagged": true,
760
+ "tag": "@pie-lib/math-input@5.3.0"
761
+ },
762
+ {
763
+ "type": "fix",
764
+ "scope": null,
765
+ "subject": "shouldComponentUpdate correctly checks latex",
766
+ "merge": null,
767
+ "header": "fix: shouldComponentUpdate correctly checks latex",
768
+ "body": null,
769
+ "footer": null,
770
+ "notes": [],
771
+ "hash": "a49c68b8a4fdb52c15f5bea47c8e1cd313783ab3",
772
+ "gitTags": "",
773
+ "committerDate": "2019-04-02 16:20:39 +0100",
774
+ "isTagged": true,
775
+ "tag": "@pie-lib/math-input@5.3.0"
776
+ },
777
+ {
778
+ "type": "fix",
779
+ "scope": null,
780
+ "subject": "static math diffing algorithm fix for spaces",
781
+ "merge": null,
782
+ "header": "fix: static math diffing algorithm fix for spaces",
783
+ "body": null,
784
+ "footer": null,
785
+ "notes": [],
786
+ "hash": "2ce8bacf1f4d8a72bede1e820db07c0c6f9a4211",
787
+ "gitTags": "",
788
+ "committerDate": "2019-04-04 17:10:35 +0300",
789
+ "isTagged": true,
790
+ "tag": "@pie-lib/math-input@5.3.2"
791
+ },
792
+ {
793
+ "type": "feat",
794
+ "scope": "math-input",
795
+ "subject": "no decimals support added",
796
+ "merge": null,
797
+ "header": "feat(math-input): no decimals support added",
798
+ "body": null,
799
+ "footer": null,
800
+ "notes": [],
801
+ "hash": "48b1c395417e016c1083cf03a2176d4083d359a7",
802
+ "gitTags": "",
803
+ "committerDate": "2019-04-10 10:36:26 +0300",
804
+ "isTagged": true,
805
+ "tag": "@pie-lib/math-input@5.4.0"
806
+ },
807
+ {
808
+ "type": "feat",
809
+ "scope": "math-input",
810
+ "subject": "static math answer block support updated to formulaV2",
811
+ "merge": null,
812
+ "header": "feat(math-input): static math answer block support updated to formulaV2",
813
+ "body": null,
814
+ "footer": "BREAKING CHANGE: answer block mathquill mathfields now have a new id definition when declared",
815
+ "notes": [
816
+ {
817
+ "title": "BREAKING CHANGE",
818
+ "text": "answer block mathquill mathfields now have a new id definition when declared"
819
+ }
820
+ ],
821
+ "hash": "24d5341ee5aed20e924a9780f974b0b74cada337",
822
+ "gitTags": "",
823
+ "committerDate": "2019-04-17 16:53:57 +0300",
824
+ "isTagged": true,
825
+ "tag": "@pie-lib/math-input@6.0.0"
826
+ },
827
+ {
828
+ "type": "feat",
829
+ "scope": "math-input",
830
+ "subject": "custom keys support and extended keypads",
831
+ "merge": null,
832
+ "header": "feat(math-input): custom keys support and extended keypads",
833
+ "body": null,
834
+ "footer": null,
835
+ "notes": [],
836
+ "hash": "bcb136a7ce8e9d2ea3b94e6bef76a6c369f25ab5",
837
+ "gitTags": "",
838
+ "committerDate": "2019-04-25 16:15:29 +0300",
839
+ "isTagged": true,
840
+ "tag": "@pie-lib/math-input@6.1.0"
841
+ },
842
+ {
843
+ "type": "feat",
844
+ "scope": "mask-markup",
845
+ "subject": "merging with the develop branch",
846
+ "merge": null,
847
+ "header": "feat(mask-markup): merging with the develop branch",
848
+ "body": null,
849
+ "footer": null,
850
+ "notes": [],
851
+ "hash": "0153c1aba8a08ba6c974fcc69476a87b9086f6c5",
852
+ "gitTags": " (develop)",
853
+ "committerDate": "2019-05-02 07:12:59 +0300",
854
+ "isTagged": true,
855
+ "tag": "@pie-lib/math-input@6.2.0"
856
+ },
857
+ {
858
+ "type": "chore",
859
+ "scope": null,
860
+ "subject": "math-input equals sign should have the same background color as other operators",
861
+ "merge": null,
862
+ "header": "chore: math-input equals sign should have the same background color as other operators",
863
+ "body": null,
864
+ "footer": null,
865
+ "notes": [],
866
+ "hash": "6edc253ae84262895b580b7fb5db524f2dd0bf52",
867
+ "gitTags": " (origin/ch1420/color-of-button)",
868
+ "committerDate": "2019-05-03 13:10:36 +0300",
869
+ "isTagged": true,
870
+ "tag": "@pie-lib/math-input@6.2.1"
871
+ },
872
+ {
873
+ "type": "fix",
874
+ "scope": "math-input",
875
+ "subject": "keypad operator fixes and styling adjustments",
876
+ "merge": null,
877
+ "header": "fix(math-input): keypad operator fixes and styling adjustments",
878
+ "body": null,
879
+ "footer": null,
880
+ "notes": [],
881
+ "hash": "c18757aa1f905f2b4af9c0a5e1a2b4040297d4ae",
882
+ "gitTags": "",
883
+ "committerDate": "2019-05-08 09:48:40 +0300",
884
+ "isTagged": true,
885
+ "tag": "@pie-lib/math-input@6.2.2"
886
+ },
887
+ {
888
+ "type": "fix",
889
+ "scope": "math-input",
890
+ "subject": "fix trigo keypad buttons",
891
+ "merge": null,
892
+ "header": "fix(math-input): fix trigo keypad buttons",
893
+ "body": null,
894
+ "footer": null,
895
+ "notes": [],
896
+ "hash": "cdd76498192f0fa45152edacd11e5ee7fdd97f19",
897
+ "gitTags": " (origin/fix/math-inline-related-fixes)",
898
+ "committerDate": "2019-05-08 13:49:15 +0300",
899
+ "isTagged": true,
900
+ "tag": "@pie-lib/math-input@6.2.3"
901
+ },
902
+ {
903
+ "type": "chore",
904
+ "scope": "math-input",
905
+ "subject": "adjust keys for keypad for 8th grade and advanced algebra",
906
+ "merge": null,
907
+ "header": "chore(math-input): adjust keys for keypad for 8th grade and advanced algebra",
908
+ "body": null,
909
+ "footer": null,
910
+ "notes": [],
911
+ "hash": "51678ee97e68e7dc053ec99585504a69b3e2a205",
912
+ "gitTags": "",
913
+ "committerDate": "2019-05-09 12:08:42 +0300",
914
+ "isTagged": true,
915
+ "tag": "@pie-lib/math-input@6.2.4"
916
+ },
917
+ {
918
+ "type": "chore",
919
+ "scope": "merge",
920
+ "subject": "merged with develop",
921
+ "merge": null,
922
+ "header": "chore(merge): merged with develop",
923
+ "body": null,
924
+ "footer": null,
925
+ "notes": [],
926
+ "hash": "e68506cf63b2a17973821bb0cfef40828faccd1f",
927
+ "gitTags": "",
928
+ "committerDate": "2019-05-21 06:26:54 +0300",
929
+ "isTagged": true,
930
+ "tag": "@pie-lib/math-input@6.2.5"
931
+ },
932
+ {
933
+ "type": "feat",
934
+ "scope": null,
935
+ "subject": "version bumps",
936
+ "merge": null,
937
+ "header": "feat: version bumps",
938
+ "body": null,
939
+ "footer": null,
940
+ "notes": [],
941
+ "hash": "23eb54f95e4b6480e2f8c5b336627a7f3bc2f428",
942
+ "gitTags": "",
943
+ "committerDate": "2019-06-10 15:24:32 +0100",
944
+ "isTagged": true,
945
+ "tag": "@pie-lib/math-input@6.3.0"
946
+ },
947
+ {
948
+ "type": "chore",
949
+ "scope": "merge",
950
+ "subject": "merged master into this branch",
951
+ "merge": null,
952
+ "header": "chore(merge): merged master into this branch",
953
+ "body": null,
954
+ "footer": null,
955
+ "notes": [],
956
+ "hash": "e7758d577c82c0f39a5bf44556792517cd1ea6b0",
957
+ "gitTags": "",
958
+ "committerDate": "2019-07-02 11:29:52 -0400",
959
+ "isTagged": true,
960
+ "tag": "@pie-lib/math-input@6.3.2"
961
+ },
962
+ {
963
+ "type": "fix",
964
+ "scope": null,
965
+ "subject": "handle latex parsing errors PIE-145",
966
+ "merge": null,
967
+ "header": "fix: handle latex parsing errors PIE-145",
968
+ "body": null,
969
+ "footer": null,
970
+ "notes": [],
971
+ "hash": "99905ea9299bf3f56b546eab026803796c6d92d7",
972
+ "gitTags": "",
973
+ "committerDate": "2019-11-05 16:22:32 +0000",
974
+ "isTagged": true,
975
+ "tag": "@pie-lib/math-input@6.3.6"
976
+ },
977
+ {
978
+ "type": "fix",
979
+ "scope": null,
980
+ "subject": "do not add keys if they already exist in keyset [ch5653]",
981
+ "merge": null,
982
+ "header": "fix: do not add keys if they already exist in keyset [ch5653]",
983
+ "body": null,
984
+ "footer": null,
985
+ "notes": [],
986
+ "hash": "fbccf3bc49c111bceac1ca1099ccfc66ca7a4e07",
987
+ "gitTags": "",
988
+ "committerDate": "2019-12-18 14:39:04 +0000",
989
+ "isTagged": true,
990
+ "tag": "@pie-lib/math-input@6.3.7"
991
+ },
992
+ {
993
+ "type": "fix",
994
+ "scope": null,
995
+ "subject": "rm bad import",
996
+ "merge": null,
997
+ "header": "fix: rm bad import",
998
+ "body": null,
999
+ "footer": null,
1000
+ "notes": [],
1001
+ "hash": "fe6673dc2d30d1866eebf81a3c024d6c23695807",
1002
+ "gitTags": "",
1003
+ "committerDate": "2019-12-19 09:21:29 +0000",
1004
+ "isTagged": true,
1005
+ "tag": "@pie-lib/math-input@6.3.8"
1006
+ },
1007
+ {
1008
+ "type": "fix",
1009
+ "scope": null,
1010
+ "subject": "6264: Math editor in OT has button labels that are very small and impact legibility and usability (don't use rem to determine font size, use percentage instead)",
1011
+ "merge": null,
1012
+ "header": "fix: 6264: Math editor in OT has button labels that are very small and impact legibility and usability (don't use rem to determine font size, use percentage instead)",
1013
+ "body": null,
1014
+ "footer": null,
1015
+ "notes": [],
1016
+ "hash": "94f9d3b37bf5868e436ca184641f2b9fb65405c4",
1017
+ "gitTags": " (origin/andreea/ch6264/math-editor-in-ot-has-button-labels-that)",
1018
+ "committerDate": "2020-01-21 10:46:08 +0200",
1019
+ "isTagged": true,
1020
+ "tag": "@pie-lib/math-input@6.3.9"
1021
+ },
1022
+ {
1023
+ "type": "fix",
1024
+ "scope": null,
1025
+ "subject": "6264: Math editor in OT has button labels that are very small and impact legibility and usability (don't use rem to determine font size)",
1026
+ "merge": null,
1027
+ "header": "fix: 6264: Math editor in OT has button labels that are very small and impact legibility and usability (don't use rem to determine font size)",
1028
+ "body": null,
1029
+ "footer": null,
1030
+ "notes": [],
1031
+ "hash": "da50c12244e2910303422173c78d11e108100832",
1032
+ "gitTags": "",
1033
+ "committerDate": "2020-01-21 09:29:00 +0200",
1034
+ "isTagged": true,
1035
+ "tag": "@pie-lib/math-input@6.3.9"
1036
+ },
1037
+ {
1038
+ "type": "fix",
1039
+ "scope": null,
1040
+ "subject": "6287: Setting equation editor as a string (eg: '6') works as well (In OT, a math editor for an Equation Response item is missing a critical button as well as many other expected buttons)",
1041
+ "merge": null,
1042
+ "header": "fix: 6287: Setting equation editor as a string (eg: '6') works as well (In OT, a math editor for an Equation Response item is missing a critical button as well as many other expected buttons)",
1043
+ "body": null,
1044
+ "footer": null,
1045
+ "notes": [],
1046
+ "hash": "a21f04b6f4c4b0816291006bcc8777bfc621cbd8",
1047
+ "gitTags": "",
1048
+ "committerDate": "2020-02-05 11:31:44 +0200",
1049
+ "isTagged": true,
1050
+ "tag": "@pie-lib/math-input@6.3.10"
1051
+ },
1052
+ {
1053
+ "type": "feat",
1054
+ "scope": null,
1055
+ "subject": "bump @pie-framework/mathquill@^1.1.0",
1056
+ "merge": null,
1057
+ "header": "feat: bump @pie-framework/mathquill@^1.1.0",
1058
+ "body": null,
1059
+ "footer": null,
1060
+ "notes": [],
1061
+ "hash": "31dbed85c9c37ee0712be722ca22904daf988d22",
1062
+ "gitTags": " (origin/feat/mathquill-bump)",
1063
+ "committerDate": "2020-03-06 12:54:56 +0000",
1064
+ "isTagged": true,
1065
+ "tag": "@pie-lib/math-input@6.4.0"
1066
+ },
1067
+ {
1068
+ "type": "feat",
1069
+ "scope": null,
1070
+ "subject": "bump @pie-framework/mathquill@^1.0.0",
1071
+ "merge": null,
1072
+ "header": "feat: bump @pie-framework/mathquill@^1.0.0",
1073
+ "body": null,
1074
+ "footer": null,
1075
+ "notes": [],
1076
+ "hash": "d43c5c582b36756633bff5c94d695cd6f85b51ea",
1077
+ "gitTags": "",
1078
+ "committerDate": "2020-03-06 10:34:40 +0000",
1079
+ "isTagged": true,
1080
+ "tag": "@pie-lib/math-input@6.4.0"
1081
+ },
1082
+ {
1083
+ "type": "fix",
1084
+ "scope": "math-input",
1085
+ "subject": "fix Static rootblock logic, failsafe for finding math block id ch3518",
1086
+ "merge": null,
1087
+ "header": "fix(math-input): fix Static rootblock logic, failsafe for finding math block id ch3518",
1088
+ "body": null,
1089
+ "footer": null,
1090
+ "notes": [],
1091
+ "hash": "08df6db7160b2c45f6d9f03dfec403a1ddecab80",
1092
+ "gitTags": "",
1093
+ "committerDate": "2020-02-25 16:51:30 +0200",
1094
+ "isTagged": true,
1095
+ "tag": "@pie-lib/math-input@6.4.0"
1096
+ },
1097
+ {
1098
+ "type": "fix",
1099
+ "scope": null,
1100
+ "subject": "add module prop to package.json",
1101
+ "merge": null,
1102
+ "header": "fix: add module prop to package.json",
1103
+ "body": null,
1104
+ "footer": null,
1105
+ "notes": [],
1106
+ "hash": "df40020c1e30bc2efce98c756cd04d473a92c2d2",
1107
+ "gitTags": "",
1108
+ "committerDate": "2020-03-30 13:02:27 +0100",
1109
+ "isTagged": true,
1110
+ "tag": "@pie-lib/math-input@6.4.2"
1111
+ },
1112
+ {
1113
+ "type": "fix",
1114
+ "scope": null,
1115
+ "subject": "correct export syntax",
1116
+ "merge": null,
1117
+ "header": "fix: correct export syntax",
1118
+ "body": null,
1119
+ "footer": null,
1120
+ "notes": [],
1121
+ "hash": "10c40b1399e16a71f7eda321484d1d618d8378e2",
1122
+ "gitTags": "",
1123
+ "committerDate": "2020-03-30 22:07:55 +0100",
1124
+ "isTagged": true,
1125
+ "tag": "@pie-lib/math-input@6.4.3"
1126
+ },
1127
+ {
1128
+ "type": "fix",
1129
+ "scope": null,
1130
+ "subject": "correct export syntax",
1131
+ "merge": null,
1132
+ "header": "fix: correct export syntax",
1133
+ "body": null,
1134
+ "footer": null,
1135
+ "notes": [],
1136
+ "hash": "db7fcc0fa1bddf9fc2d304978941db04001ec0ab",
1137
+ "gitTags": "",
1138
+ "committerDate": "2020-03-30 22:30:10 +0100",
1139
+ "isTagged": true,
1140
+ "tag": "@pie-lib/math-input@6.4.4"
1141
+ },
1142
+ {
1143
+ "type": "fix",
1144
+ "scope": null,
1145
+ "subject": "correct module path",
1146
+ "merge": null,
1147
+ "header": "fix: correct module path",
1148
+ "body": null,
1149
+ "footer": null,
1150
+ "notes": [],
1151
+ "hash": "b6b5b6fde0ef452bf10f92eb7b30f86ee666954a",
1152
+ "gitTags": "",
1153
+ "committerDate": "2020-03-31 11:47:21 +0100",
1154
+ "isTagged": true,
1155
+ "tag": "@pie-lib/math-input@6.4.10"
1156
+ },
1157
+ {
1158
+ "type": "fix",
1159
+ "scope": null,
1160
+ "subject": "rm ExportNamespaceSpecifier",
1161
+ "merge": null,
1162
+ "header": "fix: rm ExportNamespaceSpecifier",
1163
+ "body": null,
1164
+ "footer": null,
1165
+ "notes": [],
1166
+ "hash": "970e2edcf797b8eea06449834c9174ac69d718d1",
1167
+ "gitTags": "",
1168
+ "committerDate": "2020-03-31 12:35:26 +0100",
1169
+ "isTagged": true,
1170
+ "tag": "@pie-lib/math-input@6.4.11"
1171
+ },
1172
+ {
1173
+ "type": "fix",
1174
+ "scope": null,
1175
+ "subject": "remove require (bad es import)",
1176
+ "merge": null,
1177
+ "header": "fix: remove require (bad es import)",
1178
+ "body": null,
1179
+ "footer": null,
1180
+ "notes": [],
1181
+ "hash": "5c1e025d8ee8acb9b13f85a4c5877839207fe2ea",
1182
+ "gitTags": " (develop)",
1183
+ "committerDate": "2020-03-31 15:48:16 +0100",
1184
+ "isTagged": true,
1185
+ "tag": "@pie-lib/math-input@6.4.12"
1186
+ },
1187
+ {
1188
+ "type": "fix",
1189
+ "scope": "math-input",
1190
+ "subject": "remove extra subscript button from statistics keyset - PD-38",
1191
+ "merge": null,
1192
+ "header": "fix(math-input): remove extra subscript button from statistics keyset - PD-38",
1193
+ "body": null,
1194
+ "footer": null,
1195
+ "notes": [],
1196
+ "hash": "17a06599726422786effead98752840cca9f9dc6",
1197
+ "gitTags": " (origin/fix/PD-38)",
1198
+ "committerDate": "2020-04-14 15:08:14 +0300",
1199
+ "isTagged": true,
1200
+ "tag": "@pie-lib/math-input@6.4.14"
1201
+ },
1202
+ {
1203
+ "type": "fix",
1204
+ "scope": null,
1205
+ "subject": "PD-156: Formatting issues with math editor buttons, specifically in IBX. Updated design for arrows and line, fixed fonts issue (different then expected + various function buttons are capitalized).",
1206
+ "merge": null,
1207
+ "header": "fix: PD-156: Formatting issues with math editor buttons, specifically in IBX. Updated design for arrows and line, fixed fonts issue (different then expected + various function buttons are capitalized).",
1208
+ "body": null,
1209
+ "footer": null,
1210
+ "notes": [],
1211
+ "hash": "61be51cc661360aa102d58a3d7c42ba7dfd0921a",
1212
+ "gitTags": "",
1213
+ "committerDate": "2020-04-20 15:02:37 +0300",
1214
+ "isTagged": true,
1215
+ "tag": "@pie-lib/math-input@6.4.15"
1216
+ },
1217
+ {
1218
+ "type": "fix",
1219
+ "scope": null,
1220
+ "subject": "PD-158: In Item Preview specifically, in IBX only, the math editor radical button and the \"squared\" button are not correctly labeled",
1221
+ "merge": null,
1222
+ "header": "fix: PD-158: In Item Preview specifically, in IBX only, the math editor radical button and the \"squared\" button are not correctly labeled",
1223
+ "body": null,
1224
+ "footer": null,
1225
+ "notes": [],
1226
+ "hash": "12f3cd53b04770daca7493e88d489297c56a02b8",
1227
+ "gitTags": " (origin/fix/PD-158-math-input-scaled-items)",
1228
+ "committerDate": "2020-04-20 12:56:29 +0300",
1229
+ "isTagged": true,
1230
+ "tag": "@pie-lib/math-input@6.4.15"
1231
+ },
1232
+ {
1233
+ "type": "fix",
1234
+ "scope": null,
1235
+ "subject": "PD-157: In IBX specifically, characters on math editors are too small. (because they are overwritten)",
1236
+ "merge": null,
1237
+ "header": "fix: PD-157: In IBX specifically, characters on math editors are too small. (because they are overwritten)",
1238
+ "body": null,
1239
+ "footer": null,
1240
+ "notes": [],
1241
+ "hash": "379216285ab8ac6d3158f279f7a1967b3558364f",
1242
+ "gitTags": " (origin/fix/PD-157-math-input-font-size)",
1243
+ "committerDate": "2020-04-20 12:54:37 +0300",
1244
+ "isTagged": true,
1245
+ "tag": "@pie-lib/math-input@6.4.15"
1246
+ },
1247
+ {
1248
+ "type": "fix",
1249
+ "scope": null,
1250
+ "subject": "PD-155: The \"pink\" background-color set on .mq-empty is overwritten by mathquill.css with \"transparent\". Added \"important\" to prevent this.",
1251
+ "merge": null,
1252
+ "header": "fix: PD-155: The \"pink\" background-color set on .mq-empty is overwritten by mathquill.css with \"transparent\". Added \"important\" to prevent this.",
1253
+ "body": null,
1254
+ "footer": null,
1255
+ "notes": [],
1256
+ "hash": "18e4ef707a1929600b5cf7f5fd31405aedf49c3f",
1257
+ "gitTags": " (origin/fix/PD-155/mer-pink-highlight)",
1258
+ "committerDate": "2020-04-20 09:41:48 +0300",
1259
+ "isTagged": true,
1260
+ "tag": "@pie-lib/math-input@6.4.15"
1261
+ },
1262
+ {
1263
+ "type": "fix",
1264
+ "scope": null,
1265
+ "subject": "PD-69: A legacy multi-part item consisting of two equation response interactions appears with no response areas",
1266
+ "merge": null,
1267
+ "header": "fix: PD-69: A legacy multi-part item consisting of two equation response interactions appears with no response areas",
1268
+ "body": null,
1269
+ "footer": null,
1270
+ "notes": [],
1271
+ "hash": "fff4ec7f97c691cd4f03604b64d3c0ad1bc9d96d",
1272
+ "gitTags": " (origin/fix/PD-69-no-resdered-response-area)",
1273
+ "committerDate": "2020-04-28 16:19:52 +0300",
1274
+ "isTagged": true,
1275
+ "tag": "@pie-lib/math-input@6.4.17"
1276
+ },
1277
+ {
1278
+ "type": "fix",
1279
+ "scope": null,
1280
+ "subject": "Remove duplicated key for Grade 8 - HS. PD-39",
1281
+ "merge": null,
1282
+ "header": "fix: Remove duplicated key for Grade 8 - HS. PD-39",
1283
+ "body": null,
1284
+ "footer": null,
1285
+ "notes": [],
1286
+ "hash": "94497d0a39ecb4db3d29b5a9466b50ea6ec610da",
1287
+ "gitTags": " (origin/fix/PD-39/duplicated-key)",
1288
+ "committerDate": "2020-05-08 14:59:23 +0300",
1289
+ "isTagged": true,
1290
+ "tag": "@pie-lib/math-input@6.4.20"
1291
+ },
1292
+ {
1293
+ "type": "feat",
1294
+ "scope": "math-input",
1295
+ "subject": "tooltip keypad support added",
1296
+ "merge": null,
1297
+ "header": "feat(math-input): tooltip keypad support added",
1298
+ "body": null,
1299
+ "footer": null,
1300
+ "notes": [],
1301
+ "hash": "7ae60a36ff944219e6cd3d2ef4129f0517e4a593",
1302
+ "gitTags": " (origin/feat/tooltip-keypad)",
1303
+ "committerDate": "2020-05-29 16:15:29 +0300",
1304
+ "isTagged": true,
1305
+ "tag": "@pie-lib/math-input@6.5.0"
1306
+ },
1307
+ {
1308
+ "type": "fix",
1309
+ "scope": null,
1310
+ "subject": "demo",
1311
+ "merge": null,
1312
+ "header": "fix: demo",
1313
+ "body": null,
1314
+ "footer": null,
1315
+ "notes": [],
1316
+ "hash": "affa1194d31bee2f0f80c9988d04a7447a84e3fd",
1317
+ "gitTags": "",
1318
+ "committerDate": "2021-02-15 15:36:46 +0000",
1319
+ "isTagged": true,
1320
+ "tag": "@pie-lib/math-input@6.5.4"
1321
+ },
1322
+ {
1323
+ "type": "fix",
1324
+ "scope": null,
1325
+ "subject": "In some situations, math editors will not accept keyboard entry. PD-655",
1326
+ "merge": null,
1327
+ "header": "fix: In some situations, math editors will not accept keyboard entry. PD-655",
1328
+ "body": null,
1329
+ "footer": null,
1330
+ "notes": [],
1331
+ "hash": "876de3133a8f36ac675ac4ec314c6c8aba7be6b7",
1332
+ "gitTags": " (origin/fix/PD-655)",
1333
+ "committerDate": "2021-02-24 10:31:08 +0200",
1334
+ "isTagged": true,
1335
+ "tag": "@pie-lib/math-input@6.5.5"
1336
+ },
1337
+ {
1338
+ "type": "fix",
1339
+ "scope": null,
1340
+ "subject": "override math input and math toolbar style for ibx PD-774",
1341
+ "merge": null,
1342
+ "header": "fix: override math input and math toolbar style for ibx PD-774",
1343
+ "body": null,
1344
+ "footer": null,
1345
+ "notes": [],
1346
+ "hash": "0969756e395e6ef3287bd1ff76507c4578794191",
1347
+ "gitTags": "",
1348
+ "committerDate": "2021-03-01 19:11:26 +0200",
1349
+ "isTagged": true,
1350
+ "tag": "@pie-lib/math-input@6.5.7"
1351
+ },
1352
+ {
1353
+ "type": "fix",
1354
+ "scope": null,
1355
+ "subject": "rename the 'Everything' math editor as the 'Miscellaneous' math editor",
1356
+ "merge": null,
1357
+ "header": "fix: rename the 'Everything' math editor as the 'Miscellaneous' math editor",
1358
+ "body": null,
1359
+ "footer": null,
1360
+ "notes": [],
1361
+ "hash": "6b5c0b3edbb6dc02ff802ea05c8b7de65e5e77f0",
1362
+ "gitTags": " (origin/fix/PD-870)",
1363
+ "committerDate": "2021-03-02 17:41:22 +0200",
1364
+ "isTagged": true,
1365
+ "tag": "@pie-lib/math-input@6.5.8"
1366
+ },
1367
+ {
1368
+ "type": "fix",
1369
+ "scope": "math-toolbar",
1370
+ "subject": "fix double arrow button style mentioned in PD-48",
1371
+ "merge": null,
1372
+ "header": "fix(math-toolbar): fix double arrow button style mentioned in PD-48",
1373
+ "body": null,
1374
+ "footer": null,
1375
+ "notes": [],
1376
+ "hash": "145b060adfedc340e132acf6a019351dbf40b644",
1377
+ "gitTags": " (origin/fix/math-toolbar-double-arrow-button)",
1378
+ "committerDate": "2021-03-19 14:17:26 +0200",
1379
+ "isTagged": true,
1380
+ "tag": "@pie-lib/math-input@6.5.10"
1381
+ },
1382
+ {
1383
+ "type": "fix",
1384
+ "scope": "math-toolbar",
1385
+ "subject": "Made segment, ray and line more consistent PD-1264",
1386
+ "merge": null,
1387
+ "header": "fix(math-toolbar): Made segment, ray and line more consistent PD-1264",
1388
+ "body": null,
1389
+ "footer": null,
1390
+ "notes": [],
1391
+ "hash": "1a2ad3789f728e056d950a0da336818ea0128da5",
1392
+ "gitTags": "",
1393
+ "committerDate": "2021-08-13 16:44:42 +0300",
1394
+ "isTagged": true,
1395
+ "tag": "@pie-lib/math-input@6.6.0"
1396
+ },
1397
+ {
1398
+ "type": "fix",
1399
+ "scope": "math-input",
1400
+ "subject": "Fixed custom keys behavior and changed label for (),[] and absolute value PD-1251",
1401
+ "merge": null,
1402
+ "header": "fix(math-input): Fixed custom keys behavior and changed label for (),[] and absolute value PD-1251",
1403
+ "body": null,
1404
+ "footer": null,
1405
+ "notes": [],
1406
+ "hash": "39f2ddbcf0c36c1f1f8b134d6e287f885f81fb63",
1407
+ "gitTags": " (origin/fix/math-input-behavior)",
1408
+ "committerDate": "2021-08-12 11:41:38 +0300",
1409
+ "isTagged": true,
1410
+ "tag": "@pie-lib/math-input@6.6.0"
1411
+ },
1412
+ {
1413
+ "type": "fix",
1414
+ "scope": "math-input",
1415
+ "subject": "Fixed arrows button for pits",
1416
+ "merge": null,
1417
+ "header": "fix(math-input): Fixed arrows button for pits",
1418
+ "body": null,
1419
+ "footer": null,
1420
+ "notes": [],
1421
+ "hash": "66dd6a907043ecc2dd1983e90647bab93ce6c831",
1422
+ "gitTags": " (origin/fix/math-toolbar)",
1423
+ "committerDate": "2021-09-07 12:51:16 +0300",
1424
+ "isTagged": true,
1425
+ "tag": "@pie-lib/math-input@6.6.1"
1426
+ },
1427
+ {
1428
+ "type": "fix",
1429
+ "scope": "math-input",
1430
+ "subject": "default latex when received is wrong (2)",
1431
+ "merge": null,
1432
+ "header": "fix(math-input): default latex when received is wrong (2)",
1433
+ "body": null,
1434
+ "footer": null,
1435
+ "notes": [],
1436
+ "hash": "dc71307213d50fde2014df2c561428cd6839d99e",
1437
+ "gitTags": " (origin/fix/math-input-latex)",
1438
+ "committerDate": "2021-09-02 13:17:17 +0300",
1439
+ "isTagged": true,
1440
+ "tag": "@pie-lib/math-input@6.6.1"
1441
+ },
1442
+ {
1443
+ "type": "fix",
1444
+ "scope": "math-input",
1445
+ "subject": "default latex when received is wrong",
1446
+ "merge": null,
1447
+ "header": "fix(math-input): default latex when received is wrong",
1448
+ "body": null,
1449
+ "footer": null,
1450
+ "notes": [],
1451
+ "hash": "d872f607895953a8da50e55e1363088271a81231",
1452
+ "gitTags": "",
1453
+ "committerDate": "2021-09-02 12:56:21 +0300",
1454
+ "isTagged": true,
1455
+ "tag": "@pie-lib/math-input@6.6.1"
1456
+ },
1457
+ {
1458
+ "type": "fix",
1459
+ "scope": "math-input",
1460
+ "subject": "fix e button on advanced algebra math editor PD-1280",
1461
+ "merge": null,
1462
+ "header": "fix(math-input): fix e button on advanced algebra math editor PD-1280",
1463
+ "body": null,
1464
+ "footer": null,
1465
+ "notes": [],
1466
+ "hash": "dbfb53bcfa9663d294a494028ce84f563033d6d5",
1467
+ "gitTags": "",
1468
+ "committerDate": "2021-08-31 13:16:38 +0300",
1469
+ "isTagged": true,
1470
+ "tag": "@pie-lib/math-input@6.6.1"
1471
+ },
1472
+ {
1473
+ "type": "fix",
1474
+ "scope": "math-input",
1475
+ "subject": "render measured angle as m + angle sign PD-368",
1476
+ "merge": null,
1477
+ "header": "fix(math-input): render measured angle as m + angle sign PD-368",
1478
+ "body": null,
1479
+ "footer": null,
1480
+ "notes": [],
1481
+ "hash": "670fb56c8c515cf45e57635454e01ac8290f6d42",
1482
+ "gitTags": " (origin/fix/measured-angle)",
1483
+ "committerDate": "2021-09-14 13:35:44 +0300",
1484
+ "isTagged": true,
1485
+ "tag": "@pie-lib/math-input@6.6.3"
1486
+ },
1487
+ {
1488
+ "type": "fix",
1489
+ "scope": "math-input",
1490
+ "subject": "Made overarc button consistent with the others PD-1315",
1491
+ "merge": null,
1492
+ "header": "fix(math-input): Made overarc button consistent with the others PD-1315",
1493
+ "body": null,
1494
+ "footer": null,
1495
+ "notes": [],
1496
+ "hash": "872646962368946f1cbefc9aab4a94e74cb9590f",
1497
+ "gitTags": " (origin/fix/PD-1315)",
1498
+ "committerDate": "2021-09-27 13:26:37 +0300",
1499
+ "isTagged": true,
1500
+ "tag": "@pie-lib/math-input@6.6.5"
1501
+ },
1502
+ {
1503
+ "type": "fix",
1504
+ "scope": "math-input",
1505
+ "subject": "Made segment, ray and line buttons more consistent PD-1315",
1506
+ "merge": null,
1507
+ "header": "fix(math-input): Made segment, ray and line buttons more consistent PD-1315",
1508
+ "body": null,
1509
+ "footer": null,
1510
+ "notes": [],
1511
+ "hash": "e7e4e29e8eae6dd5f0a98040c523cb518b61de3e",
1512
+ "gitTags": "",
1513
+ "committerDate": "2021-09-24 14:53:08 +0300",
1514
+ "isTagged": true,
1515
+ "tag": "@pie-lib/math-input@6.6.5"
1516
+ },
1517
+ {
1518
+ "type": "fix",
1519
+ "scope": "math-input",
1520
+ "subject": "create proper latex expression for log base button",
1521
+ "merge": null,
1522
+ "header": "fix(math-input): create proper latex expression for log base button",
1523
+ "body": null,
1524
+ "footer": null,
1525
+ "notes": [],
1526
+ "hash": "ca0c3f00b7cdb8ae2e5d6e1003cec7a4942fb6aa",
1527
+ "gitTags": " (origin/fix/log-base-x-expression)",
1528
+ "committerDate": "2021-09-23 13:38:33 +0300",
1529
+ "isTagged": true,
1530
+ "tag": "@pie-lib/math-input@6.6.5"
1531
+ },
1532
+ {
1533
+ "type": "fix",
1534
+ "scope": "math-input",
1535
+ "subject": "Fixed left-right arrow button",
1536
+ "merge": null,
1537
+ "header": "fix(math-input): Fixed left-right arrow button",
1538
+ "body": null,
1539
+ "footer": null,
1540
+ "notes": [],
1541
+ "hash": "6109149689e75bfaba2bf1677c909bb7cbaa3145",
1542
+ "gitTags": " (origin/fix/math-input-arrow)",
1543
+ "committerDate": "2021-10-04 13:14:10 +0300",
1544
+ "isTagged": true,
1545
+ "tag": "@pie-lib/math-input@6.6.6"
1546
+ }
1547
+ ]