fcad-core-dragon 2.3.0-test.6 → 2.3.0
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.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# [2.3.0](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/compare/v2.2.0...v2.3.0) (2026-05-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **ci-config:** fixed the rule for npm deployment on granches beta, apha and test ([38923e7](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/commit/38923e7ad775795f2ea27f0d304915a740185892))
|
|
7
|
+
* **ci-config:** fixed the rule for npm deployment on granches beta, apha and test ([808d3de](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/commit/808d3de37bf1d03d420e05fa13412ce17ca72ad1))
|
|
8
|
+
* **dependencies:** fixed depentencies conflicts causing npm ci to fail ([469918e](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/commit/469918e24d0b2948adf7d2f0135d80aeba2b35a8))
|
|
9
|
+
* **Git Page:** Application ne ce lance pas correctement lorsque le projet est deployé sur serveur non cegepadistance. ([2683336](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/commit/2683336bd0928c2550f7d1266675beda8465d580))
|
|
10
|
+
* **quiz:** correction du formatage du message précédent ([6985f51](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/commit/6985f51dee569ec7cfeaba18bf4ee19089f6b5e2))
|
|
11
|
+
* remaning release config file to .releaserc ([2a746d0](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/commit/2a746d0b294577128937a22fae8f556984e97fda))
|
|
12
|
+
* **server connection:** remote parameter prevent production build to connect to LRS when deployed on Moodle ([994e702](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/commit/994e702ce0ed69633798adec8830d33b87680e92))
|
|
13
|
+
* **texttofill:** Remove debug code ([fff8de2](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/commit/fff8de288cadde9469c7f6debb8f320e6751c96d))
|
|
14
|
+
* **ui:** corrige la mise à jour du document.title avec le bon titre lors de la navigation ([7155180](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/commit/7155180447c710d53c752b6a1080ec6be053194f))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **core:** expose app-store and app-router via provide for to external plugins and libraries ([42e776f](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/commit/42e776f9af103490d58d067389d28223c61d7ee8))
|
|
20
|
+
|
|
1
21
|
# [2.3.0-test.6](https://git.crosemont.qc.ca/fcad/core/fcad-core-2/compare/v2.3.0-test.5...v2.3.0-test.6) (2026-05-01)
|
|
2
22
|
|
|
3
23
|
|
package/package.json
CHANGED
|
@@ -35,6 +35,7 @@ Si la composante est appelée sans prop, les boutons par défaut seront génér
|
|
|
35
35
|
:error-text="`Vous avez une/des erreur(s) lors de la création des
|
|
36
36
|
${(() => (isCard ? 'cartes' : `boutons`))()} d'embranchments.`"
|
|
37
37
|
/>
|
|
38
|
+
|
|
38
39
|
<v-row v-else>
|
|
39
40
|
<v-col
|
|
40
41
|
v-for="branch of branchsStateData"
|
|
@@ -42,6 +43,7 @@ Si la composante est appelée sans prop, les boutons par défaut seront génér
|
|
|
42
43
|
:key="branch.id"
|
|
43
44
|
class="branch-btn"
|
|
44
45
|
>
|
|
46
|
+
<!-- {{ branchsStateData }} -->
|
|
45
47
|
<div
|
|
46
48
|
v-if="isCustomButton"
|
|
47
49
|
:id="getMatchingElement(branch.id).name"
|
|
@@ -271,7 +273,6 @@ export default {
|
|
|
271
273
|
* @return {Array} branchsStateData collection of all card or button to create
|
|
272
274
|
*/
|
|
273
275
|
ColletBranchData(DataCard){
|
|
274
|
-
|
|
275
276
|
let branchData = {}
|
|
276
277
|
|
|
277
278
|
let options = ['text','title','imgFile','imgAlt']
|
|
@@ -288,10 +289,11 @@ export default {
|
|
|
288
289
|
branchData.route = e._namedRoute
|
|
289
290
|
})
|
|
290
291
|
|
|
292
|
+
|
|
291
293
|
if(!this.branchsStateData.length) this.branchsStateData.push(branchData)
|
|
292
294
|
else{
|
|
293
295
|
this.branchsStateData.forEach((e)=>{
|
|
294
|
-
if(
|
|
296
|
+
if(!this.branchsStateData.find(({ id }) => id === branchData.id)){
|
|
295
297
|
this.branchsStateData.push(branchData)
|
|
296
298
|
}
|
|
297
299
|
})
|