@pie-element/ebsr 7.0.22 → 7.0.24-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (144) hide show
  1. package/CHANGELOG.md +0 -16
  2. package/configure/CHANGELOG.md +0 -16
  3. package/configure/lib/main.js +6 -4
  4. package/configure/lib/main.js.map +1 -1
  5. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.json +1972 -0
  6. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.md +1793 -0
  7. package/{LICENSE.md → configure/node_modules/@pie-element/multiple-choice/LICENSE.md} +0 -0
  8. package/configure/node_modules/@pie-element/multiple-choice/PRINT.md +35 -0
  9. package/configure/node_modules/@pie-element/multiple-choice/README.md +56 -0
  10. package/configure/node_modules/@pie-element/multiple-choice/choice.png +0 -0
  11. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.json +1387 -0
  12. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.md +1334 -0
  13. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js +104 -0
  14. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js.map +1 -0
  15. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js +198 -0
  16. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js.map +1 -0
  17. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js +599 -0
  18. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js.map +1 -0
  19. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js +18 -0
  20. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js.map +1 -0
  21. package/configure/node_modules/@pie-element/multiple-choice/configure/package.json +20 -0
  22. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.json +527 -0
  23. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.md +768 -0
  24. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js +18 -0
  25. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js.map +1 -0
  26. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js +305 -0
  27. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js.map +1 -0
  28. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js +36 -0
  29. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js.map +1 -0
  30. package/configure/node_modules/@pie-element/multiple-choice/controller/package.json +15 -0
  31. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json +353 -0
  32. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json.md +277 -0
  33. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/config.js +8 -0
  34. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/generate.js +52 -0
  35. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/index.html +1 -0
  36. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/session.js +7 -0
  37. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json +338 -0
  38. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json.md +274 -0
  39. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js +298 -0
  40. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js.map +1 -0
  41. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js +157 -0
  42. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js.map +1 -0
  43. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js +174 -0
  44. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js.map +1 -0
  45. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js +151 -0
  46. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js.map +1 -0
  47. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js +97 -0
  48. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js.map +1 -0
  49. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js +254 -0
  50. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js.map +1 -0
  51. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js +129 -0
  52. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js.map +1 -0
  53. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js +35 -0
  54. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js.map +1 -0
  55. package/configure/node_modules/@pie-element/multiple-choice/module/configure.js +843 -0
  56. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/controller.js +17304 -17374
  57. package/configure/node_modules/@pie-element/multiple-choice/module/demo.js +77 -0
  58. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/element.js +42 -171
  59. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/index.html +1 -1
  60. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/manifest.json +4 -4
  61. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print-demo.js +46 -46
  62. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print.html +1 -1
  63. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print.js +70 -259
  64. package/configure/node_modules/@pie-element/multiple-choice/package.json +34 -0
  65. package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.json +672 -0
  66. package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.md +427 -0
  67. package/configure/node_modules/@pie-lib/math-rendering/LICENSE.md +5 -0
  68. package/configure/node_modules/@pie-lib/math-rendering/lib/index.js +30 -0
  69. package/configure/node_modules/@pie-lib/math-rendering/lib/index.js.map +1 -0
  70. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js +316 -0
  71. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js.map +1 -0
  72. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js +23 -0
  73. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js.map +1 -0
  74. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js +123 -0
  75. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js.map +1 -0
  76. package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js +103 -0
  77. package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js.map +1 -0
  78. package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js +275 -0
  79. package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js.map +1 -0
  80. package/configure/node_modules/@pie-lib/math-rendering/package.json +19 -0
  81. package/configure/node_modules/@pie-lib/math-rendering/playground/demo.html +872 -0
  82. package/configure/node_modules/@pie-lib/math-rendering/playground/demo.js +108 -0
  83. package/configure/node_modules/@pie-lib/math-rendering/playground/main.html +156 -0
  84. package/configure/node_modules/@pie-lib/math-rendering/playground/main.js +16 -0
  85. package/configure/node_modules/@pie-lib/math-rendering/playground/webpack.config.js +29 -0
  86. package/configure/node_modules/@pie-lib/math-rendering/src/index.js +4 -0
  87. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/chtml.js +215 -0
  88. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/index.js +13 -0
  89. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/mml.js +24 -0
  90. package/configure/node_modules/@pie-lib/math-rendering/src/normalization.js +69 -0
  91. package/configure/node_modules/@pie-lib/math-rendering/src/render-math.js +234 -0
  92. package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.json +937 -0
  93. package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.md +602 -0
  94. package/configure/node_modules/@pie-lib/render-ui/LICENSE.md +5 -0
  95. package/configure/node_modules/@pie-lib/render-ui/README.md +33 -0
  96. package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js +146 -0
  97. package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js.map +1 -0
  98. package/configure/node_modules/@pie-lib/render-ui/lib/color.js +134 -0
  99. package/configure/node_modules/@pie-lib/render-ui/lib/color.js.map +1 -0
  100. package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js +160 -0
  101. package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js.map +1 -0
  102. package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js +24 -0
  103. package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js.map +1 -0
  104. package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js +102 -0
  105. package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js.map +1 -0
  106. package/configure/node_modules/@pie-lib/render-ui/lib/index.js +104 -0
  107. package/configure/node_modules/@pie-lib/render-ui/lib/index.js.map +1 -0
  108. package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js +60 -0
  109. package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js.map +1 -0
  110. package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js +133 -0
  111. package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js.map +1 -0
  112. package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js +162 -0
  113. package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js.map +1 -0
  114. package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js +28 -0
  115. package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js.map +1 -0
  116. package/configure/node_modules/@pie-lib/render-ui/lib/readable.js +28 -0
  117. package/configure/node_modules/@pie-lib/render-ui/lib/readable.js.map +1 -0
  118. package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js +160 -0
  119. package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js.map +1 -0
  120. package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js +206 -0
  121. package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js.map +1 -0
  122. package/configure/node_modules/@pie-lib/render-ui/package.json +30 -0
  123. package/configure/node_modules/@pie-lib/render-ui/src/collapsible/index.jsx +68 -0
  124. package/configure/node_modules/@pie-lib/render-ui/src/color.js +48 -0
  125. package/configure/node_modules/@pie-lib/render-ui/src/feedback.jsx +100 -0
  126. package/configure/node_modules/@pie-lib/render-ui/src/has-text.js +14 -0
  127. package/configure/node_modules/@pie-lib/render-ui/src/html-and-math.js +40 -0
  128. package/configure/node_modules/@pie-lib/render-ui/src/index.js +27 -0
  129. package/configure/node_modules/@pie-lib/render-ui/src/input-container.jsx +41 -0
  130. package/configure/node_modules/@pie-lib/render-ui/src/preview-layout.jsx +77 -0
  131. package/configure/node_modules/@pie-lib/render-ui/src/preview-prompt.jsx +90 -0
  132. package/configure/node_modules/@pie-lib/render-ui/src/purpose.jsx +19 -0
  133. package/configure/node_modules/@pie-lib/render-ui/src/readable.jsx +19 -0
  134. package/configure/node_modules/@pie-lib/render-ui/src/response-indicators.jsx +89 -0
  135. package/configure/node_modules/@pie-lib/render-ui/src/withUndoReset.jsx +118 -0
  136. package/configure/package.json +3 -3
  137. package/configure/src/__tests__/index.test.js +4 -2
  138. package/configure/src/main.jsx +8 -3
  139. package/controller/lib/index.js +79 -3
  140. package/controller/lib/index.js.map +1 -1
  141. package/controller/src/index.js +55 -0
  142. package/package.json +3 -3
  143. package/module/configure.js +0 -472
  144. package/module/demo.js +0 -77
