@pie-element/ebsr 8.14.0 → 8.14.1-beta.1

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 (57) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/configure/CHANGELOG.md +19 -0
  3. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.json +1972 -0
  4. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.md +2431 -0
  5. package/configure/node_modules/@pie-element/multiple-choice/LICENSE.md +5 -0
  6. package/configure/node_modules/@pie-element/multiple-choice/PRINT.md +35 -0
  7. package/configure/node_modules/@pie-element/multiple-choice/README.md +56 -0
  8. package/configure/node_modules/@pie-element/multiple-choice/choice.png +0 -0
  9. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.json +1387 -0
  10. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.md +1902 -0
  11. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js +133 -0
  12. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js.map +1 -0
  13. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js +248 -0
  14. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js.map +1 -0
  15. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js +610 -0
  16. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js.map +1 -0
  17. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js +18 -0
  18. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js.map +1 -0
  19. package/configure/node_modules/@pie-element/multiple-choice/configure/package.json +20 -0
  20. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.json +527 -0
  21. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.md +834 -0
  22. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js +18 -0
  23. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js.map +1 -0
  24. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js +306 -0
  25. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js.map +1 -0
  26. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js +36 -0
  27. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js.map +1 -0
  28. package/configure/node_modules/@pie-element/multiple-choice/controller/package.json +15 -0
  29. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json +614 -0
  30. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json.md +469 -0
  31. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/config.js +8 -0
  32. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/generate.js +53 -0
  33. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/index.html +1 -0
  34. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/session.js +7 -0
  35. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json +411 -0
  36. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json.md +327 -0
  37. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js +332 -0
  38. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js.map +1 -0
  39. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js +165 -0
  40. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js.map +1 -0
  41. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js +174 -0
  42. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js.map +1 -0
  43. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js +156 -0
  44. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js.map +1 -0
  45. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js +96 -0
  46. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js.map +1 -0
  47. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js +359 -0
  48. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js.map +1 -0
  49. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js +129 -0
  50. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js.map +1 -0
  51. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js +35 -0
  52. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js.map +1 -0
  53. package/configure/node_modules/@pie-element/multiple-choice/package.json +35 -0
  54. package/configure/package.json +3 -3
  55. package/controller/CHANGELOG.md +8 -0
  56. package/controller/package.json +1 -1
  57. package/package.json +3 -3
