@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,937 @@
1
+ [
2
+ {
3
+ "type": "fix",
4
+ "scope": null,
5
+ "subject": "rm child prepack in favour of root prepack",
6
+ "merge": null,
7
+ "header": "fix: rm child prepack in favour of root prepack",
8
+ "body": null,
9
+ "footer": null,
10
+ "notes": [],
11
+ "hash": "381d8d6485269b641d8d4655148966d2e70803be",
12
+ "gitTags": "",
13
+ "committerDate": "2019-03-15 09:51:11 +0000",
14
+ "isTagged": true,
15
+ "tag": "@pie-lib/render-ui@4.3.8"
16
+ },
17
+ {
18
+ "type": "chore",
19
+ "scope": null,
20
+ "subject": "call changelog on prepack",
21
+ "merge": null,
22
+ "header": "chore: call changelog on prepack",
23
+ "body": null,
24
+ "footer": null,
25
+ "notes": [],
26
+ "hash": "b672c012de096c55b765a765f758da3fc5df2f90",
27
+ "gitTags": "",
28
+ "committerDate": "2019-03-13 23:00:44 +0000",
29
+ "isTagged": true,
30
+ "tag": "@pie-lib/render-ui@4.3.4"
31
+ },
32
+ {
33
+ "type": "chore",
34
+ "scope": null,
35
+ "subject": "generate changelog.json instead of markdown",
36
+ "merge": null,
37
+ "header": "chore: generate changelog.json instead of markdown",
38
+ "body": null,
39
+ "footer": null,
40
+ "notes": [],
41
+ "hash": "eaa5019a11f70c53425d55856bd3b940237f8c7d",
42
+ "gitTags": "",
43
+ "committerDate": "2019-03-13 17:24:09 +0000",
44
+ "isTagged": true,
45
+ "tag": "@pie-lib/render-ui@4.3.2"
46
+ },
47
+ {
48
+ "type": "feat",
49
+ "scope": null,
50
+ "subject": "libs version bump",
51
+ "merge": null,
52
+ "header": "feat: libs version bump",
53
+ "body": null,
54
+ "footer": null,
55
+ "notes": [],
56
+ "hash": "8effd430549ca4a0c975cfab7175b74361afcd7c",
57
+ "gitTags": "",
58
+ "committerDate": "2019-01-30 22:14:28 +0000",
59
+ "isTagged": true,
60
+ "tag": "@pie-lib/render-ui@4.3.0"
61
+ },
62
+ {
63
+ "type": "fix",
64
+ "scope": null,
65
+ "subject": "rm githead",
66
+ "merge": null,
67
+ "header": "fix: rm githead",
68
+ "body": null,
69
+ "footer": null,
70
+ "notes": [],
71
+ "hash": "a1523aabfe34697970bb94f3ed300603d9e11f74",
72
+ "gitTags": "",
73
+ "committerDate": "2018-09-12 14:44:09 +0100",
74
+ "isTagged": true,
75
+ "tag": "@pie-lib/render-ui@4.2.4"
76
+ },
77
+ {
78
+ "type": "chore",
79
+ "scope": null,
80
+ "subject": "fix snapshots",
81
+ "merge": null,
82
+ "header": "chore: fix snapshots",
83
+ "body": null,
84
+ "footer": null,
85
+ "notes": [],
86
+ "hash": "e3f81bd7b84a831409bbe10d84c4352b5cc77b2b",
87
+ "gitTags": "",
88
+ "committerDate": "2018-09-12 14:41:45 +0100",
89
+ "isTagged": true,
90
+ "tag": "@pie-lib/render-ui@4.2.4"
91
+ },
92
+ {
93
+ "type": "fix",
94
+ "scope": null,
95
+ "subject": "githead",
96
+ "merge": null,
97
+ "header": "fix: githead",
98
+ "body": null,
99
+ "footer": null,
100
+ "notes": [],
101
+ "hash": "3e485e0a7094496fd93d86a0500c75e343e9fac2",
102
+ "gitTags": "",
103
+ "committerDate": "2018-09-12 14:38:21 +0100",
104
+ "isTagged": true,
105
+ "tag": "@pie-lib/render-ui@4.2.4"
106
+ },
107
+ {
108
+ "type": "fix",
109
+ "scope": "render-ui",
110
+ "subject": "add named export for withUndoReset",
111
+ "merge": null,
112
+ "header": "fix(render-ui): add named export for withUndoReset",
113
+ "body": null,
114
+ "footer": null,
115
+ "notes": [],
116
+ "hash": "97203a26fc096b2a42a8983c2a31f3c172d26c63",
117
+ "gitTags": "",
118
+ "committerDate": "2018-08-01 14:40:01 +0300",
119
+ "isTagged": true,
120
+ "tag": "@pie-lib/render-ui@4.2.1"
121
+ },
122
+ {
123
+ "type": "chore",
124
+ "scope": "render-ui",
125
+ "subject": "added more targeted unit tests to withUndoReset",
126
+ "merge": null,
127
+ "header": "chore(render-ui): added more targeted unit tests to withUndoReset",
128
+ "body": null,
129
+ "footer": null,
130
+ "notes": [],
131
+ "hash": "8f1d6f39cbe5cb49abd317cfa1dbf81658209f22",
132
+ "gitTags": "",
133
+ "committerDate": "2018-07-30 15:27:27 +0300",
134
+ "isTagged": true,
135
+ "tag": "@pie-lib/render-ui@4.1.0"
136
+ },
137
+ {
138
+ "type": "chore",
139
+ "scope": "withUndoReset",
140
+ "subject": "added unit test",
141
+ "merge": null,
142
+ "header": "chore(withUndoReset): added unit test",
143
+ "body": null,
144
+ "footer": null,
145
+ "notes": [],
146
+ "hash": "fff1ce16d285e40a4337e74a16d91c474190f3cc",
147
+ "gitTags": "",
148
+ "committerDate": "2018-07-27 20:07:08 +0300",
149
+ "isTagged": true,
150
+ "tag": "@pie-lib/render-ui@4.1.0"
151
+ },
152
+ {
153
+ "type": "feat",
154
+ "scope": "render-ui",
155
+ "subject": "added undo-reset HoC support for undo-reset functionality",
156
+ "merge": null,
157
+ "header": "feat(render-ui): added undo-reset HoC support for undo-reset functionality",
158
+ "body": null,
159
+ "footer": null,
160
+ "notes": [],
161
+ "hash": "383ad4da77717b845010526175259e11025b114d",
162
+ "gitTags": "",
163
+ "committerDate": "2018-07-27 17:15:15 +0300",
164
+ "isTagged": true,
165
+ "tag": "@pie-lib/render-ui@4.1.0"
166
+ },
167
+ {
168
+ "type": "fix",
169
+ "scope": "demo",
170
+ "subject": "fix issues from mui update",
171
+ "merge": null,
172
+ "header": "fix(demo): fix issues from mui update",
173
+ "body": null,
174
+ "footer": null,
175
+ "notes": [],
176
+ "hash": "4f948e13ebb83cdb215b964b0f73a12c79d64167",
177
+ "gitTags": "",
178
+ "committerDate": "2018-05-16 09:07:43 -0400",
179
+ "isTagged": true,
180
+ "tag": "@pie-lib/render-ui@3.0.0"
181
+ },
182
+ {
183
+ "type": "feat",
184
+ "scope": null,
185
+ "subject": "upgrade material-ui -> @material-ui/core@^1.0.0-rc.1",
186
+ "merge": null,
187
+ "header": "feat: upgrade material-ui -> @material-ui/core@^1.0.0-rc.1",
188
+ "body": null,
189
+ "footer": null,
190
+ "notes": [],
191
+ "hash": "017ef6300f1fd345fc932496d25682a7981a4938",
192
+ "gitTags": "",
193
+ "committerDate": "2018-05-15 21:52:09 -0400",
194
+ "isTagged": true,
195
+ "tag": "@pie-lib/render-ui@2.1.0"
196
+ },
197
+ {
198
+ "type": "fix",
199
+ "scope": "lint",
200
+ "subject": "lint fixes",
201
+ "merge": null,
202
+ "header": "fix(lint): lint fixes",
203
+ "body": null,
204
+ "footer": null,
205
+ "notes": [],
206
+ "hash": "f0595831a75561d829c0f18f86ce5ea7feeb4ddd",
207
+ "gitTags": "",
208
+ "committerDate": "2018-05-09 13:35:42 -0400",
209
+ "isTagged": true,
210
+ "tag": "@pie-lib/render-ui@2.0.11"
211
+ },
212
+ {
213
+ "type": "fix",
214
+ "scope": "lint",
215
+ "subject": "automatic lint fixes",
216
+ "merge": null,
217
+ "header": "fix(lint): automatic lint fixes",
218
+ "body": null,
219
+ "footer": null,
220
+ "notes": [],
221
+ "hash": "7c9a2a42d3b27e09cd8660cb22abfed419c187d5",
222
+ "gitTags": "",
223
+ "committerDate": "2018-05-09 12:33:39 -0400",
224
+ "isTagged": true,
225
+ "tag": "@pie-lib/render-ui@2.0.11"
226
+ },
227
+ {
228
+ "type": "fix",
229
+ "scope": "dependencies",
230
+ "subject": "set material-ui version to ^1.0.0-beta.44",
231
+ "merge": null,
232
+ "header": "fix(dependencies): set material-ui version to ^1.0.0-beta.44",
233
+ "body": null,
234
+ "footer": null,
235
+ "notes": [],
236
+ "hash": "6fd66bc6b4359a32c378f64cd3a315f1a551875e",
237
+ "gitTags": "",
238
+ "committerDate": "2018-04-30 11:38:04 -0400",
239
+ "isTagged": true,
240
+ "tag": "@pie-lib/render-ui@2.0.10"
241
+ },
242
+ {
243
+ "type": "fix",
244
+ "scope": "dependencies",
245
+ "subject": "lock material-ui to 1.0.0-beta.44",
246
+ "merge": null,
247
+ "header": "fix(dependencies): lock material-ui to 1.0.0-beta.44",
248
+ "body": null,
249
+ "footer": null,
250
+ "notes": [],
251
+ "hash": "60df8e6e6147962cd6fae9bc81638c4c75c0c9e9",
252
+ "gitTags": "",
253
+ "committerDate": "2018-04-30 11:27:53 -0400",
254
+ "isTagged": true,
255
+ "tag": "@pie-lib/render-ui@2.0.10"
256
+ },
257
+ {
258
+ "type": "fix",
259
+ "scope": "dependencies",
260
+ "subject": "lock material-ui to 1.0.0-beta.43",
261
+ "merge": null,
262
+ "header": "fix(dependencies): lock material-ui to 1.0.0-beta.43",
263
+ "body": null,
264
+ "footer": null,
265
+ "notes": [],
266
+ "hash": "2a3e087cadb03b428aec80948032eb644864f77c",
267
+ "gitTags": "",
268
+ "committerDate": "2018-04-30 11:19:39 -0400",
269
+ "isTagged": true,
270
+ "tag": "@pie-lib/render-ui@2.0.10"
271
+ },
272
+ {
273
+ "type": "fix",
274
+ "scope": "dependencies",
275
+ "subject": "upgrade material-ui",
276
+ "merge": null,
277
+ "header": "fix(dependencies): upgrade material-ui",
278
+ "body": null,
279
+ "footer": null,
280
+ "notes": [],
281
+ "hash": "b94b50ef8f89beec45b488d92f4e95661c22c501",
282
+ "gitTags": "",
283
+ "committerDate": "2018-04-30 10:56:18 -0400",
284
+ "isTagged": true,
285
+ "tag": "@pie-lib/render-ui@2.0.10"
286
+ },
287
+ {
288
+ "type": "fix",
289
+ "scope": "dependencies",
290
+ "subject": "version bump",
291
+ "merge": null,
292
+ "header": "fix(dependencies): version bump",
293
+ "body": null,
294
+ "footer": null,
295
+ "notes": [],
296
+ "hash": "3f6766bb5d0bf60fcfbc8150501d4c213a797727",
297
+ "gitTags": "",
298
+ "committerDate": "2018-04-24 09:42:40 -0400",
299
+ "isTagged": true,
300
+ "tag": "@pie-lib/render-ui@2.0.10"
301
+ },
302
+ {
303
+ "type": "fix",
304
+ "scope": "build",
305
+ "subject": "remove jsx from path name",
306
+ "merge": null,
307
+ "header": "fix(build): remove jsx from path name",
308
+ "body": null,
309
+ "footer": null,
310
+ "notes": [],
311
+ "hash": "a6dd64157b0230096a2937f8bd07703afda1411e",
312
+ "gitTags": "",
313
+ "committerDate": "2018-04-20 12:53:36 -0400",
314
+ "isTagged": true,
315
+ "tag": "@pie-lib/render-ui@2.0.10"
316
+ },
317
+ {
318
+ "type": "fix",
319
+ "scope": "test",
320
+ "subject": "normalize tests",
321
+ "merge": null,
322
+ "header": "fix(test): normalize tests",
323
+ "body": null,
324
+ "footer": null,
325
+ "notes": [],
326
+ "hash": "b86b3d9bbe94b88a5c9b2473c26beec637e23672",
327
+ "gitTags": "",
328
+ "committerDate": "2018-04-19 22:25:09 -0400",
329
+ "isTagged": true,
330
+ "tag": "@pie-lib/render-ui@2.0.10"
331
+ },
332
+ {
333
+ "type": "fix",
334
+ "scope": "dependencies",
335
+ "subject": "bump react version",
336
+ "merge": null,
337
+ "header": "fix(dependencies): bump react version",
338
+ "body": null,
339
+ "footer": "BREAKING CHANGE: requires react@^16.3.1",
340
+ "notes": [
341
+ {
342
+ "title": "BREAKING CHANGE",
343
+ "text": "requires react@^16.3.1"
344
+ }
345
+ ],
346
+ "hash": "0169b4a7ca7fb91a06cd4d3d2fe661a3d777b3f5",
347
+ "gitTags": "",
348
+ "committerDate": "2018-04-13 14:08:43 -0400",
349
+ "isTagged": true,
350
+ "tag": "@pie-lib/render-ui@1.0.0"
351
+ },
352
+ {
353
+ "type": "chore",
354
+ "scope": null,
355
+ "subject": "update dependencies",
356
+ "merge": null,
357
+ "header": "chore: update dependencies",
358
+ "body": null,
359
+ "footer": null,
360
+ "notes": [],
361
+ "hash": "bbd1bfcabfaa85802df710b4a59c25ba8ff9fd51",
362
+ "gitTags": "",
363
+ "committerDate": "2018-03-06 13:31:35 -0500",
364
+ "isTagged": true,
365
+ "tag": "@pie-lib/render-ui@0.1.14"
366
+ },
367
+ {
368
+ "type": "fix",
369
+ "scope": "render-ui",
370
+ "subject": "Added PreviewLayout to render-ui.",
371
+ "merge": null,
372
+ "header": "fix(render-ui): Added PreviewLayout to render-ui.",
373
+ "body": null,
374
+ "footer": null,
375
+ "notes": [],
376
+ "hash": "6522faf59388cb5e1fe0f88de89a7543aa82648b",
377
+ "gitTags": "",
378
+ "committerDate": "2019-04-17 15:55:39 +0300",
379
+ "isTagged": true,
380
+ "tag": "@pie-lib/render-ui@4.3.9"
381
+ },
382
+ {
383
+ "type": "fix",
384
+ "scope": null,
385
+ "subject": "Added className property on Collapsible wrapper.",
386
+ "merge": null,
387
+ "header": "fix: Added className property on Collapsible wrapper.",
388
+ "body": null,
389
+ "footer": null,
390
+ "notes": [],
391
+ "hash": "4c5f39bd580af660c78d488e0dabb6e0bb9f5fb4",
392
+ "gitTags": "",
393
+ "committerDate": "2019-05-15 13:02:25 +0300",
394
+ "isTagged": true,
395
+ "tag": "@pie-lib/render-ui@4.3.12"
396
+ },
397
+ {
398
+ "type": "chore",
399
+ "scope": "merge",
400
+ "subject": "merged with develop",
401
+ "merge": null,
402
+ "header": "chore(merge): merged with develop",
403
+ "body": null,
404
+ "footer": null,
405
+ "notes": [],
406
+ "hash": "e68506cf63b2a17973821bb0cfef40828faccd1f",
407
+ "gitTags": "",
408
+ "committerDate": "2019-05-21 06:26:54 +0300",
409
+ "isTagged": true,
410
+ "tag": "@pie-lib/render-ui@4.3.14"
411
+ },
412
+ {
413
+ "type": "feat",
414
+ "scope": null,
415
+ "subject": "version bumps",
416
+ "merge": null,
417
+ "header": "feat: version bumps",
418
+ "body": null,
419
+ "footer": null,
420
+ "notes": [],
421
+ "hash": "23eb54f95e4b6480e2f8c5b336627a7f3bc2f428",
422
+ "gitTags": "",
423
+ "committerDate": "2019-06-10 15:24:32 +0100",
424
+ "isTagged": true,
425
+ "tag": "@pie-lib/render-ui@4.4.0"
426
+ },
427
+ {
428
+ "type": "feat",
429
+ "scope": null,
430
+ "subject": "add HtmlAndMath from @pie-lib/math-rendering",
431
+ "merge": null,
432
+ "header": "feat: add HtmlAndMath from @pie-lib/math-rendering",
433
+ "body": null,
434
+ "footer": null,
435
+ "notes": [],
436
+ "hash": "05121b39325ebb26dc4cec96d895ccbe6697eb09",
437
+ "gitTags": " (origin/develop, origin/HEAD)",
438
+ "committerDate": "2019-12-12 21:08:04 +0000",
439
+ "isTagged": true,
440
+ "tag": "@pie-lib/render-ui@4.5.0"
441
+ },
442
+ {
443
+ "type": "fix",
444
+ "scope": null,
445
+ "subject": "missing dependency prop-types",
446
+ "merge": null,
447
+ "header": "fix: missing dependency prop-types",
448
+ "body": null,
449
+ "footer": null,
450
+ "notes": [],
451
+ "hash": "cfff0e9f49a4fd01db7656ee90dc646a8eb2862a",
452
+ "gitTags": " (develop)",
453
+ "committerDate": "2020-02-20 12:55:22 +0000",
454
+ "isTagged": true,
455
+ "tag": "@pie-lib/render-ui@4.5.6"
456
+ },
457
+ {
458
+ "type": "fix",
459
+ "scope": null,
460
+ "subject": "add react-dom to peer deps",
461
+ "merge": null,
462
+ "header": "fix: add react-dom to peer deps",
463
+ "body": null,
464
+ "footer": null,
465
+ "notes": [],
466
+ "hash": "1fb5a059e2f590d47de05a7566d683d18e5564d3",
467
+ "gitTags": "",
468
+ "committerDate": "2020-02-25 10:38:55 +0000",
469
+ "isTagged": true,
470
+ "tag": "@pie-lib/render-ui@4.5.7"
471
+ },
472
+ {
473
+ "type": "feat",
474
+ "scope": null,
475
+ "subject": "add module entry point",
476
+ "merge": null,
477
+ "header": "feat: add module entry point",
478
+ "body": null,
479
+ "footer": null,
480
+ "notes": [],
481
+ "hash": "59b0d09b71f6d217e5fb4ee5ba3dba38afd10398",
482
+ "gitTags": " (develop)",
483
+ "committerDate": "2020-03-18 14:58:19 +0000",
484
+ "isTagged": true,
485
+ "tag": "@pie-lib/render-ui@4.6.0"
486
+ },
487
+ {
488
+ "type": "fix",
489
+ "scope": null,
490
+ "subject": "add src to pkg",
491
+ "merge": null,
492
+ "header": "fix: add src to pkg",
493
+ "body": null,
494
+ "footer": null,
495
+ "notes": [],
496
+ "hash": "f37d16e2a598be7e1562ca397f71bfebea60d0c0",
497
+ "gitTags": "",
498
+ "committerDate": "2020-03-18 15:12:21 +0000",
499
+ "isTagged": true,
500
+ "tag": "@pie-lib/render-ui@4.6.1"
501
+ },
502
+ {
503
+ "type": "fix",
504
+ "scope": null,
505
+ "subject": "ignore __tests__ in src",
506
+ "merge": null,
507
+ "header": "fix: ignore __tests__ in src",
508
+ "body": null,
509
+ "footer": null,
510
+ "notes": [],
511
+ "hash": "710b4836e32c2d4588cafbc74e35ff9f651d924c",
512
+ "gitTags": " (develop)",
513
+ "committerDate": "2020-03-18 15:19:48 +0000",
514
+ "isTagged": true,
515
+ "tag": "@pie-lib/render-ui@4.6.2"
516
+ },
517
+ {
518
+ "type": "fix",
519
+ "scope": null,
520
+ "subject": "es6 export syntax",
521
+ "merge": null,
522
+ "header": "fix: es6 export syntax",
523
+ "body": null,
524
+ "footer": null,
525
+ "notes": [],
526
+ "hash": "8a02dda1c1feb2d4656aae191bdca08cbe561081",
527
+ "gitTags": "",
528
+ "committerDate": "2020-03-18 15:29:19 +0000",
529
+ "isTagged": true,
530
+ "tag": "@pie-lib/render-ui@4.6.3"
531
+ },
532
+ {
533
+ "type": "fix",
534
+ "scope": null,
535
+ "subject": "ignore __mocks__ in src",
536
+ "merge": null,
537
+ "header": "fix: ignore __mocks__ in src",
538
+ "body": null,
539
+ "footer": null,
540
+ "notes": [],
541
+ "hash": "c107bf8c3503387c8f3be3892e9954024c5a715f",
542
+ "gitTags": "",
543
+ "committerDate": "2020-03-18 15:25:00 +0000",
544
+ "isTagged": true,
545
+ "tag": "@pie-lib/render-ui@4.6.3"
546
+ },
547
+ {
548
+ "type": "feat",
549
+ "scope": "es6",
550
+ "subject": "updated index file and yarn",
551
+ "merge": null,
552
+ "header": "feat(es6): updated index file and yarn",
553
+ "body": null,
554
+ "footer": null,
555
+ "notes": [],
556
+ "hash": "2e044491eee7f5dd9a0186facff3496e12ffd445",
557
+ "gitTags": " (develop)",
558
+ "committerDate": "2020-03-23 10:41:00 +0200",
559
+ "isTagged": true,
560
+ "tag": "@pie-lib/render-ui@4.7.0"
561
+ },
562
+ {
563
+ "type": "feat",
564
+ "scope": "es6",
565
+ "subject": "updated index file to update package",
566
+ "merge": null,
567
+ "header": "feat(es6): updated index file to update package",
568
+ "body": null,
569
+ "footer": null,
570
+ "notes": [],
571
+ "hash": "646f225f876c7a6f5a3aed570a80a2a01a79aa17",
572
+ "gitTags": "",
573
+ "committerDate": "2020-03-23 10:36:16 +0200",
574
+ "isTagged": true,
575
+ "tag": "@pie-lib/render-ui@4.7.0"
576
+ },
577
+ {
578
+ "type": "fix",
579
+ "scope": null,
580
+ "subject": "proper export of InputContainer",
581
+ "merge": null,
582
+ "header": "fix: proper export of InputContainer",
583
+ "body": null,
584
+ "footer": null,
585
+ "notes": [],
586
+ "hash": "cd5d597fefb53a0145ac1220678223b1dabead44",
587
+ "gitTags": " (develop)",
588
+ "committerDate": "2020-03-23 22:08:11 +0000",
589
+ "isTagged": true,
590
+ "tag": "@pie-lib/render-ui@4.7.1"
591
+ },
592
+ {
593
+ "type": "fix",
594
+ "scope": null,
595
+ "subject": "add module prop to package.json",
596
+ "merge": null,
597
+ "header": "fix: add module prop to package.json",
598
+ "body": null,
599
+ "footer": null,
600
+ "notes": [],
601
+ "hash": "494ace58f9aae2e1e3e1c1f6bb4a61264bc4561a",
602
+ "gitTags": "",
603
+ "committerDate": "2020-03-30 13:03:08 +0100",
604
+ "isTagged": true,
605
+ "tag": "@pie-lib/render-ui@4.7.4"
606
+ },
607
+ {
608
+ "type": "fix",
609
+ "scope": null,
610
+ "subject": "PD-54: Small font in Input Container.",
611
+ "merge": null,
612
+ "header": "fix: PD-54: Small font in Input Container.",
613
+ "body": null,
614
+ "footer": null,
615
+ "notes": [],
616
+ "hash": "0a32d3a0258c4a74c99cddd7044b24f1bad3a586",
617
+ "gitTags": " (origin/fix/PD-54-input-container-font-size)",
618
+ "committerDate": "2020-04-27 09:40:15 +0300",
619
+ "isTagged": true,
620
+ "tag": "@pie-lib/render-ui@4.7.16"
621
+ },
622
+ {
623
+ "type": "feat",
624
+ "scope": null,
625
+ "subject": "add color custom properties PD-308",
626
+ "merge": null,
627
+ "header": "feat: add color custom properties PD-308",
628
+ "body": "* add color module\n* update correct-answer-toggle to use `color.text()`\n* update feedback to use `color.correct()` and `color.incorrect()`",
629
+ "footer": null,
630
+ "notes": [],
631
+ "hash": "8d7bc2b07e151b1595e2fea471371fe8399816c9",
632
+ "gitTags": " (origin/feat/PD-308-colors)",
633
+ "committerDate": "2020-06-05 11:18:15 +0100",
634
+ "isTagged": true,
635
+ "tag": "@pie-lib/render-ui@4.8.0"
636
+ },
637
+ {
638
+ "type": "fix",
639
+ "scope": null,
640
+ "subject": "rm pie-background for now",
641
+ "merge": null,
642
+ "header": "fix: rm pie-background for now",
643
+ "body": null,
644
+ "footer": null,
645
+ "notes": [],
646
+ "hash": "5fd024a878378b4ebb709c61c9bb246320f2d3ab",
647
+ "gitTags": " (develop)",
648
+ "committerDate": "2020-08-21 20:53:44 +0100",
649
+ "isTagged": true,
650
+ "tag": "@pie-lib/render-ui@4.8.2"
651
+ },
652
+ {
653
+ "type": "fix",
654
+ "scope": "color",
655
+ "subject": "retain background",
656
+ "merge": null,
657
+ "header": "fix(color): retain background",
658
+ "body": null,
659
+ "footer": null,
660
+ "notes": [],
661
+ "hash": "077e6ce7fc4cf7eabb8976aabcf6fb6f98f7ef67",
662
+ "gitTags": " (develop)",
663
+ "committerDate": "2020-09-11 12:31:19 +0100",
664
+ "isTagged": true,
665
+ "tag": "@pie-lib/render-ui@4.8.3"
666
+ },
667
+ {
668
+ "type": "feat",
669
+ "scope": null,
670
+ "subject": "add light/dark variations to primary/secondary",
671
+ "merge": null,
672
+ "header": "feat: add light/dark variations to primary/secondary",
673
+ "body": null,
674
+ "footer": null,
675
+ "notes": [],
676
+ "hash": "97d1ac69a7bcf799ae34c43b12fbded0e886f600",
677
+ "gitTags": " (origin/feat/color-extension)",
678
+ "committerDate": "2020-09-25 13:43:52 +0100",
679
+ "isTagged": true,
680
+ "tag": "@pie-lib/render-ui@4.9.0"
681
+ },
682
+ {
683
+ "type": "fix",
684
+ "scope": null,
685
+ "subject": "formatting",
686
+ "merge": null,
687
+ "header": "fix: formatting",
688
+ "body": null,
689
+ "footer": null,
690
+ "notes": [],
691
+ "hash": "754bb7571081fd768b2e8a99e8fc3d726684a7ad",
692
+ "gitTags": " (develop)",
693
+ "committerDate": "2020-10-29 10:32:37 +0000",
694
+ "isTagged": true,
695
+ "tag": "@pie-lib/render-ui@4.9.4"
696
+ },
697
+ {
698
+ "type": "fix",
699
+ "scope": null,
700
+ "subject": "typo",
701
+ "merge": null,
702
+ "header": "fix: typo",
703
+ "body": null,
704
+ "footer": null,
705
+ "notes": [],
706
+ "hash": "0cb17c9582f00002fdaf9dcac67443fbf6502b3f",
707
+ "gitTags": "",
708
+ "committerDate": "2020-10-29 10:27:04 +0000",
709
+ "isTagged": true,
710
+ "tag": "@pie-lib/render-ui@4.9.4"
711
+ },
712
+ {
713
+ "type": "fix",
714
+ "scope": null,
715
+ "subject": "snapshot test",
716
+ "merge": null,
717
+ "header": "fix: snapshot test",
718
+ "body": null,
719
+ "footer": null,
720
+ "notes": [],
721
+ "hash": "a86e5e85e03545e8c4ddaf808916553586141d80",
722
+ "gitTags": " (origin/develop, origin/HEAD)",
723
+ "committerDate": "2020-10-28 11:27:45 +0000",
724
+ "isTagged": true,
725
+ "tag": "@pie-lib/render-ui@4.9.4"
726
+ },
727
+ {
728
+ "type": "fix",
729
+ "scope": null,
730
+ "subject": "removed console log that are added in test file PD-342",
731
+ "merge": null,
732
+ "header": "fix: removed console log that are added in test file PD-342",
733
+ "body": null,
734
+ "footer": null,
735
+ "notes": [],
736
+ "hash": "2c9d2e540545b5643af9348fb35ce398573e4d80",
737
+ "gitTags": "",
738
+ "committerDate": "2020-10-28 12:13:05 +0530",
739
+ "isTagged": true,
740
+ "tag": "@pie-lib/render-ui@4.9.4"
741
+ },
742
+ {
743
+ "type": "fix",
744
+ "scope": null,
745
+ "subject": "Modified code for suggested changes and addes snapshots PD-342",
746
+ "merge": null,
747
+ "header": "fix: Modified code for suggested changes and addes snapshots PD-342",
748
+ "body": null,
749
+ "footer": null,
750
+ "notes": [],
751
+ "hash": "fbaa88e95ba2935398bc0044609e83bf466dc9a0",
752
+ "gitTags": "",
753
+ "committerDate": "2020-10-28 11:46:34 +0530",
754
+ "isTagged": true,
755
+ "tag": "@pie-lib/render-ui@4.9.4"
756
+ },
757
+ {
758
+ "type": "fix",
759
+ "scope": null,
760
+ "subject": "Modified code for suggested changes and addes snapshots PD-342",
761
+ "merge": null,
762
+ "header": "fix: Modified code for suggested changes and addes snapshots PD-342",
763
+ "body": null,
764
+ "footer": null,
765
+ "notes": [],
766
+ "hash": "dd436276e3b15da60ce4db3197f75d84ae5835a6",
767
+ "gitTags": "",
768
+ "committerDate": "2020-10-28 11:04:45 +0530",
769
+ "isTagged": true,
770
+ "tag": "@pie-lib/render-ui@4.9.4"
771
+ },
772
+ {
773
+ "type": "fix",
774
+ "scope": null,
775
+ "subject": "Modified code for suggested changes and addes snapshots PD-342",
776
+ "merge": null,
777
+ "header": "fix: Modified code for suggested changes and addes snapshots PD-342",
778
+ "body": null,
779
+ "footer": null,
780
+ "notes": [],
781
+ "hash": "d9b76dbc3bffbe1c3b1c2f4665db0ecbb02a77ed",
782
+ "gitTags": "",
783
+ "committerDate": "2020-10-28 10:50:05 +0530",
784
+ "isTagged": true,
785
+ "tag": "@pie-lib/render-ui@4.9.4"
786
+ },
787
+ {
788
+ "type": "fix",
789
+ "scope": null,
790
+ "subject": "Authored table borders are not visible in preview PD-342",
791
+ "merge": null,
792
+ "header": "fix: Authored table borders are not visible in preview PD-342",
793
+ "body": null,
794
+ "footer": null,
795
+ "notes": [],
796
+ "hash": "cb86c558a26d8aef2f180055e8a33785aa23ea36",
797
+ "gitTags": "",
798
+ "committerDate": "2020-10-21 23:04:31 +0530",
799
+ "isTagged": true,
800
+ "tag": "@pie-lib/render-ui@4.9.4"
801
+ },
802
+ {
803
+ "type": "feat",
804
+ "scope": "render-ui",
805
+ "subject": "pie-purpose wrapper component added - PD-579",
806
+ "merge": null,
807
+ "header": "feat(render-ui): pie-purpose wrapper component added - PD-579",
808
+ "body": null,
809
+ "footer": null,
810
+ "notes": [],
811
+ "hash": "308f553463c428794f69ba48b14e096f99733c4e",
812
+ "gitTags": "",
813
+ "committerDate": "2020-11-17 14:16:25 +0200",
814
+ "isTagged": true,
815
+ "tag": "@pie-lib/render-ui@4.10.0"
816
+ },
817
+ {
818
+ "type": "feat",
819
+ "scope": "render-ui",
820
+ "subject": "add readable component for pie tagging",
821
+ "merge": null,
822
+ "header": "feat(render-ui): add readable component for pie tagging",
823
+ "body": null,
824
+ "footer": null,
825
+ "notes": [],
826
+ "hash": "5b76d67a89bb20cbc60bb1fc577296e6655fb3d6",
827
+ "gitTags": "",
828
+ "committerDate": "2020-11-02 16:42:12 +0200",
829
+ "isTagged": true,
830
+ "tag": "@pie-lib/render-ui@4.10.0"
831
+ },
832
+ {
833
+ "type": "fix",
834
+ "scope": "render-ui",
835
+ "subject": "make sure prompt replace has a value",
836
+ "merge": null,
837
+ "header": "fix(render-ui): make sure prompt replace has a value",
838
+ "body": null,
839
+ "footer": null,
840
+ "notes": [],
841
+ "hash": "093fef7c25ac7bd52eb108430da791734eaff89f",
842
+ "gitTags": " (origin/fix/render-ui-prompt-fix)",
843
+ "committerDate": "2021-01-28 15:00:54 +0200",
844
+ "isTagged": true,
845
+ "tag": "@pie-lib/render-ui@4.10.3"
846
+ },
847
+ {
848
+ "type": "feat",
849
+ "scope": "render-ui",
850
+ "subject": "add secondary background color",
851
+ "merge": null,
852
+ "header": "feat(render-ui): add secondary background color",
853
+ "body": null,
854
+ "footer": null,
855
+ "notes": [],
856
+ "hash": "c9cc0a8c3124128c598d4cd18ec141d0ac75211e",
857
+ "gitTags": " (origin/feat/render-ui-add-secondary-background-color)",
858
+ "committerDate": "2021-02-12 15:56:08 +0200",
859
+ "isTagged": true,
860
+ "tag": "@pie-lib/render-ui@4.11.0"
861
+ },
862
+ {
863
+ "type": "fix",
864
+ "scope": "render-ui",
865
+ "subject": "create function that parses html in order to fix PD-771",
866
+ "merge": null,
867
+ "header": "fix(render-ui): create function that parses html in order to fix PD-771",
868
+ "body": null,
869
+ "footer": null,
870
+ "notes": [],
871
+ "hash": "6bf9c5dc88040fb18f7a66343746b9d698f405c0",
872
+ "gitTags": "",
873
+ "committerDate": "2021-02-22 12:50:12 +0200",
874
+ "isTagged": true,
875
+ "tag": "@pie-lib/render-ui@4.11.4"
876
+ },
877
+ {
878
+ "type": "fix",
879
+ "scope": "render-ui",
880
+ "subject": "render math for collapsible to fix PD-772",
881
+ "merge": null,
882
+ "header": "fix(render-ui): render math for collapsible to fix PD-772",
883
+ "body": null,
884
+ "footer": null,
885
+ "notes": [],
886
+ "hash": "f0ef3843d4042f9beda41cd9d0066a4f9ef4c6a7",
887
+ "gitTags": " (origin/fix/render-ui-render-math-for-collapsible)",
888
+ "committerDate": "2021-02-19 15:13:41 +0200",
889
+ "isTagged": true,
890
+ "tag": "@pie-lib/render-ui@4.11.4"
891
+ },
892
+ {
893
+ "type": "fix",
894
+ "scope": "editable-html",
895
+ "subject": "add refs for editors, fix propTypes warnings for PD-1230",
896
+ "merge": null,
897
+ "header": "fix(editable-html): add refs for editors, fix propTypes warnings for PD-1230",
898
+ "body": null,
899
+ "footer": null,
900
+ "notes": [],
901
+ "hash": "c6e3a2abc105d2c08ecc12b1b4c7c089f857d966",
902
+ "gitTags": " (origin/fix/PD-1230)",
903
+ "committerDate": "2021-07-14 13:54:44 +0300",
904
+ "isTagged": true,
905
+ "tag": "@pie-lib/render-ui@4.11.8"
906
+ },
907
+ {
908
+ "type": "fix",
909
+ "scope": "render-ui",
910
+ "subject": "text should serve as selector for multiple-choice questions PD-1227",
911
+ "merge": null,
912
+ "header": "fix(render-ui): text should serve as selector for multiple-choice questions PD-1227",
913
+ "body": null,
914
+ "footer": null,
915
+ "notes": [],
916
+ "hash": "133549b51ec52bfdfb2535c846c175fe661c015e",
917
+ "gitTags": " (origin/fix/PD-1227)",
918
+ "committerDate": "2021-08-04 11:33:03 +0300",
919
+ "isTagged": true,
920
+ "tag": "@pie-lib/render-ui@4.11.9"
921
+ },
922
+ {
923
+ "type": "feat",
924
+ "scope": "preview-prompt",
925
+ "subject": "add defaultClassName prop for static classname for pie-print",
926
+ "merge": null,
927
+ "header": "feat(preview-prompt): add defaultClassName prop for static classname for pie-print",
928
+ "body": null,
929
+ "footer": null,
930
+ "notes": [],
931
+ "hash": "7ca55ba0daaa807f9157f5cb1825ca620dba1672",
932
+ "gitTags": "",
933
+ "committerDate": "2021-08-30 11:27:45 +0300",
934
+ "isTagged": true,
935
+ "tag": "@pie-lib/render-ui@4.12.0"
936
+ }
937
+ ]