fcad-core-dragon 2.0.3 → 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 CHANGED
@@ -1,3 +1,10 @@
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
+
1
8
  2.0.3(27 août 2025)
2
9
  HOTFIX Renommer app-comp-quiz en app-comp-quiz-next pour assurer la compatibilité avec les projets existants
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fcad-core-dragon",
3
- "version": "2.0.3",
3
+ "version": "2.1.0-beta.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./src/main.js",
@@ -252,6 +252,10 @@ export default {
252
252
  position: relative;
253
253
  }
254
254
 
255
+ fieldset {
256
+ border: inherit;
257
+ }
258
+
255
259
  div.texteatrou {
256
260
  display: inline !important;
257
261
  .cnt-input {
@@ -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>
@@ -146,3 +146,8 @@ export default {
146
146
  }
147
147
  }
148
148
  </script>
149
+ <style lang="scss">
150
+ fieldset {
151
+ border: inherit;
152
+ }
153
+ </style>
@@ -195,4 +195,8 @@ export default {
195
195
  .cnt-input-text {
196
196
  position: relative;
197
197
  }
198
+
199
+ fieldset {
200
+ border: inherit;
201
+ }
198
202
  </style>
@@ -288,4 +288,8 @@ select {
288
288
  .cnt-input {
289
289
  position: relative;
290
290
  }
291
+
292
+ fieldset {
293
+ border: inherit;
294
+ }
291
295
  </style>
@@ -260,7 +260,7 @@ export default {
260
260
  }
261
261
  }
262
262
  </script>
263
- <style lang="scss" scoped>
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>