fcad-core-dragon 2.0.2 → 2.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.
package/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ 2.0.3(27 août 2025)
2
+ HOTFIX Renommer app-comp-quiz en app-comp-quiz-next pour assurer la compatibilité avec les projets existants
3
+
1
4
  2.0.2(26 août 2025)
2
5
  Exercices : Renommer app-comp-quiz-nx en app-comp-quiz pour assurer la compatibilité avec les projets existants
3
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fcad-core-dragon",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./src/main.js",
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 AppCompQuiz from './components/AppCompQuiz.vue'
23
+ import AppCompQuizNext from './components/AppCompQuizNext.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('AppCompQuiz', AppCompQuiz)
78
+ app.component('AppCompQuizNext', AppCompQuizNext)
79
79
  app.component('AppIconsNext', AppCompSVGNext)
80
80
  app.component('AppCompQuizRecall', AppCompQuizRecall)
81
81
  app.component('AppBaseSkeleton', AppBaseSkeleton)