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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (144) hide show
  1. package/CHANGELOG.md +0 -16
  2. package/configure/CHANGELOG.md +0 -16
  3. package/configure/lib/main.js +6 -4
  4. package/configure/lib/main.js.map +1 -1
  5. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.json +1972 -0
  6. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.md +1793 -0
  7. package/{LICENSE.md → configure/node_modules/@pie-element/multiple-choice/LICENSE.md} +0 -0
  8. package/configure/node_modules/@pie-element/multiple-choice/PRINT.md +35 -0
  9. package/configure/node_modules/@pie-element/multiple-choice/README.md +56 -0
  10. package/configure/node_modules/@pie-element/multiple-choice/choice.png +0 -0
  11. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.json +1387 -0
  12. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.md +1334 -0
  13. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js +104 -0
  14. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js.map +1 -0
  15. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js +198 -0
  16. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js.map +1 -0
  17. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js +599 -0
  18. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js.map +1 -0
  19. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js +18 -0
  20. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js.map +1 -0
  21. package/configure/node_modules/@pie-element/multiple-choice/configure/package.json +20 -0
  22. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.json +527 -0
  23. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.md +768 -0
  24. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js +18 -0
  25. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js.map +1 -0
  26. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js +305 -0
  27. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js.map +1 -0
  28. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js +36 -0
  29. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js.map +1 -0
  30. package/configure/node_modules/@pie-element/multiple-choice/controller/package.json +15 -0
  31. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json +353 -0
  32. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json.md +277 -0
  33. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/config.js +8 -0
  34. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/generate.js +52 -0
  35. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/index.html +1 -0
  36. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/session.js +7 -0
  37. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json +338 -0
  38. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json.md +274 -0
  39. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js +298 -0
  40. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js.map +1 -0
  41. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js +157 -0
  42. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js.map +1 -0
  43. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js +174 -0
  44. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js.map +1 -0
  45. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js +151 -0
  46. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js.map +1 -0
  47. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js +97 -0
  48. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js.map +1 -0
  49. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js +254 -0
  50. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js.map +1 -0
  51. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js +129 -0
  52. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js.map +1 -0
  53. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js +35 -0
  54. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js.map +1 -0
  55. package/configure/node_modules/@pie-element/multiple-choice/module/configure.js +843 -0
  56. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/controller.js +17304 -17374
  57. package/configure/node_modules/@pie-element/multiple-choice/module/demo.js +77 -0
  58. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/element.js +42 -171
  59. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/index.html +1 -1
  60. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/manifest.json +4 -4
  61. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print-demo.js +46 -46
  62. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print.html +1 -1
  63. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print.js +70 -259
  64. package/configure/node_modules/@pie-element/multiple-choice/package.json +34 -0
  65. package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.json +672 -0
  66. package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.md +427 -0
  67. package/configure/node_modules/@pie-lib/math-rendering/LICENSE.md +5 -0
  68. package/configure/node_modules/@pie-lib/math-rendering/lib/index.js +30 -0
  69. package/configure/node_modules/@pie-lib/math-rendering/lib/index.js.map +1 -0
  70. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js +316 -0
  71. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js.map +1 -0
  72. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js +23 -0
  73. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js.map +1 -0
  74. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js +123 -0
  75. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js.map +1 -0
  76. package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js +103 -0
  77. package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js.map +1 -0
  78. package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js +275 -0
  79. package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js.map +1 -0
  80. package/configure/node_modules/@pie-lib/math-rendering/package.json +19 -0
  81. package/configure/node_modules/@pie-lib/math-rendering/playground/demo.html +872 -0
  82. package/configure/node_modules/@pie-lib/math-rendering/playground/demo.js +108 -0
  83. package/configure/node_modules/@pie-lib/math-rendering/playground/main.html +156 -0
  84. package/configure/node_modules/@pie-lib/math-rendering/playground/main.js +16 -0
  85. package/configure/node_modules/@pie-lib/math-rendering/playground/webpack.config.js +29 -0
  86. package/configure/node_modules/@pie-lib/math-rendering/src/index.js +4 -0
  87. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/chtml.js +215 -0
  88. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/index.js +13 -0
  89. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/mml.js +24 -0
  90. package/configure/node_modules/@pie-lib/math-rendering/src/normalization.js +69 -0
  91. package/configure/node_modules/@pie-lib/math-rendering/src/render-math.js +234 -0
  92. package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.json +937 -0
  93. package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.md +602 -0
  94. package/configure/node_modules/@pie-lib/render-ui/LICENSE.md +5 -0
  95. package/configure/node_modules/@pie-lib/render-ui/README.md +33 -0
  96. package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js +146 -0
  97. package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js.map +1 -0
  98. package/configure/node_modules/@pie-lib/render-ui/lib/color.js +134 -0
  99. package/configure/node_modules/@pie-lib/render-ui/lib/color.js.map +1 -0
  100. package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js +160 -0
  101. package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js.map +1 -0
  102. package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js +24 -0
  103. package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js.map +1 -0
  104. package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js +102 -0
  105. package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js.map +1 -0
  106. package/configure/node_modules/@pie-lib/render-ui/lib/index.js +104 -0
  107. package/configure/node_modules/@pie-lib/render-ui/lib/index.js.map +1 -0
  108. package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js +60 -0
  109. package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js.map +1 -0
  110. package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js +133 -0
  111. package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js.map +1 -0
  112. package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js +162 -0
  113. package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js.map +1 -0
  114. package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js +28 -0
  115. package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js.map +1 -0
  116. package/configure/node_modules/@pie-lib/render-ui/lib/readable.js +28 -0
  117. package/configure/node_modules/@pie-lib/render-ui/lib/readable.js.map +1 -0
  118. package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js +160 -0
  119. package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js.map +1 -0
  120. package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js +206 -0
  121. package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js.map +1 -0
  122. package/configure/node_modules/@pie-lib/render-ui/package.json +30 -0
  123. package/configure/node_modules/@pie-lib/render-ui/src/collapsible/index.jsx +68 -0
  124. package/configure/node_modules/@pie-lib/render-ui/src/color.js +48 -0
  125. package/configure/node_modules/@pie-lib/render-ui/src/feedback.jsx +100 -0
  126. package/configure/node_modules/@pie-lib/render-ui/src/has-text.js +14 -0
  127. package/configure/node_modules/@pie-lib/render-ui/src/html-and-math.js +40 -0
  128. package/configure/node_modules/@pie-lib/render-ui/src/index.js +27 -0
  129. package/configure/node_modules/@pie-lib/render-ui/src/input-container.jsx +41 -0
  130. package/configure/node_modules/@pie-lib/render-ui/src/preview-layout.jsx +77 -0
  131. package/configure/node_modules/@pie-lib/render-ui/src/preview-prompt.jsx +90 -0
  132. package/configure/node_modules/@pie-lib/render-ui/src/purpose.jsx +19 -0
  133. package/configure/node_modules/@pie-lib/render-ui/src/readable.jsx +19 -0
  134. package/configure/node_modules/@pie-lib/render-ui/src/response-indicators.jsx +89 -0
  135. package/configure/node_modules/@pie-lib/render-ui/src/withUndoReset.jsx +118 -0
  136. package/configure/package.json +3 -3
  137. package/configure/src/__tests__/index.test.js +4 -2
  138. package/configure/src/main.jsx +8 -3
  139. package/controller/lib/index.js +79 -3
  140. package/controller/lib/index.js.map +1 -1
  141. package/controller/src/index.js +55 -0
  142. package/package.json +3 -3
  143. package/module/configure.js +0 -472
  144. package/module/demo.js +0 -77
