@pie-element/number-line 13.1.1 → 13.1.2-next.0

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 (381) hide show
  1. package/configure.js +2 -0
  2. package/controller.js +1 -0
  3. package/dist/_virtual/_rolldown/runtime.js +11 -0
  4. package/dist/author/arrows.d.ts +28 -0
  5. package/dist/author/arrows.js +69 -0
  6. package/dist/author/card-bar.d.ts +20 -0
  7. package/dist/author/card-bar.js +41 -0
  8. package/dist/author/defaults.d.ts +178 -0
  9. package/dist/author/defaults.js +144 -0
  10. package/dist/author/domain.d.ts +15 -0
  11. package/dist/author/domain.js +54 -0
  12. package/dist/author/index.d.ts +23 -0
  13. package/dist/author/index.js +89 -0
  14. package/dist/author/main.d.ts +44 -0
  15. package/dist/author/main.js +485 -0
  16. package/dist/author/number-text-field.d.ts +13 -0
  17. package/dist/author/number-text-field.js +13 -0
  18. package/dist/author/point-config.d.ts +25 -0
  19. package/dist/author/point-config.js +69 -0
  20. package/dist/author/size.d.ts +24 -0
  21. package/dist/author/size.js +48 -0
  22. package/dist/author/ticks.d.ts +22 -0
  23. package/dist/author/ticks.js +115 -0
  24. package/dist/author/utils.d.ts +9 -0
  25. package/dist/author/utils.js +4 -0
  26. package/dist/browser/_baseSet-ycZx94p7.js +8672 -0
  27. package/dist/browser/_baseSet-ycZx94p7.js.map +1 -0
  28. package/dist/browser/author/index.js +40436 -0
  29. package/dist/browser/author/index.js.map +1 -0
  30. package/dist/browser/controller/index.js +823 -0
  31. package/dist/browser/controller/index.js.map +1 -0
  32. package/dist/browser/delivery/index.js +2 -0
  33. package/dist/browser/delivery-Dh8QdqpO.js +17950 -0
  34. package/dist/browser/delivery-Dh8QdqpO.js.map +1 -0
  35. package/dist/browser/number-line.css +2 -0
  36. package/dist/browser/uniqWith-CKN50xMI.js +17886 -0
  37. package/dist/browser/uniqWith-CKN50xMI.js.map +1 -0
  38. package/dist/controller/defaults.d.ts +58 -0
  39. package/dist/controller/defaults.js +50 -0
  40. package/dist/controller/index.d.ts +33 -0
  41. package/dist/controller/index.js +170 -0
  42. package/dist/controller/tickUtils.d.ts +20 -0
  43. package/dist/controller/tickUtils.js +254 -0
  44. package/dist/controller/utils.d.ts +9 -0
  45. package/dist/controller/utils.js +68 -0
  46. package/dist/delivery/data-converter.d.ts +64 -0
  47. package/dist/delivery/data-converter.js +70 -0
  48. package/dist/delivery/draggable/index.d.ts +33 -0
  49. package/dist/delivery/draggable/index.js +39 -0
  50. package/dist/delivery/index.d.ts +35 -0
  51. package/dist/delivery/index.js +109 -0
  52. package/dist/delivery/number-line/colors.d.ts +11 -0
  53. package/dist/delivery/number-line/colors.js +5 -0
  54. package/dist/delivery/number-line/feedback.d.ts +19 -0
  55. package/dist/delivery/number-line/feedback.js +57 -0
  56. package/dist/delivery/number-line/graph/arrow.d.ts +30 -0
  57. package/dist/delivery/number-line/graph/arrow.js +27 -0
  58. package/dist/delivery/number-line/graph/elements/base.d.ts +16 -0
  59. package/dist/delivery/number-line/graph/elements/base.js +11 -0
  60. package/dist/delivery/number-line/graph/elements/builder.d.ts +33 -0
  61. package/dist/delivery/number-line/graph/elements/builder.js +30 -0
  62. package/dist/delivery/number-line/graph/elements/line.d.ts +51 -0
  63. package/dist/delivery/number-line/graph/elements/line.js +189 -0
  64. package/dist/delivery/number-line/graph/elements/point.d.ts +43 -0
  65. package/dist/delivery/number-line/graph/elements/point.js +127 -0
  66. package/dist/delivery/number-line/graph/elements/ray.d.ts +43 -0
  67. package/dist/delivery/number-line/graph/elements/ray.js +130 -0
  68. package/dist/delivery/number-line/graph/index.d.ts +59 -0
  69. package/dist/delivery/number-line/graph/index.js +196 -0
  70. package/dist/delivery/number-line/graph/line.d.ts +46 -0
  71. package/dist/delivery/number-line/graph/line.js +27 -0
  72. package/dist/delivery/number-line/graph/stacks.d.ts +10 -0
  73. package/dist/delivery/number-line/graph/stacks.js +40 -0
  74. package/dist/delivery/number-line/graph/tick-utils.d.ts +73 -0
  75. package/dist/delivery/number-line/graph/tick-utils.js +297 -0
  76. package/dist/delivery/number-line/graph/ticks.d.ts +46 -0
  77. package/dist/delivery/number-line/graph/ticks.js +115 -0
  78. package/dist/delivery/number-line/index.d.ts +35 -0
  79. package/dist/delivery/number-line/index.js +218 -0
  80. package/dist/delivery/number-line/point-chooser/button.d.ts +31 -0
  81. package/dist/delivery/number-line/point-chooser/button.js +36 -0
  82. package/dist/delivery/number-line/point-chooser/img.d.ts +10 -0
  83. package/dist/delivery/number-line/point-chooser/img.js +4 -0
  84. package/dist/delivery/number-line/point-chooser/index.d.ts +37 -0
  85. package/dist/delivery/number-line/point-chooser/index.js +154 -0
  86. package/dist/delivery/number-line/point-chooser/styles.d.ts +192 -0
  87. package/dist/delivery/number-line/transitions/fade.d.ts +34 -0
  88. package/dist/delivery/number-line/transitions/fade.js +75 -0
  89. package/dist/delivery/number-line/transitions/index.d.ts +10 -0
  90. package/dist/index.d.ts +1 -0
  91. package/dist/index.iife.d.ts +8 -0
  92. package/dist/index.iife.js +201 -0
  93. package/dist/index.js +2 -0
  94. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_DataView.js +6 -0
  95. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Hash.js +16 -0
  96. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_ListCache.js +16 -0
  97. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Map.js +6 -0
  98. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_MapCache.js +16 -0
  99. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Promise.js +6 -0
  100. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Set.js +6 -0
  101. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_SetCache.js +11 -0
  102. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Stack.js +14 -0
  103. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Symbol.js +5 -0
  104. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_Uint8Array.js +5 -0
  105. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_WeakMap.js +6 -0
  106. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_apply.js +12 -0
  107. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayEach.js +7 -0
  108. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayFilter.js +10 -0
  109. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayIncludes.js +7 -0
  110. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayIncludesWith.js +7 -0
  111. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayLikeKeys.js +15 -0
  112. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayMap.js +7 -0
  113. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arrayPush.js +7 -0
  114. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_arraySome.js +7 -0
  115. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_assignMergeValue.js +8 -0
  116. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_assignValue.js +10 -0
  117. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_assocIndexOf.js +8 -0
  118. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseAssign.js +8 -0
  119. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseAssignIn.js +8 -0
  120. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseAssignValue.js +12 -0
  121. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseClone.js +57 -0
  122. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseCreate.js +14 -0
  123. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseFindIndex.js +7 -0
  124. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseFor.js +5 -0
  125. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseGet.js +10 -0
  126. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseGetAllKeys.js +9 -0
  127. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseGetTag.js +10 -0
  128. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseHasIn.js +6 -0
  129. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIndexOf.js +9 -0
  130. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsArguments.js +9 -0
  131. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsEqual.js +8 -0
  132. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsEqualDeep.js +30 -0
  133. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsMap.js +9 -0
  134. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsMatch.js +26 -0
  135. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsNaN.js +6 -0
  136. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsNative.js +11 -0
  137. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsSet.js +9 -0
  138. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIsTypedArray.js +11 -0
  139. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseIteratee.js +11 -0
  140. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseKeys.js +12 -0
  141. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseKeysIn.js +13 -0
  142. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseMatches.js +12 -0
  143. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseMatchesProperty.js +17 -0
  144. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseMerge.js +19 -0
  145. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseMergeDeep.js +31 -0
  146. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_basePickBy.js +13 -0
  147. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseProperty.js +8 -0
  148. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_basePropertyDeep.js +9 -0
  149. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseRest.js +9 -0
  150. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseSet.js +22 -0
  151. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseSetToString.js +14 -0
  152. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseTimes.js +7 -0
  153. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseToString.js +15 -0
  154. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseTrim.js +8 -0
  155. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseUnary.js +8 -0
  156. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_baseUniq.js +27 -0
  157. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cacheHas.js +6 -0
  158. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_castPath.js +10 -0
  159. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneArrayBuffer.js +8 -0
  160. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneBuffer.js +10 -0
  161. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneDataView.js +8 -0
  162. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneRegExp.js +8 -0
  163. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneSymbol.js +8 -0
  164. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_cloneTypedArray.js +8 -0
  165. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copyArray.js +8 -0
  166. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copyObject.js +14 -0
  167. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copySymbols.js +8 -0
  168. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_copySymbolsIn.js +8 -0
  169. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_coreJsData.js +5 -0
  170. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_createAssigner.js +15 -0
  171. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_createBaseFor.js +12 -0
  172. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_createFind.js +19 -0
  173. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_createSet.js +9 -0
  174. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_defineProperty.js +10 -0
  175. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_equalArrays.js +35 -0
  176. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_equalByTag.js +35 -0
  177. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_equalObjects.js +32 -0
  178. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_freeGlobal.js +4 -0
  179. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getAllKeys.js +9 -0
  180. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getAllKeysIn.js +9 -0
  181. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getMapData.js +8 -0
  182. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getMatchData.js +16 -0
  183. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getNative.js +9 -0
  184. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getPrototype.js +5 -0
  185. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getRawTag.js +14 -0
  186. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getSymbols.js +10 -0
  187. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getSymbolsIn.js +11 -0
  188. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getTag.js +23 -0
  189. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_getValue.js +6 -0
  190. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hasPath.js +18 -0
  191. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashClear.js +7 -0
  192. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashDelete.js +7 -0
  193. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashGet.js +13 -0
  194. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashHas.js +9 -0
  195. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_hashSet.js +9 -0
  196. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_initCloneArray.js +8 -0
  197. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_initCloneByTag.js +33 -0
  198. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_initCloneObject.js +9 -0
  199. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isIndex.js +8 -0
  200. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isIterateeCall.js +12 -0
  201. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isKey.js +11 -0
  202. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isKeyable.js +7 -0
  203. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isMasked.js +11 -0
  204. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isPrototype.js +8 -0
  205. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_isStrictComparable.js +7 -0
  206. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheClear.js +6 -0
  207. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheDelete.js +9 -0
  208. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheGet.js +8 -0
  209. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheHas.js +7 -0
  210. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_listCacheSet.js +8 -0
  211. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheClear.js +13 -0
  212. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheDelete.js +8 -0
  213. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheGet.js +7 -0
  214. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheHas.js +7 -0
  215. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapCacheSet.js +8 -0
  216. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_mapToArray.js +9 -0
  217. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_matchesStrictComparable.js +8 -0
  218. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_memoizeCapped.js +11 -0
  219. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nativeCreate.js +5 -0
  220. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nativeKeys.js +5 -0
  221. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nativeKeysIn.js +8 -0
  222. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_nodeUtil.js +9 -0
  223. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_objectToString.js +7 -0
  224. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_overArg.js +8 -0
  225. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_overRest.js +13 -0
  226. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_root.js +5 -0
  227. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_safeGet.js +6 -0
  228. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_setCacheAdd.js +7 -0
  229. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_setCacheHas.js +6 -0
  230. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_setToArray.js +9 -0
  231. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_setToString.js +6 -0
  232. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_shortOut.js +14 -0
  233. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackClear.js +7 -0
  234. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackDelete.js +7 -0
  235. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackGet.js +6 -0
  236. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackHas.js +6 -0
  237. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stackSet.js +16 -0
  238. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_strictIndexOf.js +7 -0
  239. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_stringToPath.js +10 -0
  240. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_toKey.js +10 -0
  241. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_toSource.js +15 -0
  242. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/_trimmedEndIndex.js +8 -0
  243. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/cloneDeep.js +8 -0
  244. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/constant.js +8 -0
  245. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/eq.js +6 -0
  246. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/find.js +6 -0
  247. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/findIndex.js +13 -0
  248. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/get.js +8 -0
  249. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/hasIn.js +8 -0
  250. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/identity.js +6 -0
  251. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isArguments.js +10 -0
  252. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isArray.js +4 -0
  253. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isArrayLike.js +8 -0
  254. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isArrayLikeObject.js +8 -0
  255. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isBuffer.js +6 -0
  256. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isEmpty.js +21 -0
  257. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isEqual.js +7 -0
  258. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isEqualWith.js +9 -0
  259. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isFunction.js +11 -0
  260. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isLength.js +7 -0
  261. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isMap.js +7 -0
  262. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isNumber.js +9 -0
  263. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isObject.js +7 -0
  264. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isObjectLike.js +6 -0
  265. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isPlainObject.js +14 -0
  266. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isSet.js +7 -0
  267. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isSymbol.js +9 -0
  268. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/isTypedArray.js +7 -0
  269. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/keys.js +9 -0
  270. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/keysIn.js +9 -0
  271. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/memoize.js +16 -0
  272. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/merge.js +8 -0
  273. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/negate.js +17 -0
  274. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/noop.js +4 -0
  275. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/omitBy.js +9 -0
  276. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/pickBy.js +16 -0
  277. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/property.js +10 -0
  278. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/stubArray.js +6 -0
  279. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/stubFalse.js +6 -0
  280. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/toFinite.js +8 -0
  281. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/toInteger.js +8 -0
  282. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/toNumber.js +19 -0
  283. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/toPlainObject.js +8 -0
  284. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/toString.js +7 -0
  285. package/dist/node_modules/.bun/lodash-es@4.18.1/node_modules/lodash-es/uniqWith.js +7 -0
  286. package/package.json +78 -16
  287. package/CHANGELOG.json +0 -1247
  288. package/CHANGELOG.md +0 -2435
  289. package/LICENSE.md +0 -5
  290. package/README.md +0 -28
  291. package/configure/CHANGELOG.json +0 -827
  292. package/configure/CHANGELOG.md +0 -2082
  293. package/configure/lib/arrows.js +0 -89
  294. package/configure/lib/arrows.js.map +0 -1
  295. package/configure/lib/card-bar.js +0 -57
  296. package/configure/lib/card-bar.js.map +0 -1
  297. package/configure/lib/defaults.js +0 -177
  298. package/configure/lib/defaults.js.map +0 -1
  299. package/configure/lib/domain.js +0 -87
  300. package/configure/lib/domain.js.map +0 -1
  301. package/configure/lib/index.js +0 -176
  302. package/configure/lib/index.js.map +0 -1
  303. package/configure/lib/main.js +0 -815
  304. package/configure/lib/main.js.map +0 -1
  305. package/configure/lib/number-text-field.js +0 -26
  306. package/configure/lib/number-text-field.js.map +0 -1
  307. package/configure/lib/point-config.js +0 -84
  308. package/configure/lib/point-config.js.map +0 -1
  309. package/configure/lib/size.js +0 -66
  310. package/configure/lib/size.js.map +0 -1
  311. package/configure/lib/ticks.js +0 -234
  312. package/configure/lib/ticks.js.map +0 -1
  313. package/configure/lib/utils.js +0 -12
  314. package/configure/lib/utils.js.map +0 -1
  315. package/configure/package.json +0 -20
  316. package/controller/CHANGELOG.json +0 -332
  317. package/controller/CHANGELOG.md +0 -1360
  318. package/controller/lib/defaults.js +0 -56
  319. package/controller/lib/defaults.js.map +0 -1
  320. package/controller/lib/index.js +0 -430
  321. package/controller/lib/index.js.map +0 -1
  322. package/controller/lib/tickUtils.js +0 -294
  323. package/controller/lib/tickUtils.js.map +0 -1
  324. package/controller/lib/utils.js +0 -168
  325. package/controller/lib/utils.js.map +0 -1
  326. package/controller/package.json +0 -20
  327. package/demo.gif +0 -0
  328. package/docs/config-schema.json +0 -2532
  329. package/docs/config-schema.json.md +0 -1844
  330. package/docs/demo/config.js +0 -8
  331. package/docs/demo/generate.js +0 -39
  332. package/docs/demo/index.html +0 -1
  333. package/docs/pie-schema.json +0 -2461
  334. package/docs/pie-schema.json.md +0 -1228
  335. package/docs/schemas/config.json +0 -256
  336. package/lib/data-converter.js +0 -96
  337. package/lib/data-converter.js.map +0 -1
  338. package/lib/draggable/index.js +0 -114
  339. package/lib/draggable/index.js.map +0 -1
  340. package/lib/index.js +0 -196
  341. package/lib/index.js.map +0 -1
  342. package/lib/number-line/colors.js +0 -11
  343. package/lib/number-line/colors.js.map +0 -1
  344. package/lib/number-line/feedback.js +0 -92
  345. package/lib/number-line/feedback.js.map +0 -1
  346. package/lib/number-line/graph/arrow.js +0 -44
  347. package/lib/number-line/graph/arrow.js.map +0 -1
  348. package/lib/number-line/graph/elements/base.js +0 -20
  349. package/lib/number-line/graph/elements/base.js.map +0 -1
  350. package/lib/number-line/graph/elements/builder.js +0 -37
  351. package/lib/number-line/graph/elements/builder.js.map +0 -1
  352. package/lib/number-line/graph/elements/line.js +0 -259
  353. package/lib/number-line/graph/elements/line.js.map +0 -1
  354. package/lib/number-line/graph/elements/point.js +0 -204
  355. package/lib/number-line/graph/elements/point.js.map +0 -1
  356. package/lib/number-line/graph/elements/ray.js +0 -190
  357. package/lib/number-line/graph/elements/ray.js.map +0 -1
  358. package/lib/number-line/graph/index.js +0 -262
  359. package/lib/number-line/graph/index.js.map +0 -1
  360. package/lib/number-line/graph/line.js +0 -38
  361. package/lib/number-line/graph/line.js.map +0 -1
  362. package/lib/number-line/graph/stacks.js +0 -78
  363. package/lib/number-line/graph/stacks.js.map +0 -1
  364. package/lib/number-line/graph/tick-utils.js +0 -347
  365. package/lib/number-line/graph/tick-utils.js.map +0 -1
  366. package/lib/number-line/graph/ticks.js +0 -188
  367. package/lib/number-line/graph/ticks.js.map +0 -1
  368. package/lib/number-line/index.js +0 -384
  369. package/lib/number-line/index.js.map +0 -1
  370. package/lib/number-line/point-chooser/button.js +0 -49
  371. package/lib/number-line/point-chooser/button.js.map +0 -1
  372. package/lib/number-line/point-chooser/img.js +0 -8
  373. package/lib/number-line/point-chooser/img.js.map +0 -1
  374. package/lib/number-line/point-chooser/index.js +0 -197
  375. package/lib/number-line/point-chooser/index.js.map +0 -1
  376. package/lib/number-line/point-chooser/styles.js +0 -77
  377. package/lib/number-line/point-chooser/styles.js.map +0 -1
  378. package/lib/number-line/transitions/fade.js +0 -88
  379. package/lib/number-line/transitions/fade.js.map +0 -1
  380. package/lib/number-line/transitions/index.js +0 -14
  381. package/lib/number-line/transitions/index.js.map +0 -1