@@ -0,0 +1,427 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [2.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.13...@pie-lib/math-rendering@2.4.0) (2022-04-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * tests ([90d79c4](https://github.com/pie-framework/pie-lib/commit/90d79c4b8c61c029959a729ba1eea1d69a3f2cbe))
12
+
13
+
14
+ ### Features
15
+
16
+ * add data-mathml attribute on MathJax containers to be able to use with Text to Speech (TTS) PD-1499 ([df50318](https://github.com/pie-framework/pie-lib/commit/df503184814f0463ef588e468570db3f7d2651df))
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.3.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.12...@pie-lib/math-rendering@2.3.13) (2022-03-21)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **math-rendering:** fix line spacing for mathjax mspace PD-1384 ([57fe827](https://github.com/pie-framework/pie-lib/commit/57fe827372c81138b35f294f16327c291872c8a2))
28
+
29
+
30
+
31
+
32
+
33
+ ## [2.3.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.11...@pie-lib/math-rendering@2.3.12) (2021-11-29)
34
+
35
+ **Note:** Version bump only for package @pie-lib/math-rendering
36
+
37
+
38
+
39
+
40
+
41
+ ## [2.3.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.10...@pie-lib/math-rendering@2.3.11) (2021-09-08)
42
+
43
+ **Note:** Version bump only for package @pie-lib/math-rendering
44
+
45
+
46
+
47
+
48
+
49
+ ## [2.3.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.9...@pie-lib/math-rendering@2.3.10) (2021-09-08)
50
+
51
+
52
+ ### Bug Fixes
53
+
54
+ * wip ([fe4316d](https://github.com/pie-framework/pie-lib/commit/fe4316d))
55
+
56
+
57
+
58
+
59
+
60
+ ## [2.3.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.8...@pie-lib/math-rendering@2.3.9) (2021-08-30)
61
+
62
+
63
+ ### Bug Fixes
64
+
65
+ * **math-rendering:** fix symbols in math markup that trigger undefined control sequence error PD-1267, PD-368, PD-1173 ([a7d9934](https://github.com/pie-framework/pie-lib/commit/a7d9934))
66
+
67
+
68
+
69
+
70
+
71
+ ## [2.3.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.6...@pie-lib/math-rendering@2.3.8) (2021-06-25)
72
+
73
+ **Note:** Version bump only for package @pie-lib/math-rendering
74
+
75
+ ## [2.3.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.5...@pie-lib/math-rendering@2.3.6) (2021-03-01)
76
+
77
+ **Note:** Version bump only for package @pie-lib/math-rendering
78
+
79
+ ## [2.3.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.4...@pie-lib/math-rendering@2.3.5) (2021-03-01)
80
+
81
+ ### Bug Fixes
82
+
83
+ - **math-rendering:** linebreak rendering fixed for mathquill custom elements - PD-787 ([5216f6a](https://github.com/pie-framework/pie-lib/commit/5216f6a))
84
+
85
+ ## [2.3.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.3...@pie-lib/math-rendering@2.3.4) (2021-02-15)
86
+
87
+ **Note:** Version bump only for package @pie-lib/math-rendering
88
+
89
+ ## [2.3.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.1...@pie-lib/math-rendering@2.3.3) (2021-02-15)
90
+
91
+ **Note:** Version bump only for package @pie-lib/math-rendering
92
+
93
+ ## [2.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.3.0...@pie-lib/math-rendering@2.3.1) (2021-01-28)
94
+
95
+ ### Bug Fixes
96
+
97
+ - add lodash dependency ([de2227f](https://github.com/pie-framework/pie-lib/commit/de2227f))
98
+
99
+ # [2.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.2.4...@pie-lib/math-rendering@2.3.0) (2021-01-25)
100
+
101
+ ### Features
102
+
103
+ - demo changes include for the issue PD-368 ([c493d9f](https://github.com/pie-framework/pie-lib/commit/c493d9f))
104
+
105
+ ## [2.2.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.2.3...@pie-lib/math-rendering@2.2.4) (2021-01-11)
106
+
107
+ **Note:** Version bump only for package @pie-lib/math-rendering
108
+
109
+ ## [2.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.2.2...@pie-lib/math-rendering@2.2.3) (2020-10-26)
110
+
111
+ **Note:** Version bump only for package @pie-lib/math-rendering
112
+
113
+ ## [2.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.2.1...@pie-lib/math-rendering@2.2.2) (2020-10-26)
114
+
115
+ **Note:** Version bump only for package @pie-lib/math-rendering
116
+
117
+ ## [2.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.2.0...@pie-lib/math-rendering@2.2.1) (2020-10-19)
118
+
119
+ ### Bug Fixes
120
+
121
+ - rm non-standard static prop ([6af197b](https://github.com/pie-framework/pie-lib/commit/6af197b))
122
+
123
+ # [2.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.12...@pie-lib/math-rendering@2.2.0) (2020-09-18)
124
+
125
+ ### Bug Fixes
126
+
127
+ - tests ([72b0dec](https://github.com/pie-framework/pie-lib/commit/72b0dec))
128
+
129
+ ### Features
130
+
131
+ - add basic mstack support to mathjax PD-519 ([60eb3d1](https://github.com/pie-framework/pie-lib/commit/60eb3d1))
132
+
133
+ ## [2.1.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.11...@pie-lib/math-rendering@2.1.12) (2020-04-14)
134
+
135
+ **Note:** Version bump only for package @pie-lib/math-rendering
136
+
137
+ ## [2.1.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.10...@pie-lib/math-rendering@2.1.11) (2020-04-08)
138
+
139
+ **Note:** Version bump only for package @pie-lib/math-rendering
140
+
141
+ ## [2.1.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.9...@pie-lib/math-rendering@2.1.10) (2020-03-31)
142
+
143
+ **Note:** Version bump only for package @pie-lib/math-rendering
144
+
145
+ ## [2.1.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.8...@pie-lib/math-rendering@2.1.9) (2020-03-31)
146
+
147
+ **Note:** Version bump only for package @pie-lib/math-rendering
148
+
149
+ ## [2.1.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.7...@pie-lib/math-rendering@2.1.8) (2020-03-31)
150
+
151
+ ### Bug Fixes
152
+
153
+ - use es import ([3debced](https://github.com/pie-framework/pie-lib/commit/3debced))
154
+
155
+ ## [2.1.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.6...@pie-lib/math-rendering@2.1.7) (2020-03-30)
156
+
157
+ **Note:** Version bump only for package @pie-lib/math-rendering
158
+
159
+ ## [2.1.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.5...@pie-lib/math-rendering@2.1.6) (2020-03-30)
160
+
161
+ **Note:** Version bump only for package @pie-lib/math-rendering
162
+
163
+ ## [2.1.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.4...@pie-lib/math-rendering@2.1.5) (2020-03-30)
164
+
165
+ **Note:** Version bump only for package @pie-lib/math-rendering
166
+
167
+ ## [2.1.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.3...@pie-lib/math-rendering@2.1.4) (2020-03-30)
168
+
169
+ **Note:** Version bump only for package @pie-lib/math-rendering
170
+
171
+ ## [2.1.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.2...@pie-lib/math-rendering@2.1.3) (2020-03-30)
172
+
173
+ **Note:** Version bump only for package @pie-lib/math-rendering
174
+
175
+ ## [2.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.1...@pie-lib/math-rendering@2.1.2) (2020-03-30)
176
+
177
+ **Note:** Version bump only for package @pie-lib/math-rendering
178
+
179
+ ## [2.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.1.0...@pie-lib/math-rendering@2.1.1) (2020-03-30)
180
+
181
+ ### Bug Fixes
182
+
183
+ - add module ([9e6db95](https://github.com/pie-framework/pie-lib/commit/9e6db95))
184
+
185
+ # [2.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.0.3...@pie-lib/math-rendering@2.1.0) (2019-12-18)
186
+
187
+ ### Features
188
+
189
+ - **math:** made sure there is only one instance of mathjax on the page [ch6048](<[b0c7395](https://github.com/pie-framework/pie-lib/commit/b0c7395)>)
190
+
191
+ ## [2.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.0.2...@pie-lib/math-rendering@2.0.3) (2019-12-13)
192
+
193
+ ### Bug Fixes
194
+
195
+ - namespace global to pkg.name + major version ([0dc8650](https://github.com/pie-framework/pie-lib/commit/0dc8650))
196
+
197
+ ## [2.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@2.0.0...@pie-lib/math-rendering@2.0.2) (2019-12-13)
198
+
199
+ ### Bug Fixes
200
+
201
+ - bump version to avoid conflict ([0910cf9](https://github.com/pie-framework/pie-lib/commit/0910cf9))
202
+
203
+ # [2.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.3.7...@pie-lib/math-rendering@2.0.0) (2019-12-12)
204
+
205
+ ### Features
206
+
207
+ - remove HtmlAndMath ([34a3d8d](https://github.com/pie-framework/pie-lib/commit/34a3d8d))
208
+ - upgrade to mathax-full@^3.0.0 ([994998d](https://github.com/pie-framework/pie-lib/commit/994998d))
209
+
210
+ ### BREAKING CHANGES
211
+
212
+ - `HtmlAndMath` is now in `@pie-lib/render-ui`.
213
+
214
+ # [1.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.3.7...@pie-lib/math-rendering@1.4.0) (2019-12-12)
215
+
216
+ ### Features
217
+
218
+ - upgrade to mathax-full@^3.0.0 ([994998d](https://github.com/pie-framework/pie-lib/commit/994998d))
219
+
220
+ ## [1.3.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.3.6...@pie-lib/math-rendering@1.3.7) (2019-08-21)
221
+
222
+ **Note:** Version bump only for package @pie-lib/math-rendering
223
+
224
+ ## [1.3.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.3.5...@pie-lib/math-rendering@1.3.6) (2019-08-16)
225
+
226
+ ### Bug Fixes
227
+
228
+ - **renderMath:** added an if for elements that already have math rendered [ch3365], and [ch1915](<[3189a69](https://github.com/pie-framework/pie-lib/commit/3189a69)>)
229
+
230
+ ## [1.3.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.3.4...@pie-lib/math-rendering@1.3.5) (2019-08-16)
231
+
232
+ ### Bug Fixes
233
+
234
+ - **renderMath:** fixed the math rendering all over the app [ch3365], and [ch1915](<[2b0df91](https://github.com/pie-framework/pie-lib/commit/2b0df91)>)
235
+
236
+ ## [1.3.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.3.3...@pie-lib/math-rendering@1.3.4) (2019-07-08)
237
+
238
+ **Note:** Version bump only for package @pie-lib/math-rendering
239
+
240
+ ## [1.3.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.3.2...@pie-lib/math-rendering@1.3.3) (2019-07-05)
241
+
242
+ **Note:** Version bump only for package @pie-lib/math-rendering
243
+
244
+ ## [1.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.3.1...@pie-lib/math-rendering@1.3.2) (2019-07-02)
245
+
246
+ **Note:** Version bump only for package @pie-lib/math-rendering
247
+
248
+ ## [1.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.3.0...@pie-lib/math-rendering@1.3.1) (2019-06-17)
249
+
250
+ **Note:** Version bump only for package @pie-lib/math-rendering
251
+
252
+ # [1.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.12...@pie-lib/math-rendering@1.3.0) (2019-06-12)
253
+
254
+ ### Features
255
+
256
+ - version bumps ([23eb54f](https://github.com/pie-framework/pie-lib/commit/23eb54f))
257
+
258
+ ## [1.2.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.11...@pie-lib/math-rendering@1.2.12) (2019-06-05)
259
+
260
+ **Note:** Version bump only for package @pie-lib/math-rendering
261
+
262
+ ## [1.2.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.10...@pie-lib/math-rendering@1.2.11) (2019-05-22)
263
+
264
+ ### Bug Fixes
265
+
266
+ - fontUrl - rm rawgit, use unpkg.com ([e3c840a](https://github.com/pie-framework/pie-lib/commit/e3c840a))
267
+
268
+ ## [1.2.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.9...@pie-lib/math-rendering@1.2.10) (2019-05-22)
269
+
270
+ ### Bug Fixes
271
+
272
+ - bump mathjax3 to 3.0.0-beta.4 ([3f0a655](https://github.com/pie-framework/pie-lib/commit/3f0a655))
273
+
274
+ ## [1.2.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.8...@pie-lib/math-rendering@1.2.9) (2019-03-15)
275
+
276
+ ### Bug Fixes
277
+
278
+ - rm child prepack in favour of root prepack ([381d8d6](https://github.com/pie-framework/pie-lib/commit/381d8d6))
279
+
280
+ ## [1.2.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.7...@pie-lib/math-rendering@1.2.8) (2019-03-14)
281
+
282
+ **Note:** Version bump only for package @pie-lib/math-rendering
283
+
284
+ ## [1.2.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.6...@pie-lib/math-rendering@1.2.7) (2019-03-14)
285
+
286
+ **Note:** Version bump only for package @pie-lib/math-rendering
287
+
288
+ ## [1.2.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.5...@pie-lib/math-rendering@1.2.6) (2019-03-14)
289
+
290
+ **Note:** Version bump only for package @pie-lib/math-rendering
291
+
292
+ ## [1.2.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.4...@pie-lib/math-rendering@1.2.5) (2019-03-14)
293
+
294
+ **Note:** Version bump only for package @pie-lib/math-rendering
295
+
296
+ ## [1.2.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.3...@pie-lib/math-rendering@1.2.4) (2019-03-13)
297
+
298
+ **Note:** Version bump only for package @pie-lib/math-rendering
299
+
300
+ ## [1.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.2...@pie-lib/math-rendering@1.2.3) (2019-03-13)
301
+
302
+ **Note:** Version bump only for package @pie-lib/math-rendering
303
+
304
+ ## [1.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.1...@pie-lib/math-rendering@1.2.2) (2019-03-13)
305
+
306
+ **Note:** Version bump only for package @pie-lib/math-rendering
307
+
308
+ ## [1.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.2.0...@pie-lib/math-rendering@1.2.1) (2019-01-30)
309
+
310
+ **Note:** Version bump only for package @pie-lib/math-rendering
311
+
312
+ # [1.2.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.1.2...@pie-lib/math-rendering@1.2.0) (2019-01-30)
313
+
314
+ ### Bug Fixes
315
+
316
+ - fix loading of browserAdaptor ([bb233ed](https://github.com/pie-framework/pie-lib/commit/bb233ed))
317
+
318
+ ### Features
319
+
320
+ - libs version bump ([da36192](https://github.com/pie-framework/pie-lib/commit/da36192))
321
+
322
+ <a name="1.1.2"></a>
323
+
324
+ ## [1.1.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.1.1...@pie-lib/math-rendering@1.1.2) (2018-12-11)
325
+
326
+ ### Bug Fixes
327
+
328
+ - **math-rendering:** fixed the name of the file ([69e05fc](https://github.com/pie-framework/pie-lib/commit/69e05fc))
329
+
330
+ <a name="1.1.1"></a>
331
+
332
+ ## [1.1.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.1.0...@pie-lib/math-rendering@1.1.1) (2018-12-11)
333
+
334
+ ### Bug Fixes
335
+
336
+ - **editable-html:** added tests for the wrap / unwrap methods ([7e8ac89](https://github.com/pie-framework/pie-lib/commit/7e8ac89))
337
+ - **editable-html-and-math-rendering:** moved the wrap and unwrap math functions to the math-rendering package and used it there as well ([e68f955](https://github.com/pie-framework/pie-lib/commit/e68f955))
338
+ - **math-rendering:** added tests ([7b3dbfa](https://github.com/pie-framework/pie-lib/commit/7b3dbfa))
339
+
340
+ <a name="1.1.0"></a>
341
+
342
+ # [1.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.0.1...@pie-lib/math-rendering@1.1.0) (2018-09-14)
343
+
344
+ ### Features
345
+
346
+ - allow latex rendering of \$ to enabled through a global ([168f6b6](https://github.com/pie-framework/pie-lib/commit/168f6b6))
347
+
348
+ <a name="1.0.1"></a>
349
+
350
+ ## [1.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@1.0.0...@pie-lib/math-rendering@1.0.1) (2018-09-13)
351
+
352
+ ### Bug Fixes
353
+
354
+ - set export correctly as default ([3154124](https://github.com/pie-framework/pie-lib/commit/3154124))
355
+
356
+ <a name="1.0.0"></a>
357
+
358
+ # [1.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@0.5.0...@pie-lib/math-rendering@1.0.0) (2018-09-13)
359
+
360
+ ### Features
361
+
362
+ - use mathjax 3 beta for rendering ([c3c920f](https://github.com/pie-framework/pie-lib/commit/c3c920f))
363
+
364
+ ### BREAKING CHANGES
365
+
366
+ - Single dollar support must be explicitly enabled using `renderMath({useSingleDollar: true})`
367
+
368
+ <a name="0.5.0"></a>
369
+
370
+ # [0.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@0.2.3...@pie-lib/math-rendering@0.5.0) (2018-09-12)
371
+
372
+ ### Bug Fixes
373
+
374
+ - bump katex ([743df95](https://github.com/pie-framework/pie-lib/commit/743df95))
375
+ - githead ([3e485e0](https://github.com/pie-framework/pie-lib/commit/3e485e0))
376
+ - rm githead ([a1523aa](https://github.com/pie-framework/pie-lib/commit/a1523aa))
377
+
378
+ ### Features
379
+
380
+ - renderMath now accepts either an Element or an array-like of Element. ([2bd9423](https://github.com/pie-framework/pie-lib/commit/2bd9423))
381
+
382
+ <a name="0.4.0"></a>
383
+
384
+ # [0.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@0.2.3...@pie-lib/math-rendering@0.4.0) (2018-09-12)
385
+
386
+ ### Features
387
+
388
+ - renderMath now accepts either an Element or an array-like of Element. ([2bd9423](https://github.com/pie-framework/pie-lib/commit/2bd9423))
389
+
390
+ <a name="0.3.0"></a>
391
+
392
+ # [0.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@0.2.3...@pie-lib/math-rendering@0.3.0) (2018-09-12)
393
+
394
+ ### Features
395
+
396
+ - renderMath now accepts either an Element or an array-like of Element. ([2bd9423](https://github.com/pie-framework/pie-lib/commit/2bd9423))
397
+
398
+ <a name="0.2.3"></a>
399
+
400
+ ## [0.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@0.2.2...@pie-lib/math-rendering@0.2.3) (2018-08-17)
401
+
402
+ **Note:** Version bump only for package @pie-lib/math-rendering
403
+
404
+ <a name="0.2.2"></a>
405
+
406
+ ## [0.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@0.2.1...@pie-lib/math-rendering@0.2.2) (2018-08-10)
407
+
408
+ ### Bug Fixes
409
+
410
+ - fix html setter ([00253c4](https://github.com/pie-framework/pie-lib/commit/00253c4))
411
+ - fix tag name ([7291eb2](https://github.com/pie-framework/pie-lib/commit/7291eb2))
412
+
413
+ <a name="0.2.1"></a>
414
+
415
+ ## [0.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/math-rendering@0.2.0...@pie-lib/math-rendering@0.2.1) (2018-08-10)
416
+
417
+ ### Bug Fixes
418
+
419
+ - export HtmlAndMath ([b446ed2](https://github.com/pie-framework/pie-lib/commit/b446ed2))
420
+
421
+ <a name="0.2.0"></a>
422
+
423
+ # 0.2.0 (2018-08-10)
424
+
425
+ ### Features
426
+
427
+ - new package [@pie-lib](https://github.com/pie-lib)/math-rendering (supercedes player-utils) ([7fd4f1a](https://github.com/pie-framework/pie-lib/commit/7fd4f1a))
@@ -0,0 +1,5 @@
1
+ Copyright 2019 CoreSpring Inc
2
+
3
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
4
+
5
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "renderMath", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _renderMath["default"];
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "unWrapMath", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _normalization.unWrapMath;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "wrapMath", {
19
+ enumerable: true,
20
+ get: function get() {
21
+ return _normalization.wrapMath;
22
+ }
23
+ });
24
+
25
+ var _renderMath = _interopRequireDefault(require("./render-math"));
26
+
27
+ var _normalization = require("./normalization");
28
+
29
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
30
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AACA","sourcesContent":["import renderMath from './render-math';\nimport { wrapMath, unWrapMath } from './normalization';\n\nexport { renderMath, wrapMath, unWrapMath };\n"],"file":"index.js"}