@@ -0,0 +1,768 @@
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.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)
7
+
8
+
9
+ ### Features
10
+
11
+ * **multiple-choice:** updated validation behaviors PD-1696 PD-1697 ([ab009c4](https://github.com/pie-framework/pie-elements/commit/ab009c4832572dab96c5b4130a5088dea17222e6))
12
+ * added configurable validation ([1e3a0d6](https://github.com/pie-framework/pie-elements/commit/1e3a0d6da3c790e68a7fd401df2c832917d62480))
13
+ * added configurable validation + refactoring PD-1696 ([31f6354](https://github.com/pie-framework/pie-elements/commit/31f6354b256fef876fa6c48e79a3f82486b5fce7))
14
+ * added configurable validation + refactoring PD-1696 ([08d9b70](https://github.com/pie-framework/pie-elements/commit/08d9b70991f159707ef7fd5b3e533a0addda1d90))
15
+ * added configurable validation + refactoring PD-1696 ([07c42c2](https://github.com/pie-framework/pie-elements/commit/07c42c2811349d1e829d367993541157fbbe2dfc))
16
+ * start working on multiple-choice validation ([722037b](https://github.com/pie-framework/pie-elements/commit/722037bc0fddd2e090ec1506e85a91949ad86c91))
17
+
18
+
19
+
20
+
21
+
22
+ ## [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)
23
+
24
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
25
+
26
+
27
+
28
+
29
+
30
+ ## [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)
31
+
32
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
33
+
34
+
35
+
36
+
37
+
38
+ # [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)
39
+
40
+
41
+ ### Features
42
+
43
+ * **multiple-choice:** accessibility label - added aria label to checkbox and radio input types ([22514bb](https://github.com/pie-framework/pie-elements/commit/22514bb5e2476bc79a55756ff9a5c0c1e0642a29))
44
+ * 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))
45
+ * **multiple-choice:** added possibility to change layout - vertical, grid, horizontal ([46e7681](https://github.com/pie-framework/pie-elements/commit/46e7681a178ff29c983db1c7b6206389b55e2a00))
46
+
47
+
48
+
49
+
50
+
51
+
52
+ ## [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)
53
+
54
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
55
+
56
+
57
+
58
+
59
+
60
+ # [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)
61
+
62
+
63
+ ### Features
64
+
65
+ * **multiple-choice:** accessibility label - added aria label to checkbox and radio input types ([22514bb](https://github.com/pie-framework/pie-elements/commit/22514bb5e2476bc79a55756ff9a5c0c1e0642a29))
66
+ * 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))
67
+ * **multiple-choice:** added possibility to change layout - vertical, grid, horizontal ([46e7681](https://github.com/pie-framework/pie-elements/commit/46e7681a178ff29c983db1c7b6206389b55e2a00))
68
+
69
+
70
+
71
+
72
+
73
+ ## [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)
74
+
75
+
76
+ ### Bug Fixes
77
+
78
+ * force bump ([5ea7295](https://github.com/pie-framework/pie-elements/commit/5ea7295e4755fbc492a76e7ec69e5fc35b196919))
79
+
80
+
81
+
82
+
83
+
84
+ ## [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)
85
+
86
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
87
+
88
+
89
+
90
+
91
+
92
+ # [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)
93
+
94
+
95
+ ### Features
96
+
97
+ * 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))
98
+
99
+
100
+
101
+
102
+
103
+ ## [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)
104
+
105
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
106
+
107
+
108
+
109
+
110
+
111
+ ## [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)
112
+
113
+
114
+ ### Bug Fixes
115
+
116
+ * **multiple-choice:** hide feedback for player if disabled ([2fb6a5d](https://github.com/pie-framework/pie-elements/commit/2fb6a5d707e9ed60502aaa87a5ff1aa3b77f8df0))
117
+ * **multiple-choice:** test feedback ([7827e4d](https://github.com/pie-framework/pie-elements/commit/7827e4d3032e321b9ff5ac7e465026faa2fa2997))
118
+
119
+
120
+
121
+
122
+
123
+ ## [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)
124
+
125
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
126
+
127
+
128
+
129
+
130
+
131
+ ## [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)
132
+
133
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
134
+
135
+
136
+
137
+
138
+
139
+ ## [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)
140
+
141
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
142
+
143
+
144
+
145
+
146
+
147
+ ## [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)
148
+
149
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
150
+
151
+
152
+
153
+
154
+
155
+ ## [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)
156
+
157
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
158
+
159
+
160
+
161
+
162
+
163
+ ## [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)
164
+
165
+
166
+ ### Bug Fixes
167
+
168
+ * 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))
169
+ * New partial-credit scoring algorithm for MCA items. PD-165 ([e80f2db](https://github.com/pie-framework/pie-elements/commit/e80f2db))
170
+
171
+
172
+
173
+
174
+
175
+ ## [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)
176
+
177
+
178
+ ### Bug Fixes
179
+
180
+ * bump ui/lib versions ([3edb232](https://github.com/pie-framework/pie-elements/commit/3edb232))
181
+
182
+
183
+
184
+
185
+
186
+ ## [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)
187
+
188
+
189
+ ### Bug Fixes
190
+
191
+ * PD-127: MC Choice Prefix Issue (Set 'letters' as default choicePrefix) ([27cd7ad](https://github.com/pie-framework/pie-elements/commit/27cd7ad))
192
+
193
+
194
+
195
+
196
+
197
+ ## [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)
198
+
199
+
200
+ ### Bug Fixes
201
+
202
+ * bump all packages to avoid tag conflict ([d9ec9a8](https://github.com/pie-framework/pie-elements/commit/d9ec9a8))
203
+ * bump ui versions ([5b9d99f](https://github.com/pie-framework/pie-elements/commit/5b9d99f))
204
+
205
+
206
+
207
+
208
+
209
+ ## [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)
210
+
211
+
212
+ ### Bug Fixes
213
+
214
+ * bump ui versions ([5b9d99f](https://github.com/pie-framework/pie-elements/commit/5b9d99f))
215
+
216
+
217
+
218
+
219
+
220
+ ## [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)
221
+
222
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
223
+
224
+
225
+
226
+
227
+
228
+ ## [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)
229
+
230
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
231
+
232
+
233
+
234
+
235
+
236
+ ## [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)
237
+
238
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
239
+
240
+
241
+
242
+
243
+
244
+ ## [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)
245
+
246
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
247
+
248
+
249
+
250
+
251
+
252
+ # [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)
253
+
254
+
255
+ ### Features
256
+
257
+ * **normalization:** added a choicePrefix default value in case one is not given [ch6650] ([955ff40](https://github.com/pie-framework/pie-elements/commit/955ff40))
258
+
259
+
260
+
261
+
262
+
263
+ ## [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)
264
+
265
+
266
+ ### Bug Fixes
267
+
268
+ * PIE-201 - store prompts and answers in session, fix ([2380224](https://github.com/pie-framework/pie-elements/commit/2380224))
269
+
270
+
271
+
272
+
273
+
274
+ ## [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)
275
+
276
+
277
+ ### Bug Fixes
278
+
279
+ * 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))
280
+
281
+
282
+
283
+
284
+
285
+ ## [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)
286
+
287
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
288
+
289
+
290
+
291
+
292
+
293
+ ## [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)
294
+
295
+
296
+ ### Bug Fixes
297
+
298
+ * 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)
299
+
300
+
301
+
302
+
303
+
304
+ ## [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)
305
+
306
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
307
+
308
+
309
+
310
+
311
+
312
+ ## [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)
313
+
314
+
315
+ ### Bug Fixes
316
+
317
+ * bump @pie-lib/controller-utils@^0.2.2 ([edae61c](https://github.com/pie-framework/pie-elements/commit/edae61c))
318
+
319
+
320
+
321
+
322
+
323
+ ## [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)
324
+
325
+
326
+ ### Bug Fixes
327
+
328
+ * bump @pie-lib/controller-utils@^0.2.1 [ch4723] ([0a33d68](https://github.com/pie-framework/pie-elements/commit/0a33d68))
329
+
330
+
331
+
332
+
333
+
334
+ # [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)
335
+
336
+
337
+ * 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)
338
+
339
+
340
+ ### BREAKING CHANGES
341
+
342
+ * allowFeedback was replaced with feedbackEnabled.
343
+
344
+ * fix(charting): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
345
+
346
+ * fix(drag-in-the-blank): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
347
+
348
+ * fix(drawing-response): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
349
+
350
+ * fix(ebsr): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
351
+
352
+ * fix(explicit-constructed-response): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
353
+
354
+ * fix(extended-text-entry): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
355
+
356
+ * fix(graph-lines): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
357
+
358
+ * fix(graphing): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
359
+
360
+ * fix(hotspot): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
361
+
362
+ * fix(image-cloze-association): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
363
+
364
+ * fix(inline-dropdown): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
365
+
366
+ * fix(match): replaced usage of allowFeedback with feedbackEnabled. Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
367
+ * allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
368
+
369
+ * fix(math-inline): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
370
+
371
+ * fix(multiple-choice): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
372
+
373
+ * fix(placement-ordering): replaced usage of allowFeedback with feedbackEnabled. Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
374
+ * allowFeedback was replaced with feedbackEnabled. `configuration.feedback.enabled` was moved to `model.feedbackEnabled`.
375
+
376
+ * fix(select-text): Set feedbackEnabled, rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
377
+
378
+ * fix(text-entry): Set rationaleEnabled, teacherInstructions, studentInstructions value on true by default.
379
+
380
+ * fix: Updated pie-models.
381
+
382
+ * fix(categorize): Added normalize function on controller (to be able to add default values to the model).
383
+
384
+ * fix(charting): Added normalize function on controller (to be able to add default values to the model).
385
+
386
+ * fix(drag-in-the-blank): Added normalize function on controller (to be able to add default values to the model).
387
+
388
+ * fix(drawing-response): Added normalize function on controller (to be able to add default values to the model).
389
+
390
+ * fix(ebsr): Added normalize function on controller (to be able to add default values to the model).
391
+
392
+ * fix(explicit-constructed-response): Added normalize function on controller (to be able to add default values to the model).
393
+
394
+ * fix(extended-text-entry): Added normalize function on controller (to be able to add default values to the model).
395
+
396
+ * Remove unnecessary change.
397
+
398
+ * fix(graph-lines): Added normalize function on controller (to be able to add default values to the model).
399
+
400
+ * fix(graphing): Added normalize function on controller (to be able to add default values to the model).
401
+
402
+ * fix(hotspot): Added normalize function on controller (to be able to add default values to the model).
403
+
404
+ * fix(image-cloze-association): Added normalize function on controller (to be able to add default values to the model).
405
+
406
+ * fix(inline-dropdown): Added normalize function on controller (to be able to add default values to the model).
407
+
408
+ * fix(match): Added normalize function on controller (to be able to add default values to the model).
409
+
410
+ * fix(math-inline): Added normalize function on controller (to be able to add default values to the model).
411
+
412
+ * fix(multiple-choice): Added normalize function on controller (to be able to add default values to the model).
413
+
414
+ * fix(placement-ordering): Added normalize function on controller (to be able to add default values to the model).
415
+
416
+ * fix(select-text): Added normalize function on controller (to be able to add default values to the model).
417
+
418
+ * fix(text-entry): Added normalize function on controller (to be able to add default values to the model).
419
+
420
+
421
+
422
+
423
+
424
+ ## [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)
425
+
426
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
427
+
428
+
429
+
430
+
431
+
432
+ ## [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)
433
+
434
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
435
+
436
+
437
+
438
+
439
+
440
+ # [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)
441
+
442
+
443
+ ### Bug Fixes
444
+
445
+ * 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))
446
+
447
+
448
+ ### Features
449
+
450
+ * **multiple-choice:** model based prompt ([d90c1a1](https://github.com/pie-framework/pie-elements/commit/d90c1a1))
451
+
452
+
453
+
454
+
455
+
456
+ # [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)
457
+
458
+
459
+ * 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))
460
+
461
+
462
+ ### BREAKING CHANGES
463
+
464
+ * `enabled` property from `configuration.rationale.enabled` moved to `model.rationaleEnabled`. Same applies to teacherInstructions/studentInstructions.
465
+
466
+
467
+
468
+
469
+
470
+ ## [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)
471
+
472
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
473
+
474
+
475
+
476
+
477
+
478
+ # [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)
479
+
480
+
481
+ ### Bug Fixes
482
+
483
+ * bump pie-lib/controller-utils ([ba3de00](https://github.com/pie-framework/pie-elements/commit/ba3de00))
484
+
485
+
486
+ ### Features
487
+
488
+ * make use of updateSession callback ([c82de88](https://github.com/pie-framework/pie-elements/commit/c82de88))
489
+
490
+
491
+
492
+
493
+
494
+ # [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)
495
+
496
+
497
+ ### Features
498
+
499
+ * Session null/empty check. ([f24dc8b](https://github.com/pie-framework/pie-elements/commit/f24dc8b))
500
+
501
+
502
+
503
+
504
+
505
+ ## [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)
506
+
507
+
508
+ ### Bug Fixes
509
+
510
+ * null choices were throwing 'choices.map is not a function' error. ([54d0c8c](https://github.com/pie-framework/pie-elements/commit/54d0c8c))
511
+
512
+
513
+
514
+
515
+
516
+ ## [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)
517
+
518
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
519
+
520
+
521
+
522
+
523
+
524
+ ## [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)
525
+
526
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
527
+
528
+
529
+
530
+
531
+
532
+ ## [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)
533
+
534
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
535
+
536
+
537
+
538
+
539
+
540
+ ## [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)
541
+
542
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
543
+
544
+
545
+
546
+
547
+
548
+ ## [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)
549
+
550
+
551
+ ### Bug Fixes
552
+
553
+ * **editable-html:** fixed lots of stuff regarding the editable-html ([12c1129](https://github.com/pie-framework/pie-elements/commit/12c1129))
554
+
555
+
556
+
557
+
558
+
559
+ ## [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)
560
+
561
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
562
+
563
+
564
+
565
+
566
+
567
+ ## [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)
568
+
569
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
570
+
571
+
572
+
573
+
574
+
575
+ ## [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)
576
+
577
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
578
+
579
+
580
+
581
+
582
+
583
+ ## [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)
584
+
585
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
586
+
587
+
588
+
589
+
590
+
591
+ ## [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)
592
+
593
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
594
+
595
+
596
+
597
+
598
+
599
+ ## [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)
600
+
601
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
602
+
603
+
604
+
605
+
606
+
607
+ # [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)
608
+
609
+
610
+ ### Features
611
+
612
+ * added rationale support ([3c1edf3](https://github.com/pie-framework/pie-elements/commit/3c1edf3))
613
+ * added rationale support. ([1ddc137](https://github.com/pie-framework/pie-elements/commit/1ddc137))
614
+
615
+
616
+
617
+
618
+
619
+ ## [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)
620
+
621
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
622
+
623
+
624
+
625
+
626
+
627
+ ## [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)
628
+
629
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
630
+
631
+
632
+
633
+
634
+
635
+ ## [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)
636
+
637
+
638
+ ### Bug Fixes
639
+
640
+ * **multiple-choice:** Refactored using new established naming convention and updated tests. ([78ffbae](https://github.com/pie-framework/pie-elements/commit/78ffbae))
641
+
642
+
643
+
644
+
645
+
646
+ ## [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)
647
+
648
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
649
+
650
+
651
+
652
+
653
+
654
+ # [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)
655
+
656
+
657
+ ### Features
658
+
659
+ * allow config to control the UI ([70551b8](https://github.com/pie-framework/pie-elements/commit/70551b8))
660
+ * partial scoring ([928bcc3](https://github.com/pie-framework/pie-elements/commit/928bcc3))
661
+ * support env.partialScoring, disable for radio ([40862cb](https://github.com/pie-framework/pie-elements/commit/40862cb))
662
+
663
+
664
+
665
+
666
+
667
+ ## [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)
668
+
669
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
670
+
671
+
672
+
673
+
674
+
675
+ ## [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)
676
+
677
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
678
+
679
+
680
+
681
+
682
+
683
+ ## [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)
684
+
685
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
686
+
687
+
688
+
689
+
690
+
691
+ ## [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)
692
+
693
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
694
+
695
+
696
+
697
+
698
+
699
+ # 1.4.0 (2019-03-13)
700
+
701
+
702
+ ### Features
703
+
704
+ * **general:** initialize default model ([#129](https://github.com/pie-framework/pie-elements/issues/129)) ([b62d058](https://github.com/pie-framework/pie-elements/commit/b62d058))
705
+
706
+
707
+
708
+
709
+
710
+ # [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)
711
+
712
+
713
+ ### Features
714
+
715
+ * **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))
716
+
717
+
718
+
719
+
720
+
721
+ ## [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)
722
+
723
+
724
+ ### Bug Fixes
725
+
726
+ * **dependencies-add:** added dependencies where needed ([23df697](https://github.com/pie-framework/pie-elements/commit/23df697))
727
+ * conflict ([b854c6b](https://github.com/pie-framework/pie-elements/commit/b854c6b))
728
+
729
+
730
+
731
+
732
+
733
+ <a name="1.2.1"></a>
734
+ ## [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)
735
+
736
+ **Note:** Version bump only for package @pie-element/multiple-choice-controller
737
+
738
+
739
+
740
+
741
+
742
+ <a name="1.2.0"></a>
743
+ # [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)
744
+
745
+
746
+ ### Features
747
+
748
+ * **ch497:** updated the partial scoring for 3 packages: match, select-text and multiple-choice ([5a46b06](https://github.com/pie-framework/pie-elements/commit/5a46b06))
749
+ * **choice-interaction-update:** made the requested changes for the multiple-choice package ([d03dc1a](https://github.com/pie-framework/pie-elements/commit/d03dc1a))
750
+
751
+
752
+
753
+
754
+
755
+ <a name="1.1.0"></a>
756
+ # 1.1.0 (2018-09-20)
757
+
758
+
759
+ ### Bug Fixes
760
+
761
+ * **dependencies:** version bump ([ee6d3d0](https://github.com/pie-framework/pie-elements/commit/ee6d3d0))
762
+ * build fixes ([3c3a7f2](https://github.com/pie-framework/pie-elements/commit/3c3a7f2))
763
+
764
+
765
+ ### Features
766
+
767
+ * **root:** use [@pie-lib](https://github.com/pie-lib)/config-ui choiceUtils ([2a3f180](https://github.com/pie-framework/pie-elements/commit/2a3f180))
768
+ * add outcome method to controller ([ec2853e](https://github.com/pie-framework/pie-elements/commit/ec2853e))