@windward/games 0.0.2 → 0.0.3

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.
@@ -1,20 +1,20 @@
1
1
  <template>
2
2
  <div>
3
3
  <div>
4
- <h1 class="title" aria-label="bucket game title" tabindex="0">
4
+ <h3 class="title" aria-label="bucket game title" tabindex="0">
5
5
  {{ block.metadata.config.title }}
6
- </h1>
6
+ </h3>
7
7
 
8
8
  <p tabindex="0">
9
9
  {{ block.metadata.config.instructions }}
10
10
  </p>
11
- <h3 v-if="!render" class="d-flex justify-center align-center">
11
+ <h4 v-if="!render" class="d-flex justify-center align-center">
12
12
  {{
13
13
  $t(
14
14
  'plugin.games.components.content.blocks.bucket_game.cannot'
15
15
  )
16
16
  }}
17
- </h3>
17
+ </h4>
18
18
  <v-container fluid :class="status" class="pa-0">
19
19
  <br />
20
20
  <v-row>
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div>
3
- <h2>{{ block.metadata.config.title }}</h2>
3
+ <h3>{{ block.metadata.config.title }}</h3>
4
4
 
5
5
  <p>
6
6
  {{ block.metadata.config.instructions }}
@@ -1,8 +1,8 @@
1
1
  <template>
2
2
  <div>
3
- <h2 v-if="block.metadata.config.title">
3
+ <h3 v-if="block.metadata.config.title">
4
4
  {{ block.metadata.config.title }}
5
- </h2>
5
+ </h3>
6
6
 
7
7
  <p v-if="block.metadata.config.instructions">
8
8
  {{ block.metadata.config.instructions }}
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="background">
3
3
  <div>
4
- <h1
4
+ <h3
5
5
  :aria-label="
6
6
  $t(
7
7
  'plugin.games.components.content.blocks.matching_game.match_game_title'
@@ -10,7 +10,7 @@
10
10
  tabindex="0"
11
11
  >
12
12
  {{ block.metadata.config.title }}
13
- </h1>
13
+ </h3>
14
14
 
15
15
  <p tabindex="0">
16
16
  {{ block.metadata.config.instructions }}
@@ -2,7 +2,7 @@
2
2
  <v-container>
3
3
  <v-row>
4
4
  <v-col>
5
- <h1>{{ block.metadata.config.title }}</h1>
5
+ <h3>{{ block.metadata.config.title }}</h3>
6
6
  <p>{{ block.metadata.config.instructions }}</p>
7
7
  </v-col>
8
8
  </v-row>
@@ -36,13 +36,13 @@
36
36
  :rules="validation.textRules"
37
37
  prepend-inner-icon="mdi-comment"
38
38
  ></v-textarea>
39
- <h2>
39
+ <h3>
40
40
  {{
41
41
  $t(
42
42
  'plugin.games.components.settings.multiple_choice.answer_options'
43
43
  )
44
44
  }}
45
- </h2>
45
+ </h3>
46
46
  <p>
47
47
  {{
48
48
  $t(
@@ -12,7 +12,7 @@
12
12
  ></v-switch>
13
13
  <div v-if="!tableMode">
14
14
  <div>
15
- <h1
15
+ <h3
16
16
  :aria-label="
17
17
  $t(
18
18
  'plugin.games.components.content.blocks.quizshow_game.title'
@@ -21,7 +21,7 @@
21
21
  tabindex="0"
22
22
  >
23
23
  {{ block.metadata.config.title }}
24
- </h1>
24
+ </h3>
25
25
 
26
26
  <p tabindex="0">
27
27
  <TextViewer v-model="block.metadata.config.instructions" />
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div>
3
3
  <div class="header-description">
4
- <h1
4
+ <h3
5
5
  :aria-label="
6
6
  $t(
7
7
  'plugin.games.components.content.blocks.slideshow.slideshow_title'
@@ -10,7 +10,7 @@
10
10
  tabindex="0"
11
11
  >
12
12
  {{ block.metadata.config.title }}
13
- </h1>
13
+ </h3>
14
14
 
15
15
  <p tabindex="0" class="pt-3">
16
16
  {{ block.metadata.config.instructions }}
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <v-container>
3
3
  <v-col class="pa-0">
4
- <h2>
4
+ <h3>
5
5
  {{
6
6
  block.metadata.config.title
7
7
  ? block.metadata.config.title
@@ -9,7 +9,7 @@
9
9
  'plugin.games.components.content.blocks.word_jumble.title'
10
10
  )
11
11
  }}
12
- </h2>
12
+ </h3>
13
13
  <p>{{ block.metadata.config.instructions }}</p>
14
14
  </v-col>
15
15
  <v-col class="pa-0">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windward/games",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Windward UI Plugin Games",
5
5
  "main": "plugin.js",
6
6
  "scripts": {