@pie-element/image-cloze-association 10.1.1-next.1 → 10.1.1-next.29

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 (280) hide show
  1. package/CHANGELOG.json +437 -0
  2. package/CHANGELOG.md +1985 -0
  3. package/LICENSE.md +5 -0
  4. package/README.md +1 -0
  5. package/configure/CHANGELOG.json +197 -0
  6. package/configure/CHANGELOG.md +1590 -0
  7. package/configure/lib/defaults.js +86 -0
  8. package/configure/lib/defaults.js.map +1 -0
  9. package/configure/lib/index.js +99 -0
  10. package/configure/lib/index.js.map +1 -0
  11. package/configure/lib/root.js +135 -0
  12. package/configure/lib/root.js.map +1 -0
  13. package/configure/package.json +23 -0
  14. package/configure/src/__tests__/index.test.js +155 -0
  15. package/configure/src/defaults.js +59 -0
  16. package/configure/src/index.js +114 -0
  17. package/configure/src/root.jsx +116 -0
  18. package/controller/CHANGELOG.json +137 -0
  19. package/controller/CHANGELOG.md +1145 -0
  20. package/controller/lib/defaults.js +14 -0
  21. package/controller/lib/defaults.js.map +1 -0
  22. package/controller/lib/index.js +304 -0
  23. package/controller/lib/index.js.map +1 -0
  24. package/controller/lib/utils.js +70 -0
  25. package/controller/lib/utils.js.map +1 -0
  26. package/controller/package.json +19 -0
  27. package/controller/src/__tests__/index.test.js +711 -0
  28. package/controller/src/defaults.js +7 -0
  29. package/controller/src/index.js +322 -0
  30. package/controller/src/utils.js +72 -0
  31. package/docs/config-schema.json +1382 -0
  32. package/docs/config-schema.json.md +1021 -0
  33. package/docs/demo/config.js +8 -0
  34. package/docs/demo/generate.js +74 -0
  35. package/docs/demo/index.html +1 -0
  36. package/docs/demo/session.js +16 -0
  37. package/docs/pie-schema.json +1085 -0
  38. package/docs/pie-schema.json.md +810 -0
  39. package/lib/constants.js +12 -0
  40. package/lib/constants.js.map +1 -0
  41. package/lib/evaluation-icon.js +60 -0
  42. package/lib/evaluation-icon.js.map +1 -0
  43. package/lib/image-container.js +94 -0
  44. package/lib/image-container.js.map +1 -0
  45. package/lib/image-drop-target.js +130 -0
  46. package/lib/image-drop-target.js.map +1 -0
  47. package/lib/index.js +220 -0
  48. package/lib/index.js.map +1 -0
  49. package/lib/interactive-section.js +104 -0
  50. package/lib/interactive-section.js.map +1 -0
  51. package/lib/possible-response.js +161 -0
  52. package/lib/possible-response.js.map +1 -0
  53. package/lib/possible-responses.js +58 -0
  54. package/lib/possible-responses.js.map +1 -0
  55. package/lib/root.js +491 -0
  56. package/lib/root.js.map +1 -0
  57. package/lib/static-html-span.js +35 -0
  58. package/lib/static-html-span.js.map +1 -0
  59. package/lib/utils-correctness.js +89 -0
  60. package/lib/utils-correctness.js.map +1 -0
  61. package/package.json +20 -58
  62. package/src/__tests__/index.test.js +174 -0
  63. package/src/__tests__/root.test.jsx +99 -0
  64. package/src/__tests__/utils.test.js +207 -0
  65. package/src/constants.js +5 -0
  66. package/src/evaluation-icon.jsx +54 -0
  67. package/src/image-container.jsx +90 -0
  68. package/src/image-drop-target.jsx +140 -0
  69. package/src/index.js +245 -0
  70. package/src/interactive-section.jsx +94 -0
  71. package/src/possible-response.jsx +152 -0
  72. package/src/possible-responses.jsx +52 -0
  73. package/src/root.jsx +490 -0
  74. package/src/static-html-span.jsx +30 -0
  75. package/src/utils-correctness.js +95 -0
  76. package/dist/author/defaults.d.ts +0 -88
  77. package/dist/author/defaults.js +0 -58
  78. package/dist/author/index.d.ts +0 -34
  79. package/dist/author/index.js +0 -71
  80. package/dist/author/root.d.ts +0 -14
  81. package/dist/author/root.js +0 -80
  82. package/dist/controller/defaults.d.ts +0 -16
  83. package/dist/controller/defaults.js +0 -10
  84. package/dist/controller/index.d.ts +0 -23
  85. package/dist/controller/index.js +0 -124
  86. package/dist/controller/utils.d.ts +0 -14
  87. package/dist/controller/utils.js +0 -36
  88. package/dist/delivery/constants.d.ts +0 -14
  89. package/dist/delivery/evaluation-icon.d.ts +0 -28
  90. package/dist/delivery/evaluation-icon.js +0 -38
  91. package/dist/delivery/image-container.d.ts +0 -13
  92. package/dist/delivery/image-container.js +0 -61
  93. package/dist/delivery/image-drop-target.d.ts +0 -45
  94. package/dist/delivery/image-drop-target.js +0 -90
  95. package/dist/delivery/index.d.ts +0 -20
  96. package/dist/delivery/index.js +0 -110
  97. package/dist/delivery/interactive-section.d.ts +0 -15
  98. package/dist/delivery/interactive-section.js +0 -72
  99. package/dist/delivery/possible-response.d.ts +0 -34
  100. package/dist/delivery/possible-response.js +0 -100
  101. package/dist/delivery/possible-responses.d.ts +0 -31
  102. package/dist/delivery/possible-responses.js +0 -41
  103. package/dist/delivery/root.d.ts +0 -21
  104. package/dist/delivery/root.js +0 -279
  105. package/dist/delivery/static-html-span.d.ts +0 -14
  106. package/dist/delivery/static-html-span.js +0 -22
  107. package/dist/delivery/utils-correctness.d.ts +0 -10
  108. package/dist/delivery/utils-correctness.js +0 -43
  109. package/dist/index.d.ts +0 -1
  110. package/dist/index.iife.d.ts +0 -8
  111. package/dist/index.iife.js +0 -160
  112. package/dist/index.js +0 -2
  113. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_DataView.js +0 -6
  114. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Hash.js +0 -16
  115. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_ListCache.js +0 -16
  116. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Map.js +0 -6
  117. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_MapCache.js +0 -16
  118. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Promise.js +0 -6
  119. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Set.js +0 -6
  120. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_SetCache.js +0 -11
  121. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Stack.js +0 -14
  122. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Symbol.js +0 -5
  123. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Uint8Array.js +0 -5
  124. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_WeakMap.js +0 -6
  125. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayAggregator.js +0 -10
  126. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayEach.js +0 -7
  127. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayFilter.js +0 -10
  128. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayLikeKeys.js +0 -15
  129. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayMap.js +0 -7
  130. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayPush.js +0 -7
  131. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayShuffle.js +0 -8
  132. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arraySome.js +0 -7
  133. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_assignValue.js +0 -10
  134. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_assocIndexOf.js +0 -8
  135. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseAggregator.js +0 -9
  136. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseAssign.js +0 -8
  137. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseAssignIn.js +0 -8
  138. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseAssignValue.js +0 -12
  139. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseClone.js +0 -57
  140. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseCreate.js +0 -14
  141. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseEach.js +0 -6
  142. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseFlatten.js +0 -13
  143. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseFor.js +0 -5
  144. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseForOwn.js +0 -8
  145. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseGet.js +0 -10
  146. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseGetAllKeys.js +0 -9
  147. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseGetTag.js +0 -10
  148. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseHasIn.js +0 -6
  149. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsArguments.js +0 -9
  150. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsEqual.js +0 -8
  151. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsEqualDeep.js +0 -30
  152. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsMap.js +0 -9
  153. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsMatch.js +0 -26
  154. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsNative.js +0 -11
  155. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsSet.js +0 -9
  156. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsTypedArray.js +0 -11
  157. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIteratee.js +0 -11
  158. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseKeys.js +0 -12
  159. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseKeysIn.js +0 -13
  160. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseMap.js +0 -11
  161. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseMatches.js +0 -12
  162. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseMatchesProperty.js +0 -17
  163. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseProperty.js +0 -8
  164. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_basePropertyDeep.js +0 -9
  165. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseRandom.js +0 -7
  166. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseShuffle.js +0 -8
  167. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseTimes.js +0 -7
  168. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseToString.js +0 -15
  169. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseUnary.js +0 -8
  170. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseValues.js +0 -9
  171. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cacheHas.js +0 -6
  172. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_castPath.js +0 -10
  173. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneArrayBuffer.js +0 -8
  174. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneBuffer.js +0 -10
  175. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneDataView.js +0 -8
  176. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneRegExp.js +0 -8
  177. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneSymbol.js +0 -8
  178. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneTypedArray.js +0 -8
  179. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copyArray.js +0 -8
  180. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copyObject.js +0 -14
  181. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copySymbols.js +0 -8
  182. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copySymbolsIn.js +0 -8
  183. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_coreJsData.js +0 -5
  184. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_createAggregator.js +0 -13
  185. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_createBaseEach.js +0 -12
  186. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_createBaseFor.js +0 -12
  187. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_defineProperty.js +0 -10
  188. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_equalArrays.js +0 -35
  189. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_equalByTag.js +0 -35
  190. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_equalObjects.js +0 -32
  191. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_freeGlobal.js +0 -4
  192. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getAllKeys.js +0 -9
  193. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getAllKeysIn.js +0 -9
  194. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getMapData.js +0 -8
  195. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getMatchData.js +0 -16
  196. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getNative.js +0 -9
  197. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getPrototype.js +0 -5
  198. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getRawTag.js +0 -14
  199. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getSymbols.js +0 -10
  200. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getSymbolsIn.js +0 -11
  201. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getTag.js +0 -23
  202. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getValue.js +0 -6
  203. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hasPath.js +0 -18
  204. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashClear.js +0 -7
  205. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashDelete.js +0 -7
  206. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashGet.js +0 -13
  207. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashHas.js +0 -9
  208. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashSet.js +0 -9
  209. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_initCloneArray.js +0 -8
  210. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_initCloneByTag.js +0 -33
  211. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_initCloneObject.js +0 -9
  212. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isFlattenable.js +0 -10
  213. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isIndex.js +0 -8
  214. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isKey.js +0 -11
  215. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isKeyable.js +0 -7
  216. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isMasked.js +0 -11
  217. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isPrototype.js +0 -8
  218. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isStrictComparable.js +0 -7
  219. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheClear.js +0 -6
  220. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheDelete.js +0 -9
  221. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheGet.js +0 -8
  222. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheHas.js +0 -7
  223. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheSet.js +0 -8
  224. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheClear.js +0 -13
  225. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheDelete.js +0 -8
  226. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheGet.js +0 -7
  227. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheHas.js +0 -7
  228. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheSet.js +0 -8
  229. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapToArray.js +0 -9
  230. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_matchesStrictComparable.js +0 -8
  231. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_memoizeCapped.js +0 -11
  232. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nativeCreate.js +0 -5
  233. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nativeKeys.js +0 -5
  234. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nativeKeysIn.js +0 -8
  235. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nodeUtil.js +0 -9
  236. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_objectToString.js +0 -7
  237. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_overArg.js +0 -8
  238. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_root.js +0 -5
  239. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_setCacheAdd.js +0 -7
  240. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_setCacheHas.js +0 -6
  241. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_setToArray.js +0 -9
  242. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_shuffleSelf.js +0 -12
  243. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackClear.js +0 -7
  244. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackDelete.js +0 -7
  245. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackGet.js +0 -6
  246. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackHas.js +0 -6
  247. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackSet.js +0 -16
  248. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stringToPath.js +0 -10
  249. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_toKey.js +0 -10
  250. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_toSource.js +0 -15
  251. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/cloneDeep.js +0 -8
  252. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/eq.js +0 -6
  253. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/flatMap.js +0 -8
  254. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/get.js +0 -8
  255. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/groupBy.js +0 -8
  256. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/hasIn.js +0 -8
  257. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/identity.js +0 -6
  258. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isArguments.js +0 -10
  259. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isArray.js +0 -4
  260. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isArrayLike.js +0 -8
  261. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isBuffer.js +0 -6
  262. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isEmpty.js +0 -21
  263. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isFunction.js +0 -11
  264. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isLength.js +0 -7
  265. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isMap.js +0 -7
  266. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isObject.js +0 -7
  267. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isObjectLike.js +0 -6
  268. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isSet.js +0 -7
  269. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isSymbol.js +0 -9
  270. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isTypedArray.js +0 -7
  271. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/keys.js +0 -9
  272. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/keysIn.js +0 -9
  273. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/map.js +0 -10
  274. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/memoize.js +0 -16
  275. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/property.js +0 -10
  276. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/shuffle.js +0 -9
  277. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/stubArray.js +0 -6
  278. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/stubFalse.js +0 -6
  279. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/toString.js +0 -7
  280. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/values.js +0 -8
