fcad-core-dragon 2.0.2 → 2.1.0-beta.1
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 +10 -0
- package/package.json +1 -1
- package/src/components/AppCompInputDropdownNx.vue +4 -0
- package/src/components/AppCompInputRadioNx.vue +14 -0
- package/src/components/AppCompInputTextNx.vue +5 -0
- package/src/components/AppCompInputTextTableNx.vue +4 -0
- package/src/components/AppCompInputTextToFillDropdownNx.vue +4 -0
- package/src/components/AppCompInputTextToFillNx.vue +37 -1
- package/src/main.js +2 -2
- /package/src/components/{AppCompQuiz.vue → AppCompQuizNext.vue} +0 -0
package/CHANGELOG
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
2.1.0-beta.1(27 août 2025)
|
|
2
|
+
RUPTURE DE COMPATIBILITÉ : (structure de données des rétroactions). Seules les propriétés "title" et "hypertext" sont acceptées (anciennement "title", "hypertext_1" et "hypertext_2")
|
|
3
|
+
|
|
4
|
+
Retrait du border sur les balises fieldset
|
|
5
|
+
|
|
6
|
+
Correction des styles texte à trous
|
|
7
|
+
|
|
8
|
+
2.0.3(27 août 2025)
|
|
9
|
+
HOTFIX Renommer app-comp-quiz en app-comp-quiz-next pour assurer la compatibilité avec les projets existants
|
|
10
|
+
|
|
1
11
|
2.0.2(26 août 2025)
|
|
2
12
|
Exercices : Renommer app-comp-quiz-nx en app-comp-quiz pour assurer la compatibilité avec les projets existants
|
|
3
13
|
|
package/package.json
CHANGED
|
@@ -262,3 +262,17 @@ export default {
|
|
|
262
262
|
}
|
|
263
263
|
}
|
|
264
264
|
</script>
|
|
265
|
+
<style lang="scss">
|
|
266
|
+
.custom-control-input:focus ~ .custom-control-label::before {
|
|
267
|
+
border: inherit;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.custom-control-input:focus ~ .custom-control-label::before {
|
|
271
|
+
box-shadow: inherit;
|
|
272
|
+
-webkit-box-shadow: inherit;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
fieldset {
|
|
276
|
+
border: inherit;
|
|
277
|
+
}
|
|
278
|
+
</style>
|
|
@@ -260,7 +260,7 @@ export default {
|
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
</script>
|
|
263
|
-
<style lang="scss"
|
|
263
|
+
<style lang="scss">
|
|
264
264
|
.texteatrou {
|
|
265
265
|
display: inline;
|
|
266
266
|
position: relative;
|
|
@@ -274,4 +274,40 @@ export default {
|
|
|
274
274
|
display: inline;
|
|
275
275
|
width: auto;
|
|
276
276
|
}
|
|
277
|
+
|
|
278
|
+
fieldset {
|
|
279
|
+
border: inherit;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.texteatrou {
|
|
283
|
+
position: relative;
|
|
284
|
+
|
|
285
|
+
.v-input {
|
|
286
|
+
width: 240px;
|
|
287
|
+
height: 29px;
|
|
288
|
+
position: relative;
|
|
289
|
+
|
|
290
|
+
.v-input__details {
|
|
291
|
+
display: none !important;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.v-input__control {
|
|
295
|
+
height: 29px;
|
|
296
|
+
width: 240px;
|
|
297
|
+
|
|
298
|
+
.v-field__field {
|
|
299
|
+
min-height: 29px;
|
|
300
|
+
height: 29px;
|
|
301
|
+
|
|
302
|
+
.v-field__input {
|
|
303
|
+
padding-top: 2px;
|
|
304
|
+
padding-bottom: 2px;
|
|
305
|
+
padding-right: 30px;
|
|
306
|
+
height: 29px;
|
|
307
|
+
min-height: 29px;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
277
313
|
</style>
|
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 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('
|
|
78
|
+
app.component('AppCompQuizNext', AppCompQuizNext)
|
|
79
79
|
app.component('AppIconsNext', AppCompSVGNext)
|
|
80
80
|
app.component('AppCompQuizRecall', AppCompQuizRecall)
|
|
81
81
|
app.component('AppBaseSkeleton', AppBaseSkeleton)
|
|
File without changes
|