@pie-element/ebsr 12.3.4-next.0 → 13.0.0-beta.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.
- package/configure/lib/defaults.js +23 -36
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/index.js +114 -202
- package/configure/lib/index.js.map +1 -1
- package/configure/lib/main.js +188 -271
- package/configure/lib/main.js.map +1 -1
- package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.json +1972 -0
- package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.md +4213 -0
- package/configure/node_modules/@pie-element/multiple-choice/PRINT.md +35 -0
- package/configure/node_modules/@pie-element/multiple-choice/README.md +56 -0
- package/configure/node_modules/@pie-element/multiple-choice/choice.png +0 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.json +1387 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.md +3351 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/__tests__/root.test.js +248 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js +200 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js +211 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js +477 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js +18 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/package.json +22 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.json +527 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.md +2316 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/__tests__/index.test.js +520 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/__tests__/utils.test.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js +33 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js +251 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js +16 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/package.json +15 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json +2993 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json.md +2217 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/config.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/generate.js +61 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/index.html +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/pie.manifest.json +11 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/session.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json +1332 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json.md +1015 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/__tests__/choice-input-test.js +117 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/__tests__/index-test.js +151 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/__tests__/key-events-test.js +95 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/__tests__/multiple-choice-test.js +223 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/__tests__/session-updater-test.js +70 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js +370 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js +197 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js +130 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/index.js +292 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/main.js +54 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/main.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js +386 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/print.js +92 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/print.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js +37 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/package.json +39 -0
- package/configure/package.json +9 -6
- package/configure/src/__tests__/index.test.js +99 -108
- package/configure/src/index.js +13 -6
- package/configure/src/main.jsx +14 -18
- package/controller/lib/defaults.js +20 -32
- package/controller/lib/defaults.js.map +1 -1
- package/controller/lib/index.js +224 -349
- package/controller/lib/index.js.map +1 -1
- package/controller/lib/utils.js +4 -18
- package/controller/lib/utils.js.map +1 -1
- package/controller/package.json +3 -3
- package/lib/index.js +113 -181
- package/lib/index.js.map +1 -1
- package/lib/print.js +120 -204
- package/lib/print.js.map +1 -1
- package/package.json +5 -9
- package/src/__tests__/index.test.js +18 -5
- package/configure/src/__tests__/__snapshots__/index.test.js.snap +0 -83
- package/module/configure.js +0 -1
- package/module/controller.js +0 -6469
- package/module/demo.js +0 -77
- package/module/element.js +0 -1
- package/module/index.html +0 -21
- package/module/manifest.json +0 -14
- package/module/print-demo.js +0 -115
- package/module/print.html +0 -18
- package/module/print.js +0 -1
|
@@ -0,0 +1,1387 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "feat",
|
|
4
|
+
"scope": "general",
|
|
5
|
+
"subject": "initialize default model (#129)",
|
|
6
|
+
"merge": null,
|
|
7
|
+
"header": "feat(general): initialize default model (#129)",
|
|
8
|
+
"body": "* feat: initialize empty README\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* fix: add babel-transform-runtime in order to support async/await\n\n* bump yarn lock\n\n* update snapshots",
|
|
9
|
+
"footer": null,
|
|
10
|
+
"notes": [],
|
|
11
|
+
"hash": "b62d0585a86c8e2fbe5a6181b869a28c1131756b",
|
|
12
|
+
"gitTags": "",
|
|
13
|
+
"committerDate": "2019-03-12 15:47:20 -0400",
|
|
14
|
+
"isTagged": true,
|
|
15
|
+
"tag": "@pie-element/multiple-choice-configure@0.7.0"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "feat",
|
|
19
|
+
"scope": null,
|
|
20
|
+
"subject": "all elements on `develop` target @next releases",
|
|
21
|
+
"merge": null,
|
|
22
|
+
"header": "feat: all elements on `develop` target @next releases",
|
|
23
|
+
"body": "To allow us to build a `preview` version of the elements, we release\n`next` versions of `pie-elements` on each push to `develop`. This branch\nshould in turn target any other preview packages (aka @pie-ui/*).\n\nWhen we merge to master, a `pre-push` hooks prevents us from pushing if\nwe haven't resolved all the `next` versions.\n\n* use babel 7\n* use build-helper `Commands`",
|
|
24
|
+
"footer": null,
|
|
25
|
+
"notes": [],
|
|
26
|
+
"hash": "d3766e679f8442b55efc659e59242b6dfa6356a0",
|
|
27
|
+
"gitTags": "",
|
|
28
|
+
"committerDate": "2019-02-19 19:46:59 +0000",
|
|
29
|
+
"isTagged": true,
|
|
30
|
+
"tag": "@pie-element/multiple-choice-configure@0.7.0"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"type": "feat",
|
|
34
|
+
"scope": "multiple-choice",
|
|
35
|
+
"subject": "reimplemented the new design",
|
|
36
|
+
"merge": null,
|
|
37
|
+
"header": "feat(multiple-choice): reimplemented the new design",
|
|
38
|
+
"body": null,
|
|
39
|
+
"footer": null,
|
|
40
|
+
"notes": [],
|
|
41
|
+
"hash": "10c3b9bcc491c53618264db48e52be9abe5a8741",
|
|
42
|
+
"gitTags": "",
|
|
43
|
+
"committerDate": "2019-02-13 22:01:21 +0200",
|
|
44
|
+
"isTagged": true,
|
|
45
|
+
"tag": "@pie-element/multiple-choice-configure@0.6.0"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"type": "feat",
|
|
49
|
+
"scope": "multiple-choice",
|
|
50
|
+
"subject": "added a third option for the choices label and also fixed a configuration property name",
|
|
51
|
+
"merge": null,
|
|
52
|
+
"header": "feat(multiple-choice): added a third option for the choices label and also fixed a configuration property name",
|
|
53
|
+
"body": null,
|
|
54
|
+
"footer": null,
|
|
55
|
+
"notes": [],
|
|
56
|
+
"hash": "2f6d28d848f0646b625370419ef6f4baa8284f72",
|
|
57
|
+
"gitTags": "",
|
|
58
|
+
"committerDate": "2019-01-11 20:06:51 +0200",
|
|
59
|
+
"isTagged": true,
|
|
60
|
+
"tag": "@pie-element/multiple-choice-configure@0.5.0"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"type": "fix",
|
|
64
|
+
"scope": "multiple-choice",
|
|
65
|
+
"subject": "fixed a warning",
|
|
66
|
+
"merge": null,
|
|
67
|
+
"header": "fix(multiple-choice): fixed a warning",
|
|
68
|
+
"body": null,
|
|
69
|
+
"footer": null,
|
|
70
|
+
"notes": [],
|
|
71
|
+
"hash": "c8ccb3604d9bf3b5df5fb81afdafcd969f49f0aa",
|
|
72
|
+
"gitTags": " (origin/feat/multiple-choice-customization)",
|
|
73
|
+
"committerDate": "2019-01-11 19:08:58 +0200",
|
|
74
|
+
"isTagged": true,
|
|
75
|
+
"tag": "@pie-element/multiple-choice-configure@0.5.0"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"type": "feat",
|
|
79
|
+
"scope": "multiple-choice",
|
|
80
|
+
"subject": "made some change to the customization properties",
|
|
81
|
+
"merge": null,
|
|
82
|
+
"header": "feat(multiple-choice): made some change to the customization properties",
|
|
83
|
+
"body": null,
|
|
84
|
+
"footer": null,
|
|
85
|
+
"notes": [],
|
|
86
|
+
"hash": "6f0d1b65d38fd08d3fd539a21f1e6840bec206a3",
|
|
87
|
+
"gitTags": "",
|
|
88
|
+
"committerDate": "2019-01-11 19:07:28 +0200",
|
|
89
|
+
"isTagged": true,
|
|
90
|
+
"tag": "@pie-element/multiple-choice-configure@0.5.0"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"type": "feat",
|
|
94
|
+
"scope": "multiple-choice",
|
|
95
|
+
"subject": "made some change in order to be able to publish a new version",
|
|
96
|
+
"merge": null,
|
|
97
|
+
"header": "feat(multiple-choice): made some change in order to be able to publish a new version",
|
|
98
|
+
"body": null,
|
|
99
|
+
"footer": null,
|
|
100
|
+
"notes": [],
|
|
101
|
+
"hash": "2be2aaeef102e50cea824caaf94bb1db1a506f68",
|
|
102
|
+
"gitTags": "",
|
|
103
|
+
"committerDate": "2019-01-11 15:05:10 +0200",
|
|
104
|
+
"isTagged": true,
|
|
105
|
+
"tag": "@pie-element/multiple-choice-configure@0.5.0"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"type": "feat",
|
|
109
|
+
"scope": "multiple-choice",
|
|
110
|
+
"subject": "changed the behaviour when enableShowPrompt is false",
|
|
111
|
+
"merge": null,
|
|
112
|
+
"header": "feat(multiple-choice): changed the behaviour when enableShowPrompt is false",
|
|
113
|
+
"body": null,
|
|
114
|
+
"footer": null,
|
|
115
|
+
"notes": [],
|
|
116
|
+
"hash": "5edaad1cc2a0c40bf0edf8724ed64689df8fbea3",
|
|
117
|
+
"gitTags": "",
|
|
118
|
+
"committerDate": "2019-01-11 14:46:26 +0200",
|
|
119
|
+
"isTagged": true,
|
|
120
|
+
"tag": "@pie-element/multiple-choice-configure@0.5.0"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"type": "feat",
|
|
124
|
+
"scope": "multiple-choice",
|
|
125
|
+
"subject": "added a configurable property for the multiple-choice configure element and fixed some names for the customization properties",
|
|
126
|
+
"merge": null,
|
|
127
|
+
"header": "feat(multiple-choice): added a configurable property for the multiple-choice configure element and fixed some names for the customization properties",
|
|
128
|
+
"body": null,
|
|
129
|
+
"footer": null,
|
|
130
|
+
"notes": [],
|
|
131
|
+
"hash": "9959eda57dd054e8ea9642607aa60c2e9e07a78c",
|
|
132
|
+
"gitTags": "",
|
|
133
|
+
"committerDate": "2019-01-11 09:54:34 +0200",
|
|
134
|
+
"isTagged": true,
|
|
135
|
+
"tag": "@pie-element/multiple-choice-configure@0.5.0"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"type": "fix",
|
|
139
|
+
"scope": "multiple-choice",
|
|
140
|
+
"subject": "bumped the editable-html version",
|
|
141
|
+
"merge": null,
|
|
142
|
+
"header": "fix(multiple-choice): bumped the editable-html version",
|
|
143
|
+
"body": null,
|
|
144
|
+
"footer": null,
|
|
145
|
+
"notes": [],
|
|
146
|
+
"hash": "220b1474de565535aa207019fd829d5dc224fcd7",
|
|
147
|
+
"gitTags": "",
|
|
148
|
+
"committerDate": "2019-01-08 14:37:46 +0200",
|
|
149
|
+
"isTagged": true,
|
|
150
|
+
"tag": "@pie-element/multiple-choice-configure@0.5.0"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"type": "fix",
|
|
154
|
+
"scope": "tests",
|
|
155
|
+
"subject": "fixed tests for the multiple choice element",
|
|
156
|
+
"merge": null,
|
|
157
|
+
"header": "fix(tests): fixed tests for the multiple choice element",
|
|
158
|
+
"body": null,
|
|
159
|
+
"footer": null,
|
|
160
|
+
"notes": [],
|
|
161
|
+
"hash": "0fa715c630e98597a02fc41fc11a85746e7f6fbd",
|
|
162
|
+
"gitTags": " (origin/feat/multiple-choice-using-layout)",
|
|
163
|
+
"committerDate": "2019-01-08 12:42:09 +0200",
|
|
164
|
+
"isTagged": true,
|
|
165
|
+
"tag": "@pie-element/multiple-choice-configure@0.4.0"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"type": "feat",
|
|
169
|
+
"scope": "multiple-choice",
|
|
170
|
+
"subject": "updated the config-ui package and the pie-ui package",
|
|
171
|
+
"merge": null,
|
|
172
|
+
"header": "feat(multiple-choice): updated the config-ui package and the pie-ui package",
|
|
173
|
+
"body": null,
|
|
174
|
+
"footer": null,
|
|
175
|
+
"notes": [],
|
|
176
|
+
"hash": "95ae35759ed781931235b4100d626d65a11559cc",
|
|
177
|
+
"gitTags": "",
|
|
178
|
+
"committerDate": "2019-01-08 12:36:19 +0200",
|
|
179
|
+
"isTagged": true,
|
|
180
|
+
"tag": "@pie-element/multiple-choice-configure@0.4.0"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"type": "feat",
|
|
184
|
+
"scope": "multiple-choice",
|
|
185
|
+
"subject": "moved the theming to the config-ui layout element and removed some unnecessary code",
|
|
186
|
+
"merge": null,
|
|
187
|
+
"header": "feat(multiple-choice): moved the theming to the config-ui layout element and removed some unnecessary code",
|
|
188
|
+
"body": null,
|
|
189
|
+
"footer": null,
|
|
190
|
+
"notes": [],
|
|
191
|
+
"hash": "910e7993c152582759826ce7d5f59c0da31b9062",
|
|
192
|
+
"gitTags": "",
|
|
193
|
+
"committerDate": "2019-01-08 11:07:43 +0200",
|
|
194
|
+
"isTagged": true,
|
|
195
|
+
"tag": "@pie-element/multiple-choice-configure@0.4.0"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"type": "feat",
|
|
199
|
+
"scope": "multiple-choice",
|
|
200
|
+
"subject": "updated snapshot in order to fix tests",
|
|
201
|
+
"merge": null,
|
|
202
|
+
"header": "feat(multiple-choice): updated snapshot in order to fix tests",
|
|
203
|
+
"body": null,
|
|
204
|
+
"footer": null,
|
|
205
|
+
"notes": [],
|
|
206
|
+
"hash": "3fb6464d47ef1d7d065323e3d9d6c3162494a597",
|
|
207
|
+
"gitTags": "",
|
|
208
|
+
"committerDate": "2018-12-20 10:29:28 +0200",
|
|
209
|
+
"isTagged": true,
|
|
210
|
+
"tag": "@pie-element/multiple-choice-configure@0.4.0"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"type": "feat",
|
|
214
|
+
"scope": "multiple-choice",
|
|
215
|
+
"subject": "updated the version of the config-ui",
|
|
216
|
+
"merge": null,
|
|
217
|
+
"header": "feat(multiple-choice): updated the version of the config-ui",
|
|
218
|
+
"body": null,
|
|
219
|
+
"footer": null,
|
|
220
|
+
"notes": [],
|
|
221
|
+
"hash": "1d790562408c34682040dc1e80f3fda7ebc92a02",
|
|
222
|
+
"gitTags": "",
|
|
223
|
+
"committerDate": "2018-12-20 10:20:00 +0200",
|
|
224
|
+
"isTagged": true,
|
|
225
|
+
"tag": "@pie-element/multiple-choice-configure@0.4.0"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"type": "feat",
|
|
229
|
+
"scope": "multiple-choice",
|
|
230
|
+
"subject": "updated the config-ui package",
|
|
231
|
+
"merge": null,
|
|
232
|
+
"header": "feat(multiple-choice): updated the config-ui package",
|
|
233
|
+
"body": null,
|
|
234
|
+
"footer": null,
|
|
235
|
+
"notes": [],
|
|
236
|
+
"hash": "bc7aac1688c9be044586ad5efbd9b8f2c3b1f62a",
|
|
237
|
+
"gitTags": "",
|
|
238
|
+
"committerDate": "2018-12-17 20:05:26 +0200",
|
|
239
|
+
"isTagged": true,
|
|
240
|
+
"tag": "@pie-element/multiple-choice-configure@0.4.0"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"type": "feat",
|
|
244
|
+
"scope": "multiple-choice",
|
|
245
|
+
"subject": "refactored the code of the multiple-choice package in order to use the new layout",
|
|
246
|
+
"merge": null,
|
|
247
|
+
"header": "feat(multiple-choice): refactored the code of the multiple-choice package in order to use the new layout",
|
|
248
|
+
"body": null,
|
|
249
|
+
"footer": null,
|
|
250
|
+
"notes": [],
|
|
251
|
+
"hash": "b16b654ae8881e0af9d271c533a27510d751f54f",
|
|
252
|
+
"gitTags": "",
|
|
253
|
+
"committerDate": "2018-12-17 19:40:38 +0200",
|
|
254
|
+
"isTagged": true,
|
|
255
|
+
"tag": "@pie-element/multiple-choice-configure@0.4.0"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"type": "chore",
|
|
259
|
+
"scope": "multiple-choice",
|
|
260
|
+
"subject": "editable-html dependency version bump",
|
|
261
|
+
"merge": null,
|
|
262
|
+
"header": "chore(multiple-choice): editable-html dependency version bump",
|
|
263
|
+
"body": null,
|
|
264
|
+
"footer": null,
|
|
265
|
+
"notes": [],
|
|
266
|
+
"hash": "c099e46601749db60235030cfb59e1b824e3eda7",
|
|
267
|
+
"gitTags": "",
|
|
268
|
+
"committerDate": "2018-11-14 15:52:12 +0200",
|
|
269
|
+
"isTagged": true,
|
|
270
|
+
"tag": "@pie-element/multiple-choice-configure@0.3.2"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"type": "fix",
|
|
274
|
+
"scope": "multiple-choice-tests",
|
|
275
|
+
"subject": "added tests for the new and old logic",
|
|
276
|
+
"merge": null,
|
|
277
|
+
"header": "fix(multiple-choice-tests): added tests for the new and old logic",
|
|
278
|
+
"body": null,
|
|
279
|
+
"footer": null,
|
|
280
|
+
"notes": [],
|
|
281
|
+
"hash": "b78d059a1e400cbae8453f034fbfe0eab94b7b19",
|
|
282
|
+
"gitTags": " (origin/issue78/multiple-choice-preview-reset)",
|
|
283
|
+
"committerDate": "2018-11-12 09:20:07 +0200",
|
|
284
|
+
"isTagged": true,
|
|
285
|
+
"tag": "@pie-element/multiple-choice-configure@0.3.1"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"type": "fix",
|
|
289
|
+
"scope": "multiple-choice-item-preview-reset",
|
|
290
|
+
"subject": "resetting the item preview when changing response type",
|
|
291
|
+
"merge": null,
|
|
292
|
+
"header": "fix(multiple-choice-item-preview-reset): resetting the item preview when changing response type",
|
|
293
|
+
"body": null,
|
|
294
|
+
"footer": null,
|
|
295
|
+
"notes": [],
|
|
296
|
+
"hash": "eb2f4c2be5f268b45ca3fc5eee7d828956829720",
|
|
297
|
+
"gitTags": "",
|
|
298
|
+
"committerDate": "2018-11-08 17:28:40 +0200",
|
|
299
|
+
"isTagged": true,
|
|
300
|
+
"tag": "@pie-element/multiple-choice-configure@0.3.1"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"type": "feat",
|
|
304
|
+
"scope": "multiple-choice-configure-customization",
|
|
305
|
+
"subject": "updated the scoring config version",
|
|
306
|
+
"merge": null,
|
|
307
|
+
"header": "feat(multiple-choice-configure-customization): updated the scoring config version",
|
|
308
|
+
"body": null,
|
|
309
|
+
"footer": null,
|
|
310
|
+
"notes": [],
|
|
311
|
+
"hash": "947cdd046e8ddeb8ed10148a9a1359c7b192b764",
|
|
312
|
+
"gitTags": " (origin/ch557/multi-choice-config-customizations)",
|
|
313
|
+
"committerDate": "2018-11-02 15:40:38 +0200",
|
|
314
|
+
"isTagged": true,
|
|
315
|
+
"tag": "@pie-element/multiple-choice-configure@0.3.0"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"type": "feat",
|
|
319
|
+
"scope": "multiple-choice-configure-customization",
|
|
320
|
+
"subject": "changed the key for the options object from config to configure",
|
|
321
|
+
"merge": null,
|
|
322
|
+
"header": "feat(multiple-choice-configure-customization): changed the key for the options object from config to configure",
|
|
323
|
+
"body": null,
|
|
324
|
+
"footer": null,
|
|
325
|
+
"notes": [],
|
|
326
|
+
"hash": "8c01e2b48b6dc791b3b782c2c9c9b1397d203b7c",
|
|
327
|
+
"gitTags": "",
|
|
328
|
+
"committerDate": "2018-11-02 15:18:14 +0200",
|
|
329
|
+
"isTagged": true,
|
|
330
|
+
"tag": "@pie-element/multiple-choice-configure@0.3.0"
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"type": "feat",
|
|
334
|
+
"scope": "multiple-choice-configure-customization",
|
|
335
|
+
"subject": "added possibility to customize some of the elements from the design tab (ch557)",
|
|
336
|
+
"merge": null,
|
|
337
|
+
"header": "feat(multiple-choice-configure-customization): added possibility to customize some of the elements from the design tab (ch557)",
|
|
338
|
+
"body": null,
|
|
339
|
+
"footer": null,
|
|
340
|
+
"notes": [],
|
|
341
|
+
"hash": "b3b9d4791f93f37b82acce1556da7ddd33bcc1b8",
|
|
342
|
+
"gitTags": "",
|
|
343
|
+
"committerDate": "2018-11-02 07:55:25 +0200",
|
|
344
|
+
"isTagged": true,
|
|
345
|
+
"tag": "@pie-element/multiple-choice-configure@0.3.0"
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"type": "feat",
|
|
349
|
+
"scope": "choice-interaction-update",
|
|
350
|
+
"subject": "updated the partial scoring package version for 3 packages: match, select-text and multiple-choice (ch497)",
|
|
351
|
+
"merge": null,
|
|
352
|
+
"header": "feat(choice-interaction-update): updated the partial scoring package version for 3 packages: match, select-text and multiple-choice (ch497)",
|
|
353
|
+
"body": null,
|
|
354
|
+
"footer": null,
|
|
355
|
+
"notes": [],
|
|
356
|
+
"hash": "b1f2803ca442605108b5ceb78267b8598d6b182f",
|
|
357
|
+
"gitTags": "",
|
|
358
|
+
"committerDate": "2018-10-30 12:48:03 +0200",
|
|
359
|
+
"isTagged": true,
|
|
360
|
+
"tag": "@pie-element/multiple-choice-configure@0.2.0"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"type": "feat",
|
|
364
|
+
"scope": "ch497",
|
|
365
|
+
"subject": "updated the partial scoring for 3 packages: match, select-text and multiple-choice",
|
|
366
|
+
"merge": null,
|
|
367
|
+
"header": "feat(ch497): updated the partial scoring for 3 packages: match, select-text and multiple-choice",
|
|
368
|
+
"body": null,
|
|
369
|
+
"footer": null,
|
|
370
|
+
"notes": [],
|
|
371
|
+
"hash": "5a46b061aec68b46cd34f358d6bc239fa96df6fd",
|
|
372
|
+
"gitTags": "",
|
|
373
|
+
"committerDate": "2018-10-29 14:27:25 +0200",
|
|
374
|
+
"isTagged": true,
|
|
375
|
+
"tag": "@pie-element/multiple-choice-configure@0.2.0"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"type": "fix",
|
|
379
|
+
"scope": "editable-html-package-update",
|
|
380
|
+
"subject": "updated the editable-html version",
|
|
381
|
+
"merge": null,
|
|
382
|
+
"header": "fix(editable-html-package-update): updated the editable-html version",
|
|
383
|
+
"body": null,
|
|
384
|
+
"footer": null,
|
|
385
|
+
"notes": [],
|
|
386
|
+
"hash": "4240cb824bdf9fdb8f3a56e23473d9119554b6d8",
|
|
387
|
+
"gitTags": " (origin/fix/editable-html-package-update)",
|
|
388
|
+
"committerDate": "2018-10-10 10:56:15 +0300",
|
|
389
|
+
"isTagged": true,
|
|
390
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.1"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"type": "fix",
|
|
394
|
+
"scope": null,
|
|
395
|
+
"subject": "fix bad import",
|
|
396
|
+
"merge": null,
|
|
397
|
+
"header": "fix: fix bad import",
|
|
398
|
+
"body": null,
|
|
399
|
+
"footer": null,
|
|
400
|
+
"notes": [],
|
|
401
|
+
"hash": "2cd1cde7f49be6053b0eecd4fe0d485486beac45",
|
|
402
|
+
"gitTags": "",
|
|
403
|
+
"committerDate": "2018-09-20 10:32:59 +0100",
|
|
404
|
+
"isTagged": true,
|
|
405
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"type": "feat",
|
|
409
|
+
"scope": null,
|
|
410
|
+
"subject": "add outcome method to controller",
|
|
411
|
+
"merge": null,
|
|
412
|
+
"header": "feat: add outcome method to controller",
|
|
413
|
+
"body": null,
|
|
414
|
+
"footer": null,
|
|
415
|
+
"notes": [],
|
|
416
|
+
"hash": "ec2853ed83ff977e55155dcd8aa3301f97bfcc67",
|
|
417
|
+
"gitTags": "",
|
|
418
|
+
"committerDate": "2018-08-15 21:36:45 -0400",
|
|
419
|
+
"isTagged": true,
|
|
420
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"type": "fix",
|
|
424
|
+
"scope": null,
|
|
425
|
+
"subject": "bump config-ui@^7.6.6",
|
|
426
|
+
"merge": null,
|
|
427
|
+
"header": "fix: bump config-ui@^7.6.6",
|
|
428
|
+
"body": null,
|
|
429
|
+
"footer": null,
|
|
430
|
+
"notes": [],
|
|
431
|
+
"hash": "266235a5351077d081f4c08dab3411e6690d43ac",
|
|
432
|
+
"gitTags": "",
|
|
433
|
+
"committerDate": "2018-08-06 13:32:09 -0400",
|
|
434
|
+
"isTagged": true,
|
|
435
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"type": "fix",
|
|
439
|
+
"scope": null,
|
|
440
|
+
"subject": "bump config-ui and editable html versions",
|
|
441
|
+
"merge": null,
|
|
442
|
+
"header": "fix: bump config-ui and editable html versions",
|
|
443
|
+
"body": null,
|
|
444
|
+
"footer": null,
|
|
445
|
+
"notes": [],
|
|
446
|
+
"hash": "002fb60b997d3b261976b94b54f4c43a31ca673d",
|
|
447
|
+
"gitTags": "",
|
|
448
|
+
"committerDate": "2018-07-27 10:48:06 -0400",
|
|
449
|
+
"isTagged": true,
|
|
450
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
"type": "feature",
|
|
454
|
+
"scope": "multiple-choice",
|
|
455
|
+
"subject": "design updates to be more inline with corespring design",
|
|
456
|
+
"merge": null,
|
|
457
|
+
"header": "feature(multiple-choice): design updates to be more inline with corespring design",
|
|
458
|
+
"body": null,
|
|
459
|
+
"footer": null,
|
|
460
|
+
"notes": [],
|
|
461
|
+
"hash": "5fac26a7388dbd8fd7c8e6ef5b60d1111de457e9",
|
|
462
|
+
"gitTags": "",
|
|
463
|
+
"committerDate": "2018-07-03 15:11:13 +0300",
|
|
464
|
+
"isTagged": true,
|
|
465
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"type": "fix",
|
|
469
|
+
"scope": null,
|
|
470
|
+
"subject": "dont import *.jsx files",
|
|
471
|
+
"merge": null,
|
|
472
|
+
"header": "fix: dont import *.jsx files",
|
|
473
|
+
"body": null,
|
|
474
|
+
"footer": null,
|
|
475
|
+
"notes": [],
|
|
476
|
+
"hash": "5811854a9badd81224aad43b3db3572b5b08ff7f",
|
|
477
|
+
"gitTags": "",
|
|
478
|
+
"committerDate": "2018-06-06 16:02:53 -0400",
|
|
479
|
+
"isTagged": true,
|
|
480
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"type": "feat",
|
|
484
|
+
"scope": null,
|
|
485
|
+
"subject": "upgrade material-ui -> @material-ui/core@1.0.0-rc.1",
|
|
486
|
+
"merge": null,
|
|
487
|
+
"header": "feat: upgrade material-ui -> @material-ui/core@1.0.0-rc.1",
|
|
488
|
+
"body": null,
|
|
489
|
+
"footer": null,
|
|
490
|
+
"notes": [],
|
|
491
|
+
"hash": "3d57d5cd52e333165ffdbaaed3e714e645a984b1",
|
|
492
|
+
"gitTags": "",
|
|
493
|
+
"committerDate": "2018-05-16 12:00:48 -0400",
|
|
494
|
+
"isTagged": true,
|
|
495
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"type": "fix",
|
|
499
|
+
"scope": "prompt",
|
|
500
|
+
"subject": "add image functionality back in",
|
|
501
|
+
"merge": null,
|
|
502
|
+
"header": "fix(prompt): add image functionality back in",
|
|
503
|
+
"body": null,
|
|
504
|
+
"footer": null,
|
|
505
|
+
"notes": [],
|
|
506
|
+
"hash": "3aa73dbe5564d1942a745b97f166666c0902da62",
|
|
507
|
+
"gitTags": "",
|
|
508
|
+
"committerDate": "2018-05-11 12:14:48 -0400",
|
|
509
|
+
"isTagged": true,
|
|
510
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"type": "feat",
|
|
514
|
+
"scope": "root",
|
|
515
|
+
"subject": "use @pie-lib/config-ui choiceUtils",
|
|
516
|
+
"merge": null,
|
|
517
|
+
"header": "feat(root): use @pie-lib/config-ui choiceUtils",
|
|
518
|
+
"body": null,
|
|
519
|
+
"footer": null,
|
|
520
|
+
"notes": [],
|
|
521
|
+
"hash": "2a3f180b41e7e9a36a0758dcbe4fdb86f253a50c",
|
|
522
|
+
"gitTags": "",
|
|
523
|
+
"committerDate": "2018-04-24 21:28:59 -0400",
|
|
524
|
+
"isTagged": true,
|
|
525
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
"type": "fix",
|
|
529
|
+
"scope": "configure",
|
|
530
|
+
"subject": "make sure value is unique",
|
|
531
|
+
"merge": null,
|
|
532
|
+
"header": "fix(configure): make sure value is unique",
|
|
533
|
+
"body": null,
|
|
534
|
+
"footer": null,
|
|
535
|
+
"notes": [],
|
|
536
|
+
"hash": "0f437c223a88da455995c944ddeb5b81db30b205",
|
|
537
|
+
"gitTags": "",
|
|
538
|
+
"committerDate": "2018-04-24 15:08:03 -0400",
|
|
539
|
+
"isTagged": true,
|
|
540
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"type": "feat",
|
|
544
|
+
"scope": "value",
|
|
545
|
+
"subject": "remove 'value' input, it is now generated based on the choice index.",
|
|
546
|
+
"merge": null,
|
|
547
|
+
"header": "feat(value): remove 'value' input, it is now generated based on the choice index.",
|
|
548
|
+
"body": null,
|
|
549
|
+
"footer": null,
|
|
550
|
+
"notes": [],
|
|
551
|
+
"hash": "5ea34fafc77e6ee096e7a38124b0985e7df4df48",
|
|
552
|
+
"gitTags": "",
|
|
553
|
+
"committerDate": "2018-04-24 14:47:35 -0400",
|
|
554
|
+
"isTagged": true,
|
|
555
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"type": "fix",
|
|
559
|
+
"scope": "dependencies",
|
|
560
|
+
"subject": "use latest @pie-lib/editable-html",
|
|
561
|
+
"merge": null,
|
|
562
|
+
"header": "fix(dependencies): use latest @pie-lib/editable-html",
|
|
563
|
+
"body": null,
|
|
564
|
+
"footer": null,
|
|
565
|
+
"notes": [],
|
|
566
|
+
"hash": "b29ff91e11f44ccb1013180d763e43fe90f5334d",
|
|
567
|
+
"gitTags": "",
|
|
568
|
+
"committerDate": "2018-04-24 13:32:17 -0400",
|
|
569
|
+
"isTagged": true,
|
|
570
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"type": "fix",
|
|
574
|
+
"scope": "dependencies",
|
|
575
|
+
"subject": "version bump",
|
|
576
|
+
"merge": null,
|
|
577
|
+
"header": "fix(dependencies): version bump",
|
|
578
|
+
"body": null,
|
|
579
|
+
"footer": null,
|
|
580
|
+
"notes": [],
|
|
581
|
+
"hash": "ee6d3d0cd4b0a1d87fd4ab4e161c3b686d7b05bb",
|
|
582
|
+
"gitTags": "",
|
|
583
|
+
"committerDate": "2018-04-24 11:34:37 -0400",
|
|
584
|
+
"isTagged": true,
|
|
585
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"type": "feat",
|
|
589
|
+
"scope": "dependencies",
|
|
590
|
+
"subject": "use latest @pie-ui/multiple-choice",
|
|
591
|
+
"merge": null,
|
|
592
|
+
"header": "feat(dependencies): use latest @pie-ui/multiple-choice",
|
|
593
|
+
"body": null,
|
|
594
|
+
"footer": null,
|
|
595
|
+
"notes": [],
|
|
596
|
+
"hash": "9b73dbbcf5a03b383f5e66e6cb3d048b9bb1c5db",
|
|
597
|
+
"gitTags": "",
|
|
598
|
+
"committerDate": "2018-04-17 14:12:26 -0400",
|
|
599
|
+
"isTagged": true,
|
|
600
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"type": "fix",
|
|
604
|
+
"scope": "dependencies",
|
|
605
|
+
"subject": "fix dependencies",
|
|
606
|
+
"merge": null,
|
|
607
|
+
"header": "fix(dependencies): fix dependencies",
|
|
608
|
+
"body": null,
|
|
609
|
+
"footer": null,
|
|
610
|
+
"notes": [],
|
|
611
|
+
"hash": "0d16dc04c950ee109f88f5493934da1720370aee",
|
|
612
|
+
"gitTags": "",
|
|
613
|
+
"committerDate": "2018-03-06 14:47:24 -0500",
|
|
614
|
+
"isTagged": true,
|
|
615
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"type": "fix",
|
|
619
|
+
"scope": "dependencies",
|
|
620
|
+
"subject": "update dependency names",
|
|
621
|
+
"merge": null,
|
|
622
|
+
"header": "fix(dependencies): update dependency names",
|
|
623
|
+
"body": null,
|
|
624
|
+
"footer": null,
|
|
625
|
+
"notes": [],
|
|
626
|
+
"hash": "dc789acd13eb139e0c3d04c12c7811bcfdd4059f",
|
|
627
|
+
"gitTags": "",
|
|
628
|
+
"committerDate": "2018-03-06 14:22:23 -0500",
|
|
629
|
+
"isTagged": true,
|
|
630
|
+
"tag": "@pie-element/multiple-choice-configure@0.1.0"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"type": "feat",
|
|
634
|
+
"scope": "general",
|
|
635
|
+
"subject": "initialize default model (2) (#138)",
|
|
636
|
+
"merge": null,
|
|
637
|
+
"header": "feat(general): initialize default model (2) (#138)",
|
|
638
|
+
"body": "* feat: initialize empty README\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* feat: implement default-model-initialization method\n\n* fix: add babel-transform-runtime in order to support async/await\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: use dummy default values\n\n* feat: use dummy default values (2)\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: use dummy default values\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: use dummy default values\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: use dummy default values\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: use dummy default values\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: use dummy default values\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: use dummy default values\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: use dummy default values\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: use dummy default values\n\n* feat: allow constructing an element without a model or with an empty one\n\n* feat: use dummy default values\n\n* fix: update snapshot tests",
|
|
639
|
+
"footer": null,
|
|
640
|
+
"notes": [],
|
|
641
|
+
"hash": "fc72eca03a09c3d48989e88484a7c79d6dbec0f9",
|
|
642
|
+
"gitTags": "",
|
|
643
|
+
"committerDate": "2019-03-15 15:25:07 -0400",
|
|
644
|
+
"isTagged": true,
|
|
645
|
+
"tag": "@pie-element/multiple-choice-configure@0.8.0"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
"type": "fix",
|
|
649
|
+
"scope": null,
|
|
650
|
+
"subject": "bump editable-html",
|
|
651
|
+
"merge": null,
|
|
652
|
+
"header": "fix: bump editable-html",
|
|
653
|
+
"body": null,
|
|
654
|
+
"footer": null,
|
|
655
|
+
"notes": [],
|
|
656
|
+
"hash": "1b4b238011c7f3802f26cb320675f846cbbbf71b",
|
|
657
|
+
"gitTags": "",
|
|
658
|
+
"committerDate": "2019-04-04 10:08:50 +0100",
|
|
659
|
+
"isTagged": true,
|
|
660
|
+
"tag": "@pie-element/multiple-choice-configure@0.8.4"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"type": "fix",
|
|
664
|
+
"scope": null,
|
|
665
|
+
"subject": "Update state.model if there are any changes.",
|
|
666
|
+
"merge": null,
|
|
667
|
+
"header": "fix: Update state.model if there are any changes.",
|
|
668
|
+
"body": null,
|
|
669
|
+
"footer": null,
|
|
670
|
+
"notes": [],
|
|
671
|
+
"hash": "610a9db51e4ba9c094fcaba6efdb2c7af944ed15",
|
|
672
|
+
"gitTags": "",
|
|
673
|
+
"committerDate": "2019-04-03 14:31:20 +0300",
|
|
674
|
+
"isTagged": true,
|
|
675
|
+
"tag": "@pie-element/multiple-choice-configure@0.8.5"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"type": "feat",
|
|
679
|
+
"scope": "multiple-choice",
|
|
680
|
+
"subject": "Integrated new settings panel. Updated tests.",
|
|
681
|
+
"merge": null,
|
|
682
|
+
"header": "feat(multiple-choice): Integrated new settings panel. Updated tests.",
|
|
683
|
+
"body": null,
|
|
684
|
+
"footer": null,
|
|
685
|
+
"notes": [],
|
|
686
|
+
"hash": "6387043a0d0c9176735ce1c23fee5eb4fdca44c6",
|
|
687
|
+
"gitTags": "",
|
|
688
|
+
"committerDate": "2019-04-17 08:53:25 +0300",
|
|
689
|
+
"isTagged": true,
|
|
690
|
+
"tag": "@pie-element/multiple-choice-configure@0.9.0"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"type": "fix",
|
|
694
|
+
"scope": "multiple-choice",
|
|
695
|
+
"subject": "Refactored using new established naming convention and updated tests.",
|
|
696
|
+
"merge": null,
|
|
697
|
+
"header": "fix(multiple-choice): Refactored using new established naming convention and updated tests.",
|
|
698
|
+
"body": null,
|
|
699
|
+
"footer": null,
|
|
700
|
+
"notes": [],
|
|
701
|
+
"hash": "78ffbaeb9cf4bbd4ef88a57addb9a1221089903c",
|
|
702
|
+
"gitTags": "",
|
|
703
|
+
"committerDate": "2019-04-17 06:50:02 +0300",
|
|
704
|
+
"isTagged": true,
|
|
705
|
+
"tag": "@pie-element/multiple-choice-configure@0.9.0"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"type": "fix",
|
|
709
|
+
"scope": "placement-ordering",
|
|
710
|
+
"subject": "renaming model properties with naming conventions.",
|
|
711
|
+
"merge": null,
|
|
712
|
+
"header": "fix(placement-ordering): renaming model properties with naming conventions.",
|
|
713
|
+
"body": null,
|
|
714
|
+
"footer": null,
|
|
715
|
+
"notes": [],
|
|
716
|
+
"hash": "9d9be0154654c1c7c6866e3daa74d9e37523a567",
|
|
717
|
+
"gitTags": "",
|
|
718
|
+
"committerDate": "2019-04-15 11:43:37 +0300",
|
|
719
|
+
"isTagged": true,
|
|
720
|
+
"tag": "@pie-element/multiple-choice-configure@0.9.0"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"type": "fix",
|
|
724
|
+
"scope": null,
|
|
725
|
+
"subject": "Updated with new version of @pie-lib/config-ui.",
|
|
726
|
+
"merge": null,
|
|
727
|
+
"header": "fix: Updated with new version of @pie-lib/config-ui.",
|
|
728
|
+
"body": null,
|
|
729
|
+
"footer": null,
|
|
730
|
+
"notes": [],
|
|
731
|
+
"hash": "49bb68b6ec8b45c548e8c6907aaa2c047d4867d1",
|
|
732
|
+
"gitTags": "",
|
|
733
|
+
"committerDate": "2019-04-25 14:32:45 +0300",
|
|
734
|
+
"isTagged": true,
|
|
735
|
+
"tag": "@pie-element/multiple-choice-configure@0.9.3"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"type": "fix",
|
|
739
|
+
"scope": null,
|
|
740
|
+
"subject": "Removed usage of state and updated tests.",
|
|
741
|
+
"merge": null,
|
|
742
|
+
"header": "fix: Removed usage of state and updated tests.",
|
|
743
|
+
"body": null,
|
|
744
|
+
"footer": null,
|
|
745
|
+
"notes": [],
|
|
746
|
+
"hash": "09858903b9c9538e6d47c3af76b2d2e47269f214",
|
|
747
|
+
"gitTags": " (origin/andreea/ch1308/add-separate-property-and-call-it-configuration-multiple-choice)",
|
|
748
|
+
"committerDate": "2019-05-02 11:31:55 +0300",
|
|
749
|
+
"isTagged": true,
|
|
750
|
+
"tag": "@pie-element/multiple-choice-configure@0.9.5"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"type": "fix",
|
|
754
|
+
"scope": null,
|
|
755
|
+
"subject": "Updated with new version of @pie-lib/config-ui.",
|
|
756
|
+
"merge": null,
|
|
757
|
+
"header": "fix: Updated with new version of @pie-lib/config-ui.",
|
|
758
|
+
"body": null,
|
|
759
|
+
"footer": null,
|
|
760
|
+
"notes": [],
|
|
761
|
+
"hash": "4dd2a2eb68eed5c476fd544fcd48c28f75a7e348",
|
|
762
|
+
"gitTags": "",
|
|
763
|
+
"committerDate": "2019-04-24 13:08:53 +0300",
|
|
764
|
+
"isTagged": true,
|
|
765
|
+
"tag": "@pie-element/multiple-choice-configure@0.9.5"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"type": "fix",
|
|
769
|
+
"scope": null,
|
|
770
|
+
"subject": "renamed `configure` to `configuration`",
|
|
771
|
+
"merge": null,
|
|
772
|
+
"header": "fix: renamed `configure` to `configuration`",
|
|
773
|
+
"body": null,
|
|
774
|
+
"footer": null,
|
|
775
|
+
"notes": [],
|
|
776
|
+
"hash": "d18cea989709f860e80e3e27eaa43520381a922d",
|
|
777
|
+
"gitTags": "",
|
|
778
|
+
"committerDate": "2019-04-24 06:44:00 +0300",
|
|
779
|
+
"isTagged": true,
|
|
780
|
+
"tag": "@pie-element/multiple-choice-configure@0.9.5"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"type": "feat",
|
|
784
|
+
"scope": null,
|
|
785
|
+
"subject": "Updated with new version of @pie-lib-config-ui. Renamed `configure` with `configuration`. Removed usage of state (root.jsx) and updated tests.",
|
|
786
|
+
"merge": null,
|
|
787
|
+
"header": "feat: Updated with new version of @pie-lib-config-ui. Renamed `configure` with `configuration`. Removed usage of state (root.jsx) and updated tests.",
|
|
788
|
+
"body": null,
|
|
789
|
+
"footer": "BREAKING CHANGE: `configure` is removed, use `configuration` instead.",
|
|
790
|
+
"notes": [
|
|
791
|
+
{
|
|
792
|
+
"title": "BREAKING CHANGE",
|
|
793
|
+
"text": "`configure` is removed, use `configuration` instead."
|
|
794
|
+
}
|
|
795
|
+
],
|
|
796
|
+
"hash": "80314545a33d99560bd546c55053a048414f39e2",
|
|
797
|
+
"gitTags": "",
|
|
798
|
+
"committerDate": "2019-05-02 16:14:51 +0300",
|
|
799
|
+
"isTagged": true,
|
|
800
|
+
"tag": "@pie-element/multiple-choice-configure@1.0.0"
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"type": "feat",
|
|
804
|
+
"scope": null,
|
|
805
|
+
"subject": "added support for rationale.",
|
|
806
|
+
"merge": null,
|
|
807
|
+
"header": "feat: added support for rationale.",
|
|
808
|
+
"body": null,
|
|
809
|
+
"footer": null,
|
|
810
|
+
"notes": [],
|
|
811
|
+
"hash": "9c206b09e4358050549372ea0b90d4d69b15af51",
|
|
812
|
+
"gitTags": "",
|
|
813
|
+
"committerDate": "2019-05-10 13:36:53 +0300",
|
|
814
|
+
"isTagged": true,
|
|
815
|
+
"tag": "@pie-element/multiple-choice-configure@1.1.0"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"type": "feat",
|
|
819
|
+
"scope": null,
|
|
820
|
+
"subject": "added rationale support.",
|
|
821
|
+
"merge": null,
|
|
822
|
+
"header": "feat: added rationale support.",
|
|
823
|
+
"body": null,
|
|
824
|
+
"footer": null,
|
|
825
|
+
"notes": [],
|
|
826
|
+
"hash": "1ddc13742d8a585befca50702889c8c8fa47ad6c",
|
|
827
|
+
"gitTags": "",
|
|
828
|
+
"committerDate": "2019-05-09 16:57:00 +0300",
|
|
829
|
+
"isTagged": true,
|
|
830
|
+
"tag": "@pie-element/multiple-choice-configure@1.1.0"
|
|
831
|
+
},
|
|
832
|
+
{
|
|
833
|
+
"type": "chore",
|
|
834
|
+
"scope": "latest-version",
|
|
835
|
+
"subject": "pushing to release",
|
|
836
|
+
"merge": null,
|
|
837
|
+
"header": "chore(latest-version): pushing to release",
|
|
838
|
+
"body": null,
|
|
839
|
+
"footer": null,
|
|
840
|
+
"notes": [],
|
|
841
|
+
"hash": "64030ba2c7c18d20381b6a0f5caaff19f1e5e959",
|
|
842
|
+
"gitTags": " (develop)",
|
|
843
|
+
"committerDate": "2019-06-06 01:31:17 +0300",
|
|
844
|
+
"isTagged": true,
|
|
845
|
+
"tag": "@pie-element/multiple-choice-configure@1.1.3"
|
|
846
|
+
},
|
|
847
|
+
{
|
|
848
|
+
"type": "chore",
|
|
849
|
+
"scope": "version",
|
|
850
|
+
"subject": "bumped the versions",
|
|
851
|
+
"merge": null,
|
|
852
|
+
"header": "chore(version): bumped the versions",
|
|
853
|
+
"body": null,
|
|
854
|
+
"footer": null,
|
|
855
|
+
"notes": [],
|
|
856
|
+
"hash": "12b141d884c66a15d23c8cbb34be820a422d7332",
|
|
857
|
+
"gitTags": " (origin/feat/mask-markup-elements)",
|
|
858
|
+
"committerDate": "2019-06-06 01:15:50 +0300",
|
|
859
|
+
"isTagged": true,
|
|
860
|
+
"tag": "@pie-element/multiple-choice-configure@1.1.3"
|
|
861
|
+
},
|
|
862
|
+
{
|
|
863
|
+
"type": "chore",
|
|
864
|
+
"scope": "version",
|
|
865
|
+
"subject": "bumped the packages that depend on the editable-html",
|
|
866
|
+
"merge": null,
|
|
867
|
+
"header": "chore(version): bumped the packages that depend on the editable-html",
|
|
868
|
+
"body": null,
|
|
869
|
+
"footer": null,
|
|
870
|
+
"notes": [],
|
|
871
|
+
"hash": "00eb12e58c01b50dde8e4d1a179c879e2f3216fc",
|
|
872
|
+
"gitTags": " (develop)",
|
|
873
|
+
"committerDate": "2019-06-06 13:16:05 +0300",
|
|
874
|
+
"isTagged": true,
|
|
875
|
+
"tag": "@pie-element/multiple-choice-configure@1.1.4"
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"type": "chore",
|
|
879
|
+
"scope": "version",
|
|
880
|
+
"subject": "bumped the versions",
|
|
881
|
+
"merge": null,
|
|
882
|
+
"header": "chore(version): bumped the versions",
|
|
883
|
+
"body": null,
|
|
884
|
+
"footer": null,
|
|
885
|
+
"notes": [],
|
|
886
|
+
"hash": "12b141d884c66a15d23c8cbb34be820a422d7332",
|
|
887
|
+
"gitTags": " (origin/feat/mask-markup-elements)",
|
|
888
|
+
"committerDate": "2019-06-06 01:15:50 +0300",
|
|
889
|
+
"isTagged": true,
|
|
890
|
+
"tag": "@pie-element/multiple-choice-configure@1.1.3"
|
|
891
|
+
},
|
|
892
|
+
{
|
|
893
|
+
"type": "chore",
|
|
894
|
+
"scope": "merge",
|
|
895
|
+
"subject": "merged develop into master",
|
|
896
|
+
"merge": null,
|
|
897
|
+
"header": "chore(merge): merged develop into master",
|
|
898
|
+
"body": null,
|
|
899
|
+
"footer": null,
|
|
900
|
+
"notes": [],
|
|
901
|
+
"hash": "3bb9f402d900f3a0349537dfd01ce558c526cb55",
|
|
902
|
+
"gitTags": " (develop)",
|
|
903
|
+
"committerDate": "2019-06-07 23:29:44 +0300",
|
|
904
|
+
"isTagged": true,
|
|
905
|
+
"tag": "@pie-element/multiple-choice-configure@1.1.5"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"type": "feat",
|
|
909
|
+
"scope": "general",
|
|
910
|
+
"subject": "updated all the packages that have the config-ui as a dependency",
|
|
911
|
+
"merge": null,
|
|
912
|
+
"header": "feat(general): updated all the packages that have the config-ui as a dependency",
|
|
913
|
+
"body": null,
|
|
914
|
+
"footer": null,
|
|
915
|
+
"notes": [],
|
|
916
|
+
"hash": "44061deecae6d18cdbf6f5fb524f3d3094ccd354",
|
|
917
|
+
"gitTags": "",
|
|
918
|
+
"committerDate": "2019-06-20 22:32:48 -0400",
|
|
919
|
+
"isTagged": true,
|
|
920
|
+
"tag": "@pie-element/multiple-choice-configure@1.2.0"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"type": "feat",
|
|
924
|
+
"scope": "settings-panel",
|
|
925
|
+
"subject": "updated the settings panel design and changes needed for [ch2242]",
|
|
926
|
+
"merge": null,
|
|
927
|
+
"header": "feat(settings-panel): updated the settings panel design and changes needed for [ch2242]",
|
|
928
|
+
"body": null,
|
|
929
|
+
"footer": null,
|
|
930
|
+
"notes": [],
|
|
931
|
+
"hash": "d830e57b32bd09ac8cc02c7a12d75d988d9df21c",
|
|
932
|
+
"gitTags": "",
|
|
933
|
+
"committerDate": "2019-06-25 23:42:15 -0400",
|
|
934
|
+
"isTagged": true,
|
|
935
|
+
"tag": "@pie-element/multiple-choice-configure@1.3.0"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"type": "feat",
|
|
939
|
+
"scope": "mask-markup-elements",
|
|
940
|
+
"subject": "refactored the elements and version bumped the necessary files",
|
|
941
|
+
"merge": null,
|
|
942
|
+
"header": "feat(mask-markup-elements): refactored the elements and version bumped the necessary files",
|
|
943
|
+
"body": null,
|
|
944
|
+
"footer": null,
|
|
945
|
+
"notes": [],
|
|
946
|
+
"hash": "f8f77c02e44afd90e491a371d86d3d4093eb41e5",
|
|
947
|
+
"gitTags": "",
|
|
948
|
+
"committerDate": "2019-07-02 13:38:48 -0400",
|
|
949
|
+
"isTagged": true,
|
|
950
|
+
"tag": "@pie-element/multiple-choice-configure@1.4.0"
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"type": "chore",
|
|
954
|
+
"scope": "editable-html",
|
|
955
|
+
"subject": "version bumped the necessary packages",
|
|
956
|
+
"merge": null,
|
|
957
|
+
"header": "chore(editable-html): version bumped the necessary packages",
|
|
958
|
+
"body": null,
|
|
959
|
+
"footer": null,
|
|
960
|
+
"notes": [],
|
|
961
|
+
"hash": "3c7caf6a1f8dc120ca23ab93258a90a593bbeb65",
|
|
962
|
+
"gitTags": "",
|
|
963
|
+
"committerDate": "2019-07-02 15:13:55 -0400",
|
|
964
|
+
"isTagged": true,
|
|
965
|
+
"tag": "@pie-element/multiple-choice-configure@1.4.1"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"type": "chore",
|
|
969
|
+
"scope": "version",
|
|
970
|
+
"subject": "version bumped the editable-html dependent packages",
|
|
971
|
+
"merge": null,
|
|
972
|
+
"header": "chore(version): version bumped the editable-html dependent packages",
|
|
973
|
+
"body": null,
|
|
974
|
+
"footer": null,
|
|
975
|
+
"notes": [],
|
|
976
|
+
"hash": "19961d346e8596064bad27156e0cf5a03afc3889",
|
|
977
|
+
"gitTags": "",
|
|
978
|
+
"committerDate": "2019-07-03 15:57:58 -0400",
|
|
979
|
+
"isTagged": true,
|
|
980
|
+
"tag": "@pie-element/multiple-choice-configure@1.4.3"
|
|
981
|
+
},
|
|
982
|
+
{
|
|
983
|
+
"type": "fix",
|
|
984
|
+
"scope": "template-els",
|
|
985
|
+
"subject": "fixed some ditb issues",
|
|
986
|
+
"merge": null,
|
|
987
|
+
"header": "fix(template-els): fixed some ditb issues",
|
|
988
|
+
"body": null,
|
|
989
|
+
"footer": null,
|
|
990
|
+
"notes": [],
|
|
991
|
+
"hash": "9133840e48a263b2cf49ce4db9c4310743efffe0",
|
|
992
|
+
"gitTags": "",
|
|
993
|
+
"committerDate": "2019-07-04 11:45:23 -0400",
|
|
994
|
+
"isTagged": true,
|
|
995
|
+
"tag": "@pie-element/multiple-choice-configure@1.4.4"
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"type": "fix",
|
|
999
|
+
"scope": "editable-html",
|
|
1000
|
+
"subject": "fixed lots of stuff regarding the editable-html",
|
|
1001
|
+
"merge": null,
|
|
1002
|
+
"header": "fix(editable-html): fixed lots of stuff regarding the editable-html",
|
|
1003
|
+
"body": null,
|
|
1004
|
+
"footer": null,
|
|
1005
|
+
"notes": [],
|
|
1006
|
+
"hash": "12c112917e0b5065ec35efdbdc276703602a6c68",
|
|
1007
|
+
"gitTags": " (origin/andrei/fixes)",
|
|
1008
|
+
"committerDate": "2019-07-07 14:16:34 -0400",
|
|
1009
|
+
"isTagged": true,
|
|
1010
|
+
"tag": "@pie-element/multiple-choice-configure@1.4.6"
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"type": "chore",
|
|
1014
|
+
"scope": "config-ui",
|
|
1015
|
+
"subject": "bumped dependent packages",
|
|
1016
|
+
"merge": null,
|
|
1017
|
+
"header": "chore(config-ui): bumped dependent packages",
|
|
1018
|
+
"body": null,
|
|
1019
|
+
"footer": null,
|
|
1020
|
+
"notes": [],
|
|
1021
|
+
"hash": "645756c242868cf21e36a73227b355affb5f957a",
|
|
1022
|
+
"gitTags": "",
|
|
1023
|
+
"committerDate": "2019-07-07 15:44:44 -0400",
|
|
1024
|
+
"isTagged": true,
|
|
1025
|
+
"tag": "@pie-element/multiple-choice-configure@1.4.7"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"type": "chore",
|
|
1029
|
+
"scope": "editable-html",
|
|
1030
|
+
"subject": "version bumped some dependant packages",
|
|
1031
|
+
"merge": null,
|
|
1032
|
+
"header": "chore(editable-html): version bumped some dependant packages",
|
|
1033
|
+
"body": null,
|
|
1034
|
+
"footer": null,
|
|
1035
|
+
"notes": [],
|
|
1036
|
+
"hash": "a4fbf3e8e7841ecae4f034328f9481a1f69ae3df",
|
|
1037
|
+
"gitTags": "",
|
|
1038
|
+
"committerDate": "2019-07-09 13:38:59 +0300",
|
|
1039
|
+
"isTagged": true,
|
|
1040
|
+
"tag": "@pie-element/multiple-choice-configure@1.4.8"
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"type": "fix",
|
|
1044
|
+
"scope": null,
|
|
1045
|
+
"subject": "The text when adding a new choice should be empty.",
|
|
1046
|
+
"merge": null,
|
|
1047
|
+
"header": "fix: The text when adding a new choice should be empty.",
|
|
1048
|
+
"body": null,
|
|
1049
|
+
"footer": null,
|
|
1050
|
+
"notes": [],
|
|
1051
|
+
"hash": "f37bcb010e586e2d9de073dedda55999b77b55a4",
|
|
1052
|
+
"gitTags": " (origin/andreea/ch2368/multiple-choice-add-choice-button-adds-with)",
|
|
1053
|
+
"committerDate": "2019-07-09 13:27:29 +0300",
|
|
1054
|
+
"isTagged": true,
|
|
1055
|
+
"tag": "@pie-element/multiple-choice-configure@1.4.8"
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
"type": "feat",
|
|
1059
|
+
"scope": "template-elements",
|
|
1060
|
+
"subject": "updated the dependent packages that use editable-html and fixed [ch2564], [ch2565], [ch2538], [ch2489], [ch2557], [ch2593], [ch2490], [ch2527]",
|
|
1061
|
+
"merge": null,
|
|
1062
|
+
"header": "feat(template-elements): updated the dependent packages that use editable-html and fixed [ch2564], [ch2565], [ch2538], [ch2489], [ch2557], [ch2593], [ch2490], [ch2527]",
|
|
1063
|
+
"body": null,
|
|
1064
|
+
"footer": null,
|
|
1065
|
+
"notes": [],
|
|
1066
|
+
"hash": "a87febe2518ada7ee433b0b39895c26c15737ac4",
|
|
1067
|
+
"gitTags": "",
|
|
1068
|
+
"committerDate": "2019-07-11 16:57:13 +0300",
|
|
1069
|
+
"isTagged": true,
|
|
1070
|
+
"tag": "@pie-element/multiple-choice-configure@1.5.0"
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"type": "fix",
|
|
1074
|
+
"scope": "rendering",
|
|
1075
|
+
"subject": "implemented rendering for math elements [ch1915], [ch1935]",
|
|
1076
|
+
"merge": null,
|
|
1077
|
+
"header": "fix(rendering): implemented rendering for math elements [ch1915], [ch1935]",
|
|
1078
|
+
"body": null,
|
|
1079
|
+
"footer": null,
|
|
1080
|
+
"notes": [],
|
|
1081
|
+
"hash": "2f3584200654e098c7b4cc4b312813efac09e7a9",
|
|
1082
|
+
"gitTags": "",
|
|
1083
|
+
"committerDate": "2019-07-12 15:45:27 +0300",
|
|
1084
|
+
"isTagged": true,
|
|
1085
|
+
"tag": "@pie-element/multiple-choice-configure@1.5.2"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"type": "fix",
|
|
1089
|
+
"scope": "elements",
|
|
1090
|
+
"subject": "version bumped the editable-html packages [ch1738]",
|
|
1091
|
+
"merge": null,
|
|
1092
|
+
"header": "fix(elements): version bumped the editable-html packages [ch1738]",
|
|
1093
|
+
"body": null,
|
|
1094
|
+
"footer": null,
|
|
1095
|
+
"notes": [],
|
|
1096
|
+
"hash": "949222a6a3af39cf8b81a885a81e5c6f3c6a28a0",
|
|
1097
|
+
"gitTags": "",
|
|
1098
|
+
"committerDate": "2019-08-08 08:40:11 +0300",
|
|
1099
|
+
"isTagged": true,
|
|
1100
|
+
"tag": "@pie-element/multiple-choice-configure@1.5.8"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"type": "fix",
|
|
1104
|
+
"scope": "math-rendering",
|
|
1105
|
+
"subject": "updated all dependent packages [ch3365]",
|
|
1106
|
+
"merge": null,
|
|
1107
|
+
"header": "fix(math-rendering): updated all dependent packages [ch3365]",
|
|
1108
|
+
"body": null,
|
|
1109
|
+
"footer": null,
|
|
1110
|
+
"notes": [],
|
|
1111
|
+
"hash": "7cbf25ac92040a16621d5699e232c38575f6c36c",
|
|
1112
|
+
"gitTags": "",
|
|
1113
|
+
"committerDate": "2019-08-16 23:04:42 +0300",
|
|
1114
|
+
"isTagged": true,
|
|
1115
|
+
"tag": "@pie-element/multiple-choice-configure@1.5.9"
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"type": "fix",
|
|
1119
|
+
"scope": null,
|
|
1120
|
+
"subject": "set default values to configuration properties",
|
|
1121
|
+
"merge": null,
|
|
1122
|
+
"header": "fix: set default values to configuration properties",
|
|
1123
|
+
"body": null,
|
|
1124
|
+
"footer": null,
|
|
1125
|
+
"notes": [],
|
|
1126
|
+
"hash": "83501cd7f4d00e7154b0702b12754d6c32d54f63",
|
|
1127
|
+
"gitTags": "",
|
|
1128
|
+
"committerDate": "2019-08-15 13:58:57 +0300",
|
|
1129
|
+
"isTagged": true,
|
|
1130
|
+
"tag": "@pie-element/multiple-choice-configure@1.5.9"
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"type": "fix",
|
|
1134
|
+
"scope": "math-rendering",
|
|
1135
|
+
"subject": "updated all dependent packages for math rendering and for editable-html [ch3365], [ch1530]",
|
|
1136
|
+
"merge": null,
|
|
1137
|
+
"header": "fix(math-rendering): updated all dependent packages for math rendering and for editable-html [ch3365], [ch1530]",
|
|
1138
|
+
"body": null,
|
|
1139
|
+
"footer": null,
|
|
1140
|
+
"notes": [],
|
|
1141
|
+
"hash": "33e3287a735cec9aed893f697a1933ff0c077042",
|
|
1142
|
+
"gitTags": "",
|
|
1143
|
+
"committerDate": "2019-08-19 19:37:56 +0300",
|
|
1144
|
+
"isTagged": true,
|
|
1145
|
+
"tag": "@pie-element/multiple-choice-configure@1.5.10"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"type": "fix",
|
|
1149
|
+
"scope": null,
|
|
1150
|
+
"subject": "null choices were throwing 'choices.map is not a function' error.",
|
|
1151
|
+
"merge": null,
|
|
1152
|
+
"header": "fix: null choices were throwing 'choices.map is not a function' error.",
|
|
1153
|
+
"body": null,
|
|
1154
|
+
"footer": null,
|
|
1155
|
+
"notes": [],
|
|
1156
|
+
"hash": "54d0c8ccc7594665b7a8736d2497119f5d8c2533",
|
|
1157
|
+
"gitTags": "",
|
|
1158
|
+
"committerDate": "2019-08-21 13:55:48 +0300",
|
|
1159
|
+
"isTagged": true,
|
|
1160
|
+
"tag": "@pie-element/multiple-choice-configure@1.5.12"
|
|
1161
|
+
},
|
|
1162
|
+
{
|
|
1163
|
+
"type": "fix",
|
|
1164
|
+
"scope": null,
|
|
1165
|
+
"subject": "prevent value=''",
|
|
1166
|
+
"merge": null,
|
|
1167
|
+
"header": "fix: prevent value=''",
|
|
1168
|
+
"body": null,
|
|
1169
|
+
"footer": null,
|
|
1170
|
+
"notes": [],
|
|
1171
|
+
"hash": "754372bee7be062723b308bfaa9ca89f4fd7ca6e",
|
|
1172
|
+
"gitTags": "",
|
|
1173
|
+
"committerDate": "2019-08-29 18:00:00 +0300",
|
|
1174
|
+
"isTagged": true,
|
|
1175
|
+
"tag": "@pie-element/multiple-choice-configure@1.5.14"
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
"type": "feat",
|
|
1179
|
+
"scope": null,
|
|
1180
|
+
"subject": "Added the possibility to disable Settings Panel (used for EBSR).",
|
|
1181
|
+
"merge": null,
|
|
1182
|
+
"header": "feat: Added the possibility to disable Settings Panel (used for EBSR).",
|
|
1183
|
+
"body": null,
|
|
1184
|
+
"footer": null,
|
|
1185
|
+
"notes": [],
|
|
1186
|
+
"hash": "0327953a8d741555e34b50b0957908ec7e692b6f",
|
|
1187
|
+
"gitTags": "",
|
|
1188
|
+
"committerDate": "2019-09-12 10:28:57 +0300",
|
|
1189
|
+
"isTagged": true,
|
|
1190
|
+
"tag": "@pie-element/multiple-choice-configure@1.6.0"
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
"type": "feat",
|
|
1194
|
+
"scope": null,
|
|
1195
|
+
"subject": "add Part Labels feature (but will be used in EBSR context only)",
|
|
1196
|
+
"merge": null,
|
|
1197
|
+
"header": "feat: add Part Labels feature (but will be used in EBSR context only)",
|
|
1198
|
+
"body": null,
|
|
1199
|
+
"footer": null,
|
|
1200
|
+
"notes": [],
|
|
1201
|
+
"hash": "c3c066b5beb0107cde627f469fdb3b4c1a40efac",
|
|
1202
|
+
"gitTags": "",
|
|
1203
|
+
"committerDate": "2019-09-07 02:29:51 +0300",
|
|
1204
|
+
"isTagged": true,
|
|
1205
|
+
"tag": "@pie-element/multiple-choice-configure@1.7.0"
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"type": "fix",
|
|
1209
|
+
"scope": null,
|
|
1210
|
+
"subject": "Show Correct Answer was not working properly: replaced allowFeedback (used to send data to pie-ui) with feedbackEnabled (can be changed in settings panel).",
|
|
1211
|
+
"merge": null,
|
|
1212
|
+
"header": "fix: Show Correct Answer was not working properly: replaced allowFeedback (used to send data to pie-ui) with feedbackEnabled (can be changed in settings panel).",
|
|
1213
|
+
"body": null,
|
|
1214
|
+
"footer": null,
|
|
1215
|
+
"notes": [],
|
|
1216
|
+
"hash": "494bf3a471a90e704cbb5ffdb9f44a198646f276",
|
|
1217
|
+
"gitTags": "",
|
|
1218
|
+
"committerDate": "2019-09-27 09:22:59 +0300",
|
|
1219
|
+
"isTagged": true,
|
|
1220
|
+
"tag": "@pie-element/multiple-choice-configure@2.1.0"
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
"type": "feat",
|
|
1224
|
+
"scope": "multiple-choice",
|
|
1225
|
+
"subject": "model based prompt",
|
|
1226
|
+
"merge": null,
|
|
1227
|
+
"header": "feat(multiple-choice): model based prompt",
|
|
1228
|
+
"body": null,
|
|
1229
|
+
"footer": null,
|
|
1230
|
+
"notes": [],
|
|
1231
|
+
"hash": "d90c1a1c83f1efb2c941016812f7296f90ba1e57",
|
|
1232
|
+
"gitTags": "",
|
|
1233
|
+
"committerDate": "2019-09-25 18:24:54 +0300",
|
|
1234
|
+
"isTagged": true,
|
|
1235
|
+
"tag": "@pie-element/multiple-choice-configure@2.1.0"
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"type": "fix",
|
|
1239
|
+
"scope": null,
|
|
1240
|
+
"subject": "Hide Partial Scoring option from Settings Panel setting to false by default.",
|
|
1241
|
+
"merge": null,
|
|
1242
|
+
"header": "fix: Hide Partial Scoring option from Settings Panel setting to false by default.",
|
|
1243
|
+
"body": null,
|
|
1244
|
+
"footer": null,
|
|
1245
|
+
"notes": [],
|
|
1246
|
+
"hash": "1d0f617741d88756dd9861647981b1121e04963f",
|
|
1247
|
+
"gitTags": "",
|
|
1248
|
+
"committerDate": "2019-11-06 09:57:11 +0200",
|
|
1249
|
+
"isTagged": true,
|
|
1250
|
+
"tag": "@pie-element/multiple-choice-configure@3.0.1"
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"type": "fix",
|
|
1254
|
+
"scope": null,
|
|
1255
|
+
"subject": "bump @pie-lib dependencies",
|
|
1256
|
+
"merge": null,
|
|
1257
|
+
"header": "fix: bump @pie-lib dependencies",
|
|
1258
|
+
"body": null,
|
|
1259
|
+
"footer": null,
|
|
1260
|
+
"notes": [],
|
|
1261
|
+
"hash": "dcef3a72e83d09aa6566a1285a3ff2ec8219988a",
|
|
1262
|
+
"gitTags": "",
|
|
1263
|
+
"committerDate": "2020-03-23 12:46:14 +0000",
|
|
1264
|
+
"isTagged": true,
|
|
1265
|
+
"tag": "@pie-element/multiple-choice-configure@3.1.0"
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"type": "fix",
|
|
1269
|
+
"scope": null,
|
|
1270
|
+
"subject": "bump ui versions",
|
|
1271
|
+
"merge": null,
|
|
1272
|
+
"header": "fix: bump ui versions",
|
|
1273
|
+
"body": null,
|
|
1274
|
+
"footer": null,
|
|
1275
|
+
"notes": [],
|
|
1276
|
+
"hash": "5b9d99fe59c304bdd173c9336503eb558900d2a2",
|
|
1277
|
+
"gitTags": "",
|
|
1278
|
+
"committerDate": "2020-03-31 19:25:13 +0100",
|
|
1279
|
+
"isTagged": true,
|
|
1280
|
+
"tag": "@pie-element/multiple-choice-configure@3.1.0"
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"type": "fix",
|
|
1284
|
+
"scope": null,
|
|
1285
|
+
"subject": "bump lib and ui versions",
|
|
1286
|
+
"merge": null,
|
|
1287
|
+
"header": "fix: bump lib and ui versions",
|
|
1288
|
+
"body": null,
|
|
1289
|
+
"footer": null,
|
|
1290
|
+
"notes": [],
|
|
1291
|
+
"hash": "a882cbf4580098ce0e12c51cf6ad2879817e17e7",
|
|
1292
|
+
"gitTags": "",
|
|
1293
|
+
"committerDate": "2020-04-10 17:13:24 +0100",
|
|
1294
|
+
"isTagged": true,
|
|
1295
|
+
"tag": "@pie-element/multiple-choice-configure@3.1.1"
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"type": "fix",
|
|
1299
|
+
"scope": null,
|
|
1300
|
+
"subject": "bump all packages to avoid tag conflict",
|
|
1301
|
+
"merge": null,
|
|
1302
|
+
"header": "fix: bump all packages to avoid tag conflict",
|
|
1303
|
+
"body": null,
|
|
1304
|
+
"footer": null,
|
|
1305
|
+
"notes": [],
|
|
1306
|
+
"hash": "d9ec9a8689f0a391594b5e2f4ea958c6dc9f6d7b",
|
|
1307
|
+
"gitTags": "",
|
|
1308
|
+
"committerDate": "2020-04-10 20:01:37 +0100",
|
|
1309
|
+
"isTagged": true,
|
|
1310
|
+
"tag": "@pie-element/multiple-choice-configure@3.1.1"
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
"type": "fix",
|
|
1314
|
+
"scope": null,
|
|
1315
|
+
"subject": "PD-127: MC Choice Prefix Issue (Set 'letters' as default choicePrefix)",
|
|
1316
|
+
"merge": null,
|
|
1317
|
+
"header": "fix: PD-127: MC Choice Prefix Issue (Set 'letters' as default choicePrefix)",
|
|
1318
|
+
"body": null,
|
|
1319
|
+
"footer": null,
|
|
1320
|
+
"notes": [],
|
|
1321
|
+
"hash": "27cd7adf01276ecd09094c4d7808807590a8c00a",
|
|
1322
|
+
"gitTags": "",
|
|
1323
|
+
"committerDate": "2020-04-13 09:47:09 +0300",
|
|
1324
|
+
"isTagged": true,
|
|
1325
|
+
"tag": "@pie-element/multiple-choice-configure@3.1.2"
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
"type": "fix",
|
|
1329
|
+
"scope": null,
|
|
1330
|
+
"subject": "bump ui/lib versions",
|
|
1331
|
+
"merge": null,
|
|
1332
|
+
"header": "fix: bump ui/lib versions",
|
|
1333
|
+
"body": null,
|
|
1334
|
+
"footer": null,
|
|
1335
|
+
"notes": [],
|
|
1336
|
+
"hash": "3edb2321ebaefcaee70c3642aa6da8a50e8a99e5",
|
|
1337
|
+
"gitTags": "",
|
|
1338
|
+
"committerDate": "2020-04-14 15:36:44 +0100",
|
|
1339
|
+
"isTagged": true,
|
|
1340
|
+
"tag": "@pie-element/multiple-choice-configure@3.1.3"
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
"type": "fix",
|
|
1344
|
+
"scope": null,
|
|
1345
|
+
"subject": "bump ui/lib versions",
|
|
1346
|
+
"merge": null,
|
|
1347
|
+
"header": "fix: bump ui/lib versions",
|
|
1348
|
+
"body": null,
|
|
1349
|
+
"footer": null,
|
|
1350
|
+
"notes": [],
|
|
1351
|
+
"hash": "45f0da6e3e01f33aff6059cb13d571554690348b",
|
|
1352
|
+
"gitTags": "",
|
|
1353
|
+
"committerDate": "2020-04-28 14:57:57 +0100",
|
|
1354
|
+
"isTagged": true,
|
|
1355
|
+
"tag": "@pie-element/multiple-choice-configure@3.1.4"
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"type": "fix",
|
|
1359
|
+
"scope": null,
|
|
1360
|
+
"subject": "update ui/lib versions",
|
|
1361
|
+
"merge": null,
|
|
1362
|
+
"header": "fix: update ui/lib versions",
|
|
1363
|
+
"body": null,
|
|
1364
|
+
"footer": null,
|
|
1365
|
+
"notes": [],
|
|
1366
|
+
"hash": "0226b0bc0869d468ba3e5986bc469e020f4f12a6",
|
|
1367
|
+
"gitTags": "",
|
|
1368
|
+
"committerDate": "2020-04-28 14:20:37 +0100",
|
|
1369
|
+
"isTagged": true,
|
|
1370
|
+
"tag": "@pie-element/multiple-choice-configure@3.1.4"
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"type": "fix",
|
|
1374
|
+
"scope": null,
|
|
1375
|
+
"subject": "ui+libs update",
|
|
1376
|
+
"merge": null,
|
|
1377
|
+
"header": "fix: ui+libs update",
|
|
1378
|
+
"body": null,
|
|
1379
|
+
"footer": null,
|
|
1380
|
+
"notes": [],
|
|
1381
|
+
"hash": "6127de27006a7835d1dd7a9c4c5f13de950aa06d",
|
|
1382
|
+
"gitTags": "",
|
|
1383
|
+
"committerDate": "2020-04-27 19:52:07 +0100",
|
|
1384
|
+
"isTagged": true,
|
|
1385
|
+
"tag": "@pie-element/multiple-choice-configure@3.1.4"
|
|
1386
|
+
}
|
|
1387
|
+
]
|