@ecored-sena/base-kit 0.0.2 → 0.0.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecored-sena/base-kit",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Paquete para el desarrollo de componentes de recursos educativos digitales",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -44,11 +44,11 @@
44
44
  <hr />
45
45
  <div v-if="respuestaSelected.esCorrecta" class="pt-1">
46
46
  <span class="text-success h3 ma-0">¡Correcto!</span>
47
- {{ pregunta.mensaje_correcto }}
47
+ <span v-html="pregunta.mensaje_correcto" />
48
48
  </div>
49
49
  <div v-else class="pt-1">
50
50
  <span class="text-danger h3 ma-0">¡Incorrecto!</span>
51
- {{ pregunta.mensaje_incorrecto }}
51
+ <span v-html="pregunta.mensaje_incorrecto" />
52
52
  </div>
53
53
  </template>
54
54
  </div>
@@ -46,7 +46,7 @@
46
46
  />
47
47
  </svg>
48
48
  <div class="percentage-text">
49
- {{ Math.round(porcentajeAprobadas) }}%
49
+ {{ Math.round(porcentajeAprobadas) }} %
50
50
  </div>
51
51
  </div>
52
52