@windward/games 0.28.0 → 0.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## Release [0.29.0] - 2026-03-24
4
+
5
+ * Merged in feature/LE-2070-alignment-display-of-matching-ga (pull request #291)
6
+
7
+
3
8
  ## Release [0.28.0] - 2026-03-10
4
9
 
5
10
  * Merged in feature/LE-2298-word-jumble (pull request #288)
@@ -239,21 +239,27 @@
239
239
  :sort="false"
240
240
  @end="onEnd"
241
241
  >
242
- <v-card
242
+ <v-col
243
243
  v-for="(answer, aindex) in block.metadata.config
244
244
  .answerObjects"
245
245
  :key="aindex"
246
- :class="
247
- 'pa-2 ma-2 card-answer-option container-outline ' +
248
- getAnswerStyles(answer)
249
- "
250
- outlined
246
+ cols="12"
247
+ sm="6"
248
+ md="4"
251
249
  >
252
- <v-icon>mdi-drag-vertical</v-icon>
253
- <span>
254
- {{ answer.display }}
255
- </span>
256
- </v-card>
250
+ <v-card
251
+ :class="
252
+ 'pa-2 card-answer-option container-outline ' +
253
+ getAnswerStyles(answer)
254
+ "
255
+ outlined
256
+ >
257
+ <v-icon>mdi-drag-vertical</v-icon>
258
+ <span>
259
+ {{ answer.display }}
260
+ </span>
261
+ </v-card>
262
+ </v-col>
257
263
  </draggable>
258
264
  </v-row>
259
265
  <v-container
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windward/games",
3
- "version": "0.28.0",
3
+ "version": "0.29.0",
4
4
  "description": "Windward UI Plugin Games",
5
5
  "main": "plugin.js",
6
6
  "scripts": {