@@ -0,0 +1,834 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [3.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.7.3...@pie-element/multiple-choice-controller@3.8.0) (2023-09-25)
7
+
8
+
9
+ ### Features
10
+
11
+ * **multiple-choice:** add translations ([fe4dc0f](https://github.com/pie-framework/pie-elements/commit/fe4dc0f15158c039ad9276f09d8b9874d61224cf))
12
+
13
+
14
+
15
+
16
+
17
+ ## [3.7.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.7.2...@pie-element/multiple-choice-controller@3.7.3) (2023-07-06)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * updated editable-html dependent packages for PD-2150 ([ffa6297](https://github.com/pie-framework/pie-elements/commit/ffa62977a9e329c1e12ea1dfcb2af4ba4c993bca))
23
+
24
+
25
+
26
+
27
+
28
+ ## [3.7.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.7.1...@pie-element/multiple-choice-controller@3.7.2) (2023-04-25)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * update pie-libs PD-2762 ([7ac4313](https://github.com/pie-framework/pie-elements/commit/7ac431346b822fe3bbb0d13375f044f6ce1f426b))
34
+
35
+
36
+
37
+
38
+
39
+ ## [3.7.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.7.0...@pie-element/multiple-choice-controller@3.7.1) (2023-04-10)
40
+
41
+
42
+ ### Bug Fixes
43
+
44
+ * **multiple-choice:** add sanity checks ([147346f](https://github.com/pie-framework/pie-elements/commit/147346fe3cb8974a4eb3b59944e1382fabf4abed))
45
+
46
+
47
+
48
+
49
+
50
+ # [3.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.6.1...@pie-element/multiple-choice-controller@3.7.0) (2023-02-01)
51
+
52
+
53
+ ### Features
54
+
55
+ * update pie-libs ([0af590d](https://github.com/pie-framework/pie-elements/commit/0af590d624f4b2c0af58039e935531cef52e2a86))
56
+
57
+
58
+
59
+
60
+
61
+ ## [3.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.6.0...@pie-element/multiple-choice-controller@3.6.1) (2022-12-07)
62
+
63
+
64
+ ### Bug Fixes
65
+
66
+ * update libs ([441f403](https://github.com/pie-framework/pie-elements/commit/441f403870b7bec0d61fab58b8d93dbe0ead4c32))
67
+
68
+
69
+
70
+
71
+
72
+ # [3.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.5.5...@pie-element/multiple-choice-controller@3.6.0) (2022-05-03)
73
+
74
+
75
+ ### Features
76
+
77
+ * **multiple-choice:** updated validation behaviors PD-1696 PD-1697 ([ab009c4](https://github.com/pie-framework/pie-elements/commit/ab009c4832572dab96c5b4130a5088dea17222e6))
78
+ * added configurable validation ([1e3a0d6](https://github.com/pie-framework/pie-elements/commit/1e3a0d6da3c790e68a7fd401df2c832917d62480))
79
+ * added configurable validation + refactoring PD-1696 ([31f6354](https://github.com/pie-framework/pie-elements/commit/31f6354b256fef876fa6c48e79a3f82486b5fce7))
80
+ * added configurable validation + refactoring PD-1696 ([08d9b70](https://github.com/pie-framework/pie-elements/commit/08d9b70991f159707ef7fd5b3e533a0addda1d90))
81
+ * added configurable validation + refactoring PD-1696 ([07c42c2](https://github.com/pie-framework/pie-elements/commit/07c42c2811349d1e829d367993541157fbbe2dfc))
82
+ * start working on multiple-choice validation ([722037b](https://github.com/pie-framework/pie-elements/commit/722037bc0fddd2e090ec1506e85a91949ad86c91))
83
+
84
+
85
+
86
+
87
+
88
+ ## [3.5.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.5.4...@pie-element/multiple-choice-controller@3.5.5) (2022-04-12)
89
+
90
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
91
+
92
+
93
+
94
+
95
+
96
+ ## [3.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.4.1...@pie-element/multiple-choice-controller@3.5.1) (2021-11-11)
97
+
98
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
99
+
100
+
101
+
102
+
103
+
104
+ # [3.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.3.3...@pie-element/multiple-choice-controller@3.5.0) (2021-11-11)
105
+
106
+
107
+ ### Features
108
+
109
+ * **multiple-choice:** accessibility label - added aria label to checkbox and radio input types ([22514bb](https://github.com/pie-framework/pie-elements/commit/22514bb5e2476bc79a55756ff9a5c0c1e0642a29))
110
+ * if there are no choices - do not show grid columns dropdown BREAKING CHANGE: removed verticalMode(boolean) from model & configuration - and replaced it with choicesLayout(string) ([1c36ae8](https://github.com/pie-framework/pie-elements/commit/1c36ae8b7f9369b2723a6a84e7350370e1186c50))
111
+ * **multiple-choice:** added possibility to change layout - vertical, grid, horizontal ([46e7681](https://github.com/pie-framework/pie-elements/commit/46e7681a178ff29c983db1c7b6206389b55e2a00))
112
+
113
+
114
+
115
+
116
+
117
+
118
+ ## [3.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.4.0...@pie-element/multiple-choice-controller@3.4.1) (2021-09-01)
119
+
120
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
121
+
122
+
123
+
124
+
125
+
126
+ # [3.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.3.3...@pie-element/multiple-choice-controller@3.4.0) (2021-08-05)
127
+
128
+
129
+ ### Features
130
+
131
+ * **multiple-choice:** accessibility label - added aria label to checkbox and radio input types ([22514bb](https://github.com/pie-framework/pie-elements/commit/22514bb5e2476bc79a55756ff9a5c0c1e0642a29))
132
+ * if there are no choices - do not show grid columns dropdown BREAKING CHANGE: removed verticalMode(boolean) from model & configuration - and replaced it with choicesLayout(string) ([1c36ae8](https://github.com/pie-framework/pie-elements/commit/1c36ae8b7f9369b2723a6a84e7350370e1186c50))
133
+ * **multiple-choice:** added possibility to change layout - vertical, grid, horizontal ([46e7681](https://github.com/pie-framework/pie-elements/commit/46e7681a178ff29c983db1c7b6206389b55e2a00))
134
+
135
+
136
+
137
+
138
+
139
+ ## [3.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.3.1...@pie-element/multiple-choice-controller@3.3.3) (2021-08-05)
140
+
141
+
142
+ ### Bug Fixes
143
+
144
+ * force bump ([5ea7295](https://github.com/pie-framework/pie-elements/commit/5ea7295e4755fbc492a76e7ec69e5fc35b196919))
145
+
146
+
147
+
148
+
149
+
150
+ ## [3.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.3.0...@pie-element/multiple-choice-controller@3.3.1) (2021-06-29)
151
+
152
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
153
+
154
+
155
+
156
+
157
+
158
+ # [3.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.2.13...@pie-element/multiple-choice-controller@3.3.0) (2021-04-07)
159
+
160
+
161
+ ### Features
162
+
163
+ * Added Vertical Mode for player ([#555](https://github.com/pie-framework/pie-elements/issues/555)) ([0da549e](https://github.com/pie-framework/pie-elements/commit/0da549e8af2523491779582674477ef08ba0990b))
164
+
165
+
166
+
167
+
168
+
169
+ ## [3.2.13](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.2.10...@pie-element/multiple-choice-controller@3.2.13) (2021-03-03)
170
+
171
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
172
+
173
+
174
+
175
+
176
+
177
+ ## [3.2.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.2.9...@pie-element/multiple-choice-controller@3.2.10) (2021-03-03)
178
+
179
+
180
+ ### Bug Fixes
181
+
182
+ * **multiple-choice:** hide feedback for player if disabled ([2fb6a5d](https://github.com/pie-framework/pie-elements/commit/2fb6a5d707e9ed60502aaa87a5ff1aa3b77f8df0))
183
+ * **multiple-choice:** test feedback ([7827e4d](https://github.com/pie-framework/pie-elements/commit/7827e4d3032e321b9ff5ac7e465026faa2fa2997))
184
+
185
+
186
+
187
+
188
+
189
+ ## [3.2.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.2.8...@pie-element/multiple-choice-controller@3.2.9) (2020-10-16)
190
+
191
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
192
+
193
+
194
+
195
+
196
+
197
+ ## [3.2.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.2.7...@pie-element/multiple-choice-controller@3.2.8) (2020-08-25)
198
+
199
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
200
+
201
+
202
+
203
+
204
+
205
+ ## [3.2.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.2.6...@pie-element/multiple-choice-controller@3.2.7) (2020-08-25)
206
+
207
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
208
+
209
+
210
+
211
+
212
+
213
+ ## [3.2.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.2.5...@pie-element/multiple-choice-controller@3.2.6) (2020-08-13)
214
+
215
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
216
+
217
+
218
+
219
+
220
+
221
+ ## [3.2.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.2.4...@pie-element/multiple-choice-controller@3.2.5) (2020-05-25)
222
+
223
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
224
+
225
+
226
+
227
+
228
+
229
+ ## [3.2.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.2.3...@pie-element/multiple-choice-controller@3.2.4) (2020-05-25)
230
+
231
+
232
+ ### Bug Fixes
233
+
234
+ * Multiple Select should report a question as "answered" as soon as a selection has been made (Remove unintended clue about how many answer choices are correct.) PD-253 ([314ead5](https://github.com/pie-framework/pie-elements/commit/314ead5))
235
+ * New partial-credit scoring algorithm for MCA items. PD-165 ([e80f2db](https://github.com/pie-framework/pie-elements/commit/e80f2db))
236
+
237
+
238
+
239
+
240
+
241
+ ## [3.2.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.2.2...@pie-element/multiple-choice-controller@3.2.3) (2020-04-14)
242
+
243
+
244
+ ### Bug Fixes
245
+
246
+ * bump ui/lib versions ([3edb232](https://github.com/pie-framework/pie-elements/commit/3edb232))
247
+
248
+
249
+
250
+
251
+
252
+ ## [3.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.2.1...@pie-element/multiple-choice-controller@3.2.2) (2020-04-14)
253
+
254
+
255
+ ### Bug Fixes
256
+
257
+ * PD-127: MC Choice Prefix Issue (Set 'letters' as default choicePrefix) ([27cd7ad](https://github.com/pie-framework/pie-elements/commit/27cd7ad))
258
+
259
+
260
+
261
+
262
+
263
+ ## [3.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.1.4...@pie-element/multiple-choice-controller@3.2.1) (2020-04-10)
264
+
265
+
266
+ ### Bug Fixes
267
+
268
+ * bump all packages to avoid tag conflict ([d9ec9a8](https://github.com/pie-framework/pie-elements/commit/d9ec9a8))
269
+ * bump ui versions ([5b9d99f](https://github.com/pie-framework/pie-elements/commit/5b9d99f))
270
+
271
+
272
+
273
+
274
+
275
+ ## [3.1.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.1.4...@pie-element/multiple-choice-controller@3.1.5) (2020-04-10)
276
+
277
+
278
+ ### Bug Fixes
279
+
280
+ * bump ui versions ([5b9d99f](https://github.com/pie-framework/pie-elements/commit/5b9d99f))
281
+
282
+
283
+
284
+
285
+
286
+ ## [3.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.1.3...@pie-element/multiple-choice-controller@3.1.4) (2020-01-31)
287
+
288
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
289
+
290
+
291
+
292
+
293
+
294
+ ## [3.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.1.2...@pie-element/multiple-choice-controller@3.1.3) (2020-01-30)
295
+
296
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
297
+
298
+
299
+
300
+
301
+
302
+ ## [3.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.1.1...@pie-element/multiple-choice-controller@3.1.2) (2020-01-28)
303
+
304
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
305
+
306
+
307
+
308
+
309
+
310
+ ## [3.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.1.0...@pie-element/multiple-choice-controller@3.1.1) (2020-01-28)
311
+
312
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
313
+
314
+
315
+
316
+
317
+
318
+ # [3.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.0.7...@pie-element/multiple-choice-controller@3.1.0) (2020-01-09)
319
+
320
+
321
+ ### Features
322
+
323
+ * **normalization:** added a choicePrefix default value in case one is not given [ch6650] ([955ff40](https://github.com/pie-framework/pie-elements/commit/955ff40))
324
+
325
+
326
+
327
+
328
+
329
+ ## [3.0.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.0.6...@pie-element/multiple-choice-controller@3.0.7) (2019-12-03)
330
+
331
+
332
+ ### Bug Fixes
333
+
334
+ * PIE-201 - store prompts and answers in session, fix ([2380224](https://github.com/pie-framework/pie-elements/commit/2380224))
335
+
336
+
337
+
338
+
339
+
340
+ ## [3.0.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.0.5...@pie-element/multiple-choice-controller@3.0.6) (2019-11-06)
341
+
342
+
343
+ ### Bug Fixes
344
+
345
+ * feedbackEnabled should not be the property that decides whether the choice correctness is displayed or not. ([b69adfd](https://github.com/pie-framework/pie-elements/commit/b69adfd))
346
+
347
+
348
+
349
+
350
+
351
+ ## [3.0.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.0.4...@pie-element/multiple-choice-controller@3.0.5) (2019-10-29)
352
+
353
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
354
+
355
+
356
+
357
+
358
+
359
+ ## [3.0.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.0.3...@pie-element/multiple-choice-controller@3.0.4) (2019-10-16)
360
+
361
+
362
+ ### Bug Fixes
363
+
364
+ * ch2766 fix unresolved promise ([#366](https://github.com/pie-framework/pie-elements/issues/366)) ([9057b7f](https://github.com/pie-framework/pie-elements/commit/9057b7f)), closes [#365](https://github.com/pie-framework/pie-elements/issues/365)
365
+
366
+
367
+
368
+
369
+
370
+ ## [3.0.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.0.2...@pie-element/multiple-choice-controller@3.0.3) (2019-10-16)
371
+
372
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
373
+
374
+
375
+
376
+
377
+
378
+ ## [3.0.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.0.1...@pie-element/multiple-choice-controller@3.0.2) (2019-10-15)
379
+
380
+
381
+ ### Bug Fixes
382
+
383
+ * bump @pie-lib/controller-utils@^0.2.2 ([edae61c](https://github.com/pie-framework/pie-elements/commit/edae61c))
384
+
385
+
386
+
387
+
388
+
389
+ ## [3.0.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@3.0.0...@pie-element/multiple-choice-controller@3.0.1) (2019-10-11)
390
+
391
+
392
+ ### Bug Fixes
393
+
394
+ * bump @pie-lib/controller-utils@^0.2.1 [ch4723] ([0a33d68](https://github.com/pie-framework/pie-elements/commit/0a33d68))
395
+
396
+
397
+
398
+
399
+
400
+ # [3.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@2.1.2...@pie-element/multiple-choice-controller@3.0.0) (2019-10-08)
401
+
402
+
403
+ * Andreea/ch3969/for all items default values should be true (#355) ([9916c38](https://github.com/pie-framework/pie-elements/commit/9916c38)), closes [#355](https://github.com/pie-framework/pie-elements/issues/355)
404
+
405
+
406
+ ### BREAKING CHANGES
407
+
408
+ * allowFeedback was replaced with feedbackEnabled.
409
+
410
+ * fix(charting): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
411
+
412
+ * fix(drag-in-the-blank): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
413
+
414
+ * fix(drawing-response): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
415
+
416
+ * fix(ebsr): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
417
+
418
+ * fix(explicit-constructed-response): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
419
+
420
+ * fix(extended-text-entry): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
421
+
422
+ * fix(graph-lines): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
423
+
424
+ * fix(graphing): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
425
+
426
+ * fix(hotspot): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
427
+
428
+ * fix(image-cloze-association): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
429
+
430
+ * fix(inline-dropdown): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
431
+
432
+ * fix(match): replaced usage of allowFeedback with feedbackEnabled. Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
433
+ * allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
434
+
435
+ * fix(math-inline): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
436
+
437
+ * fix(multiple-choice): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
438
+
439
+ * fix(placement-ordering): replaced usage of allowFeedback with feedbackEnabled. Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
440
+ * allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
441
+
442
+ * fix(select-text): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
443
+
444
+ * fix(text-entry): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
445
+
446
+ * fix: Updated pie-models.
447
+
448
+ * fix(categorize): Added normalize function on controller (to be able to add default values to the model).
449
+
450
+ * fix(charting): Added normalize function on controller (to be able to add default values to the model).
451
+
452
+ * fix(drag-in-the-blank): Added normalize function on controller (to be able to add default values to the model).
453
+
454
+ * fix(drawing-response): Added normalize function on controller (to be able to add default values to the model).
455
+
456
+ * fix(ebsr): Added normalize function on controller (to be able to add default values to the model).
457
+
458
+ * fix(explicit-constructed-response): Added normalize function on controller (to be able to add default values to the model).
459
+
460
+ * fix(extended-text-entry): Added normalize function on controller (to be able to add default values to the model).
461
+
462
+ * Remove unnecessary change.
463
+
464
+ * fix(graph-lines): Added normalize function on controller (to be able to add default values to the model).
465
+
466
+ * fix(graphing): Added normalize function on controller (to be able to add default values to the model).
467
+
468
+ * fix(hotspot): Added normalize function on controller (to be able to add default values to the model).
469
+
470
+ * fix(image-cloze-association): Added normalize function on controller (to be able to add default values to the model).
471
+
472
+ * fix(inline-dropdown): Added normalize function on controller (to be able to add default values to the model).
473
+
474
+ * fix(match): Added normalize function on controller (to be able to add default values to the model).
475
+
476
+ * fix(math-inline): Added normalize function on controller (to be able to add default values to the model).
477
+
478
+ * fix(multiple-choice): Added normalize function on controller (to be able to add default values to the model).
479
+
480
+ * fix(placement-ordering): Added normalize function on controller (to be able to add default values to the model).
481
+
482
+ * fix(select-text): Added normalize function on controller (to be able to add default values to the model).
483
+
484
+ * fix(text-entry): Added normalize function on controller (to be able to add default values to the model).
485
+
486
+
487
+
488
+
489
+
490
+ ## [2.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@2.1.1...@pie-element/multiple-choice-controller@2.1.2) (2019-10-03)
491
+
492
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
493
+
494
+
495
+
496
+
497
+
498
+ ## [2.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@2.1.0...@pie-element/multiple-choice-controller@2.1.1) (2019-10-03)
499
+
500
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
501
+
502
+
503
+
504
+
505
+
506
+ # [2.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@2.0.0...@pie-element/multiple-choice-controller@2.1.0) (2019-09-27)
507
+
508
+
509
+ ### Bug Fixes
510
+
511
+ * Show Correct Answer was not working properly: replaced allowFeedback (used to send data to pie-ui) with feedbackEnabled (can be changed in settings panel). ([494bf3a](https://github.com/pie-framework/pie-elements/commit/494bf3a))
512
+
513
+
514
+ ### Features
515
+
516
+ * **multiple-choice:** model based prompt ([d90c1a1](https://github.com/pie-framework/pie-elements/commit/d90c1a1))
517
+
518
+
519
+
520
+
521
+
522
+ # [2.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.8.1...@pie-element/multiple-choice-controller@2.0.0) (2019-09-17)
523
+
524
+
525
+ * Moved rationale, teacherInstructions and studentInstructions enabled flag in model because it's needed in controller. ([9b3e532](https://github.com/pie-framework/pie-elements/commit/9b3e532))
526
+
527
+
528
+ ### BREAKING CHANGES
529
+
530
+ * `enabled` property from `configuration.rationale.enabled` moved to `model.rationaleEnabled`. Same applies to teacherInstructions/studentInstructions.
531
+
532
+
533
+
534
+
535
+
536
+ ## [1.8.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.8.0...@pie-element/multiple-choice-controller@1.8.1) (2019-09-05)
537
+
538
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
539
+
540
+
541
+
542
+
543
+
544
+ # [1.8.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.7.0...@pie-element/multiple-choice-controller@1.8.0) (2019-09-04)
545
+
546
+
547
+ ### Bug Fixes
548
+
549
+ * bump pie-lib/controller-utils ([ba3de00](https://github.com/pie-framework/pie-elements/commit/ba3de00))
550
+
551
+
552
+ ### Features
553
+
554
+ * make use of updateSession callback ([c82de88](https://github.com/pie-framework/pie-elements/commit/c82de88))
555
+
556
+
557
+
558
+
559
+
560
+ # [1.7.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.12...@pie-element/multiple-choice-controller@1.7.0) (2019-08-27)
561
+
562
+
563
+ ### Features
564
+
565
+ * Session null/empty check. ([f24dc8b](https://github.com/pie-framework/pie-elements/commit/f24dc8b))
566
+
567
+
568
+
569
+
570
+
571
+ ## [1.6.12](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.11...@pie-element/multiple-choice-controller@1.6.12) (2019-08-26)
572
+
573
+
574
+ ### Bug Fixes
575
+
576
+ * null choices were throwing 'choices.map is not a function' error. ([54d0c8c](https://github.com/pie-framework/pie-elements/commit/54d0c8c))
577
+
578
+
579
+
580
+
581
+
582
+ ## [1.6.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.10...@pie-element/multiple-choice-controller@1.6.11) (2019-08-15)
583
+
584
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
585
+
586
+
587
+
588
+
589
+
590
+ ## [1.6.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.9...@pie-element/multiple-choice-controller@1.6.10) (2019-08-02)
591
+
592
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
593
+
594
+
595
+
596
+
597
+
598
+ ## [1.6.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.8...@pie-element/multiple-choice-controller@1.6.9) (2019-07-25)
599
+
600
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
601
+
602
+
603
+
604
+
605
+
606
+ ## [1.6.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.7...@pie-element/multiple-choice-controller@1.6.8) (2019-07-07)
607
+
608
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
609
+
610
+
611
+
612
+
613
+
614
+ ## [1.6.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.6...@pie-element/multiple-choice-controller@1.6.7) (2019-07-07)
615
+
616
+
617
+ ### Bug Fixes
618
+
619
+ * **editable-html:** fixed lots of stuff regarding the editable-html ([12c1129](https://github.com/pie-framework/pie-elements/commit/12c1129))
620
+
621
+
622
+
623
+
624
+
625
+ ## [1.6.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.5...@pie-element/multiple-choice-controller@1.6.6) (2019-07-05)
626
+
627
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
628
+
629
+
630
+
631
+
632
+
633
+ ## [1.6.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.4...@pie-element/multiple-choice-controller@1.6.5) (2019-07-03)
634
+
635
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
636
+
637
+
638
+
639
+
640
+
641
+ ## [1.6.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.3...@pie-element/multiple-choice-controller@1.6.4) (2019-07-02)
642
+
643
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
644
+
645
+
646
+
647
+
648
+
649
+ ## [1.6.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.2...@pie-element/multiple-choice-controller@1.6.3) (2019-07-02)
650
+
651
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
652
+
653
+
654
+
655
+
656
+
657
+ ## [1.6.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.1...@pie-element/multiple-choice-controller@1.6.2) (2019-05-23)
658
+
659
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
660
+
661
+
662
+
663
+
664
+
665
+ ## [1.6.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.6.0...@pie-element/multiple-choice-controller@1.6.1) (2019-05-21)
666
+
667
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
668
+
669
+
670
+
671
+
672
+
673
+ # [1.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.5.4...@pie-element/multiple-choice-controller@1.6.0) (2019-05-16)
674
+
675
+
676
+ ### Features
677
+
678
+ * added rationale support ([3c1edf3](https://github.com/pie-framework/pie-elements/commit/3c1edf3))
679
+ * added rationale support. ([1ddc137](https://github.com/pie-framework/pie-elements/commit/1ddc137))
680
+
681
+
682
+
683
+
684
+
685
+ ## [1.5.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.5.3...@pie-element/multiple-choice-controller@1.5.4) (2019-04-23)
686
+
687
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
688
+
689
+
690
+
691
+
692
+
693
+ ## [1.5.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.5.2...@pie-element/multiple-choice-controller@1.5.3) (2019-04-19)
694
+
695
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
696
+
697
+
698
+
699
+
700
+
701
+ ## [1.5.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.5.1...@pie-element/multiple-choice-controller@1.5.2) (2019-04-18)
702
+
703
+
704
+ ### Bug Fixes
705
+
706
+ * **multiple-choice:** Refactored using new established naming convention and updated tests. ([78ffbae](https://github.com/pie-framework/pie-elements/commit/78ffbae))
707
+
708
+
709
+
710
+
711
+
712
+ ## [1.5.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.5.0...@pie-element/multiple-choice-controller@1.5.1) (2019-04-08)
713
+
714
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
715
+
716
+
717
+
718
+
719
+
720
+ # [1.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.4.4...@pie-element/multiple-choice-controller@1.5.0) (2019-04-04)
721
+
722
+
723
+ ### Features
724
+
725
+ * allow config to control the UI ([70551b8](https://github.com/pie-framework/pie-elements/commit/70551b8))
726
+ * partial scoring ([928bcc3](https://github.com/pie-framework/pie-elements/commit/928bcc3))
727
+ * support env.partialScoring, disable for radio ([40862cb](https://github.com/pie-framework/pie-elements/commit/40862cb))
728
+
729
+
730
+
731
+
732
+
733
+ ## [1.4.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.4.3...@pie-element/multiple-choice-controller@1.4.4) (2019-03-18)
734
+
735
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
736
+
737
+
738
+
739
+
740
+
741
+ ## [1.4.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.4.2...@pie-element/multiple-choice-controller@1.4.3) (2019-03-18)
742
+
743
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
744
+
745
+
746
+
747
+
748
+
749
+ ## [1.4.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.4.1...@pie-element/multiple-choice-controller@1.4.2) (2019-03-18)
750
+
751
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
752
+
753
+
754
+
755
+
756
+
757
+ ## [1.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.4.0...@pie-element/multiple-choice-controller@1.4.1) (2019-03-18)
758
+
759
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
760
+
761
+
762
+
763
+
764
+
765
+ # 1.4.0 (2019-03-13)
766
+
767
+
768
+ ### Features
769
+
770
+ * **general:** initialize default model ([#129](https://github.com/pie-framework/pie-elements/issues/129)) ([b62d058](https://github.com/pie-framework/pie-elements/commit/b62d058))
771
+
772
+
773
+
774
+
775
+
776
+ # [1.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.2.2...@pie-element/multiple-choice-controller@1.3.0) (2019-01-08)
777
+
778
+
779
+ ### Features
780
+
781
+ * **multiple-choice:** refactored the code of the multiple-choice package in order to use the new layout ([b16b654](https://github.com/pie-framework/pie-elements/commit/b16b654))
782
+
783
+
784
+
785
+
786
+
787
+ ## [1.2.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.2.1...@pie-element/multiple-choice-controller@1.2.2) (2018-11-12)
788
+
789
+
790
+ ### Bug Fixes
791
+
792
+ * **dependencies-add:** added dependencies where needed ([23df697](https://github.com/pie-framework/pie-elements/commit/23df697))
793
+ * conflict ([b854c6b](https://github.com/pie-framework/pie-elements/commit/b854c6b))
794
+
795
+
796
+
797
+
798
+
799
+ <a name="1.2.1"></a>
800
+ ## [1.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.2.0...@pie-element/multiple-choice-controller@1.2.1) (2018-11-05)
801
+
802
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
803
+
804
+
805
+
806
+
807
+
808
+ <a name="1.2.0"></a>
809
+ # [1.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/multiple-choice-controller@1.1.0...@pie-element/multiple-choice-controller@1.2.0) (2018-10-31)
810
+
811
+
812
+ ### Features
813
+
814
+ * **ch497:** updated the partial scoring for 3 packages: match, select-text and multiple-choice ([5a46b06](https://github.com/pie-framework/pie-elements/commit/5a46b06))
815
+ * **choice-interaction-update:** made the requested changes for the multiple-choice package ([d03dc1a](https://github.com/pie-framework/pie-elements/commit/d03dc1a))
816
+
817
+
818
+
819
+
820
+
821
+ <a name="1.1.0"></a>
822
+ # 1.1.0 (2018-09-20)
823
+
824
+
825
+ ### Bug Fixes
826
+
827
+ * **dependencies:** version bump ([ee6d3d0](https://github.com/pie-framework/pie-elements/commit/ee6d3d0))
828
+ * build fixes ([3c3a7f2](https://github.com/pie-framework/pie-elements/commit/3c3a7f2))
829
+
830
+
831
+ ### Features
832
+
833
+ * **root:** use [@pie-lib](https://github.com/pie-lib)/config-ui choiceUtils ([2a3f180](https://github.com/pie-framework/pie-elements/commit/2a3f180))
834
+ * add outcome method to controller ([ec2853e](https://github.com/pie-framework/pie-elements/commit/ec2853e))