@pie-element/image-cloze-association 3.4.18-next.85 → 3.5.1-beta.587
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/CHANGELOG.md +489 -0
- package/configure/CHANGELOG.md +398 -0
- package/configure/lib/defaults.js +16 -0
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/index.js +17 -3
- package/configure/lib/index.js.map +1 -1
- package/configure/lib/root.js +43 -13
- package/configure/lib/root.js.map +1 -1
- package/configure/package.json +4 -3
- package/configure/src/__tests__/index.test.js +12 -15
- package/configure/src/defaults.js +20 -4
- package/configure/src/index.js +23 -3
- package/configure/src/root.jsx +41 -25
- package/controller/CHANGELOG.md +63 -0
- package/controller/lib/index.js +9 -8
- package/controller/lib/index.js.map +1 -1
- package/controller/lib/utils.js +4 -4
- package/controller/lib/utils.js.map +1 -1
- package/controller/package.json +2 -2
- package/controller/src/__tests__/index.test.js +108 -62
- package/controller/src/index.js +40 -28
- package/controller/src/utils.js +10 -10
- package/docs/config-schema.json +160 -0
- package/docs/config-schema.json.md +127 -0
- package/docs/demo/config.js +2 -2
- package/docs/demo/generate.js +30 -25
- package/docs/demo/session.js +1 -1
- package/docs/pie-schema.json +378 -0
- package/docs/pie-schema.json.md +295 -0
- package/lib/constants.js.map +1 -1
- package/lib/evaluation-icon.js.map +1 -1
- package/lib/image-container.js +13 -6
- package/lib/image-container.js.map +1 -1
- package/lib/image-drop-target.js +7 -2
- package/lib/image-drop-target.js.map +1 -1
- package/lib/index.js +4 -1
- package/lib/index.js.map +1 -1
- package/lib/interactive-section.js +1 -1
- package/lib/interactive-section.js.map +1 -1
- package/lib/possible-response.js +17 -5
- package/lib/possible-response.js.map +1 -1
- package/lib/possible-responses.js.map +1 -1
- package/lib/root.js +140 -19
- package/lib/root.js.map +1 -1
- package/lib/utils-correctness.js +33 -5
- package/lib/utils-correctness.js.map +1 -1
- package/package.json +8 -5
- package/src/__tests__/__snapshots__/{image-container-test.jsx.snap → image-container.test.jsx.snap} +20 -0
- package/src/__tests__/__snapshots__/possible-response.test.jsx.snap +5 -0
- package/src/__tests__/__snapshots__/root.test.jsx.snap +50 -0
- package/src/__tests__/{image-container-test.jsx → image-container.test.jsx} +12 -5
- package/src/__tests__/{possible-response-test.jsx → possible-response.test.jsx} +5 -3
- package/src/__tests__/{root-test.jsx → root.test.jsx} +4 -3
- package/src/__tests__/utils.test.js +207 -0
- package/src/constants.js +3 -3
- package/src/evaluation-icon.jsx +8 -17
- package/src/image-container.jsx +14 -19
- package/src/image-drop-target.jsx +45 -38
- package/src/index.js +10 -18
- package/src/interactive-section.jsx +15 -22
- package/src/possible-response.jsx +43 -23
- package/src/possible-responses.jsx +17 -25
- package/src/root.jsx +174 -100
- package/src/utils-correctness.js +44 -14
- package/src/__tests__/__snapshots__/possible-response-test.jsx.snap +0 -13
- package/src/__tests__/__snapshots__/root-test.jsx.snap +0 -38
- package/src/__tests__/utils-test.js +0 -211
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,495 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [4.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.5.0...@pie-element/image-cloze-association@4.6.0) (2023-01-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* update pie-libs ([6423903](https://github.com/pie-framework/pie-elements/commit/6423903898b041f56db2111de2e4aac4ee9f1fd3))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [4.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.4.1...@pie-element/image-cloze-association@4.5.0) (2023-01-05)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* update pie-libs ([b174476](https://github.com/pie-framework/pie-elements/commit/b174476729119a0689f1f8adfc8c235246676cab))
|
|
23
|
+
* update pie-libs ([f72c3c8](https://github.com/pie-framework/pie-elements/commit/f72c3c8d8bc9bbf061bb81502317157a63c22972))
|
|
24
|
+
* update pie-libs ([8490729](https://github.com/pie-framework/pie-elements/commit/8490729a2389d36fd3968f0806119fde96577842))
|
|
25
|
+
* **image-cloze-association:** added configuration prop to hide the settings panel PD-1999 ([5d0739b](https://github.com/pie-framework/pie-elements/commit/5d0739b021caaedd757f6caccdbef7ea74451ded))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
## [4.4.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.4.0...@pie-element/image-cloze-association@4.4.1) (2022-12-21)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
|
|
36
|
+
* updated pie-libs ([8cb5b90](https://github.com/pie-framework/pie-elements/commit/8cb5b90d501ccbdf5ffd764e6555faa48b8f54d6))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
# [4.4.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.3.3...@pie-element/image-cloze-association@4.4.0) (2022-12-20)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
### Bug Fixes
|
|
46
|
+
|
|
47
|
+
* updated pie-libs ([6549302](https://github.com/pie-framework/pie-elements/commit/65493026fbf356c5ab752ae6a14d961d4b256368))
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
### Features
|
|
51
|
+
|
|
52
|
+
* **pie-models:** update schemas for extended-text-entry in order to include the updated spellchek property ([bf4b656](https://github.com/pie-framework/pie-elements/commit/bf4b656241887acf8e2aa1264e747c0c338ed727))
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
## [4.3.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.3.2...@pie-element/image-cloze-association@4.3.3) (2022-12-07)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
### Bug Fixes
|
|
62
|
+
|
|
63
|
+
* update libs ([441f403](https://github.com/pie-framework/pie-elements/commit/441f403870b7bec0d61fab58b8d93dbe0ead4c32))
|
|
64
|
+
* update libs for PD-2030 PD-2031 ([3174022](https://github.com/pie-framework/pie-elements/commit/3174022d45603ed217bbe8804a142b07084636a5))
|
|
65
|
+
* updated lib PD-1715 ([42e788d](https://github.com/pie-framework/pie-elements/commit/42e788db0c792838994e55001952da7701251a8e))
|
|
66
|
+
* updated libs ([c20de3a](https://github.com/pie-framework/pie-elements/commit/c20de3a6ba4499a090c809e18e52588d2a585fa0))
|
|
67
|
+
* updated libs ([0eed79a](https://github.com/pie-framework/pie-elements/commit/0eed79a32c3b777c16c8cabf201513fc1d2726a0))
|
|
68
|
+
* updated libs ([343c9ec](https://github.com/pie-framework/pie-elements/commit/343c9ec3dccba7f781e90ae2bd195cac6f78f467))
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
## [4.3.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.3.1...@pie-element/image-cloze-association@4.3.2) (2022-11-15)
|
|
75
|
+
|
|
76
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
## [4.3.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.3.0...@pie-element/image-cloze-association@4.3.1) (2022-11-11)
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### Bug Fixes
|
|
86
|
+
|
|
87
|
+
* **image-close-association:** add sanity checks for withRubric ([1d3c577](https://github.com/pie-framework/pie-elements/commit/1d3c577d04b0c9b13589c9fce901b673be27ad31))
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
# [4.3.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.2.1...@pie-element/image-cloze-association@4.3.0) (2022-11-01)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### Features
|
|
97
|
+
|
|
98
|
+
* add a different property in the config, forceEnabled, to force a value ([300c664](https://github.com/pie-framework/pie-elements/commit/300c664618f46177137deef3bced2d096cdb8126))
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
## [4.2.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.2.0...@pie-element/image-cloze-association@4.2.1) (2022-10-31)
|
|
105
|
+
|
|
106
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
# [4.2.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.1.9...@pie-element/image-cloze-association@4.2.0) (2022-10-17)
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
### Features
|
|
116
|
+
|
|
117
|
+
* enable spanish and special characters in author PD-2120 ([85fd3dd](https://github.com/pie-framework/pie-elements/commit/85fd3dd0fc10da1a2dfd5a842809c625790f8ba9))
|
|
118
|
+
* set withRubric to false in item default configurations. Set rubricEnabled to true if it's enabled for drawing-response and extended-text-entry ([a209057](https://github.com/pie-framework/pie-elements/commit/a209057f5a3fa5438efc8595453c89c11959a8f5))
|
|
119
|
+
* update libs ([7e174fb](https://github.com/pie-framework/pie-elements/commit/7e174fba75e7ea668900ad5c103751cefe33e2af))
|
|
120
|
+
* **docs:** update docs ([23cab69](https://github.com/pie-framework/pie-elements/commit/23cab69700cfee41395941f99599253cba8a28a3))
|
|
121
|
+
* **image-cloze-association:** add pie-api config PD-23 ([cef5013](https://github.com/pie-framework/pie-elements/commit/cef50133f83f6dec1e3f0b993a24a35e86cfe159))
|
|
122
|
+
* **image-cloze-association:** add settings to enable rubric. Add withRubric prop to configuration and rubricEnabled prop to model PD-2101 ([e6d1ba7](https://github.com/pie-framework/pie-elements/commit/e6d1ba7c700f6a637006cb3b5befbc77bad9a3e1))
|
|
123
|
+
* **image-cloze-association:** add uploadSoundSupport property PD-23-updated ([d0d80dc](https://github.com/pie-framework/pie-elements/commit/d0d80dcf75586bdfc6d79585e4437aacc2734fea))
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
## [4.1.9](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.1.8...@pie-element/image-cloze-association@4.1.9) (2022-09-29)
|
|
130
|
+
|
|
131
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
## [4.1.8](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.1.7...@pie-element/image-cloze-association@4.1.8) (2022-09-14)
|
|
138
|
+
|
|
139
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
## [4.1.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.1.6...@pie-element/image-cloze-association@4.1.7) (2022-08-31)
|
|
146
|
+
|
|
147
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
## [4.1.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.1.5...@pie-element/image-cloze-association@4.1.6) (2022-08-16)
|
|
154
|
+
|
|
155
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
## [4.1.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.1.4...@pie-element/image-cloze-association@4.1.5) (2022-08-08)
|
|
162
|
+
|
|
163
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
## [4.1.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.1.3...@pie-element/image-cloze-association@4.1.4) (2022-08-02)
|
|
170
|
+
|
|
171
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
## [4.1.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.1.2...@pie-element/image-cloze-association@4.1.3) (2022-07-22)
|
|
178
|
+
|
|
179
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
## [4.1.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.1.1...@pie-element/image-cloze-association@4.1.2) (2022-07-20)
|
|
186
|
+
|
|
187
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
## [4.1.1](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.1.0...@pie-element/image-cloze-association@4.1.1) (2022-07-19)
|
|
194
|
+
|
|
195
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
# [4.1.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@4.0.0...@pie-element/image-cloze-association@4.1.0) (2022-06-28)
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
### Features
|
|
205
|
+
|
|
206
|
+
* **image-cloze-association:** add maxImageWidth and maxImageHeight props PD-1801 ([f4132c8](https://github.com/pie-framework/pie-elements/commit/f4132c81475ad141fae5c38def311ac7e9729a42))
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
# [4.0.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.31...@pie-element/image-cloze-association@4.0.0) (2022-06-28)
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
### chore
|
|
216
|
+
|
|
217
|
+
* Merge master with develop. ([cdca48a](https://github.com/pie-framework/pie-elements/commit/cdca48abaa1d4179e4a961e13d171e14b7ed2444))
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
### BREAKING CHANGES
|
|
221
|
+
|
|
222
|
+
* Image percent buttons were removed from toolbar.
|
|
223
|
+
New properties maxImageWidth and maxImageHeight were added.
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
## [3.6.31](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.30...@pie-element/image-cloze-association@3.6.31) (2022-06-13)
|
|
230
|
+
|
|
231
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
## [3.6.30](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.29...@pie-element/image-cloze-association@3.6.30) (2022-05-30)
|
|
238
|
+
|
|
239
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
## [3.6.29](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.28...@pie-element/image-cloze-association@3.6.29) (2022-05-16)
|
|
246
|
+
|
|
247
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
## [3.6.28](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.27...@pie-element/image-cloze-association@3.6.28) (2022-05-09)
|
|
254
|
+
|
|
255
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
## [3.6.27](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.26...@pie-element/image-cloze-association@3.6.27) (2022-05-03)
|
|
262
|
+
|
|
263
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
## [3.6.26](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.25...@pie-element/image-cloze-association@3.6.26) (2022-04-12)
|
|
270
|
+
|
|
271
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
## [3.6.25](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.24...@pie-element/image-cloze-association@3.6.25) (2022-03-28)
|
|
278
|
+
|
|
279
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
## [3.6.24](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.23...@pie-element/image-cloze-association@3.6.24) (2022-03-22)
|
|
286
|
+
|
|
287
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
## [3.6.23](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.22...@pie-element/image-cloze-association@3.6.23) (2022-03-08)
|
|
294
|
+
|
|
295
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
## [3.6.22](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.21...@pie-element/image-cloze-association@3.6.22) (2022-03-08)
|
|
302
|
+
|
|
303
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
## [3.6.21](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.20...@pie-element/image-cloze-association@3.6.21) (2022-02-21)
|
|
310
|
+
|
|
311
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
## [3.6.20](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.19...@pie-element/image-cloze-association@3.6.20) (2022-02-04)
|
|
318
|
+
|
|
319
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
## [3.6.19](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.18...@pie-element/image-cloze-association@3.6.19) (2022-01-24)
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
### Bug Fixes
|
|
329
|
+
|
|
330
|
+
* use preview prompt for prompt, rationale and teacher instructions to fix table rendering PD-1456 ([f330601](https://github.com/pie-framework/pie-elements/commit/f3306019a2d1c8ce3e2783823dfe9ef0a0394e4f))
|
|
331
|
+
* **image-cloze-association:** show correct toggle should not be visible when answer is correct PD-1327 ([e0c7b3f](https://github.com/pie-framework/pie-elements/commit/e0c7b3fa15f3ed94a4e78589980230e798ebf91d))
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
## [3.6.18](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.17...@pie-element/image-cloze-association@3.6.18) (2022-01-10)
|
|
338
|
+
|
|
339
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
## [3.6.17](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.16...@pie-element/image-cloze-association@3.6.17) (2021-12-23)
|
|
346
|
+
|
|
347
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
## [3.6.15](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.14...@pie-element/image-cloze-association@3.6.15) (2021-12-13)
|
|
354
|
+
|
|
355
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
## [3.6.12](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.11...@pie-element/image-cloze-association@3.6.12) (2021-11-29)
|
|
362
|
+
|
|
363
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
## [3.6.11](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.7...@pie-element/image-cloze-association@3.6.11) (2021-11-11)
|
|
370
|
+
|
|
371
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
## [3.6.10](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.2...@pie-element/image-cloze-association@3.6.10) (2021-11-11)
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
### Bug Fixes
|
|
381
|
+
|
|
382
|
+
* **image-cloze-association:** show correct toggle should not be visible when answer is correct PD-1327 ([e0c7b3f](https://github.com/pie-framework/pie-elements/commit/e0c7b3fa15f3ed94a4e78589980230e798ebf91d))
|
|
383
|
+
* add dependency for correct answer toggle ([66d52cd](https://github.com/pie-framework/pie-elements/commit/66d52cdff3a5e0500a4ec0efb623948772b4aefe))
|
|
384
|
+
* pie-lib updates ([e521c2f](https://github.com/pie-framework/pie-elements/commit/e521c2f1a44aa7f3e14f82a1cee05ceb484ed0a6))
|
|
385
|
+
* Updated pie-lib versions ([2fe4c5d](https://github.com/pie-framework/pie-elements/commit/2fe4c5d0be2d40f5fdb34815855695a7f1087f56))
|
|
386
|
+
* Updated pie-lib versions ([1c23830](https://github.com/pie-framework/pie-elements/commit/1c23830fc75d1de5f7bb3bb16de3c665ae5fa350))
|
|
387
|
+
* **image-cloze-association:** add show correct answer toggle for evaluate ([4ac53e7](https://github.com/pie-framework/pie-elements/commit/4ac53e71d10eb9bbe417a9bc445bd1623830823d))
|
|
388
|
+
* **image-cloze-association:** Added missing responses and marked as incorrect in evaluate mode PD-1246 ([a5d0e98](https://github.com/pie-framework/pie-elements/commit/a5d0e9807e5c99dd352e908483e143b6081eefe3))
|
|
389
|
+
* **image-cloze-association:** Fixed scoring method console errors PD-1249 ([1484c63](https://github.com/pie-framework/pie-elements/commit/1484c6354d59afcc0b541232c70ddfc5869ecfee))
|
|
390
|
+
* **image-cloze-association:** Moved the evaluate symbol to fit in the available content PD-1244 ([3266e19](https://github.com/pie-framework/pie-elements/commit/3266e199e1147773fe57d199a6ae468855d05af6))
|
|
391
|
+
* **image-cloze-association:** Removed correct answer in evaluate mode for empty response ([18c886c](https://github.com/pie-framework/pie-elements/commit/18c886c14655b42e4b9b549a700bf0258b9cefc1))
|
|
392
|
+
* **image-cloze-association:** Used classnames instead ([544be10](https://github.com/pie-framework/pie-elements/commit/544be10da1225e5a52e4f0d3b51d52f9714591ae))
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
## [3.6.7](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.6...@pie-element/image-cloze-association@3.6.7) (2021-11-01)
|
|
400
|
+
|
|
401
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
## [3.6.6](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.5...@pie-element/image-cloze-association@3.6.6) (2021-10-04)
|
|
408
|
+
|
|
409
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
## [3.6.5](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.4...@pie-element/image-cloze-association@3.6.5) (2021-09-20)
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
### Bug Fixes
|
|
419
|
+
|
|
420
|
+
* pie-lib updates ([e521c2f](https://github.com/pie-framework/pie-elements/commit/e521c2f1a44aa7f3e14f82a1cee05ceb484ed0a6))
|
|
421
|
+
* Updated pie-lib versions ([2fe4c5d](https://github.com/pie-framework/pie-elements/commit/2fe4c5d0be2d40f5fdb34815855695a7f1087f56))
|
|
422
|
+
* Updated pie-lib versions ([1c23830](https://github.com/pie-framework/pie-elements/commit/1c23830fc75d1de5f7bb3bb16de3c665ae5fa350))
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
## [3.6.4](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.3...@pie-element/image-cloze-association@3.6.4) (2021-09-01)
|
|
429
|
+
|
|
430
|
+
**Note:** Version bump only for package @pie-element/image-cloze-association
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
## [3.6.3](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.2...@pie-element/image-cloze-association@3.6.3) (2021-08-05)
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
### Bug Fixes
|
|
440
|
+
|
|
441
|
+
* **image-cloze-association:** add show correct answer toggle for evaluate ([4ac53e7](https://github.com/pie-framework/pie-elements/commit/4ac53e71d10eb9bbe417a9bc445bd1623830823d))
|
|
442
|
+
* **image-cloze-association:** Added missing responses and marked as incorrect in evaluate mode PD-1246 ([a5d0e98](https://github.com/pie-framework/pie-elements/commit/a5d0e9807e5c99dd352e908483e143b6081eefe3))
|
|
443
|
+
* **image-cloze-association:** Fixed scoring method console errors PD-1249 ([1484c63](https://github.com/pie-framework/pie-elements/commit/1484c6354d59afcc0b541232c70ddfc5869ecfee))
|
|
444
|
+
* **image-cloze-association:** Moved the evaluate symbol to fit in the available content PD-1244 ([3266e19](https://github.com/pie-framework/pie-elements/commit/3266e199e1147773fe57d199a6ae468855d05af6))
|
|
445
|
+
* **image-cloze-association:** Removed correct answer in evaluate mode for empty response ([18c886c](https://github.com/pie-framework/pie-elements/commit/18c886c14655b42e4b9b549a700bf0258b9cefc1))
|
|
446
|
+
* **image-cloze-association:** Used classnames instead ([544be10](https://github.com/pie-framework/pie-elements/commit/544be10da1225e5a52e4f0d3b51d52f9714591ae))
|
|
447
|
+
* add dependency for correct answer toggle ([66d52cd](https://github.com/pie-framework/pie-elements/commit/66d52cdff3a5e0500a4ec0efb623948772b4aefe))
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
## [3.6.2](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.6.0...@pie-element/image-cloze-association@3.6.2) (2021-08-05)
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
### Bug Fixes
|
|
457
|
+
|
|
458
|
+
* force bump ([5ea7295](https://github.com/pie-framework/pie-elements/commit/5ea7295e4755fbc492a76e7ec69e5fc35b196919))
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
# [3.6.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.5.0...@pie-element/image-cloze-association@3.6.0) (2021-06-29)
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
### Bug Fixes
|
|
468
|
+
|
|
469
|
+
* **image-cloze-association:** Displayed prompt - PD-1094 ([#566](https://github.com/pie-framework/pie-elements/issues/566)) ([2c5e91f](https://github.com/pie-framework/pie-elements/commit/2c5e91fbb4e487347c39063b48219b25d8f18b90))
|
|
470
|
+
* **image-cloze-association:** Dragging a token from one container to other should move it - PD-1099 ([#587](https://github.com/pie-framework/pie-elements/issues/587)) ([6f67fe3](https://github.com/pie-framework/pie-elements/commit/6f67fe35cc6bf3e9b4f28d6bb80a26e33212810e))
|
|
471
|
+
* **image-cloze-association:** Fixed possible responses padding - PD-1096 ([#567](https://github.com/pie-framework/pie-elements/issues/567)) ([ba69438](https://github.com/pie-framework/pie-elements/commit/ba694380dce75d36d4d1218d0658c5380d61f8bc))
|
|
472
|
+
* image-cloze-association create schemas for PD-1095 ([#562](https://github.com/pie-framework/pie-elements/issues/562)) ([d2e39da](https://github.com/pie-framework/pie-elements/commit/d2e39da045f594938239f1a25ac9786bdaffa6d9))
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
### Features
|
|
476
|
+
|
|
477
|
+
* **image-cloze-association:** Displayed a warning message when the max limit of an area is reached - PD-1100 ([#585](https://github.com/pie-framework/pie-elements/issues/585)) ([a9f9f48](https://github.com/pie-framework/pie-elements/commit/a9f9f48e974c46b2affad87bf458478803c96a11))
|
|
478
|
+
* **multi-trait-rubric:** change drag and drop to push instead of swap, drag traits by handle PD-1109 ([#561](https://github.com/pie-framework/pie-elements/issues/561)) ([93d621f](https://github.com/pie-framework/pie-elements/commit/93d621f35d04ecbd571ee0cf179cc0d99d11987c))
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
# [3.5.0](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.4.17...@pie-element/image-cloze-association@3.5.0) (2021-04-07)
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
### Features
|
|
488
|
+
|
|
489
|
+
* merge pie-ui into pie-elements PD-977 ([01ebfd7](https://github.com/pie-framework/pie-elements/commit/01ebfd7ce98b041dd0573575efd8b6da03f22162))
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
6
495
|
## [3.4.17](https://github.com/pie-framework/pie-elements/compare/@pie-element/image-cloze-association@3.4.14...@pie-element/image-cloze-association@3.4.17) (2021-03-03)
|
|
7
496
|
|
|
8
497
|
**Note:** Version bump only for package @pie-element/image-cloze-association
|