fcad-core-dragon 2.0.2-beta.1 → 2.0.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.
package/CHANGELOG CHANGED
@@ -1,7 +1,15 @@
1
+ 2.0.2(26 août 2025)
2
+ Exercices : Renommer app-comp-quiz-nx en app-comp-quiz pour assurer la compatibilité avec les projets existants
3
+
4
+ Exercices : Réécriture complète de la logique derrière les exercices
5
+
6
+ 2.0.2-beta.2(25 août 2025)
7
+ Exercices : Renommer app-comp-quiz-nx en app-comp-quiz pour assurer la compatibilité avec les projets existants
8
+
1
9
  2.0.2-beta.1(19 août 2025)
2
10
  Exercices : Réécriture complète de la logique derrière les exercices
3
11
 
4
- Rappel de réponse : Mise à jour automatique du contenu quand la réponse change.
12
+ Rappel de réponse : Mise à jour automatique du contenu quand la réponse change
5
13
 
6
14
  Accessibilité : Balise fieldset qui annonce la marche \ suivre quand on arrive sur un exercice
7
15
 
@@ -16,8 +24,6 @@
16
24
 
17
25
  TOC : Alignement vertical du libellé "terminé"
18
26
 
19
- Nouveau fichier (vuetify.scss) pour overrider les variables SASS vuetify, La liste complète des variables SASS globales pouvant être modifiées se trouve ici : https://vuetifyjs.com/en/api/globals/#sass
20
-
21
27
  2.0.1-beta.1(12 mai 2025)
22
28
  Vitepress : La documentation du FCAD 2 est maintenant dans le dossier "documentation"
23
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fcad-core-dragon",
3
- "version": "2.0.2-beta.1",
3
+ "version": "2.0.2",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./src/main.js",
@@ -2,7 +2,7 @@
2
2
  * Renders a checkboxe input type for the Quiz component
3
3
  * Related Quiz to question: REPONSE_MULTIPLE
4
4
  * Receives the a data object defined by user
5
- * Used by AppCompQuizNx
5
+ * Used by AppCompQuiz
6
6
  -->
7
7
  <template>
8
8
  <div :id="id" class="input-box">
@@ -2,7 +2,7 @@
2
2
  * Renders a SELECT input to display choices of response for the Quiz component
3
3
  * Related Quiz to question: DROPDOWN
4
4
  * Receives the a data object defined by user
5
- * Used by AppCompQuizNx
5
+ * Used by AppCompQuiz
6
6
  * Uses useQuiz composable
7
7
  -->
8
8
  <template>
@@ -2,7 +2,7 @@
2
2
  * Renders a RADIO BUTTON input to display choices of response for the Quiz component
3
3
  * Related Quiz to question: REPONSE_UNIQUE
4
4
  * Receives the a data object defined by user
5
- * Used by AppCompQuizNx
5
+ * Used by AppCompQuiz
6
6
  * Uses useQuiz composable
7
7
  -->
8
8
 
@@ -2,7 +2,7 @@
2
2
  * Renders a TEXTAREA input to collect input for the Quiz component
3
3
  * Related Quiz to question: REPONSE_OUVERTE
4
4
  Receives the a data object defined by user
5
- * Used by AppCompQuizNx
5
+ * Used by AppCompQuiz
6
6
  * Uses useQuiz composable
7
7
  -->
8
8
  <template>
@@ -2,7 +2,7 @@
2
2
  * Renders a Series of SELECTS inputs to collect input for the Quiz component.
3
3
  * Related Quiz to question: TEXTE_TABLEAU
4
4
  * Receives the a data object defined by user
5
- * Used by AppCompQuizNx
5
+ * Used by AppCompQuiz
6
6
  * Uses useQuiz composable
7
7
  -->
8
8
  <template>
@@ -2,7 +2,7 @@
2
2
  * Renders a Series of inputs to collect input for the Quiz component.
3
3
  * Related Quiz to question: TEXTE_TROUE_SELECT
4
4
  * Receives the a data object defined by user
5
- * Used by AppCompQuizNx
5
+ * Used by AppCompQuiz
6
6
  * Uses useQuiz composable
7
7
  -->
8
8
  <template>
@@ -2,7 +2,7 @@
2
2
  * Renders a Series of inputs to collect input for the Quiz component.
3
3
  * Related Quiz to question: TEXTE_TROUE
4
4
  * Receives the a data object defined by user
5
- * Used by AppCompQuizNx
5
+ * Used by AppCompQuiz
6
6
  * Uses useQuiz composable
7
7
  -->
8
8
  <template>
package/src/main.js CHANGED
@@ -20,7 +20,7 @@ import AppCompNoteCall from './components/AppCompNoteCall.vue'
20
20
  import AppCompNoteCredit from './components/AppCompNoteCredit.vue'
21
21
  import AppCompVideoPlayer from './components/AppCompVideoPlayer.vue'
22
22
  import AppCompPlayBarNext from './components/AppCompPlayBarNext.vue'
23
- import AppCompQuizNx from './components/AppCompQuizNx.vue'
23
+ import AppCompQuiz from './components/AppCompQuiz.vue'
24
24
  import AppCompQuizRecall from './components/AppCompQuizRecall.vue'
25
25
  import AppBaseSkeleton from './components/AppBaseSkeleton.vue'
26
26
 
@@ -75,7 +75,7 @@ export default {
75
75
  app.component('AppBasePopover', AppBasePopover)
76
76
  app.component('AppCompVideoPlayer', AppCompVideoPlayer)
77
77
  app.component('AppCompPlayBarNext', AppCompPlayBarNext)
78
- app.component('AppCompQuizNx', AppCompQuizNx)
78
+ app.component('AppCompQuiz', AppCompQuiz)
79
79
  app.component('AppIconsNext', AppCompSVGNext)
80
80
  app.component('AppCompQuizRecall', AppCompQuizRecall)
81
81
  app.component('AppBaseSkeleton', AppBaseSkeleton)