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 +9 -3
- package/package.json +1 -1
- package/src/components/AppCompInputCheckBoxNx.vue +1 -1
- package/src/components/AppCompInputDropdownNx.vue +1 -1
- package/src/components/AppCompInputRadioNx.vue +1 -1
- package/src/components/AppCompInputTextNx.vue +1 -1
- package/src/components/AppCompInputTextTableNx.vue +1 -1
- package/src/components/AppCompInputTextToFillDropdownNx.vue +1 -1
- package/src/components/AppCompInputTextToFillNx.vue +1 -1
- package/src/main.js +2 -2
- /package/src/components/{AppCompQuizNx.vue → AppCompQuiz.vue} +0 -0
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
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
|
|
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('
|
|
78
|
+
app.component('AppCompQuiz', AppCompQuiz)
|
|
79
79
|
app.component('AppIconsNext', AppCompSVGNext)
|
|
80
80
|
app.component('AppCompQuizRecall', AppCompQuizRecall)
|
|
81
81
|
app.component('AppBaseSkeleton', AppBaseSkeleton)
|
|
File without changes
|