package/CHANGELOG.json ADDED
@@ -0,0 +1,437 @@
1
+ [
2
+ {
3
+ "type": "fix",
4
+ "scope": "editable-html",
5
+ "subject": "fixed lots of stuff regarding the editable-html",
6
+ "merge": null,
7
+ "header": "fix(editable-html): fixed lots of stuff regarding the editable-html",
8
+ "body": null,
9
+ "footer": null,
10
+ "notes": [],
11
+ "hash": "12c112917e0b5065ec35efdbdc276703602a6c68",
12
+ "gitTags": " (origin/andrei/fixes)",
13
+ "committerDate": "2019-07-07 14:16:34 -0400",
14
+ "isTagged": true,
15
+ "tag": "@pie-element/image-cloze-association@1.0.2"
16
+ },
17
+ {
18
+ "type": "feat",
19
+ "scope": null,
20
+ "subject": "Added configuration, settings panel and support for teacher instructions.",
21
+ "merge": null,
22
+ "header": "feat: Added configuration, settings panel and support for teacher instructions.",
23
+ "body": null,
24
+ "footer": null,
25
+ "notes": [],
26
+ "hash": "b54170b24e397aa4fefd5eaa9a831c23455be7a9",
27
+ "gitTags": "",
28
+ "committerDate": "2019-07-09 00:10:49 +0300",
29
+ "isTagged": true,
30
+ "tag": "@pie-element/image-cloze-association@1.1.0"
31
+ },
32
+ {
33
+ "type": "fix",
34
+ "scope": "rendering",
35
+ "subject": "implemented rendering for math elements [ch1915], [ch1935]",
36
+ "merge": null,
37
+ "header": "fix(rendering): implemented rendering for math elements [ch1915], [ch1935]",
38
+ "body": null,
39
+ "footer": null,
40
+ "notes": [],
41
+ "hash": "2f3584200654e098c7b4cc4b312813efac09e7a9",
42
+ "gitTags": "",
43
+ "committerDate": "2019-07-12 15:45:27 +0300",
44
+ "isTagged": true,
45
+ "tag": "@pie-element/image-cloze-association@1.1.3"
46
+ },
47
+ {
48
+ "type": "fix",
49
+ "scope": null,
50
+ "subject": "add dependency",
51
+ "merge": null,
52
+ "header": "fix: add dependency",
53
+ "body": null,
54
+ "footer": null,
55
+ "notes": [],
56
+ "hash": "41d1b243ef791104f36bf093255925e984af7570",
57
+ "gitTags": " (origin/develop, origin/HEAD, develop)",
58
+ "committerDate": "2019-07-12 15:32:14 +0100",
59
+ "isTagged": true,
60
+ "tag": "@pie-element/image-cloze-association@1.1.5"
61
+ },
62
+ {
63
+ "type": "fix",
64
+ "scope": null,
65
+ "subject": "add dependency",
66
+ "merge": null,
67
+ "header": "fix: add dependency",
68
+ "body": null,
69
+ "footer": null,
70
+ "notes": [],
71
+ "hash": "41d1b243ef791104f36bf093255925e984af7570",
72
+ "gitTags": "",
73
+ "committerDate": "2019-07-12 15:32:14 +0100",
74
+ "isTagged": true,
75
+ "tag": "@pie-element/image-cloze-association@1.1.5"
76
+ },
77
+ {
78
+ "type": "fix",
79
+ "scope": "elements",
80
+ "subject": "fixed some feedback config issues and the prompt issue on categorize [ch2192], [ch1770]",
81
+ "merge": null,
82
+ "header": "fix(elements): fixed some feedback config issues and the prompt issue on categorize [ch2192], [ch1770]",
83
+ "body": null,
84
+ "footer": null,
85
+ "notes": [],
86
+ "hash": "eb227241ba3bc52d7bf7a313f4f85b69e9203e85",
87
+ "gitTags": "",
88
+ "committerDate": "2019-08-01 12:43:53 +0300",
89
+ "isTagged": true,
90
+ "tag": "@pie-element/image-cloze-association@1.2.0"
91
+ },
92
+ {
93
+ "type": "fix",
94
+ "scope": null,
95
+ "subject": "calculate correct partial when comes to duplicates and extra answers",
96
+ "merge": null,
97
+ "header": "fix: calculate correct partial when comes to duplicates and extra answers",
98
+ "body": null,
99
+ "footer": null,
100
+ "notes": [],
101
+ "hash": "a8b1677e48929c4027b090361f1200fffaca212b",
102
+ "gitTags": " (origin/sergiulucaci/ch1955/partial-scoring-fix)",
103
+ "committerDate": "2019-07-29 16:44:59 +0300",
104
+ "isTagged": true,
105
+ "tag": "@pie-element/image-cloze-association@1.2.0"
106
+ },
107
+ {
108
+ "type": "feat",
109
+ "scope": null,
110
+ "subject": "support alternate correct answers",
111
+ "merge": null,
112
+ "header": "feat: support alternate correct answers",
113
+ "body": null,
114
+ "footer": null,
115
+ "notes": [],
116
+ "hash": "03b5ce0ad1db77ebfb86a0c3dcb0aaf02a0bbf5a",
117
+ "gitTags": " (origin/sergiulucaci/ch1955/ica-alternate-correct-answers)",
118
+ "committerDate": "2019-07-26 16:09:36 +0300",
119
+ "isTagged": true,
120
+ "tag": "@pie-element/image-cloze-association@1.2.0"
121
+ },
122
+ {
123
+ "type": "fix",
124
+ "scope": "elements",
125
+ "subject": "version bumped the editable-html packages [ch1738]",
126
+ "merge": null,
127
+ "header": "fix(elements): version bumped the editable-html packages [ch1738]",
128
+ "body": null,
129
+ "footer": null,
130
+ "notes": [],
131
+ "hash": "949222a6a3af39cf8b81a885a81e5c6f3c6a28a0",
132
+ "gitTags": "",
133
+ "committerDate": "2019-08-08 08:40:11 +0300",
134
+ "isTagged": true,
135
+ "tag": "@pie-element/image-cloze-association@1.2.1"
136
+ },
137
+ {
138
+ "type": "fix",
139
+ "scope": "math-rendering",
140
+ "subject": "updated all dependent packages [ch3365]",
141
+ "merge": null,
142
+ "header": "fix(math-rendering): updated all dependent packages [ch3365]",
143
+ "body": null,
144
+ "footer": null,
145
+ "notes": [],
146
+ "hash": "7cbf25ac92040a16621d5699e232c38575f6c36c",
147
+ "gitTags": "",
148
+ "committerDate": "2019-08-16 23:04:42 +0300",
149
+ "isTagged": true,
150
+ "tag": "@pie-element/image-cloze-association@1.2.2"
151
+ },
152
+ {
153
+ "type": "fix",
154
+ "scope": null,
155
+ "subject": "set default values to configuration properties",
156
+ "merge": null,
157
+ "header": "fix: set default values to configuration properties",
158
+ "body": null,
159
+ "footer": null,
160
+ "notes": [],
161
+ "hash": "105bd49a35e0c24a29fa63e2fe7880988d6f05c4",
162
+ "gitTags": "",
163
+ "committerDate": "2019-08-15 13:57:45 +0300",
164
+ "isTagged": true,
165
+ "tag": "@pie-element/image-cloze-association@1.2.2"
166
+ },
167
+ {
168
+ "type": "fix",
169
+ "scope": null,
170
+ "subject": "target new @pie-ui/image-cloze-association@1.2.0",
171
+ "merge": null,
172
+ "header": "fix: target new @pie-ui/image-cloze-association@1.2.0",
173
+ "body": null,
174
+ "footer": null,
175
+ "notes": [],
176
+ "hash": "a48a43543328c8dee50ba41633c98b477833b6ca",
177
+ "gitTags": "",
178
+ "committerDate": "2019-07-29 20:00:59 +0100",
179
+ "isTagged": true,
180
+ "tag": "@pie-element/image-cloze-association@1.2.0"
181
+ },
182
+ {
183
+ "type": "fix",
184
+ "scope": null,
185
+ "subject": "target new @pie-ui/image-cloze-association@1.2.0",
186
+ "merge": null,
187
+ "header": "fix: target new @pie-ui/image-cloze-association@1.2.0",
188
+ "body": null,
189
+ "footer": null,
190
+ "notes": [],
191
+ "hash": "a48a43543328c8dee50ba41633c98b477833b6ca",
192
+ "gitTags": "",
193
+ "committerDate": "2019-07-29 20:00:59 +0100",
194
+ "isTagged": true,
195
+ "tag": "@pie-element/image-cloze-association@1.2.0"
196
+ },
197
+ {
198
+ "type": "fix",
199
+ "scope": "math-rendering",
200
+ "subject": "updated all dependent packages [ch3365]",
201
+ "merge": null,
202
+ "header": "fix(math-rendering): updated all dependent packages [ch3365]",
203
+ "body": null,
204
+ "footer": null,
205
+ "notes": [],
206
+ "hash": "7cbf25ac92040a16621d5699e232c38575f6c36c",
207
+ "gitTags": "",
208
+ "committerDate": "2019-08-16 23:04:42 +0300",
209
+ "isTagged": true,
210
+ "tag": "@pie-element/image-cloze-association@1.2.2"
211
+ },
212
+ {
213
+ "type": "fix",
214
+ "scope": null,
215
+ "subject": "set default values to configuration properties",
216
+ "merge": null,
217
+ "header": "fix: set default values to configuration properties",
218
+ "body": null,
219
+ "footer": null,
220
+ "notes": [],
221
+ "hash": "105bd49a35e0c24a29fa63e2fe7880988d6f05c4",
222
+ "gitTags": "",
223
+ "committerDate": "2019-08-15 13:57:45 +0300",
224
+ "isTagged": true,
225
+ "tag": "@pie-element/image-cloze-association@1.2.2"
226
+ },
227
+ {
228
+ "type": "fix",
229
+ "scope": "math-rendering",
230
+ "subject": "updated all dependent packages for math rendering and for editable-html [ch3365], [ch1530]",
231
+ "merge": null,
232
+ "header": "fix(math-rendering): updated all dependent packages for math rendering and for editable-html [ch3365], [ch1530]",
233
+ "body": null,
234
+ "footer": null,
235
+ "notes": [],
236
+ "hash": "33e3287a735cec9aed893f697a1933ff0c077042",
237
+ "gitTags": "",
238
+ "committerDate": "2019-08-19 19:37:56 +0300",
239
+ "isTagged": true,
240
+ "tag": "@pie-element/image-cloze-association@1.2.3"
241
+ },
242
+ {
243
+ "type": "feat",
244
+ "scope": null,
245
+ "subject": "Session null/empty check.",
246
+ "merge": null,
247
+ "header": "feat: Session null/empty check.",
248
+ "body": "Check for each interaction if: has outcome function, outcome function returns { score: 0, empty: true } if session null/empty/undefined, everywhere where session is used we handle if session is null/empty/undefined and test each function that uses session. [image-cloze-association, inline-choice, inline-dropdown]",
249
+ "footer": null,
250
+ "notes": [],
251
+ "hash": "35c2cab1f174e1ede63e9b68ae6c955d7ee12b82",
252
+ "gitTags": "",
253
+ "committerDate": "2019-08-25 15:44:31 +0300",
254
+ "isTagged": true,
255
+ "tag": "@pie-element/image-cloze-association@1.3.0"
256
+ },
257
+ {
258
+ "type": "fix",
259
+ "scope": null,
260
+ "subject": "upgrade ui elements [ch4802]",
261
+ "merge": null,
262
+ "header": "fix: upgrade ui elements [ch4802]",
263
+ "body": null,
264
+ "footer": null,
265
+ "notes": [],
266
+ "hash": "d93f7c1c77901413adccaf21510b6e34d88f2546",
267
+ "gitTags": "",
268
+ "committerDate": "2019-10-16 11:13:34 +0100",
269
+ "isTagged": true,
270
+ "tag": "@pie-element/image-cloze-association@3.0.2"
271
+ },
272
+ {
273
+ "type": "fix",
274
+ "scope": null,
275
+ "subject": "ch2766 fix unresolved promise (#366)",
276
+ "merge": null,
277
+ "header": "fix: ch2766 fix unresolved promise (#366)",
278
+ "body": "* fix: resolve null when instructor is not role\n\n* chore: typo\n\n* chore: correct response resolve, match interaction\n\n* chore: correct response unresolved\n\n* chore: categorize resolve correct response\n\n* fix: createCorrectResponseSession unresolved promise\n\n* fix: createCorrectResponseSession resolve promise\n\n* fix: createCorrectResponseSession resolve promise\n\n* fix: ch2776 resolve createCorrectResponse promise",
279
+ "footer": "* fix: Fixed createCorrectResponseSession and added tests for it. (#365)",
280
+ "notes": [],
281
+ "hash": "9057b7fd08e4f5b07e953a5acd053e1945df57f2",
282
+ "gitTags": " (origin/develop, origin/HEAD)",
283
+ "committerDate": "2019-10-16 15:50:55 -0400",
284
+ "isTagged": true,
285
+ "tag": "@pie-element/image-cloze-association@3.0.3"
286
+ },
287
+ {
288
+ "type": "fix",
289
+ "scope": null,
290
+ "subject": "bump pie-ui version",
291
+ "merge": null,
292
+ "header": "fix: bump pie-ui version",
293
+ "body": null,
294
+ "footer": null,
295
+ "notes": [],
296
+ "hash": "a2a752da5f6ef9d9ed62ba332970e34b3502d646",
297
+ "gitTags": "",
298
+ "committerDate": "2019-12-18 12:08:39 +0000",
299
+ "isTagged": true,
300
+ "tag": "@pie-element/image-cloze-association@3.0.6"
301
+ },
302
+ {
303
+ "type": "feat",
304
+ "scope": null,
305
+ "subject": "PIE-200 - add partialScoring",
306
+ "merge": null,
307
+ "header": "feat: PIE-200 - add partialScoring",
308
+ "body": null,
309
+ "footer": null,
310
+ "notes": [],
311
+ "hash": "4eb0b47230359f35513fc852ee95cd6845c4d156",
312
+ "gitTags": "",
313
+ "committerDate": "2019-12-06 12:22:05 +0000",
314
+ "isTagged": true,
315
+ "tag": "@pie-element/image-cloze-association@3.1.0"
316
+ },
317
+ {
318
+ "type": "fix",
319
+ "scope": null,
320
+ "subject": "bump ui versions",
321
+ "merge": null,
322
+ "header": "fix: bump ui versions",
323
+ "body": null,
324
+ "footer": null,
325
+ "notes": [],
326
+ "hash": "5b9d99fe59c304bdd173c9336503eb558900d2a2",
327
+ "gitTags": "",
328
+ "committerDate": "2020-03-31 19:25:13 +0100",
329
+ "isTagged": true,
330
+ "tag": "@pie-element/image-cloze-association@3.2.0"
331
+ },
332
+ {
333
+ "type": "fix",
334
+ "scope": null,
335
+ "subject": "bump lib and ui versions",
336
+ "merge": null,
337
+ "header": "fix: bump lib and ui versions",
338
+ "body": null,
339
+ "footer": null,
340
+ "notes": [],
341
+ "hash": "a882cbf4580098ce0e12c51cf6ad2879817e17e7",
342
+ "gitTags": "",
343
+ "committerDate": "2020-04-10 17:13:24 +0100",
344
+ "isTagged": true,
345
+ "tag": "@pie-element/image-cloze-association@3.3.1"
346
+ },
347
+ {
348
+ "type": "fix",
349
+ "scope": null,
350
+ "subject": "bump all packages to avoid tag conflict",
351
+ "merge": null,
352
+ "header": "fix: bump all packages to avoid tag conflict",
353
+ "body": null,
354
+ "footer": null,
355
+ "notes": [],
356
+ "hash": "d9ec9a8689f0a391594b5e2f4ea958c6dc9f6d7b",
357
+ "gitTags": "",
358
+ "committerDate": "2020-04-10 20:01:37 +0100",
359
+ "isTagged": true,
360
+ "tag": "@pie-element/image-cloze-association@3.3.1"
361
+ },
362
+ {
363
+ "type": "fix",
364
+ "scope": null,
365
+ "subject": "bump version to avoid tag conflict",
366
+ "merge": null,
367
+ "header": "fix: bump version to avoid tag conflict",
368
+ "body": null,
369
+ "footer": null,
370
+ "notes": [],
371
+ "hash": "4d55f6d203f496420e2ed2fa32c0851406036c53",
372
+ "gitTags": "",
373
+ "committerDate": "2020-04-10 17:39:16 +0100",
374
+ "isTagged": true,
375
+ "tag": "@pie-element/image-cloze-association@3.3.1"
376
+ },
377
+ {
378
+ "type": "fix",
379
+ "scope": null,
380
+ "subject": "bump ui/lib versions",
381
+ "merge": null,
382
+ "header": "fix: bump ui/lib versions",
383
+ "body": null,
384
+ "footer": null,
385
+ "notes": [],
386
+ "hash": "3edb2321ebaefcaee70c3642aa6da8a50e8a99e5",
387
+ "gitTags": "",
388
+ "committerDate": "2020-04-14 15:36:44 +0100",
389
+ "isTagged": true,
390
+ "tag": "@pie-element/image-cloze-association@3.3.3"
391
+ },
392
+ {
393
+ "type": "fix",
394
+ "scope": null,
395
+ "subject": "bump ui/lib versions",
396
+ "merge": null,
397
+ "header": "fix: bump ui/lib versions",
398
+ "body": null,
399
+ "footer": null,
400
+ "notes": [],
401
+ "hash": "45f0da6e3e01f33aff6059cb13d571554690348b",
402
+ "gitTags": "",
403
+ "committerDate": "2020-04-28 14:57:57 +0100",
404
+ "isTagged": true,
405
+ "tag": "@pie-element/image-cloze-association@3.3.4"
406
+ },
407
+ {
408
+ "type": "fix",
409
+ "scope": null,
410
+ "subject": "update ui/lib versions",
411
+ "merge": null,
412
+ "header": "fix: update ui/lib versions",
413
+ "body": null,
414
+ "footer": null,
415
+ "notes": [],
416
+ "hash": "0226b0bc0869d468ba3e5986bc469e020f4f12a6",
417
+ "gitTags": "",
418
+ "committerDate": "2020-04-28 14:20:37 +0100",
419
+ "isTagged": true,
420
+ "tag": "@pie-element/image-cloze-association@3.3.4"
421
+ },
422
+ {
423
+ "type": "fix",
424
+ "scope": null,
425
+ "subject": "ui+libs update",
426
+ "merge": null,
427
+ "header": "fix: ui+libs update",
428
+ "body": null,
429
+ "footer": null,
430
+ "notes": [],
431
+ "hash": "6127de27006a7835d1dd7a9c4c5f13de950aa06d",
432
+ "gitTags": "",
433
+ "committerDate": "2020-04-27 19:52:07 +0100",
434
+ "isTagged": true,
435
+ "tag": "@pie-element/image-cloze-association@3.3.4"
436
+ }
437
+ ]