@@ -1,1844 +0,0 @@
1
- Config Object for @pie-elements/number-line
2
-
3
- The schema defines the following properties:
4
-
5
- # `baseInputConfiguration` (object)
6
-
7
- Properties of the `baseInputConfiguration` object:
8
-
9
- ## `math` (object)
10
-
11
- Properties of the `math` object:
12
-
13
- ### `disabled` (boolean)
14
-
15
- Indicates if the plugin is disabled or not
16
-
17
- ## `audio` (object)
18
-
19
- Properties of the `audio` object:
20
-
21
- ### `disabled` (boolean)
22
-
23
- Indicates if the plugin is disabled or not
24
-
25
- ## `video` (object)
26
-
27
- Properties of the `video` object:
28
-
29
- ### `disabled` (boolean)
30
-
31
- Indicates if the plugin is disabled or not
32
-
33
- ## `image` (object)
34
-
35
- Properties of the `image` object:
36
-
37
- ### `disabled` (boolean)
38
-
39
- Indicates if the plugin is disabled or not
40
-
41
- ## `customPlugins` (array)
42
-
43
- An array of objects that determine custom plugins.
44
- A custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).
45
- Example can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.
46
-
47
- The object is an array with all elements of the type `object`.
48
-
49
- The array object has the following properties:
50
-
51
- ### `event` (string, required)
52
-
53
- The name of the custom event. It needs to be valid (only letters, numbers and "_" can be used).
54
- PIE will emit the event prefixed with "PIE-".
55
- Eg: event = 'client_custom_event_A' => the emitted event will be "PIE-client_custom_event_A"
56
-
57
- ### `iconAlt` (string, required)
58
-
59
- The alt for the custom button icon
60
-
61
- ### `iconType` (string, required)
62
-
63
- The icon type.
64
- Currently, only "SVG" is supported.
65
-
66
- ### `icon` (string, required)
67
-
68
- The icon string. Currently, only "SVG" is supported, so it needs to be a valid svg.
69
-
70
- ## `blockquote` (object)
71
-
72
- Properties of the `blockquote` object:
73
-
74
- ### `disabled` (boolean)
75
-
76
- Indicates if the plugin is disabled or not
77
-
78
- ## `h3` (object)
79
-
80
- Properties of the `h3` object:
81
-
82
- ### `disabled` (boolean)
83
-
84
- Indicates if the plugin is disabled or not
85
-
86
- ## `characters` (object)
87
-
88
- Properties of the `characters` object:
89
-
90
- ### `disabled` (boolean)
91
-
92
- Indicates if the plugin is disabled or not
93
-
94
- ## `bold` (object)
95
-
96
- Properties of the `bold` object:
97
-
98
- ### `disabled` (boolean)
99
-
100
- Indicates if the plugin is disabled or not
101
-
102
- ## `html` (object)
103
-
104
- Properties of the `html` object:
105
-
106
- ### `disabled` (boolean)
107
-
108
- Indicates if the plugin is disabled or not
109
-
110
- ## `italic` (object)
111
-
112
- Properties of the `italic` object:
113
-
114
- ### `disabled` (boolean)
115
-
116
- Indicates if the plugin is disabled or not
117
-
118
- ## `ol_list` (object)
119
-
120
- Properties of the `ol_list` object:
121
-
122
- ### `disabled` (boolean)
123
-
124
- Indicates if the plugin is disabled or not
125
-
126
- ## `redo` (object)
127
-
128
- Properties of the `redo` object:
129
-
130
- ### `disabled` (boolean)
131
-
132
- Indicates if the plugin is disabled or not
133
-
134
- ## `strikethrough` (object)
135
-
136
- Properties of the `strikethrough` object:
137
-
138
- ### `disabled` (boolean)
139
-
140
- Indicates if the plugin is disabled or not
141
-
142
- ## `sub` (object)
143
-
144
- Properties of the `sub` object:
145
-
146
- ### `disabled` (boolean)
147
-
148
- Indicates if the plugin is disabled or not
149
-
150
- ## `sup` (object)
151
-
152
- Properties of the `sup` object:
153
-
154
- ### `disabled` (boolean)
155
-
156
- Indicates if the plugin is disabled or not
157
-
158
- ## `table` (object)
159
-
160
- Properties of the `table` object:
161
-
162
- ### `disabled` (boolean)
163
-
164
- Indicates if the plugin is disabled or not
165
-
166
- ## `ul_list` (object)
167
-
168
- Properties of the `ul_list` object:
169
-
170
- ### `disabled` (boolean)
171
-
172
- Indicates if the plugin is disabled or not
173
-
174
- ## `underline` (object)
175
-
176
- Properties of the `underline` object:
177
-
178
- ### `disabled` (boolean)
179
-
180
- Indicates if the plugin is disabled or not
181
-
182
- ## `undo` (object)
183
-
184
- Properties of the `undo` object:
185
-
186
- ### `disabled` (boolean)
187
-
188
- Indicates if the plugin is disabled or not
189
-
190
- # `instruction` (object)
191
-
192
- Properties of the `instruction` object:
193
-
194
- ## `enabled` (boolean)
195
-
196
- Indicates the value of the item if it affects config-ui
197
- (eg.: if item is a switch and displaying an input on the config-ui depends on the switch value: on/off)
198
-
199
- ## `settings` (boolean)
200
-
201
- Indicates if the item has to be displayed in the Settings Panel
202
-
203
- ## `label` (string)
204
-
205
- Indicates the label for the item that has to be displayed in the Settings Panel
206
-
207
- # `prompt` (object)
208
-
209
- Properties of the `prompt` object:
210
-
211
- ## `inputConfiguration` (object)
212
-
213
- Properties of the `inputConfiguration` object:
214
-
215
- ### `math` (object)
216
-
217
- Properties of the `math` object:
218
-
219
- #### `disabled` (boolean)
220
-
221
- Indicates if the plugin is disabled or not
222
-
223
- ### `audio` (object)
224
-
225
- Properties of the `audio` object:
226
-
227
- #### `disabled` (boolean)
228
-
229
- Indicates if the plugin is disabled or not
230
-
231
- ### `video` (object)
232
-
233
- Properties of the `video` object:
234
-
235
- #### `disabled` (boolean)
236
-
237
- Indicates if the plugin is disabled or not
238
-
239
- ### `image` (object)
240
-
241
- Properties of the `image` object:
242
-
243
- #### `disabled` (boolean)
244
-
245
- Indicates if the plugin is disabled or not
246
-
247
- ### `customPlugins` (array)
248
-
249
- An array of objects that determine custom plugins.
250
- A custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).
251
- Example can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.
252
-
253
- The object is an array with all elements of the type `object`.
254
-
255
- The array object has the following properties:
256
-
257
- #### `event` (string, required)
258
-
259
- The name of the custom event. It needs to be valid (only letters, numbers and "_" can be used).
260
- PIE will emit the event prefixed with "PIE-".
261
- Eg: event = 'client_custom_event_A' => the emitted event will be "PIE-client_custom_event_A"
262
-
263
- #### `iconAlt` (string, required)
264
-
265
- The alt for the custom button icon
266
-
267
- #### `iconType` (string, required)
268
-
269
- The icon type.
270
- Currently, only "SVG" is supported.
271
-
272
- #### `icon` (string, required)
273
-
274
- The icon string. Currently, only "SVG" is supported, so it needs to be a valid svg.
275
-
276
- ### `blockquote` (object)
277
-
278
- Properties of the `blockquote` object:
279
-
280
- #### `disabled` (boolean)
281
-
282
- Indicates if the plugin is disabled or not
283
-
284
- ### `h3` (object)
285
-
286
- Properties of the `h3` object:
287
-
288
- #### `disabled` (boolean)
289
-
290
- Indicates if the plugin is disabled or not
291
-
292
- ### `characters` (object)
293
-
294
- Properties of the `characters` object:
295
-
296
- #### `disabled` (boolean)
297
-
298
- Indicates if the plugin is disabled or not
299
-
300
- ### `bold` (object)
301
-
302
- Properties of the `bold` object:
303
-
304
- #### `disabled` (boolean)
305
-
306
- Indicates if the plugin is disabled or not
307
-
308
- ### `html` (object)
309
-
310
- Properties of the `html` object:
311
-
312
- #### `disabled` (boolean)
313
-
314
- Indicates if the plugin is disabled or not
315
-
316
- ### `italic` (object)
317
-
318
- Properties of the `italic` object:
319
-
320
- #### `disabled` (boolean)
321
-
322
- Indicates if the plugin is disabled or not
323
-
324
- ### `ol_list` (object)
325
-
326
- Properties of the `ol_list` object:
327
-
328
- #### `disabled` (boolean)
329
-
330
- Indicates if the plugin is disabled or not
331
-
332
- ### `redo` (object)
333
-
334
- Properties of the `redo` object:
335
-
336
- #### `disabled` (boolean)
337
-
338
- Indicates if the plugin is disabled or not
339
-
340
- ### `strikethrough` (object)
341
-
342
- Properties of the `strikethrough` object:
343
-
344
- #### `disabled` (boolean)
345
-
346
- Indicates if the plugin is disabled or not
347
-
348
- ### `sub` (object)
349
-
350
- Properties of the `sub` object:
351
-
352
- #### `disabled` (boolean)
353
-
354
- Indicates if the plugin is disabled or not
355
-
356
- ### `sup` (object)
357
-
358
- Properties of the `sup` object:
359
-
360
- #### `disabled` (boolean)
361
-
362
- Indicates if the plugin is disabled or not
363
-
364
- ### `table` (object)
365
-
366
- Properties of the `table` object:
367
-
368
- #### `disabled` (boolean)
369
-
370
- Indicates if the plugin is disabled or not
371
-
372
- ### `ul_list` (object)
373
-
374
- Properties of the `ul_list` object:
375
-
376
- #### `disabled` (boolean)
377
-
378
- Indicates if the plugin is disabled or not
379
-
380
- ### `underline` (object)
381
-
382
- Properties of the `underline` object:
383
-
384
- #### `disabled` (boolean)
385
-
386
- Indicates if the plugin is disabled or not
387
-
388
- ### `undo` (object)
389
-
390
- Properties of the `undo` object:
391
-
392
- #### `disabled` (boolean)
393
-
394
- Indicates if the plugin is disabled or not
395
-
396
- ## `required` (boolean)
397
-
398
- Indicates if the item is required and the value cannot be empty
399
-
400
- ## `settings` (boolean)
401
-
402
- Indicates if the item has to be displayed in the Settings Panel
403
-
404
- ## `label` (string)
405
-
406
- Indicates the label for the item that has to be displayed in the Settings Panel
407
-
408
- # `rationale` (object)
409
-
410
- Properties of the `rationale` object:
411
-
412
- ## `inputConfiguration` (object)
413
-
414
- Properties of the `inputConfiguration` object:
415
-
416
- ### `math` (object)
417
-
418
- Properties of the `math` object:
419
-
420
- #### `disabled` (boolean)
421
-
422
- Indicates if the plugin is disabled or not
423
-
424
- ### `audio` (object)
425
-
426
- Properties of the `audio` object:
427
-
428
- #### `disabled` (boolean)
429
-
430
- Indicates if the plugin is disabled or not
431
-
432
- ### `video` (object)
433
-
434
- Properties of the `video` object:
435
-
436
- #### `disabled` (boolean)
437
-
438
- Indicates if the plugin is disabled or not
439
-
440
- ### `image` (object)
441
-
442
- Properties of the `image` object:
443
-
444
- #### `disabled` (boolean)
445
-
446
- Indicates if the plugin is disabled or not
447
-
448
- ### `customPlugins` (array)
449
-
450
- An array of objects that determine custom plugins.
451
- A custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).
452
- Example can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.
453
-
454
- The object is an array with all elements of the type `object`.
455
-
456
- The array object has the following properties:
457
-
458
- #### `event` (string, required)
459
-
460
- The name of the custom event. It needs to be valid (only letters, numbers and "_" can be used).
461
- PIE will emit the event prefixed with "PIE-".
462
- Eg: event = 'client_custom_event_A' => the emitted event will be "PIE-client_custom_event_A"
463
-
464
- #### `iconAlt` (string, required)
465
-
466
- The alt for the custom button icon
467
-
468
- #### `iconType` (string, required)
469
-
470
- The icon type.
471
- Currently, only "SVG" is supported.
472
-
473
- #### `icon` (string, required)
474
-
475
- The icon string. Currently, only "SVG" is supported, so it needs to be a valid svg.
476
-
477
- ### `blockquote` (object)
478
-
479
- Properties of the `blockquote` object:
480
-
481
- #### `disabled` (boolean)
482
-
483
- Indicates if the plugin is disabled or not
484
-
485
- ### `h3` (object)
486
-
487
- Properties of the `h3` object:
488
-
489
- #### `disabled` (boolean)
490
-
491
- Indicates if the plugin is disabled or not
492
-
493
- ### `characters` (object)
494
-
495
- Properties of the `characters` object:
496
-
497
- #### `disabled` (boolean)
498
-
499
- Indicates if the plugin is disabled or not
500
-
501
- ### `bold` (object)
502
-
503
- Properties of the `bold` object:
504
-
505
- #### `disabled` (boolean)
506
-
507
- Indicates if the plugin is disabled or not
508
-
509
- ### `html` (object)
510
-
511
- Properties of the `html` object:
512
-
513
- #### `disabled` (boolean)
514
-
515
- Indicates if the plugin is disabled or not
516
-
517
- ### `italic` (object)
518
-
519
- Properties of the `italic` object:
520
-
521
- #### `disabled` (boolean)
522
-
523
- Indicates if the plugin is disabled or not
524
-
525
- ### `ol_list` (object)
526
-
527
- Properties of the `ol_list` object:
528
-
529
- #### `disabled` (boolean)
530
-
531
- Indicates if the plugin is disabled or not
532
-
533
- ### `redo` (object)
534
-
535
- Properties of the `redo` object:
536
-
537
- #### `disabled` (boolean)
538
-
539
- Indicates if the plugin is disabled or not
540
-
541
- ### `strikethrough` (object)
542
-
543
- Properties of the `strikethrough` object:
544
-
545
- #### `disabled` (boolean)
546
-
547
- Indicates if the plugin is disabled or not
548
-
549
- ### `sub` (object)
550
-
551
- Properties of the `sub` object:
552
-
553
- #### `disabled` (boolean)
554
-
555
- Indicates if the plugin is disabled or not
556
-
557
- ### `sup` (object)
558
-
559
- Properties of the `sup` object:
560
-
561
- #### `disabled` (boolean)
562
-
563
- Indicates if the plugin is disabled or not
564
-
565
- ### `table` (object)
566
-
567
- Properties of the `table` object:
568
-
569
- #### `disabled` (boolean)
570
-
571
- Indicates if the plugin is disabled or not
572
-
573
- ### `ul_list` (object)
574
-
575
- Properties of the `ul_list` object:
576
-
577
- #### `disabled` (boolean)
578
-
579
- Indicates if the plugin is disabled or not
580
-
581
- ### `underline` (object)
582
-
583
- Properties of the `underline` object:
584
-
585
- #### `disabled` (boolean)
586
-
587
- Indicates if the plugin is disabled or not
588
-
589
- ### `undo` (object)
590
-
591
- Properties of the `undo` object:
592
-
593
- #### `disabled` (boolean)
594
-
595
- Indicates if the plugin is disabled or not
596
-
597
- ## `required` (boolean)
598
-
599
- Indicates if the item is required and the value cannot be empty
600
-
601
- ## `settings` (boolean)
602
-
603
- Indicates if the item has to be displayed in the Settings Panel
604
-
605
- ## `label` (string)
606
-
607
- Indicates the label for the item that has to be displayed in the Settings Panel
608
-
609
- # `teacherInstructions` (object)
610
-
611
- Properties of the `teacherInstructions` object:
612
-
613
- ## `inputConfiguration` (object)
614
-
615
- Properties of the `inputConfiguration` object:
616
-
617
- ### `math` (object)
618
-
619
- Properties of the `math` object:
620
-
621
- #### `disabled` (boolean)
622
-
623
- Indicates if the plugin is disabled or not
624
-
625
- ### `audio` (object)
626
-
627
- Properties of the `audio` object:
628
-
629
- #### `disabled` (boolean)
630
-
631
- Indicates if the plugin is disabled or not
632
-
633
- ### `video` (object)
634
-
635
- Properties of the `video` object:
636
-
637
- #### `disabled` (boolean)
638
-
639
- Indicates if the plugin is disabled or not
640
-
641
- ### `image` (object)
642
-
643
- Properties of the `image` object:
644
-
645
- #### `disabled` (boolean)
646
-
647
- Indicates if the plugin is disabled or not
648
-
649
- ### `customPlugins` (array)
650
-
651
- An array of objects that determine custom plugins.
652
- A custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).
653
- Example can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.
654
-
655
- The object is an array with all elements of the type `object`.
656
-
657
- The array object has the following properties:
658
-
659
- #### `event` (string, required)
660
-
661
- The name of the custom event. It needs to be valid (only letters, numbers and "_" can be used).
662
- PIE will emit the event prefixed with "PIE-".
663
- Eg: event = 'client_custom_event_A' => the emitted event will be "PIE-client_custom_event_A"
664
-
665
- #### `iconAlt` (string, required)
666
-
667
- The alt for the custom button icon
668
-
669
- #### `iconType` (string, required)
670
-
671
- The icon type.
672
- Currently, only "SVG" is supported.
673
-
674
- #### `icon` (string, required)
675
-
676
- The icon string. Currently, only "SVG" is supported, so it needs to be a valid svg.
677
-
678
- ### `blockquote` (object)
679
-
680
- Properties of the `blockquote` object:
681
-
682
- #### `disabled` (boolean)
683
-
684
- Indicates if the plugin is disabled or not
685
-
686
- ### `h3` (object)
687
-
688
- Properties of the `h3` object:
689
-
690
- #### `disabled` (boolean)
691
-
692
- Indicates if the plugin is disabled or not
693
-
694
- ### `characters` (object)
695
-
696
- Properties of the `characters` object:
697
-
698
- #### `disabled` (boolean)
699
-
700
- Indicates if the plugin is disabled or not
701
-
702
- ### `bold` (object)
703
-
704
- Properties of the `bold` object:
705
-
706
- #### `disabled` (boolean)
707
-
708
- Indicates if the plugin is disabled or not
709
-
710
- ### `html` (object)
711
-
712
- Properties of the `html` object:
713
-
714
- #### `disabled` (boolean)
715
-
716
- Indicates if the plugin is disabled or not
717
-
718
- ### `italic` (object)
719
-
720
- Properties of the `italic` object:
721
-
722
- #### `disabled` (boolean)
723
-
724
- Indicates if the plugin is disabled or not
725
-
726
- ### `ol_list` (object)
727
-
728
- Properties of the `ol_list` object:
729
-
730
- #### `disabled` (boolean)
731
-
732
- Indicates if the plugin is disabled or not
733
-
734
- ### `redo` (object)
735
-
736
- Properties of the `redo` object:
737
-
738
- #### `disabled` (boolean)
739
-
740
- Indicates if the plugin is disabled or not
741
-
742
- ### `strikethrough` (object)
743
-
744
- Properties of the `strikethrough` object:
745
-
746
- #### `disabled` (boolean)
747
-
748
- Indicates if the plugin is disabled or not
749
-
750
- ### `sub` (object)
751
-
752
- Properties of the `sub` object:
753
-
754
- #### `disabled` (boolean)
755
-
756
- Indicates if the plugin is disabled or not
757
-
758
- ### `sup` (object)
759
-
760
- Properties of the `sup` object:
761
-
762
- #### `disabled` (boolean)
763
-
764
- Indicates if the plugin is disabled or not
765
-
766
- ### `table` (object)
767
-
768
- Properties of the `table` object:
769
-
770
- #### `disabled` (boolean)
771
-
772
- Indicates if the plugin is disabled or not
773
-
774
- ### `ul_list` (object)
775
-
776
- Properties of the `ul_list` object:
777
-
778
- #### `disabled` (boolean)
779
-
780
- Indicates if the plugin is disabled or not
781
-
782
- ### `underline` (object)
783
-
784
- Properties of the `underline` object:
785
-
786
- #### `disabled` (boolean)
787
-
788
- Indicates if the plugin is disabled or not
789
-
790
- ### `undo` (object)
791
-
792
- Properties of the `undo` object:
793
-
794
- #### `disabled` (boolean)
795
-
796
- Indicates if the plugin is disabled or not
797
-
798
- ## `required` (boolean)
799
-
800
- Indicates if the item is required and the value cannot be empty
801
-
802
- ## `settings` (boolean)
803
-
804
- Indicates if the item has to be displayed in the Settings Panel
805
-
806
- ## `label` (string)
807
-
808
- Indicates the label for the item that has to be displayed in the Settings Panel
809
-
810
- # `title` (object)
811
-
812
- Properties of the `title` object:
813
-
814
- ## `inputConfiguration` (object)
815
-
816
- Properties of the `inputConfiguration` object:
817
-
818
- ### `math` (object)
819
-
820
- Properties of the `math` object:
821
-
822
- #### `disabled` (boolean)
823
-
824
- Indicates if the plugin is disabled or not
825
-
826
- ### `audio` (object)
827
-
828
- Properties of the `audio` object:
829
-
830
- #### `disabled` (boolean)
831
-
832
- Indicates if the plugin is disabled or not
833
-
834
- ### `video` (object)
835
-
836
- Properties of the `video` object:
837
-
838
- #### `disabled` (boolean)
839
-
840
- Indicates if the plugin is disabled or not
841
-
842
- ### `image` (object)
843
-
844
- Properties of the `image` object:
845
-
846
- #### `disabled` (boolean)
847
-
848
- Indicates if the plugin is disabled or not
849
-
850
- ### `customPlugins` (array)
851
-
852
- An array of objects that determine custom plugins.
853
- A custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).
854
- Example can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.
855
-
856
- The object is an array with all elements of the type `object`.
857
-
858
- The array object has the following properties:
859
-
860
- #### `event` (string, required)
861
-
862
- The name of the custom event. It needs to be valid (only letters, numbers and "_" can be used).
863
- PIE will emit the event prefixed with "PIE-".
864
- Eg: event = 'client_custom_event_A' => the emitted event will be "PIE-client_custom_event_A"
865
-
866
- #### `iconAlt` (string, required)
867
-
868
- The alt for the custom button icon
869
-
870
- #### `iconType` (string, required)
871
-
872
- The icon type.
873
- Currently, only "SVG" is supported.
874
-
875
- #### `icon` (string, required)
876
-
877
- The icon string. Currently, only "SVG" is supported, so it needs to be a valid svg.
878
-
879
- ### `blockquote` (object)
880
-
881
- Properties of the `blockquote` object:
882
-
883
- #### `disabled` (boolean)
884
-
885
- Indicates if the plugin is disabled or not
886
-
887
- ### `h3` (object)
888
-
889
- Properties of the `h3` object:
890
-
891
- #### `disabled` (boolean)
892
-
893
- Indicates if the plugin is disabled or not
894
-
895
- ### `characters` (object)
896
-
897
- Properties of the `characters` object:
898
-
899
- #### `disabled` (boolean)
900
-
901
- Indicates if the plugin is disabled or not
902
-
903
- ### `bold` (object)
904
-
905
- Properties of the `bold` object:
906
-
907
- #### `disabled` (boolean)
908
-
909
- Indicates if the plugin is disabled or not
910
-
911
- ### `html` (object)
912
-
913
- Properties of the `html` object:
914
-
915
- #### `disabled` (boolean)
916
-
917
- Indicates if the plugin is disabled or not
918
-
919
- ### `italic` (object)
920
-
921
- Properties of the `italic` object:
922
-
923
- #### `disabled` (boolean)
924
-
925
- Indicates if the plugin is disabled or not
926
-
927
- ### `ol_list` (object)
928
-
929
- Properties of the `ol_list` object:
930
-
931
- #### `disabled` (boolean)
932
-
933
- Indicates if the plugin is disabled or not
934
-
935
- ### `redo` (object)
936
-
937
- Properties of the `redo` object:
938
-
939
- #### `disabled` (boolean)
940
-
941
- Indicates if the plugin is disabled or not
942
-
943
- ### `strikethrough` (object)
944
-
945
- Properties of the `strikethrough` object:
946
-
947
- #### `disabled` (boolean)
948
-
949
- Indicates if the plugin is disabled or not
950
-
951
- ### `sub` (object)
952
-
953
- Properties of the `sub` object:
954
-
955
- #### `disabled` (boolean)
956
-
957
- Indicates if the plugin is disabled or not
958
-
959
- ### `sup` (object)
960
-
961
- Properties of the `sup` object:
962
-
963
- #### `disabled` (boolean)
964
-
965
- Indicates if the plugin is disabled or not
966
-
967
- ### `table` (object)
968
-
969
- Properties of the `table` object:
970
-
971
- #### `disabled` (boolean)
972
-
973
- Indicates if the plugin is disabled or not
974
-
975
- ### `ul_list` (object)
976
-
977
- Properties of the `ul_list` object:
978
-
979
- #### `disabled` (boolean)
980
-
981
- Indicates if the plugin is disabled or not
982
-
983
- ### `underline` (object)
984
-
985
- Properties of the `underline` object:
986
-
987
- #### `disabled` (boolean)
988
-
989
- Indicates if the plugin is disabled or not
990
-
991
- ### `undo` (object)
992
-
993
- Properties of the `undo` object:
994
-
995
- #### `disabled` (boolean)
996
-
997
- Indicates if the plugin is disabled or not
998
-
999
- ## `settings` (boolean)
1000
-
1001
- Indicates if the item has to be displayed in the Settings Panel
1002
-
1003
- ## `label` (string)
1004
-
1005
- Indicates the label for the item that has to be displayed in the Settings Panel
1006
-
1007
- # `numberLineDimensions` (object)
1008
-
1009
- Properties of the `numberLineDimensions` object:
1010
-
1011
- ## `settings` (boolean, required)
1012
-
1013
- ## `label` (string, required)
1014
-
1015
- ## `enabled` (boolean, required)
1016
-
1017
- ## `min` (number, required)
1018
-
1019
- ## `max` (number, required)
1020
-
1021
- ## `step` (number, required)
1022
-
1023
- # `spellCheck` (object)
1024
-
1025
- Properties of the `spellCheck` object:
1026
-
1027
- ## `settings` (boolean)
1028
-
1029
- Indicates if the item has to be displayed in the Settings Panel
1030
-
1031
- ## `label` (string)
1032
-
1033
- Indicates the label for the item that has to be displayed in the Settings Panel
1034
-
1035
- # `settingsPanelDisabled` (boolean)
1036
-
1037
- Indicates if the settings panel is not available
1038
-
1039
- # `maxMaxElements` (number)
1040
-
1041
- Holds numeric value for maximum number of elements allowed on number line.
1042
-
1043
- # `hidePointConfigButtons` (boolean)
1044
-
1045
- Hide buttons in point configuration module (Select All / None).
1046
-
1047
- # `availableTools` (array)
1048
-
1049
- Array of available tools for author.
1050
-
1051
- The object is an array with all elements of the type `string`.
1052
-
1053
- # `mathMlOptions` (object)
1054
-
1055
- Properties of the `mathMlOptions` object:
1056
-
1057
- ## `mmlOutput` (number)
1058
-
1059
- Indicates if model should have mathML output instead of latex
1060
-
1061
- ## `mmlEditing` (number)
1062
-
1063
- Indicates if mathML that's already in model should be editable
1064
-
1065
- # `language` (object)
1066
-
1067
- Properties of the `language` object:
1068
-
1069
- ## `enabled` (boolean)
1070
-
1071
- Indicates the value of the item if it affects config-ui
1072
- (eg.: if item is a switch and displaying an input on the config-ui depends on the switch value: on/off)
1073
-
1074
- ## `settings` (boolean)
1075
-
1076
- Indicates if the item has to be displayed in the Settings Panel
1077
-
1078
- ## `label` (string)
1079
-
1080
- Indicates the label for the item that has to be displayed in the Settings Panel
1081
-
1082
- # `languageChoices` (object)
1083
-
1084
- Language choices configuration
1085
- Only available if language is enabled
1086
-
1087
- Properties of the `languageChoices` object:
1088
-
1089
- ## `label` (string, required)
1090
-
1091
- ## `options` (array, required)
1092
-
1093
- The object is an array with all elements of the type `object`.
1094
-
1095
- The array object has the following properties:
1096
-
1097
- ### `value` (string, required)
1098
-
1099
- Value of the language option
1100
-
1101
- ### `label` (string, required)
1102
-
1103
- Label of the language option
1104
-
1105
- # `showPrompt` (boolean)
1106
-
1107
- Determines whether prompt field will be displayed or not
1108
-
1109
- Default: `true`
1110
-
1111
- # `promptLabel` (string)
1112
-
1113
- The label for the item stem/prompt field
1114
-
1115
- Default: `"Item Stemm"`
1116
-
1117
- # `contentDimensions` (object)
1118
-
1119
- Indicates the dimensions configuration for the authoring container
1120
- Note: Some items have a default minimum width because of their content, but if
1121
- the minWidth is lower than this, the overflow behavior will take care of that
1122
-
1123
- Properties of the `contentDimensions` object:
1124
-
1125
- ## `maxHeight` (string,number)
1126
-
1127
- Indicates the max height of the authoring container
1128
-
1129
- Default: `"undefined"`
1130
-
1131
- ## `maxWidth` (string,number)
1132
-
1133
- Indicates the max width of the authoring container
1134
-
1135
- Default: `"undefined"`
1136
-
1137
- ## `minHeight` (string,number)
1138
-
1139
- Indicates the min height of the authoring container
1140
-
1141
- Default: `"undefined"`
1142
-
1143
- ## `minWidth` (string,number)
1144
-
1145
- Indicates the min width of the authoring container
1146
-
1147
- Default: `"undefined"`
1148
-
1149
- Default: `": {}"`
1150
-
1151
- # `settingsPartialScoring` (boolean)
1152
-
1153
- Indicates whether the settings panel wil allow the author to modify settings for partial scoring
1154
-
1155
- Default: `true`
1156
-
1157
- ---
1158
-
1159
- # Sub Schemas
1160
-
1161
- The schema defines the following additional types:
1162
-
1163
- ## `EditableHtmlConfigureProp` (object)
1164
-
1165
- Properties of the `EditableHtmlConfigureProp` object:
1166
-
1167
- ### `math` (object)
1168
-
1169
- Properties of the `math` object:
1170
-
1171
- #### `disabled` (boolean)
1172
-
1173
- Indicates if the plugin is disabled or not
1174
-
1175
- ### `audio` (object)
1176
-
1177
- Properties of the `audio` object:
1178
-
1179
- #### `disabled` (boolean)
1180
-
1181
- Indicates if the plugin is disabled or not
1182
-
1183
- ### `video` (object)
1184
-
1185
- Properties of the `video` object:
1186
-
1187
- #### `disabled` (boolean)
1188
-
1189
- Indicates if the plugin is disabled or not
1190
-
1191
- ### `image` (object)
1192
-
1193
- Properties of the `image` object:
1194
-
1195
- #### `disabled` (boolean)
1196
-
1197
- Indicates if the plugin is disabled or not
1198
-
1199
- ### `customPlugins` (array)
1200
-
1201
- An array of objects that determine custom plugins.
1202
- A custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).
1203
- Example can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.
1204
-
1205
- The object is an array with all elements of the type `object`.
1206
-
1207
- The array object has the following properties:
1208
-
1209
- #### `event` (string, required)
1210
-
1211
- The name of the custom event. It needs to be valid (only letters, numbers and "_" can be used).
1212
- PIE will emit the event prefixed with "PIE-".
1213
- Eg: event = 'client_custom_event_A' => the emitted event will be "PIE-client_custom_event_A"
1214
-
1215
- #### `iconAlt` (string, required)
1216
-
1217
- The alt for the custom button icon
1218
-
1219
- #### `iconType` (string, required)
1220
-
1221
- The icon type.
1222
- Currently, only "SVG" is supported.
1223
-
1224
- #### `icon` (string, required)
1225
-
1226
- The icon string. Currently, only "SVG" is supported, so it needs to be a valid svg.
1227
-
1228
- ### `blockquote` (object)
1229
-
1230
- Properties of the `blockquote` object:
1231
-
1232
- #### `disabled` (boolean)
1233
-
1234
- Indicates if the plugin is disabled or not
1235
-
1236
- ### `h3` (object)
1237
-
1238
- Properties of the `h3` object:
1239
-
1240
- #### `disabled` (boolean)
1241
-
1242
- Indicates if the plugin is disabled or not
1243
-
1244
- ### `characters` (object)
1245
-
1246
- Properties of the `characters` object:
1247
-
1248
- #### `disabled` (boolean)
1249
-
1250
- Indicates if the plugin is disabled or not
1251
-
1252
- ### `bold` (object)
1253
-
1254
- Properties of the `bold` object:
1255
-
1256
- #### `disabled` (boolean)
1257
-
1258
- Indicates if the plugin is disabled or not
1259
-
1260
- ### `html` (object)
1261
-
1262
- Properties of the `html` object:
1263
-
1264
- #### `disabled` (boolean)
1265
-
1266
- Indicates if the plugin is disabled or not
1267
-
1268
- ### `italic` (object)
1269
-
1270
- Properties of the `italic` object:
1271
-
1272
- #### `disabled` (boolean)
1273
-
1274
- Indicates if the plugin is disabled or not
1275
-
1276
- ### `ol_list` (object)
1277
-
1278
- Properties of the `ol_list` object:
1279
-
1280
- #### `disabled` (boolean)
1281
-
1282
- Indicates if the plugin is disabled or not
1283
-
1284
- ### `redo` (object)
1285
-
1286
- Properties of the `redo` object:
1287
-
1288
- #### `disabled` (boolean)
1289
-
1290
- Indicates if the plugin is disabled or not
1291
-
1292
- ### `strikethrough` (object)
1293
-
1294
- Properties of the `strikethrough` object:
1295
-
1296
- #### `disabled` (boolean)
1297
-
1298
- Indicates if the plugin is disabled or not
1299
-
1300
- ### `sub` (object)
1301
-
1302
- Properties of the `sub` object:
1303
-
1304
- #### `disabled` (boolean)
1305
-
1306
- Indicates if the plugin is disabled or not
1307
-
1308
- ### `sup` (object)
1309
-
1310
- Properties of the `sup` object:
1311
-
1312
- #### `disabled` (boolean)
1313
-
1314
- Indicates if the plugin is disabled or not
1315
-
1316
- ### `table` (object)
1317
-
1318
- Properties of the `table` object:
1319
-
1320
- #### `disabled` (boolean)
1321
-
1322
- Indicates if the plugin is disabled or not
1323
-
1324
- ### `ul_list` (object)
1325
-
1326
- Properties of the `ul_list` object:
1327
-
1328
- #### `disabled` (boolean)
1329
-
1330
- Indicates if the plugin is disabled or not
1331
-
1332
- ### `underline` (object)
1333
-
1334
- Properties of the `underline` object:
1335
-
1336
- #### `disabled` (boolean)
1337
-
1338
- Indicates if the plugin is disabled or not
1339
-
1340
- ### `undo` (object)
1341
-
1342
- Properties of the `undo` object:
1343
-
1344
- #### `disabled` (boolean)
1345
-
1346
- Indicates if the plugin is disabled or not
1347
-
1348
- ## `EditableHtmlButtonConfigure` (object)
1349
-
1350
- Properties of the `EditableHtmlButtonConfigure` object:
1351
-
1352
- ### `disabled` (boolean)
1353
-
1354
- Indicates if the plugin is disabled or not
1355
-
1356
- ## `CustomPlugin` (object)
1357
-
1358
- Properties of the `CustomPlugin` object:
1359
-
1360
- ### `event` (string, required)
1361
-
1362
- The name of the custom event. It needs to be valid (only letters, numbers and "_" can be used).
1363
- PIE will emit the event prefixed with "PIE-".
1364
- Eg: event = 'client_custom_event_A' => the emitted event will be "PIE-client_custom_event_A"
1365
-
1366
- ### `iconAlt` (string, required)
1367
-
1368
- The alt for the custom button icon
1369
-
1370
- ### `iconType` (string, required)
1371
-
1372
- The icon type.
1373
- Currently, only "SVG" is supported.
1374
-
1375
- ### `icon` (string, required)
1376
-
1377
- The icon string. Currently, only "SVG" is supported, so it needs to be a valid svg.
1378
-
1379
- ## `ConfigurePropWithEnabled` (object)
1380
-
1381
- Properties of the `ConfigurePropWithEnabled` object:
1382
-
1383
- ### `enabled` (boolean)
1384
-
1385
- Indicates the value of the item if it affects config-ui
1386
- (eg.: if item is a switch and displaying an input on the config-ui depends on the switch value: on/off)
1387
-
1388
- ### `settings` (boolean)
1389
-
1390
- Indicates if the item has to be displayed in the Settings Panel
1391
-
1392
- ### `label` (string)
1393
-
1394
- Indicates the label for the item that has to be displayed in the Settings Panel
1395
-
1396
- ## `EditableHtmlPluginConfigureRequired` (object)
1397
-
1398
- Properties of the `EditableHtmlPluginConfigureRequired` object:
1399
-
1400
- ### `inputConfiguration` (object)
1401
-
1402
- Properties of the `inputConfiguration` object:
1403
-
1404
- #### `math` (object)
1405
-
1406
- Properties of the `math` object:
1407
-
1408
- ##### `disabled` (boolean)
1409
-
1410
- Indicates if the plugin is disabled or not
1411
-
1412
- #### `audio` (object)
1413
-
1414
- Properties of the `audio` object:
1415
-
1416
- ##### `disabled` (boolean)
1417
-
1418
- Indicates if the plugin is disabled or not
1419
-
1420
- #### `video` (object)
1421
-
1422
- Properties of the `video` object:
1423
-
1424
- ##### `disabled` (boolean)
1425
-
1426
- Indicates if the plugin is disabled or not
1427
-
1428
- #### `image` (object)
1429
-
1430
- Properties of the `image` object:
1431
-
1432
- ##### `disabled` (boolean)
1433
-
1434
- Indicates if the plugin is disabled or not
1435
-
1436
- #### `customPlugins` (array)
1437
-
1438
- An array of objects that determine custom plugins.
1439
- A custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).
1440
- Example can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.
1441
-
1442
- The object is an array with all elements of the type `object`.
1443
-
1444
- The array object has the following properties:
1445
-
1446
- ##### `event` (string, required)
1447
-
1448
- The name of the custom event. It needs to be valid (only letters, numbers and "_" can be used).
1449
- PIE will emit the event prefixed with "PIE-".
1450
- Eg: event = 'client_custom_event_A' => the emitted event will be "PIE-client_custom_event_A"
1451
-
1452
- ##### `iconAlt` (string, required)
1453
-
1454
- The alt for the custom button icon
1455
-
1456
- ##### `iconType` (string, required)
1457
-
1458
- The icon type.
1459
- Currently, only "SVG" is supported.
1460
-
1461
- ##### `icon` (string, required)
1462
-
1463
- The icon string. Currently, only "SVG" is supported, so it needs to be a valid svg.
1464
-
1465
- #### `blockquote` (object)
1466
-
1467
- Properties of the `blockquote` object:
1468
-
1469
- ##### `disabled` (boolean)
1470
-
1471
- Indicates if the plugin is disabled or not
1472
-
1473
- #### `h3` (object)
1474
-
1475
- Properties of the `h3` object:
1476
-
1477
- ##### `disabled` (boolean)
1478
-
1479
- Indicates if the plugin is disabled or not
1480
-
1481
- #### `characters` (object)
1482
-
1483
- Properties of the `characters` object:
1484
-
1485
- ##### `disabled` (boolean)
1486
-
1487
- Indicates if the plugin is disabled or not
1488
-
1489
- #### `bold` (object)
1490
-
1491
- Properties of the `bold` object:
1492
-
1493
- ##### `disabled` (boolean)
1494
-
1495
- Indicates if the plugin is disabled or not
1496
-
1497
- #### `html` (object)
1498
-
1499
- Properties of the `html` object:
1500
-
1501
- ##### `disabled` (boolean)
1502
-
1503
- Indicates if the plugin is disabled or not
1504
-
1505
- #### `italic` (object)
1506
-
1507
- Properties of the `italic` object:
1508
-
1509
- ##### `disabled` (boolean)
1510
-
1511
- Indicates if the plugin is disabled or not
1512
-
1513
- #### `ol_list` (object)
1514
-
1515
- Properties of the `ol_list` object:
1516
-
1517
- ##### `disabled` (boolean)
1518
-
1519
- Indicates if the plugin is disabled or not
1520
-
1521
- #### `redo` (object)
1522
-
1523
- Properties of the `redo` object:
1524
-
1525
- ##### `disabled` (boolean)
1526
-
1527
- Indicates if the plugin is disabled or not
1528
-
1529
- #### `strikethrough` (object)
1530
-
1531
- Properties of the `strikethrough` object:
1532
-
1533
- ##### `disabled` (boolean)
1534
-
1535
- Indicates if the plugin is disabled or not
1536
-
1537
- #### `sub` (object)
1538
-
1539
- Properties of the `sub` object:
1540
-
1541
- ##### `disabled` (boolean)
1542
-
1543
- Indicates if the plugin is disabled or not
1544
-
1545
- #### `sup` (object)
1546
-
1547
- Properties of the `sup` object:
1548
-
1549
- ##### `disabled` (boolean)
1550
-
1551
- Indicates if the plugin is disabled or not
1552
-
1553
- #### `table` (object)
1554
-
1555
- Properties of the `table` object:
1556
-
1557
- ##### `disabled` (boolean)
1558
-
1559
- Indicates if the plugin is disabled or not
1560
-
1561
- #### `ul_list` (object)
1562
-
1563
- Properties of the `ul_list` object:
1564
-
1565
- ##### `disabled` (boolean)
1566
-
1567
- Indicates if the plugin is disabled or not
1568
-
1569
- #### `underline` (object)
1570
-
1571
- Properties of the `underline` object:
1572
-
1573
- ##### `disabled` (boolean)
1574
-
1575
- Indicates if the plugin is disabled or not
1576
-
1577
- #### `undo` (object)
1578
-
1579
- Properties of the `undo` object:
1580
-
1581
- ##### `disabled` (boolean)
1582
-
1583
- Indicates if the plugin is disabled or not
1584
-
1585
- ### `required` (boolean)
1586
-
1587
- Indicates if the item is required and the value cannot be empty
1588
-
1589
- ### `settings` (boolean)
1590
-
1591
- Indicates if the item has to be displayed in the Settings Panel
1592
-
1593
- ### `label` (string)
1594
-
1595
- Indicates the label for the item that has to be displayed in the Settings Panel
1596
-
1597
- ## `EditableHtmlPluginConfigure` (object)
1598
-
1599
- Properties of the `EditableHtmlPluginConfigure` object:
1600
-
1601
- ### `inputConfiguration` (object)
1602
-
1603
- Properties of the `inputConfiguration` object:
1604
-
1605
- #### `math` (object)
1606
-
1607
- Properties of the `math` object:
1608
-
1609
- ##### `disabled` (boolean)
1610
-
1611
- Indicates if the plugin is disabled or not
1612
-
1613
- #### `audio` (object)
1614
-
1615
- Properties of the `audio` object:
1616
-
1617
- ##### `disabled` (boolean)
1618
-
1619
- Indicates if the plugin is disabled or not
1620
-
1621
- #### `video` (object)
1622
-
1623
- Properties of the `video` object:
1624
-
1625
- ##### `disabled` (boolean)
1626
-
1627
- Indicates if the plugin is disabled or not
1628
-
1629
- #### `image` (object)
1630
-
1631
- Properties of the `image` object:
1632
-
1633
- ##### `disabled` (boolean)
1634
-
1635
- Indicates if the plugin is disabled or not
1636
-
1637
- #### `customPlugins` (array)
1638
-
1639
- An array of objects that determine custom plugins.
1640
- A custom plugin is an object which determines how the button will look like (icon) and the event name that will be triggered when button gets pressed (event).
1641
- Example can be found at https://github.com/pie-framework/pie-lib/blob/develop/packages/demo/pages/editable-html.js#L425.
1642
-
1643
- The object is an array with all elements of the type `object`.
1644
-
1645
- The array object has the following properties:
1646
-
1647
- ##### `event` (string, required)
1648
-
1649
- The name of the custom event. It needs to be valid (only letters, numbers and "_" can be used).
1650
- PIE will emit the event prefixed with "PIE-".
1651
- Eg: event = 'client_custom_event_A' => the emitted event will be "PIE-client_custom_event_A"
1652
-
1653
- ##### `iconAlt` (string, required)
1654
-
1655
- The alt for the custom button icon
1656
-
1657
- ##### `iconType` (string, required)
1658
-
1659
- The icon type.
1660
- Currently, only "SVG" is supported.
1661
-
1662
- ##### `icon` (string, required)
1663
-
1664
- The icon string. Currently, only "SVG" is supported, so it needs to be a valid svg.
1665
-
1666
- #### `blockquote` (object)
1667
-
1668
- Properties of the `blockquote` object:
1669
-
1670
- ##### `disabled` (boolean)
1671
-
1672
- Indicates if the plugin is disabled or not
1673
-
1674
- #### `h3` (object)
1675
-
1676
- Properties of the `h3` object:
1677
-
1678
- ##### `disabled` (boolean)
1679
-
1680
- Indicates if the plugin is disabled or not
1681
-
1682
- #### `characters` (object)
1683
-
1684
- Properties of the `characters` object:
1685
-
1686
- ##### `disabled` (boolean)
1687
-
1688
- Indicates if the plugin is disabled or not
1689
-
1690
- #### `bold` (object)
1691
-
1692
- Properties of the `bold` object:
1693
-
1694
- ##### `disabled` (boolean)
1695
-
1696
- Indicates if the plugin is disabled or not
1697
-
1698
- #### `html` (object)
1699
-
1700
- Properties of the `html` object:
1701
-
1702
- ##### `disabled` (boolean)
1703
-
1704
- Indicates if the plugin is disabled or not
1705
-
1706
- #### `italic` (object)
1707
-
1708
- Properties of the `italic` object:
1709
-
1710
- ##### `disabled` (boolean)
1711
-
1712
- Indicates if the plugin is disabled or not
1713
-
1714
- #### `ol_list` (object)
1715
-
1716
- Properties of the `ol_list` object:
1717
-
1718
- ##### `disabled` (boolean)
1719
-
1720
- Indicates if the plugin is disabled or not
1721
-
1722
- #### `redo` (object)
1723
-
1724
- Properties of the `redo` object:
1725
-
1726
- ##### `disabled` (boolean)
1727
-
1728
- Indicates if the plugin is disabled or not
1729
-
1730
- #### `strikethrough` (object)
1731
-
1732
- Properties of the `strikethrough` object:
1733
-
1734
- ##### `disabled` (boolean)
1735
-
1736
- Indicates if the plugin is disabled or not
1737
-
1738
- #### `sub` (object)
1739
-
1740
- Properties of the `sub` object:
1741
-
1742
- ##### `disabled` (boolean)
1743
-
1744
- Indicates if the plugin is disabled or not
1745
-
1746
- #### `sup` (object)
1747
-
1748
- Properties of the `sup` object:
1749
-
1750
- ##### `disabled` (boolean)
1751
-
1752
- Indicates if the plugin is disabled or not
1753
-
1754
- #### `table` (object)
1755
-
1756
- Properties of the `table` object:
1757
-
1758
- ##### `disabled` (boolean)
1759
-
1760
- Indicates if the plugin is disabled or not
1761
-
1762
- #### `ul_list` (object)
1763
-
1764
- Properties of the `ul_list` object:
1765
-
1766
- ##### `disabled` (boolean)
1767
-
1768
- Indicates if the plugin is disabled or not
1769
-
1770
- #### `underline` (object)
1771
-
1772
- Properties of the `underline` object:
1773
-
1774
- ##### `disabled` (boolean)
1775
-
1776
- Indicates if the plugin is disabled or not
1777
-
1778
- #### `undo` (object)
1779
-
1780
- Properties of the `undo` object:
1781
-
1782
- ##### `disabled` (boolean)
1783
-
1784
- Indicates if the plugin is disabled or not
1785
-
1786
- ### `settings` (boolean)
1787
-
1788
- Indicates if the item has to be displayed in the Settings Panel
1789
-
1790
- ### `label` (string)
1791
-
1792
- Indicates the label for the item that has to be displayed in the Settings Panel
1793
-
1794
- ## `NumberLineDimensions` (object)
1795
-
1796
- Properties of the `NumberLineDimensions` object:
1797
-
1798
- ### `settings` (boolean, required)
1799
-
1800
- ### `label` (string, required)
1801
-
1802
- ### `enabled` (boolean, required)
1803
-
1804
- ### `min` (number, required)
1805
-
1806
- ### `max` (number, required)
1807
-
1808
- ### `step` (number, required)
1809
-
1810
- ## `ConfigureProp` (object)
1811
-
1812
- Properties of the `ConfigureProp` object:
1813
-
1814
- ### `settings` (boolean)
1815
-
1816
- Indicates if the item has to be displayed in the Settings Panel
1817
-
1818
- ### `label` (string)
1819
-
1820
- Indicates the label for the item that has to be displayed in the Settings Panel
1821
-
1822
- ## `ConfigureMathMLProp` (object)
1823
-
1824
- Properties of the `ConfigureMathMLProp` object:
1825
-
1826
- ### `mmlOutput` (number)
1827
-
1828
- Indicates if model should have mathML output instead of latex
1829
-
1830
- ### `mmlEditing` (number)
1831
-
1832
- Indicates if mathML that's already in model should be editable
1833
-
1834
- ## `ConfigureLanguageOptionsProp` (object)
1835
-
1836
- Properties of the `ConfigureLanguageOptionsProp` object:
1837
-
1838
- ### `value` (string, required)
1839
-
1840
- Value of the language option
1841
-
1842
- ### `label` (string, required)
1843
-
1844
- Label of the language option